| /minix3/external/bsd/llvm/dist/llvm/lib/IR/ |
| H A D | DebugLoc.cpp | 20 unsigned DebugLoc::getLine() const { return DILocation(Loc).getLineNumber(); } in getLine() 21 unsigned DebugLoc::getCol() const { return DILocation(Loc).getColumnNumber(); } in getCol() 23 MDNode *DebugLoc::getScope() const { return DILocation(Loc).getScope(); } in getScope() 25 MDNode *DebugLoc::getInlinedAt() const { in getInlinedAt() 30 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA) const { in getScopeAndInlinedAt() 35 MDNode *DebugLoc::getScopeNode() const { in getScopeNode() 37 return DebugLoc::getFromDILocation(InlinedAt).getScopeNode(); in getScopeNode() 41 DebugLoc DebugLoc::getFnDebugLoc() const { in getFnDebugLoc() 45 return DebugLoc::get(SP.getScopeLineNumber(), 0, SP); in getFnDebugLoc() 47 return DebugLoc(); in getFnDebugLoc() [all …]
|
| H A D | DiagnosticInfo.cpp | 173 const Function &Fn, const DebugLoc &DLoc, in emitOptimizationRemark() 180 const DebugLoc &DLoc, in emitOptimizationRemarkMissed() 188 const DebugLoc &DLoc, in emitOptimizationRemarkAnalysis() 200 const DebugLoc &DLoc, const Twine &Msg) { in emitLoopVectorizeWarning() 206 const DebugLoc &DLoc, const Twine &Msg) { in emitLoopInterleaveWarning()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/ |
| H A D | DebugLoc.h | 30 class DebugLoc { 34 DebugLoc() {} in DebugLoc() function 35 DebugLoc(DebugLoc &&X) : Loc(std::move(X.Loc)) {} in DebugLoc() function 36 DebugLoc(const DebugLoc &X) : Loc(X.Loc) {} in DebugLoc() function 37 DebugLoc &operator=(DebugLoc &&X) { 41 DebugLoc &operator=(const DebugLoc &X) { 51 static DebugLoc get(unsigned Line, unsigned Col, MDNode *Scope, 55 static DebugLoc getFromDILocation(MDNode *N); 58 static DebugLoc getFromDILexicalBlock(MDNode *N); 89 DebugLoc getFnDebugLoc() const; [all …]
|
| H A D | DiagnosticInfo.h | 33 class DebugLoc; variable 260 const DebugLoc &DLoc, const Twine &Msg) in DiagnosticInfoOptimizationBase() 292 const DebugLoc &getDebugLoc() const { return DLoc; } in getDebugLoc() 305 DebugLoc DLoc; 323 const DebugLoc &DLoc, const Twine &Msg) in DiagnosticInfoOptimizationRemark() 349 const DebugLoc &DLoc, const Twine &Msg) in DiagnosticInfoOptimizationRemarkMissed() 375 const DebugLoc &DLoc, in DiagnosticInfoOptimizationRemarkAnalysis() 397 const Function &Fn, const DebugLoc &DLoc, 407 const Function &Fn, const DebugLoc &DLoc, 417 const Function &Fn, const DebugLoc &DLoc, [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SDNodeDbgValue.h | 51 DebugLoc DL; 57 uint64_t off, DebugLoc dl, unsigned O) in SDDbgValue() 67 DebugLoc dl, unsigned O) in SDDbgValue() 75 SDDbgValue(MDNode *Var, MDNode *Expr, unsigned FI, uint64_t off, DebugLoc dl, in SDDbgValue() 111 DebugLoc getDebugLoc() const { return DL; } in getDebugLoc()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGNodes.h | 187 inline const DebugLoc getDebugLoc() const; 383 DebugLoc debugLoc; 479 const DebugLoc getDebugLoc() const { return debugLoc; } 483 void setDebugLoc(const DebugLoc dl) { debugLoc = dl; } 757 SDNode(unsigned Opc, unsigned Order, const DebugLoc dl, SDVTList VTs, 780 SDNode(unsigned Opc, unsigned Order, const DebugLoc dl, SDVTList VTs) 892 DebugLoc getDebugLoc() { 894 return DebugLoc(); 948 inline const DebugLoc SDValue::getDebugLoc() const { 981 UnarySDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs, [all …]
|
| H A D | MachineInstrBuilder.h | 235 DebugLoc DL, in BuildMI() 244 DebugLoc DL, in BuildMI() 257 DebugLoc DL, in BuildMI() 268 DebugLoc DL, in BuildMI() 279 DebugLoc DL, in BuildMI() 297 DebugLoc DL, in BuildMI() 307 DebugLoc DL, in BuildMI() 317 DebugLoc DL, in BuildMI() 333 DebugLoc DL, in BuildMI() 343 DebugLoc DL, in BuildMI() [all …]
|
| H A D | LexicalScopes.h | 161 void getMachineBasicBlocks(DebugLoc DL, 166 bool dominates(DebugLoc DL, MachineBasicBlock *MBB); 170 LexicalScope *findLexicalScope(DebugLoc DL); 185 LexicalScope *findInlinedScope(DebugLoc DL); 202 LexicalScope *getOrCreateLexicalScope(DebugLoc DL);
|
| H A D | GCMetadata.h | 64 DebugLoc Loc; 66 GCPoint(GC::PointKind K, MCSymbol *L, DebugLoc DL) in GCPoint() 134 void addSafePoint(GC::PointKind Kind, MCSymbol *Label, DebugLoc DL) { in addSafePoint()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A 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() 170 Parent = getOrCreateLexicalScope(DebugLoc::getFromDILexicalBlock(Scope)); in getOrCreateRegularScope() 198 Parent = getOrCreateLexicalScope(DebugLoc::getFromDILocation(InlinedAt)); in getOrCreateInlinedScope() 293 DebugLoc DL, SmallPtrSetImpl<const MachineBasicBlock *> &MBBs) { in getMachineBasicBlocks() 316 bool LexicalScopes::dominates(DebugLoc DL, MachineBasicBlock *MBB) { in dominates() 328 DebugLoc IDL = I->getDebugLoc(); in dominates()
|
| H A D | ErlangGC.cpp | 33 DebugLoc DL) const; 56 DebugLoc DL) const { in InsertLabel()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrInfo.h | 111 const MDNode *Expr, DebugLoc DL) const; 113 DebugLoc DL, unsigned DestReg, unsigned SrcReg, 117 DebugLoc DL, unsigned DestReg, unsigned SrcReg, 145 DebugLoc DL) const override; 152 DebugLoc DL, unsigned DstReg, 190 void instantiateCondBranch(MachineBasicBlock &MBB, DebugLoc DL, 200 DebugLoc DL, unsigned DestReg, unsigned SrcReg, int Offset,
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/R600/ |
| H A D | SILowerControlFlow.cpp | 141 DebugLoc DL = From.getDebugLoc(); in Skip() 150 DebugLoc DL = MI.getDebugLoc(); in SkipIfDead() 183 DebugLoc DL = MI.getDebugLoc(); in If() 201 DebugLoc DL = MI.getDebugLoc(); in Else() 220 DebugLoc DL = MI.getDebugLoc(); in Break() 234 DebugLoc DL = MI.getDebugLoc(); in IfBreak() 249 DebugLoc DL = MI.getDebugLoc(); in ElseBreak() 264 DebugLoc DL = MI.getDebugLoc(); in Loop() 280 DebugLoc DL = MI.getDebugLoc(); in EndCf() 300 DebugLoc DL = MI.getDebugLoc(); in Kill() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | AddDiscriminators.cpp | 177 DebugLoc LastLoc = Last->getDebugLoc(); in runOnFunction() 184 DebugLoc FirstLoc = First->getDebugLoc(); in runOnFunction() 202 DebugLoc newDebugLoc = DebugLoc::getFromDILocation(NewDIL); in runOnFunction()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | Mips16InstrInfo.cpp | 62 MachineBasicBlock::iterator I, DebugLoc DL, in copyPhysReg() 99 DebugLoc DL; in storeRegToStack() 117 DebugLoc DL; in loadRegFromStack() 199 DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); in makeFrame() 229 DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); in restoreFrame() 266 DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); in adjustStackPtrBig() 310 DebugLoc DL, unsigned &NewImm) const { in loadImmediate() 449 DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); in BuildAddiuSpImm()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | A15SDOptimizer.cpp | 68 DebugLoc DL, 74 DebugLoc DL, 80 DebugLoc DL, 85 DebugLoc DL, 90 DebugLoc DL, unsigned DReg, unsigned Lane, 95 DebugLoc DL); 429 DebugLoc DL, in createDupLane() 448 DebugLoc DL, in createExtractSubreg() 465 DebugLoc DL, in createRegSequence() 484 DebugLoc DL, in createVExt() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/tools/llvm-dis/ |
| H A D | llvm-dis.cpp | 59 static void printDebugLoc(const DebugLoc &DL, formatted_raw_ostream &OS) { in printDebugLoc() 62 DebugLoc IDL = DebugLoc::getFromDILocation(N); in printDebugLoc() 84 const DebugLoc &DL = I->getDebugLoc(); in printInfoComment()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXInstrInfo.h | 53 MachineBasicBlock &MBB, MachineBasicBlock::iterator I, DebugLoc DL, 69 const SmallVectorImpl<MachineOperand> &Cond, DebugLoc DL) const override;
|
| H A D | NVPTXFrameLowering.cpp | 42 DebugLoc dl = DebugLoc(); in emitPrologue()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrInfo.h | 76 bool LoadRegFromStackSlot(MachineFunction &MF, DebugLoc DL, 146 DebugLoc DL) const override; 153 MachineBasicBlock::iterator MI, DebugLoc DL, 159 MachineBasicBlock::iterator I, DebugLoc DL,
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZFrameLowering.cpp | 135 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); in spillCalleeSavedRegisters() 224 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); in restoreCalleeSavedRegisters() 286 const DebugLoc &DL, in emitIncrement() 323 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); in emitPrologue() 427 DebugLoc DL = MBBI->getDebugLoc(); in emitEpilogue() 445 DebugLoc DL = MBBI->getDebugLoc(); in emitEpilogue()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/Sparc/ |
| H A D | SparcInstrInfo.h | 76 DebugLoc DL) const override; 79 MachineBasicBlock::iterator I, DebugLoc DL,
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/MSP430/ |
| H A D | MSP430InstrInfo.h | 56 MachineBasicBlock::iterator I, DebugLoc DL, 87 DebugLoc DL) const override;
|
| H A D | MSP430FrameLowering.cpp | 50 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); in emitPrologue() 116 DebugLoc DL = MBBI->getDebugLoc(); in emitEpilogue() 188 DebugLoc DL; in spillCalleeSavedRegisters() 214 DebugLoc DL; in restoreCalleeSavedRegisters()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/XCore/ |
| H A D | XCoreInstrInfo.h | 61 DebugLoc DL) const override; 66 MachineBasicBlock::iterator I, DebugLoc DL,
|