Home
last modified time | relevance | path

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

12345678910>>...16

/netbsd-src/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()
45 MDNode *DebugLoc::getInlinedAtScope() const { in getInlinedAtScope()
49 DebugLoc DebugLoc::getFnDebugLoc() const { in getFnDebugLoc()
55 return DebugLoc(); in getFnDebugLoc()
[all …]
/netbsd-src/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-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86FrameLowering.h55 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 …]
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.cpp102 const DebugLoc &TestLoc, X86::CondCode Cond);
105 const DebugLoc &TestLoc, X86::CondCode Cond, CondRegArray &CondRegs);
107 const DebugLoc &Loc, unsigned Reg);
111 const DebugLoc &TestLoc, MachineInstr &MI,
114 MachineBasicBlock::iterator TestPos, const DebugLoc &TestLoc,
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()
[all …]
H A DX86SpeculativeLoadHardening.cpp184 MachineBasicBlock::iterator InsertPt, DebugLoc Loc);
186 MachineBasicBlock::iterator InsertPt, DebugLoc Loc,
190 MachineBasicBlock::iterator InsertPt, DebugLoc Loc,
194 DebugLoc Loc);
206 DebugLoc Loc);
255 BuildMI(&MBB, DebugLoc(), TII.get(X86::JMP_1)).addMBB(&OldLayoutSucc); in splitEdge()
428 DebugLoc Loc; in runOnMachineFunction()
592 BuildMI(*MBB, InsertPt, DebugLoc(), TII->get(X86::LFENCE)); in hardenEdgesWithLFENCE()
757 auto CMovI = BuildMI(CheckingMBB, InsertPt, DebugLoc(), in tracePredStateThroughCFG()
1115 auto AddrI = BuildMI(*Pred, InsertPt, DebugLoc(), in tracePredStateThroughIndirectBranches()
[all …]
/netbsd-src/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()
346 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI()
362 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI()
371 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI()
381 const DebugLoc &DL, const MCInstrDesc &MCID, 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()
[all …]
H A DSelectionDAGNodes.h211 inline const DebugLoc &getDebugLoc() const;
601 DebugLoc debugLoc;
711 const DebugLoc &getDebugLoc() const { return debugLoc; }
715 void setDebugLoc(DebugLoc dl) { debugLoc = std::move(dl); }
1056 SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs)
1080 DebugLoc DL;
1094 const DebugLoc &getDebugLoc() const { return DL; }
1161 inline const DebugLoc &SDValue::getDebugLoc() const {
1209 : SDNode(ISD::HANDLENODE, 0, DebugLoc(), getSDVTList(MVT::Other)) {
1234 AddrSpaceCastSDNode(unsigned Order, const DebugLoc &dl, EVT VT,
[all …]
/netbsd-src/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-src/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-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64SpeculationHardening.cpp156 AArch64CC::CondCode &CondCode, DebugLoc DL) const;
164 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()
369 BuildMI(MBB, MBBI, DebugLoc(), TII->get(AArch64::SUBSXri)) in insertSPToRegTaintPropagation()
375 BuildMI(MBB, MBBI, DebugLoc(), TII->get(AArch64::CSINVXr)) in insertSPToRegTaintPropagation()
392 BuildMI(MBB, MBBI, DebugLoc(), TII->get(AArch64::ADDXri)) in insertRegToSPTaintPropagation()
[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-src/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,
78 const DebugLoc &DL, unsigned Ssub0, unsigned Ssub1);
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()
[all …]
/netbsd-src/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-src/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-src/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-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
H A DLeonPasses.cpp42 DebugLoc DL = DebugLoc(); in runOnMachineFunction()
129 DebugLoc DL = DebugLoc(); in runOnMachineFunction()
/netbsd-src/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-src/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-src/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-src/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-src/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);
206 int RegNum, const DebugLoc &DL);
218 static DebugLoc getLastDebugLocInBB(MachineBasicBlock *MBB);
432 int NewOpcode, const DebugLoc &DL) { in insertInstrEnd()
442 const DebugLoc &DL) { in insertInstrBefore()
458 MBB->getParent()->CreateMachineInstr(TII->get(NewOpcode), DebugLoc()); in insertInstrBefore()
466 MachineBasicBlock::iterator I, int NewOpcode, const DebugLoc &DL) { in insertCondBranchBefore()
480 int RegNum, const DebugLoc &DL) { in insertCondBranchBefore()
[all …]
/netbsd-src/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