OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SDDbgValue
(Results
1 - 8
of
8
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h
10
// This file declares the
SDDbgValue
class.
27
///
SDDbgValue
- Holds the information from a dbg_value node through SDISel.
30
class
SDDbgValue
{
54
SDDbgValue
(MDNode *mdP, SDNode *N, unsigned R, uint64_t off, DebugLoc dl,
63
SDDbgValue
(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,
71
SDDbgValue
(MDNode *mdP, unsigned FI, uint64_t off, DebugLoc dl, unsigned O) :
106
// property. A
SDDbgValue
is invalid if the SDNode that produces the value is
InstrEmitter.h
27
class
SDDbgValue
;
114
MachineInstr *EmitDbgValue(
SDDbgValue
*SD,
InstrEmitter.cpp
633
InstrEmitter::EmitDbgValue(
SDDbgValue
*SD,
639
if (SD->getKind() ==
SDDbgValue
::FRAMEIX) {
648
if (SD->getKind() ==
SDDbgValue
::SDNODE) {
662
} else if (SD->getKind() ==
SDDbgValue
::CONST) {
[
all
...]
SelectionDAGBuilder.h
62
class
SDDbgValue
;
SelectionDAG.cpp
638
// If any of the
SDDbgValue
nodes refer to this SDNode, invalidate them.
639
ArrayRef<
SDDbgValue
*> DbgVals = DbgInfo->getSDDbgValues(N);
[
all
...]
ScheduleDAGSDNodes.cpp
714
ArrayRef<
SDDbgValue
*> DVs = DAG->GetDbgValues(N);
869
// Insert all
SDDbgValue
's whose order(s) are before "Order".
[
all
...]
SelectionDAGBuilder.cpp
[
all
...]
/external/llvm/include/llvm/CodeGen/
SelectionDAG.h
36
class
SDDbgValue
;
73
SmallVector<
SDDbgValue
*, 32> DbgValues;
74
SmallVector<
SDDbgValue
*, 32> ByvalParmDbgValues;
75
typedef DenseMap<const SDNode*, SmallVector<
SDDbgValue
*, 2> > DbgValMapType;
83
void add(
SDDbgValue
*V, const SDNode *Node, bool isParameter) {
101
ArrayRef<
SDDbgValue
*> getSDDbgValues(const SDNode *Node) {
105
return ArrayRef<
SDDbgValue
*>();
108
typedef SmallVectorImpl<
SDDbgValue
*>::iterator DbgIterator;
[
all
...]
Completed in 1235 milliseconds