/external/llvm/include/llvm/IR/ |
D | DebugLoc.h | 29 class DebugLoc { 30 friend struct DenseMapInfo<DebugLoc>; 34 static DebugLoc getEmptyKey() { 35 DebugLoc DL; 42 static DebugLoc getTombstoneKey() { 43 DebugLoc DL; 57 DebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown. 61 static DebugLoc get(unsigned Line, unsigned Col, 65 static DebugLoc getFromDILocation(MDNode *N); 68 static DebugLoc getFromDILexicalBlock(MDNode *N); [all …]
|
D | DiagnosticInfo.h | 32 class DebugLoc; variable 253 const DebugLoc &DLoc, const Twine &Msg) in DiagnosticInfoOptimizationRemarkBase() 285 const DebugLoc &getDebugLoc() const { return DLoc; } in getDebugLoc() 298 DebugLoc DLoc; 317 const DebugLoc &DLoc, const Twine &Msg) in DiagnosticInfoOptimizationRemark() 343 const DebugLoc &DLoc, const Twine &Msg) in DiagnosticInfoOptimizationRemarkMissed() 369 const DebugLoc &DLoc, in DiagnosticInfoOptimizationRemarkAnalysis() 391 const Function &Fn, const DebugLoc &DLoc, 401 const Function &Fn, const DebugLoc &DLoc, 411 const Function &Fn, const DebugLoc &DLoc,
|
/external/llvm/lib/IR/ |
D | DebugLoc.cpp | 20 MDNode *DebugLoc::getScope(const LLVMContext &Ctx) const { in getScope() 37 MDNode *DebugLoc::getInlinedAt(const LLVMContext &Ctx) const { in getInlinedAt() 49 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA, in getScopeAndInlinedAt() 73 MDNode *DebugLoc::getScopeNode(const LLVMContext &Ctx) const { in getScopeNode() 75 return DebugLoc::getFromDILocation(InlinedAt).getScopeNode(Ctx); in getScopeNode() 79 DebugLoc DebugLoc::getFnDebugLoc(const LLVMContext &Ctx) const { in getFnDebugLoc() 86 return DebugLoc::get(SP.getScopeLineNumber(), 0, SP); in getFnDebugLoc() 88 return DebugLoc::get(SP.getLineNumber(), 0, SP); in getFnDebugLoc() 91 return DebugLoc(); in getFnDebugLoc() 94 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, in get() [all …]
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.h | 100 DebugLoc DL) const; 102 DebugLoc DL, unsigned DestReg, unsigned SrcReg, 106 DebugLoc DL, unsigned DestReg, unsigned SrcReg, 133 DebugLoc DL) const override; 140 DebugLoc DL, unsigned DstReg, 158 void instantiateCondBranch(MachineBasicBlock &MBB, DebugLoc DL, 168 DebugLoc DL, unsigned DestReg, unsigned SrcReg, int Offset,
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SDNodeDbgValue.h | 50 DebugLoc DL; 56 bool indir, uint64_t off, DebugLoc dl, in SDDbgValue() 66 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl, in SDDbgValue() 75 SDDbgValue(MDNode *mdP, unsigned FI, uint64_t off, DebugLoc dl, unsigned O) : in SDDbgValue() 107 DebugLoc getDebugLoc() { return DL; } in getDebugLoc()
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAGNodes.h | 185 inline const DebugLoc getDebugLoc() const; 377 DebugLoc debugLoc; 463 const DebugLoc getDebugLoc() const { return debugLoc; } 467 void setDebugLoc(const DebugLoc dl) { debugLoc = dl; } 741 SDNode(unsigned Opc, unsigned Order, const DebugLoc dl, SDVTList VTs, 758 SDNode(unsigned Opc, unsigned Order, const DebugLoc dl, SDVTList VTs) 864 DebugLoc getDebugLoc() { 866 return DebugLoc(); 913 inline const DebugLoc SDValue::getDebugLoc() const { 946 UnarySDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs, [all …]
|
D | MachineInstrBuilder.h | 229 DebugLoc DL, in BuildMI() 238 DebugLoc DL, in BuildMI() 251 DebugLoc DL, in BuildMI() 262 DebugLoc DL, in BuildMI() 273 DebugLoc DL, in BuildMI() 291 DebugLoc DL, in BuildMI() 301 DebugLoc DL, in BuildMI() 311 DebugLoc DL, in BuildMI() 327 DebugLoc DL, in BuildMI() 337 DebugLoc DL, in BuildMI() [all …]
|
D | LexicalScopes.h | 165 void getMachineBasicBlocks(DebugLoc DL, 170 bool dominates(DebugLoc DL, MachineBasicBlock *MBB); 174 LexicalScope *findLexicalScope(DebugLoc DL); 189 LexicalScope *findInlinedScope(DebugLoc DL); 206 LexicalScope *getOrCreateLexicalScope(DebugLoc DL);
|
D | GCMetadata.h | 65 DebugLoc Loc; 67 GCPoint(GC::PointKind K, MCSymbol *L, DebugLoc DL) in GCPoint() 135 void addSafePoint(GC::PointKind Kind, MCSymbol *Label, DebugLoc DL) { in addSafePoint()
|
D | FastISel.h | 56 DebugLoc DbgLoc; 92 DebugLoc getCurDebugLoc() const { return DbgLoc; } in getCurDebugLoc() 155 DebugLoc DL; 342 void FastEmitBranch(MachineBasicBlock *MBB, DebugLoc DL);
|
/external/llvm/lib/CodeGen/ |
D | LexicalScopes.cpp | 62 DebugLoc PrevDL; in extractLexicalScopes() 65 const DebugLoc MIDL = MInsn.getDebugLoc(); in extractLexicalScopes() 107 LexicalScope *LexicalScopes::findInlinedScope(DebugLoc DL) { in findInlinedScope() 117 LexicalScope *LexicalScopes::findLexicalScope(DebugLoc DL) { in findLexicalScope() 139 LexicalScope *LexicalScopes::getOrCreateLexicalScope(DebugLoc DL) { in getOrCreateLexicalScope() 168 Parent = getOrCreateLexicalScope(DebugLoc::getFromDILexicalBlock(Scope)); in getOrCreateRegularScope() 193 Parent = getOrCreateLexicalScope(DebugLoc::getFromDILocation(InlinedAt)); in getOrCreateInlinedScope() 288 DebugLoc DL, SmallPtrSet<const MachineBasicBlock *, 4> &MBBs) { in getMachineBasicBlocks() 311 bool LexicalScopes::dominates(DebugLoc DL, MachineBasicBlock *MBB) { in dominates() 323 DebugLoc IDL = I->getDebugLoc(); in dominates()
|
/external/llvm/lib/Target/R600/ |
D | SILowerControlFlow.cpp | 139 DebugLoc DL = From.getDebugLoc(); in Skip() 148 DebugLoc DL = MI.getDebugLoc(); in SkipIfDead() 181 DebugLoc DL = MI.getDebugLoc(); in If() 199 DebugLoc DL = MI.getDebugLoc(); in Else() 218 DebugLoc DL = MI.getDebugLoc(); in Break() 232 DebugLoc DL = MI.getDebugLoc(); in IfBreak() 247 DebugLoc DL = MI.getDebugLoc(); in ElseBreak() 262 DebugLoc DL = MI.getDebugLoc(); in Loop() 278 DebugLoc DL = MI.getDebugLoc(); in EndCf() 298 DebugLoc DL = MI.getDebugLoc(); in Kill() [all …]
|
D | AMDILCFGStructurizer.cpp | 229 DebugLoc DL = DebugLoc()); 231 DebugLoc DL = DebugLoc()); 234 DebugLoc DL); 237 DebugLoc DL); 249 static DebugLoc getLastDebugLocInBB(MachineBasicBlock *MBB); 469 int NewOpcode, DebugLoc DL) { in insertInstrEnd() 478 int NewOpcode, DebugLoc DL) { in insertInstrBefore() 494 MBB->getParent()->CreateMachineInstr(TII->get(NewOpcode), DebugLoc()); in insertInstrBefore() 502 MachineBasicBlock::iterator I, int NewOpcode, DebugLoc DL) { in insertCondBranchBefore() 516 DebugLoc DL) { in insertCondBranchBefore() [all …]
|
/external/llvm/lib/Transforms/Utils/ |
D | AddDiscriminators.cpp | 177 DebugLoc LastLoc = Last->getDebugLoc(); in runOnFunction() 184 DebugLoc FirstLoc = First->getDebugLoc(); in runOnFunction() 204 DebugLoc newDebugLoc = DebugLoc::getFromDILocation(NewDIL); in runOnFunction()
|
/external/llvm/lib/Target/Mips/ |
D | Mips16InstrInfo.cpp | 65 MachineBasicBlock::iterator I, DebugLoc DL, in copyPhysReg() 101 DebugLoc DL; in storeRegToStack() 117 DebugLoc DL; in loadRegFromStack() 200 DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); in makeFrame() 230 DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); in restoreFrame() 267 DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); in adjustStackPtrBig() 311 MachineBasicBlock::iterator II, DebugLoc DL, in loadImmediate() 455 DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); in BuildAddiuSpImm()
|
/external/llvm/lib/Target/ARM/ |
D | A15SDOptimizer.cpp | 66 DebugLoc DL, 72 DebugLoc DL, 78 DebugLoc DL, 83 DebugLoc DL, 88 DebugLoc DL, unsigned DReg, unsigned Lane, 93 DebugLoc DL); 427 DebugLoc DL, in createDupLane() 446 DebugLoc DL, in createExtractSubreg() 463 DebugLoc DL, in createRegSequence() 482 DebugLoc DL, in createVExt() [all …]
|
D | Thumb1InstrInfo.cpp | 41 MachineBasicBlock::iterator I, DebugLoc DL, in copyPhysReg() 62 DebugLoc DL; in storeRegToStackSlot() 90 DebugLoc DL; in loadRegFromStackSlot()
|
/external/llvm/tools/llvm-dis/ |
D | llvm-dis.cpp | 57 static void printDebugLoc(const DebugLoc &DL, formatted_raw_ostream &OS) { in printDebugLoc() 60 DebugLoc IDL = DebugLoc::getFromDILocation(N); in printDebugLoc() 82 const DebugLoc &DL = I->getDebugLoc(); in printInfoComment()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZFrameLowering.cpp | 133 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); in spillCalleeSavedRegisters() 222 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); in restoreCalleeSavedRegisters() 284 const DebugLoc &DL, in emitIncrement() 321 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); in emitPrologue() 425 DebugLoc DL = MBBI->getDebugLoc(); in emitEpilogue() 443 DebugLoc DL = MBBI->getDebugLoc(); in emitEpilogue()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCInstrInfo.h | 76 bool LoadRegFromStackSlot(MachineFunction &MF, DebugLoc DL, 137 DebugLoc DL) const override; 144 MachineBasicBlock::iterator MI, DebugLoc DL, 150 MachineBasicBlock::iterator I, DebugLoc DL,
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXInstrInfo.h | 53 MachineBasicBlock &MBB, MachineBasicBlock::iterator I, DebugLoc DL, 69 const SmallVectorImpl<MachineOperand> &Cond, DebugLoc DL) const override;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
D | SIInstrInfo.cpp | 38 MachineBasicBlock::iterator MI, DebugLoc DL, in copyPhysReg() 55 MachineInstr * MI = MF->CreateMachineInstr(get(AMDGPU::V_MOV_IMM_I32), DebugLoc()); in getMovImmInstr()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | SIInstrInfo.cpp | 38 MachineBasicBlock::iterator MI, DebugLoc DL, in copyPhysReg() 55 MachineInstr * MI = MF->CreateMachineInstr(get(AMDGPU::V_MOV_IMM_I32), DebugLoc()); in getMovImmInstr()
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430FrameLowering.cpp | 49 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); in emitPrologue() 115 DebugLoc DL = MBBI->getDebugLoc(); in emitEpilogue() 187 DebugLoc DL; in spillCalleeSavedRegisters() 213 DebugLoc DL; in restoreCalleeSavedRegisters()
|
/external/llvm/lib/Target/Sparc/ |
D | SparcFrameLowering.cpp | 47 DebugLoc dl = (MBBI != MBB.end()) ? MBBI->getDebugLoc() : DebugLoc(); in emitSPAdjustment() 93 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); in emitPrologue() 157 DebugLoc dl = MBBI->getDebugLoc(); in emitEpilogue()
|