/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/GISel/ |
H A D | PPCInstructionSelector.cpp | 190 const DebugLoc &DbgLoc = I.getDebugLoc(); in selectIntToFP() local 197 BuildMI(MBB, I, DbgLoc, TII.get(PPC::MTVSRD), MoveReg).addReg(SrcReg); in selectIntToFP() 205 BuildMI(MBB, I, DbgLoc, TII.get(ConvOp), DstReg).addReg(MoveReg); in selectIntToFP() 217 const DebugLoc &DbgLoc = I.getDebugLoc(); in selectFPToInt() local 222 BuildMI(MBB, I, DbgLoc, TII.get(TargetOpcode::COPY), CopyReg).addReg(SrcReg); in selectFPToInt() 232 BuildMI(MBB, I, DbgLoc, TII.get(ConvOp), ConvReg).addReg(CopyReg); in selectFPToInt() 235 BuildMI(MBB, I, DbgLoc, TII.get(PPC::MFVSRD), DstReg).addReg(ConvReg); in selectFPToInt() 650 const DebugLoc &DbgLoc = I.getDebugLoc(); in selectConstantPool() local 681 MI = BuildMI(MBB, I, DbgLoc, TII.get(PPC::LDtocCPT), DstReg) in selectConstantPool() 687 BuildMI(MBB, I, DbgLoc, TII.get(PPC::ADDIStocHA8), HaAddrReg) in selectConstantPool() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugProgramInstruction.h | 142 DebugLoc DbgLoc; 147 : DbgLoc(DL), RecordKind(RecordKind) {} in DbgRecord() 200 DebugLoc getDebugLoc() const { return DbgLoc; } in getDebugLoc() 201 void setDebugLoc(DebugLoc Loc) { DbgLoc = std::move(Loc); } in setDebugLoc() 480 return DbgLoc == Other.DbgLoc && isIdenticalToWhenDefined(Other); in isEquivalentTo()
|
H A D | Instruction.h | 74 DebugLoc DbgLoc; // 'dbg' Metadata cache. 363 bool hasMetadata() const { return DbgLoc || Value::hasMetadata(); } 384 return DbgLoc.getAsMDNode(); 463 void setDebugLoc(DebugLoc Loc) { DbgLoc = std::move(Loc); } 466 const DebugLoc &getDebugLoc() const { return DbgLoc; }
|
H A D | IRBuilder.h | 376 DebugLoc DbgLoc; variable 381 DbgLoc(B.getCurrentDebugLocation()) {} in InsertPointGuard() 388 Builder.SetCurrentDebugLocation(DbgLoc); in ~InsertPointGuard()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMInstructionSelector.cpp | 487 DbgLoc(MIB->getDebugLoc()) {} in InsertInfo() 491 const DebugLoc &DbgLoc; member 496 (void)BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, TII.get(Opcodes.MOVi)) in putConstant() 582 BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, TII.get(Helper.ComparisonOpcode)) in insertComparison() 591 auto ReadI = BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, in insertComparison() 599 auto Mov1I = BuildMI(I.MBB, I.InsertBefore, I.DbgLoc, in insertComparison() 773 auto &DbgLoc = MIB->getDebugLoc(); in selectSelect() local 779 auto CmpI = BuildMI(MBB, InsertBefore, DbgLoc, TII.get(Opcodes.TSTri)) in selectSelect() 794 auto Mov1I = BuildMI(MBB, InsertBefore, DbgLoc, TII.get(Opcodes.MOVCCr)) in selectSelect()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | ScalarEvolutionExpander.h | 139 DebugLoc DbgLoc; variable 148 DbgLoc(B.getCurrentDebugLocation()), SE(SE) { in SCEVInsertPointGuard() 159 Builder.SetCurrentDebugLocation(DbgLoc); in ~SCEVInsertPointGuard()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | SwiftErrorValueTracking.h | 96 bool createEntriesInEntryBlock(DebugLoc DbgLoc);
|
H A D | SwitchLoweringUtils.h | 138 DebugLoc DbgLoc; member 162 DbgLoc(dl), TrueProb(trueprob), FalseProb(falseprob) {}
|
H A D | MachineInstr.h | 301 DebugLoc DbgLoc; // Source line information. variable 498 const DebugLoc &getDebugLoc() const { return DbgLoc; } 1861 DbgLoc = std::move(DL); 1862 assert(DbgLoc.hasTrivialDestructor() && "Expected trivial destructor");
|
H A D | FastISel.h | 450 void fastEmitBranch(MachineBasicBlock *MSucc, const DebugLoc &DbgLoc);
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SwiftErrorValueTracking.cpp | 115 bool SwiftErrorValueTracking::createEntriesInEntryBlock(DebugLoc DbgLoc) { in createEntriesInEntryBlock() argument 136 BuildMI(*MBB, MBB->getFirstNonPHI(), DbgLoc, in createEntriesInEntryBlock()
|
H A D | MachineInstr.cpp | 101 DbgLoc(std::move(DL)), DebugInstrNum(0), Opcode(TID.Opcode) { in MachineInstr() 102 assert(DbgLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr() 120 Info(MI.Info), DbgLoc(MI.getDebugLoc()), DebugInstrNum(0), in MachineInstr() 122 assert(DbgLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Metadata.cpp | 1579 return DbgLoc.getAsMDNode(); in getMetadataImpl() 1584 if (DbgLoc && Pred(LLVMContext::MD_dbg, DbgLoc.getAsMDNode())) in eraseMetadataIf() 1585 DbgLoc = {}; in eraseMetadataIf() 1642 DbgLoc = DebugLoc(Node); in setMetadata() 1738 if (DbgLoc) { in getAllMetadataImpl() 1740 std::make_pair((unsigned)LLVMContext::MD_dbg, DbgLoc.getAsMDNode())); in getAllMetadataImpl()
|
H A D | DebugInfo.cpp | 244 if (auto DbgLoc = I.getDebugLoc()) in processInstruction() local 245 processLocation(M, DbgLoc.get()); in processInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.h | 358 DIExpression *Expr, DebugLoc DbgLoc, unsigned Order, 363 DebugLoc DbgLoc, unsigned Order); 626 DebugLoc DbgLoc);
|
H A D | SelectionDAGISel.cpp | 1499 DebugLoc DbgLoc) { in processIfEntryValueDbgDeclare() argument 1513 FuncInfo.MF->setVariableDbgInfo(Var, Expr, PhysReg, DbgLoc); in processIfEntryValueDbgDeclare() 1516 << ", DbgLoc=" << DbgLoc << "\n"); in processIfEntryValueDbgDeclare() 1524 DILocalVariable *Var, DebugLoc DbgLoc) { in processDbgDeclare() argument 1531 if (processIfEntryValueDbgDeclare(FuncInfo, Address, Expr, Var, DbgLoc)) in processDbgDeclare() 1538 assert(DbgLoc && "Missing location"); in processDbgDeclare() 1565 << ", DbgLoc=" << DbgLoc << "\n"); in processDbgDeclare() 1566 MF->setVariableDbgInfo(Var, Expr, FI, DbgLoc); in processDbgDeclare()
|
H A D | FastISel.cpp | 1686 const DebugLoc &DbgLoc) { in fastEmitBranch() argument 1695 SmallVector<MachineOperand, 0>(), DbgLoc); in fastEmitBranch()
|
H A D | SelectionDAGBuilder.cpp | 1575 DebugLoc DbgLoc, in handleKillDebugValue() argument 1580 handleDebugValue(Poison, Var, NewExpr, DbgLoc, Order, in handleKillDebugValue() 1586 DIExpression *Expr, DebugLoc DbgLoc, in handleDebugValue() argument 1592 if (visitEntryValueDbgValue(Values, Var, Expr, DbgLoc)) in handleDebugValue() 1630 EmitFuncArgumentDbgValue(V, Var, Expr, DbgLoc, in handleDebugValue() 1659 isa<Argument>(V) && Var->isParameter() && !DbgLoc.getInlinedAt(); in handleDebugValue() 1697 Var, *FragmentExpr, RegAndSize.first, false, DbgLoc, Order); in handleDebugValue() 1715 /*IsIndirect=*/false, DbgLoc, Order, IsVariadic); in handleDebugValue() 6279 DIExpression *Expr, DebugLoc DbgLoc) { in visitEntryValueDbgValue() argument 6299 Variable, Expr, PhysReg, false /*IsIndidrect*/, DbgLoc, SDNodeOrder); in visitEntryValueDbgValue()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstructionSelector.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/GISel/ |
H A D | X86InstructionSelector.cpp | 1527 const DebugLoc &DbgLoc = I.getDebugLoc(); in materializeFP() local 1541 BuildMI(*I.getParent(), I, DbgLoc, TII.get(X86::MOV64ri), AddrReg) in materializeFP() 1549 addDirectMem(BuildMI(*I.getParent(), I, DbgLoc, TII.get(Opc), DstReg), in materializeFP() 1567 BuildMI(*I.getParent(), I, DbgLoc, TII.get(Opc), DstReg), CPI, PICBase, in materializeFP()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULibCalls.cpp | 1439 DILocation *DbgLoc = DILocation::getMergedLocations(MergeDbgLocs); in fold_sincos() local 1440 B.SetCurrentDebugLocation(DbgLoc); in fold_sincos()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
H A D | CoroSplit.cpp | 855 auto DbgLoc = in deriveNewFramePointer() local 861 CallerContext->setDebugLoc(DbgLoc); in deriveNewFramePointer()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
H A D | VarLocBasedImpl.cpp | 550 const DebugLoc &DbgLoc = MI.getDebugLoc(); in BuildDbgValue() local 609 return BuildMI(MF, DbgLoc, IID, Indirect, MOs, Var, DIExpr); in BuildDbgValue()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | IRTranslator.cpp | 903 MIB.setDebugLoc(CB.DbgLoc); in emitSwitchCase() 3903 DebugLoc DbgLoc = F.getEntryBlock().getFirstNonPHI()->getDebugLoc(); in runOnMachineFunction() local 3905 SwiftError.createEntriesInEntryBlock(DbgLoc); in runOnMachineFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 6762 MDNode *DbgLoc; in parseDebugRecord() local 6763 if (parseMDNode(DbgLoc)) in parseDebugRecord() 6767 DR = DbgLabelRecord::createUnresolvedDbgLabelRecord(Label, DbgLoc); in parseDebugRecord()
|