Home
last modified time | relevance | path

Searched refs:DebugLoc (Results 1 – 25 of 382) sorted by relevance

12345678910>>...16

/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DDebugLoc.cpp18 DebugLoc::DebugLoc(const DILocation *L) : Loc(const_cast<DILocation *>(L)) {} in DebugLoc() function in DebugLoc
19 DebugLoc::DebugLoc(const MDNode *L) : Loc(const_cast<MDNode *>(L)) {} in DebugLoc() function in DebugLoc
21 DILocation *DebugLoc::get() const { in get()
25 unsigned DebugLoc::getLine() const { in getLine()
30 unsigned DebugLoc::getCol() const { in getCol()
35 MDNode *DebugLoc::getScope() const { in getScope()
40 DILocation *DebugLoc::getInlinedAt() const { in getInlinedAt()
49 DebugLoc DebugLoc::getFnDebugLoc() const { in getFnDebugLoc()
55 return DebugLoc(); in getFnDebugLoc()
58 bool DebugLoc::isImplicitCode() const { in isImplicitCode()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDebugLoc.h33 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,
96 DebugLoc getFnDebugLoc() const;
105 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; }
106 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86FrameLowering.h55 MachineBasicBlock::iterator MBBI, const DebugLoc &DL,
68 const DebugLoc &DL,
175 const DebugLoc &DL, const MCCFIInstruction &CFIInst) 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,
228 const DebugLoc &DL, uint64_t Offset,
235 MachineBasicBlock::iterator MBBI, const DebugLoc &DL,
[all …]
H A DX86IndirectThunks.cpp95 BuildMI(&MF.front(), DebugLoc(), TII->get(X86::LFENCE)); in populateThunk()
96 BuildMI(&MF.front(), DebugLoc(), TII->get(X86::JMP64r)).addReg(X86::R11); in populateThunk()
218 BuildMI(Entry, DebugLoc(), TII->get(CallOpc)).addSym(TargetSym); in populateThunk()
233 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::PAUSE)); in populateThunk()
234 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::LFENCE)); in populateThunk()
235 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::JMP_1)).addMBB(CaptureSpec); in populateThunk()
246 addRegOffset(BuildMI(CallTarget, DebugLoc(), TII->get(MovOpc)), SPReg, false, in populateThunk()
251 BuildMI(CallTarget, DebugLoc(), TII->get(RetOpc)); in populateThunk()
H A DX86LoadValueInjectionRetHardening.cpp84 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::POP64r)) in runOnMachineFunction()
87 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::LFENCE)); in runOnMachineFunction()
88 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::JMP64r)) in runOnMachineFunction()
97 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::LFENCE)); in runOnMachineFunction()
98 addRegOffset(BuildMI(MBB, Fence, DebugLoc(), TII->get(X86::SHL64mi)), in runOnMachineFunction()
H A DX86FlagsCopyLowering.cpp107 const DebugLoc &Loc, unsigned Reg);
111 const DebugLoc &TestLoc, MachineInstr &MI,
119 const DebugLoc &TestLoc, MachineInstr &CMovI,
123 const DebugLoc &TestLoc, MachineInstr &JmpI,
129 const DebugLoc &TestLoc, MachineInstr &SetCCI,
437 DebugLoc TestLoc = CopyDefI.getDebugLoc(); in runOnMachineFunction()
511 TestLoc = DebugLoc(); in runOnMachineFunction()
758 const DebugLoc &TestLoc, X86::CondCode Cond) { in promoteCondToReg()
848 const DebugLoc &TestLoc, in rewriteCMov()
874 const DebugLoc &TestLoc, in rewriteFCMov()
[all …]
H A DX86SpeculativeLoadHardening.cpp194 DebugLoc Loc);
206 DebugLoc Loc);
428 DebugLoc Loc; in runOnMachineFunction()
1115 auto AddrI = BuildMI(*Pred, InsertPt, DebugLoc(), in tracePredStateThroughIndirectBranches()
1505 DebugLoc Loc) { in saveEFLAGS()
1554 DebugLoc Loc) { in extractPredStateFromSP()
1577 const DebugLoc &Loc = MI.getDebugLoc(); in hardenLoadAddr()
1912 DebugLoc Loc) { in hardenValueInRegister()
1963 const DebugLoc &Loc = MI.getDebugLoc(); in hardenPostLoad()
2014 const DebugLoc &Loc = MI.getDebugLoc(); in hardenReturnInstr()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DAssembler.h50 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());
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h328 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, in BuildMI()
335 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, in BuildMI()
391 const DebugLoc &DL, in BuildMI()
401 const DebugLoc &DL, in BuildMI()
410 const DebugLoc &DL, in BuildMI()
420 const DebugLoc &DL, in BuildMI()
427 inline MachineInstrBuilder BuildMI(MachineBasicBlock *BB, const DebugLoc &DL, in BuildMI()
435 inline MachineInstrBuilder BuildMI(MachineBasicBlock *BB, const DebugLoc &DL, in BuildMI()
444 MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL,
451 MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL,
[all …]
H A DSelectionDAGNodes.h211 inline const DebugLoc &getDebugLoc() const;
601 DebugLoc debugLoc;
1080 DebugLoc DL;
1094 const DebugLoc &getDebugLoc() const { return DL; }
1161 inline const DebugLoc &SDValue::getDebugLoc() const {
1582 DebugLoc(), getSDVTList(VT)),
1721 0, DebugLoc(), getSDVTList(VT)), FI(fi) {
1826 DebugLoc(), getSDVTList(VT)),
1835 DebugLoc(), getSDVTList(VT)),
2111 : SDNode(NodeTy, 0, DebugLoc(), getSDVTList(VT)),
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGLoopInfo.h91 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);
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64SpeculationHardening.cpp164 DebugLoc DL) const;
176 DebugLoc DL);
219 DebugLoc DL) const { in insertFullSpeculationBarrier()
227 DebugLoc DL) const { in insertTrackingCode()
264 DebugLoc DL; in instrumentControlFlow()
364 insertFullSpeculationBarrier(MBB, MBBI, DebugLoc()); in insertSPToRegTaintPropagation()
392 BuildMI(MBB, MBBI, DebugLoc(), TII->get(AArch64::ADDXri)) in insertRegToSPTaintPropagation()
398 BuildMI(MBB, MBBI, DebugLoc(), TII->get(AArch64::ANDXrs)) in insertRegToSPTaintPropagation()
404 BuildMI(MBB, MBBI, DebugLoc(), TII->get(AArch64::ADDXri)) in insertRegToSPTaintPropagation()
591 DebugLoc DL) { in insertCSDB()
[all …]
H A DAArch64InstrInfo.h157 const DebugLoc &DL, MCRegister DestReg,
161 DebugLoc DL, unsigned DestReg, unsigned SrcReg,
165 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg,
209 const DebugLoc &DL,
217 const DebugLoc &DL, Register DstReg,
341 void instantiateCondBranch(MachineBasicBlock &MBB, const DebugLoc &DL,
371 const DebugLoc &DL, unsigned DestReg, unsigned SrcReg,
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h147 DebugLoc DL;
157 bool IsIndirect, DebugLoc DL, unsigned O, bool IsVariadic) in SDDbgValue()
214 const DebugLoc &getDebugLoc() const { return DL; } in getDebugLoc()
243 DebugLoc DL;
247 SDDbgLabel(MDNode *Label, DebugLoc dl, unsigned O) in SDDbgLabel()
254 const DebugLoc &getDebugLoc() const { return DL; } in getDebugLoc()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DA15SDOptimizer.cpp68 const DebugLoc &DL, unsigned Reg, unsigned Lane,
73 const DebugLoc &DL, unsigned DReg,
82 const DebugLoc &DL, unsigned Reg1,
87 const DebugLoc &DL, unsigned DReg,
92 const DebugLoc &DL);
417 const DebugLoc &DL, unsigned Reg, in createDupLane()
433 const DebugLoc &DL, unsigned DReg, unsigned Lane, in createExtractSubreg()
448 const DebugLoc &DL, unsigned Reg1, unsigned Reg2) { in createRegSequence()
465 const DebugLoc &DL, unsigned Ssub0, in createVExt()
494 const DebugLoc &DL) { in createImplicitDef()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.h40 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;
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kFrameLowering.h48 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,
H A DM68kInstrInfo.cpp281 ArrayRef<MachineOperand> Cond, const DebugLoc &DL, int *BytesAdded) const { in insertBranch()
313 MachineBasicBlock::iterator I, DebugLoc DL, in AddSExt()
330 MachineBasicBlock::iterator I, DebugLoc DL, in AddZExt()
368 DebugLoc DL = MIB->getDebugLoc(); in ExpandMOVX_RR()
415 DebugLoc DL = MIB->getDebugLoc(); in ExpandMOVSZX_RR()
459 DebugLoc DL = MIB->getDebugLoc(); in ExpandMOVSZX_RM()
478 DebugLoc DL = MIB->getDebugLoc(); in ExpandPUSH_POP()
642 const DebugLoc &DL, MCRegister DstReg, in copyPhysReg()
765 DebugLoc DL = MBB.findDebugLoc(MI); in storeRegToStackSlot()
780 DebugLoc DL = MBB.findDebugLoc(MI); in loadRegFromStackSlot()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
H A DLeonPasses.cpp42 DebugLoc DL = DebugLoc(); in runOnMachineFunction()
129 DebugLoc DL = DebugLoc(); in runOnMachineFunction()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DInlineAdvisor.h88 const DebugLoc &getOriginalCallSiteDebugLoc() const { return DLoc; } in getOriginalCallSiteDebugLoc()
105 const DebugLoc DLoc;
268 void emitInlinedInto(OptimizationRemarkEmitter &ORE, DebugLoc DLoc,
275 std::string getCallSiteLocation(DebugLoc DLoc);
278 void addLocationToRemarks(OptimizationRemark &Remark, DebugLoc DLoc);
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DPseudoProbePrinter.cpp50 const DILocation *DebugLoc) { in emitPseudoProbe() argument
56 auto *InlinedAt = DebugLoc ? DebugLoc->getInlinedAt() : nullptr; in emitPseudoProbe()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMips16InstrInfo.cpp71 const DebugLoc &DL, MCRegister DestReg, in copyPhysReg()
112 DebugLoc DL; in storeRegToStack()
130 DebugLoc DL; in loadRegFromStack()
213 DebugLoc DL; in makeFrame()
243 DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); in restoreFrame()
279 DebugLoc DL; in adjustStackPtrBig()
323 const DebugLoc &DL, in loadImmediate()
464 DebugLoc DL; in BuildAddiuSpImm()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DEntryExitInstrumenter.cpp25 Instruction *InsertionPt, DebugLoc DL) { in insertCall()
86 DebugLoc DL; in runOnFunction()
105 DebugLoc DL; in runOnFunction()
106 if (DebugLoc TerminatorDL = T->getDebugLoc()) in runOnFunction()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDILCFGStructurizer.cpp198 const DebugLoc &DL = DebugLoc());
200 const DebugLoc &DL = DebugLoc());
203 const DebugLoc &DL);
480 int RegNum, const DebugLoc &DL) { in insertCondBranchBefore()
573 DebugLoc DL; in getLastDebugLocInBB()
1290 CmpResReg, DebugLoc()); in improveSimpleJumpintoIf()
1298 DebugLoc()); in improveSimpleJumpintoIf()
1368 DebugLoc BranchDL = BranchMI->getDebugLoc(); in mergeIfthenelseBlock()
1415 insertInstrEnd(DstBlk, R600::ENDLOOP, DebugLoc()); in mergeLooplandBlock()
1426 DebugLoc DL = BranchMI->getDebugLoc(); in mergeLoopbreakBlock()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AVR/
H A DAVRInstrInfo.h75 const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg,
98 const DebugLoc &DL,
112 const DebugLoc &DL,

12345678910>>...16