Home
last modified time | relevance | path

Searched refs:SDDbgValue (Results 1 – 8 of 8) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
DSDNodeDbgValue.h30 class SDDbgValue {
54 SDDbgValue(MDNode *mdP, SDNode *N, unsigned R, uint64_t off, DebugLoc dl, in SDDbgValue() function
63 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl, in SDDbgValue() function
71 SDDbgValue(MDNode *mdP, unsigned FI, uint64_t off, DebugLoc dl, unsigned O) : in SDDbgValue() function
DInstrEmitter.h26 class SDDbgValue; variable
110 MachineInstr *EmitDbgValue(SDDbgValue *SD,
DInstrEmitter.cpp587 InstrEmitter::EmitDbgValue(SDDbgValue *SD, in EmitDbgValue()
593 if (SD->getKind() == SDDbgValue::FRAMEIX) { in EmitDbgValue()
602 if (SD->getKind() == SDDbgValue::SDNODE) { in EmitDbgValue()
616 } else if (SD->getKind() == SDDbgValue::CONST) { in EmitDbgValue()
DSelectionDAG.cpp601 ArrayRef<SDDbgValue*> DbgVals = DbgInfo->getSDDbgValues(N); in DeallocateNode()
5094 SDDbgValue *
5097 return new (Allocator) SDDbgValue(MDPtr, N, R, Off, DL, O); in getDbgValue()
5100 SDDbgValue *
5103 return new (Allocator) SDDbgValue(MDPtr, C, Off, DL, O); in getDbgValue()
5106 SDDbgValue *
5109 return new (Allocator) SDDbgValue(MDPtr, FI, Off, DL, O); in getDbgValue()
5509 void SelectionDAG::AddDbgValue(SDDbgValue *DB, SDNode *SD, bool isParameter) { in AddDbgValue()
5521 ArrayRef<SDDbgValue *> DVs = GetDbgValues(FromNode); in TransferDbgValues()
5522 SmallVector<SDDbgValue *, 2> ClonedDVs; in TransferDbgValues()
[all …]
DSelectionDAGBuilder.h62 class SDDbgValue; variable
DScheduleDAGSDNodes.cpp646 ArrayRef<SDDbgValue*> DVs = DAG->GetDbgValues(N); in ProcessSDDbgValues()
DSelectionDAGBuilder.cpp946 SDDbgValue *SDV; in resolveDanglingDebugInfo()
4318 SDDbgValue *SDV; in visitIntrinsicCall()
4387 SDDbgValue *SDV; in visitIntrinsicCall()
/external/llvm/include/llvm/CodeGen/
DSelectionDAG.h36 class SDDbgValue; variable
72 SmallVector<SDDbgValue*, 32> DbgValues;
73 SmallVector<SDDbgValue*, 32> ByvalParmDbgValues;
74 DenseMap<const SDNode*, SmallVector<SDDbgValue*, 2> > DbgValMap;
81 void add(SDDbgValue *V, const SDNode *Node, bool isParameter) {
99 ArrayRef<SDDbgValue*> getSDDbgValues(const SDNode *Node) {
100 DenseMap<const SDNode*, SmallVector<SDDbgValue*, 2> >::iterator I =
104 return ArrayRef<SDDbgValue*>();
107 typedef SmallVector<SDDbgValue*,32>::iterator DbgIterator;
791 SDDbgValue *getDbgValue(MDNode *MDPtr, SDNode *N, unsigned R, uint64_t Off,
[all …]