| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| DebugLoc.cpp | 1 //===-- DebugLoc.cpp - Implement DebugLoc class ---------------------------===// 9 #include "llvm/IR/DebugLoc.h" 16 // DebugLoc Implementation 18 DebugLoc::DebugLoc(const DILocation *L) : Loc(const_cast<DILocation *>(L)) {} 19 DebugLoc::DebugLoc(const MDNode *L) : Loc(const_cast<MDNode *>(L)) {} 21 DILocation *DebugLoc::get() const { 25 unsigned DebugLoc::getLine() const [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| DebugLoc.h | 1 //===- DebugLoc.h - Debug Location Information ------------------*- C++ -*-===// 31 /// To avoid extra includes, \a DebugLoc doubles the \a DILocation API with a 33 class DebugLoc { 37 DebugLoc() = default; 40 DebugLoc(const DILocation *L); 48 explicit DebugLoc(const MDNode *N); 75 static DebugLoc appendInlinedAt(const DebugLoc &DL, DILocation *InlinedAt, 84 /// Get the fully inlined-at scope for a DebugLoc. 86 /// Gets the inlined-at scope for a DebugLoc [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
| Assembler.h | 50 void addInstruction(const MCInst &Inst, const DebugLoc &DL = DebugLoc()); 51 void addInstructions(ArrayRef<MCInst> Insts, const DebugLoc &DL = DebugLoc()); 53 void addReturn(const DebugLoc &DL = DebugLoc());
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86LoadValueInjectionRetHardening.cpp | 84 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::POP64r)) 87 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::LFENCE)); 88 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::JMP64r)) 97 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::LFENCE)); 98 addRegOffset(BuildMI(MBB, Fence, DebugLoc(), TII->get(X86::SHL64mi)),
|
| X86FrameLowering.h | 55 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 68 const DebugLoc &DL, 141 const DebugLoc &DL, int64_t NumBytes, bool InEpilogue) const; 175 const DebugLoc &DL, const MCCFIInstruction &CFIInst) const; 182 const DebugLoc &DL, bool RestoreSP = false) const; 203 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 209 const DebugLoc &DL, bool InProlog) const; 213 const DebugLoc &DL, 217 const DebugLoc &DL, bool InProlog) const; 222 const DebugLoc &DL, uint64_t Offset [all...] |
| X86IndirectThunks.cpp | 95 BuildMI(&MF.front(), DebugLoc(), TII->get(X86::LFENCE)); 96 BuildMI(&MF.front(), DebugLoc(), TII->get(X86::JMP64r)).addReg(X86::R11); 218 BuildMI(Entry, DebugLoc(), TII->get(CallOpc)).addSym(TargetSym); 233 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::PAUSE)); 234 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::LFENCE)); 235 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::JMP_1)).addMBB(CaptureSpec); 246 addRegOffset(BuildMI(CallTarget, DebugLoc(), TII->get(MovOpc)), SPReg, false, 251 BuildMI(CallTarget, DebugLoc(), TII->get(RetOpc));
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXInstrInfo.h | 52 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, 64 const DebugLoc &DL,
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| PseudoProbePrinter.cpp | 50 const DILocation *DebugLoc) { 56 auto *InlinedAt = DebugLoc ? DebugLoc->getInlinedAt() : nullptr;
|
| PseudoProbePrinter.h | 37 uint64_t Attr, const DILocation *DebugLoc);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| LostDebugLocObserver.h | 21 SmallSet<DebugLoc, 4> LostDebugLocs;
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| FEntryInserter.cpp | 45 BuildMI(FirstMBB, FirstMBB.begin(), DebugLoc(),
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
| M68kFrameLowering.h | 48 const DebugLoc &DL, int64_t Offset, 53 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 58 const DebugLoc &DL, const MCCFIInstruction &CFIInst) const; 62 const DebugLoc &DL,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| LeonPasses.cpp | 42 DebugLoc DL = DebugLoc(); 129 DebugLoc DL = DebugLoc();
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGLoopInfo.h | 19 #include "llvm/IR/DebugLoc.h" 91 const llvm::DebugLoc &StartLoc, const llvm::DebugLoc &EndLoc, 120 llvm::DebugLoc StartLoc; 122 llvm::DebugLoc EndLoc; 206 void push(llvm::BasicBlock *Header, const llvm::DebugLoc &StartLoc, 207 const llvm::DebugLoc &EndLoc); 213 llvm::ArrayRef<const Attr *> Attrs, const llvm::DebugLoc &StartLoc, 214 const llvm::DebugLoc &EndLoc, bool MustProgress = false);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| BPFInstrInfo.h | 33 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, 57 const DebugLoc &DL,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/ |
| MSP430InstrInfo.h | 39 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, 68 const DebugLoc &DL,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblyInstrInfo.h | 50 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, 64 const DebugLoc &DL,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| XCoreInstrInfo.h | 59 const DebugLoc &DL, 66 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/ |
| RISCVInstrInfo.h | 40 const DebugLoc &DL, MCRegister DstReg, MCRegister SrcReg, 56 const DebugLoc &DL, Register DstReg, uint64_t Val, 68 const DebugLoc &dl, 73 const DebugLoc &DL, int64_t BrOffset, 148 const DebugLoc &DL, int64_t Amount) const;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| MachineInstrBuilder.h | 328 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, 335 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, 346 const DebugLoc &DL, const MCInstrDesc &MCID, 362 const DebugLoc &DL, const MCInstrDesc &MCID, 371 const DebugLoc &DL, const MCInstrDesc &MCID, 381 const DebugLoc &DL, const MCInstrDesc &MCID, 391 const DebugLoc &DL, 401 const DebugLoc &DL, 410 const DebugLoc &DL, 420 const DebugLoc &DL [all...] |
| DebugHandlerBase.h | 22 #include "llvm/IR/DebugLoc.h" 67 DebugLoc PrevInstLoc; 73 DebugLoc PrologEndLoc;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/ |
| AVRInstrInfo.h | 75 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, 98 const DebugLoc &DL, 112 const DebugLoc &DL,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| Thumb1InstrInfo.h | 41 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg,
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| EntryExitInstrumenter.cpp | 25 Instruction *InsertionPt, DebugLoc DL) { 86 DebugLoc DL; 105 DebugLoc DL; 106 if (DebugLoc TerminatorDL = T->getDebugLoc())
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| SIFrameLowering.h | 61 const DebugLoc &DL, 68 MachineBasicBlock::iterator I, const DebugLoc &DL,
|