/external/llvm/lib/IR/ |
DebugLoc.cpp | 1 //===-- DebugLoc.cpp - Implement DebugLoc class ---------------------------===// 10 #include "llvm/IR/DebugLoc.h" 17 // DebugLoc Implementation 19 DebugLoc::DebugLoc(const DILocation *L) : Loc(const_cast<DILocation *>(L)) {} 20 DebugLoc::DebugLoc(const MDNode *L) : Loc(const_cast<MDNode *>(L)) {} 22 DILocation *DebugLoc::get() const { 26 unsigned DebugLoc::getLine() const [all...] |
DiagnosticInfo.cpp | 189 const Function &Fn, const DebugLoc &DLoc, 196 const DebugLoc &DLoc, 204 const DebugLoc &DLoc, 213 const DebugLoc &DLoc, 222 const DebugLoc &DLoc, 234 const DebugLoc &DLoc, const Twine &Msg) { 240 const DebugLoc &DLoc, const Twine &Msg) {
|
/external/llvm/include/llvm/IR/ |
DebugLoc.h | 1 //===- DebugLoc.h - Debug Location Information ------------------*- C++ -*-===// 32 /// To avoid extra includes, \a DebugLoc doubles the \a DILocation API with a 34 class DebugLoc { 38 DebugLoc() {} 39 DebugLoc(DebugLoc &&X) : Loc(std::move(X.Loc)) {} 40 DebugLoc(const DebugLoc &X) : Loc(X.Loc) {} 41 DebugLoc &operator=(DebugLoc &&X) [all...] |
DiagnosticInfo.h | 19 #include "llvm/IR/DebugLoc.h" 33 class DebugLoc; 291 const DebugLoc &DLoc, const Twine &Msg) 319 const DebugLoc &getDebugLoc() const { return DLoc; } 332 DebugLoc DLoc; 350 const DebugLoc &DLoc, const Twine &Msg) 376 const DebugLoc &DLoc, const Twine &Msg) 402 const DebugLoc &DLoc, 418 const DebugLoc &DLoc, 441 const DebugLoc &DLoc [all...] |
/external/llvm/lib/Target/X86/ |
X86FrameLowering.h | 55 MachineBasicBlock::iterator MBBI, DebugLoc DL, 64 DebugLoc DL) const; 151 DebugLoc DL, MCCFIInstruction CFIInst) const; 157 MachineBasicBlock::iterator MBBI, DebugLoc DL, 166 DebugLoc DL, bool InProlog) const; 172 DebugLoc DL, bool InProlog) const; 178 DebugLoc DL, bool InProlog) const; 182 MachineBasicBlock::iterator MBBI, DebugLoc DL, 187 MachineBasicBlock::iterator MBBI, DebugLoc DL, 193 DebugLoc DL, int64_t Offset [all...] |
/external/llvm/lib/Target/BPF/ |
BPFInstrInfo.h | 34 DebugLoc DL, unsigned DestReg, unsigned SrcReg, 55 DebugLoc DL) const override;
|
BPFInstrInfo.cpp | 35 MachineBasicBlock::iterator I, DebugLoc DL, 50 DebugLoc DL; 68 DebugLoc DL; 137 DebugLoc DL) const {
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXInstrInfo.h | 53 MachineBasicBlock &MBB, MachineBasicBlock::iterator I, DebugLoc DL, 68 ArrayRef<MachineOperand> Cond, DebugLoc DL) const override;
|
NVPTXFrameLowering.cpp | 43 DebugLoc dl = DebugLoc();
|
/external/llvm/lib/Target/WebAssembly/ |
WebAssemblyInstrInfo.h | 38 DebugLoc DL, unsigned DestReg, unsigned SrcReg, 48 DebugLoc DL) const override;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
SDNodeDbgValue.h | 18 #include "llvm/IR/DebugLoc.h" 49 DebugLoc DL; 58 uint64_t off, DebugLoc dl, unsigned O) 67 DebugLoc dl, unsigned O) 74 SDDbgValue(MDNode *Var, MDNode *Expr, unsigned FI, uint64_t off, DebugLoc dl, 108 // Returns the DebugLoc. 109 DebugLoc getDebugLoc() const { return DL; }
|
/external/mesa3d/src/gallium/drivers/radeon/ |
SIInstrInfo.h | 34 MachineBasicBlock::iterator MI, DebugLoc DL,
|
SIInstrInfo.cpp | 38 MachineBasicBlock::iterator MI, DebugLoc DL, 55 MachineInstr * MI = MF->CreateMachineInstr(get(AMDGPU::V_MOV_IMM_I32), DebugLoc());
|
R600ISelLowering.h | 39 DebugLoc DL, unsigned DwordOffset) const;
|
/external/llvm/lib/Target/MSP430/ |
MSP430InstrInfo.h | 56 MachineBasicBlock::iterator I, DebugLoc DL, 86 DebugLoc DL) const override;
|
/external/llvm/lib/Target/Sparc/ |
SparcInstrInfo.h | 77 DebugLoc DL) const override; 80 MachineBasicBlock::iterator I, DebugLoc DL,
|
/external/llvm/lib/Target/XCore/ |
XCoreInstrInfo.h | 60 DebugLoc DL) const override; 65 MachineBasicBlock::iterator I, DebugLoc DL,
|
/external/llvm/include/llvm/CodeGen/ |
SelectionDAGNodes.h | 34 #include "llvm/IR/DebugLoc.h" 168 inline const DebugLoc &getDebugLoc() const; 420 DebugLoc debugLoc; 510 const DebugLoc &getDebugLoc() const { return debugLoc; } 514 void setDebugLoc(DebugLoc dl) { debugLoc = std::move(dl); } 776 SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs, 782 NumValues(VTs.NumVTs), IROrder(Order), debugLoc(std::move(dl)) [all...] |
GCMetadata.h | 40 #include "llvm/IR/DebugLoc.h" 54 DebugLoc Loc; 56 GCPoint(GC::PointKind K, MCSymbol *L, DebugLoc DL) 123 void addSafePoint(GC::PointKind Kind, MCSymbol *Label, DebugLoc DL) {
|
MachineInstrBuilder.h | 234 DebugLoc DL, 242 DebugLoc DL, 254 DebugLoc DL, 265 DebugLoc DL, 276 DebugLoc DL, 293 DebugLoc DL, 303 DebugLoc DL, 313 DebugLoc DL, 327 DebugLoc DL, 336 DebugLoc DL [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64InstrInfo.h | 111 const MDNode *Expr, DebugLoc DL) const; 113 DebugLoc DL, unsigned DestReg, unsigned SrcReg, 117 DebugLoc DL, unsigned DestReg, unsigned SrcReg, 144 DebugLoc DL) const override; 150 DebugLoc DL, unsigned DstReg, ArrayRef<MachineOperand> Cond, 193 void instantiateCondBranch(MachineBasicBlock &MBB, DebugLoc DL, 203 DebugLoc DL, unsigned DestReg, unsigned SrcReg, int Offset,
|
/external/llvm/include/llvm/ExecutionEngine/ |
JITEventListener.h | 20 #include "llvm/IR/DebugLoc.h" 43 DebugLoc Loc;
|
/external/llvm/lib/Target/ARM/ |
Thumb1InstrInfo.h | 42 MachineBasicBlock::iterator I, DebugLoc DL,
|
ThumbRegisterInfo.h | 42 DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val,
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
WinCodeViewLineTables.h | 26 #include "llvm/IR/DebugLoc.h" 34 DebugLoc PrevInstLoc; 106 void maybeRecordLocation(DebugLoc DL, const MachineFunction *MF);
|