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.h27 class SDDbgValue; variable
114 MachineInstr *EmitDbgValue(SDDbgValue *SD,
DInstrEmitter.cpp633 InstrEmitter::EmitDbgValue(SDDbgValue *SD, in EmitDbgValue()
639 if (SD->getKind() == SDDbgValue::FRAMEIX) { in EmitDbgValue()
648 if (SD->getKind() == SDDbgValue::SDNODE) { in EmitDbgValue()
662 } else if (SD->getKind() == SDDbgValue::CONST) { in EmitDbgValue()
DSelectionDAG.cpp643 ArrayRef<SDDbgValue*> DbgVals = DbgInfo->getSDDbgValues(N); in DeallocateNode()
5443 SDDbgValue *
5446 return new (Allocator) SDDbgValue(MDPtr, N, R, Off, DL, O); in getDbgValue()
5449 SDDbgValue *
5452 return new (Allocator) SDDbgValue(MDPtr, C, Off, DL, O); in getDbgValue()
5455 SDDbgValue *
5458 return new (Allocator) SDDbgValue(MDPtr, FI, Off, DL, O); in getDbgValue()
5856 void SelectionDAG::AddDbgValue(SDDbgValue *DB, SDNode *SD, bool isParameter) { in AddDbgValue()
5868 ArrayRef<SDDbgValue *> DVs = GetDbgValues(FromNode); in TransferDbgValues()
5869 SmallVector<SDDbgValue *, 2> ClonedDVs; in TransferDbgValues()
[all …]
DSelectionDAGBuilder.h62 class SDDbgValue; variable
DScheduleDAGSDNodes.cpp715 ArrayRef<SDDbgValue*> DVs = DAG->GetDbgValues(N); in ProcessSDDbgValues()
DSelectionDAGBuilder.cpp997 SDDbgValue *SDV; in resolveDanglingDebugInfo()
4541 SDDbgValue *SDV; in visitIntrinsicCall()
4614 SDDbgValue *SDV; in visitIntrinsicCall()
/external/llvm/include/llvm/CodeGen/
DSelectionDAG.h37 class SDDbgValue; variable
74 SmallVector<SDDbgValue*, 32> DbgValues;
75 SmallVector<SDDbgValue*, 32> ByvalParmDbgValues;
76 DenseMap<const SDNode*, SmallVector<SDDbgValue*, 2> > DbgValMap;
83 void add(SDDbgValue *V, const SDNode *Node, bool isParameter) {
101 ArrayRef<SDDbgValue*> getSDDbgValues(const SDNode *Node) {
102 DenseMap<const SDNode*, SmallVector<SDDbgValue*, 2> >::iterator I =
106 return ArrayRef<SDDbgValue*>();
109 typedef SmallVector<SDDbgValue*,32>::iterator DbgIterator;
856 SDDbgValue *getDbgValue(MDNode *MDPtr, SDNode *N, unsigned R, uint64_t Off,
[all …]