Home
last modified time | relevance | path

Searched refs:DbgLoc (Results 1 – 19 of 19) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/Target/ARM/
DARMInstructionSelector.cpp485 DbgLoc(MIB->getDebugLoc()) {} in InsertInfo()
489 const DebugLoc &DbgLoc; member
494 (void)BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, TII.get(Opcodes.MOVi)) in putConstant()
580 BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, TII.get(Helper.ComparisonOpcode)) in insertComparison()
589 auto ReadI = BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, in insertComparison()
597 auto Mov1I = BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, in insertComparison()
771 auto &DbgLoc = MIB->getDebugLoc(); in selectSelect() local
777 auto CmpI = BuildMI(MBB, InsertBefore, DbgLoc, TII.get(Opcodes.TSTri)) in selectSelect()
792 auto Mov1I = BuildMI(MBB, InsertBefore, DbgLoc, TII.get(Opcodes.MOVCCr)) in selectSelect()
/openbsd/src/gnu/llvm/llvm/include/llvm/IR/
DInstruction.h44 DebugLoc DbgLoc; // 'dbg' Metadata cache.
257 bool hasMetadata() const { return DbgLoc || Value::hasMetadata(); }
355 void setDebugLoc(DebugLoc Loc) { DbgLoc = std::move(Loc); }
358 const DebugLoc &getDebugLoc() const { return DbgLoc; }
DIRBuilder.h365 DebugLoc DbgLoc; variable
370 DbgLoc(B.getCurrentDebugLocation()) {} in InsertPointGuard()
377 Builder.SetCurrentDebugLocation(DbgLoc); in ~InsertPointGuard()
/openbsd/src/gnu/llvm/llvm/include/llvm/Transforms/Utils/
DScalarEvolutionExpander.h122 DebugLoc DbgLoc; variable
131 DbgLoc(B.getCurrentDebugLocation()), SE(SE) { in SCEVInsertPointGuard()
142 Builder.SetCurrentDebugLocation(DbgLoc); in ~SCEVInsertPointGuard()
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DSwiftErrorValueTracking.h96 bool createEntriesInEntryBlock(DebugLoc DbgLoc);
DSwitchLoweringUtils.h138 DebugLoc DbgLoc; member
162 DbgLoc(dl), TrueProb(trueprob), FalseProb(falseprob) {}
DMachineInstr.h279 DebugLoc DbgLoc; // Source line information. variable
445 const DebugLoc &getDebugLoc() const { return DbgLoc; }
1776 DbgLoc = std::move(DL);
1777 assert(DbgLoc.hasTrivialDestructor() && "Expected trivial destructor");
DFastISel.h443 void fastEmitBranch(MachineBasicBlock *MSucc, const DebugLoc &DbgLoc);
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DSwiftErrorValueTracking.cpp115 bool SwiftErrorValueTracking::createEntriesInEntryBlock(DebugLoc DbgLoc) { in createEntriesInEntryBlock() argument
136 BuildMI(*MBB, MBB->getFirstNonPHI(), DbgLoc, in createEntriesInEntryBlock()
DMachineInstr.cpp98 : MCID(&TID), DbgLoc(std::move(DL)), DebugInstrNum(0) { in MachineInstr()
99 assert(DbgLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr()
116 : MCID(&MI.getDesc()), Info(MI.Info), DbgLoc(MI.getDebugLoc()), in MachineInstr()
118 assert(DbgLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr()
/openbsd/src/gnu/llvm/llvm/lib/IR/
DMetadata.cpp1461 DbgLoc = DebugLoc(Node); in setMetadata()
1523 return DbgLoc.getAsMDNode(); in getMetadataImpl()
1532 if (DbgLoc) { in getAllMetadataImpl()
1534 std::make_pair((unsigned)LLVMContext::MD_dbg, DbgLoc.getAsMDNode())); in getAllMetadataImpl()
DDebugInfo.cpp212 if (auto DbgLoc = I.getDebugLoc()) in processInstruction() local
213 processLocation(M, DbgLoc.get()); in processInstruction()
/openbsd/src/gnu/llvm/llvm/lib/Target/X86/
DX86InstructionSelector.cpp1432 const DebugLoc &DbgLoc = I.getDebugLoc(); in materializeFP() local
1448 BuildMI(*I.getParent(), I, DbgLoc, TII.get(X86::MOV64ri), AddrReg) in materializeFP()
1456 addDirectMem(BuildMI(*I.getParent(), I, DbgLoc, TII.get(Opc), DstReg), in materializeFP()
1474 BuildMI(*I.getParent(), I, DbgLoc, TII.get(Opc), DstReg), CPI, PICBase, in materializeFP()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp1308 DILocalVariable *Var, DebugLoc DbgLoc) { in processDbgDeclare() argument
1313 assert(DbgLoc && "Missing location"); in processDbgDeclare()
1340 << ", DbgLoc=" << DbgLoc << "\n"); in processDbgDeclare()
1341 MF->setVariableDbgInfo(Var, Expr, FI, DbgLoc); in processDbgDeclare()
DSelectionDAGBuilder.h372 DIExpression *Expr, DebugLoc DbgLoc, unsigned Order,
DFastISel.cpp1563 const DebugLoc &DbgLoc) { in fastEmitBranch() argument
1572 SmallVector<MachineOperand, 0>(), DbgLoc); in fastEmitBranch()
DSelectionDAGBuilder.cpp1387 DIExpression *Expr, DebugLoc DbgLoc, in handleDebugValue() argument
1426 EmitFuncArgumentDbgValue(V, Var, Expr, DbgLoc, in handleDebugValue()
1455 isa<Argument>(V) && Var->isParameter() && !DbgLoc.getInlinedAt(); in handleDebugValue()
1493 Var, *FragmentExpr, RegAndSize.first, false, DbgLoc, SDNodeOrder); in handleDebugValue()
1511 /*IsIndirect=*/false, DbgLoc, in handleDebugValue()
/openbsd/src/gnu/llvm/llvm/lib/Transforms/Coroutines/
DCoroSplit.cpp806 auto DbgLoc = in deriveNewFramePointer() local
812 CallerContext->setDebugLoc(DbgLoc); in deriveNewFramePointer()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
DIRTranslator.cpp825 MIB.setDebugLoc(CB.DbgLoc); in emitSwitchCase()
3453 DebugLoc DbgLoc = F.getEntryBlock().getFirstNonPHI()->getDebugLoc(); in runOnMachineFunction() local
3455 SwiftError.createEntriesInEntryBlock(DbgLoc); in runOnMachineFunction()