Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h130 Print(const Value *V, const DanglingDebugInfo &DDI) : V(V), DDI(DDI) {} in Print()
132 const DanglingDebugInfo &DDI; member
135 OS << "DDI(var=" << *P.DDI.getVariable();
141 OS << ", expr=" << *P.DDI.getExpression()
142 << ", order=" << P.DDI.getSDNodeOrder()
143 << ", loc=" << P.DDI.getDebugLoc() << ")";
153 const DanglingDebugInfo &DDI) { in printDDI() argument
154 return DanglingDebugInfo::Print(V, DDI); in printDDI()
353 void salvageUnresolvedDbgValue(const Value *V, DanglingDebugInfo &DDI);
H A DSelectionDAGBuilder.cpp1427 auto isMatchingDbgValue = [&](DanglingDebugInfo &DDI) { in dropDanglingDebugInfo() argument
1428 DIVariable *DanglingVariable = DDI.getVariable(); in dropDanglingDebugInfo()
1429 DIExpression *DanglingExpr = DDI.getExpression(); in dropDanglingDebugInfo()
1432 << printDDI(nullptr, DDI) << "\n"); in dropDanglingDebugInfo()
1443 for (auto &DDI : DDIV) in dropDanglingDebugInfo() local
1444 if (isMatchingDbgValue(DDI)) in dropDanglingDebugInfo()
1445 salvageUnresolvedDbgValue(DDIMI.first, DDI); in dropDanglingDebugInfo()
1460 for (auto &DDI : DDIV) { in resolveDanglingDebugInfo() local
1461 DebugLoc DL = DDI.getDebugLoc(); in resolveDanglingDebugInfo()
1463 unsigned DbgSDNodeOrder = DDI.getSDNodeOrder(); in resolveDanglingDebugInfo()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp122 if (const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) { in printInfoComment() local
127 OS << " [debug variable = " << DDI->getVariable()->getName() << "]"; in printInfoComment()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp44 static size_t size(const MachOPlatform::MachOJITDylibDepInfo &DDI) { in size() argument
45 return SPSMachOJITDylibDepInfo::AsArgList::size(DDI.Sealed, DDI.DepHeaders); in size()
49 const MachOPlatform::MachOJITDylibDepInfo &DDI) { in serialize() argument
50 return SPSMachOJITDylibDepInfo::AsArgList::serialize(OB, DDI.Sealed, in serialize()
51 DDI.DepHeaders); in serialize()
55 MachOPlatform::MachOJITDylibDepInfo &DDI) { in deserialize() argument
56 return SPSMachOJITDylibDepInfo::AsArgList::deserialize(IB, DDI.Sealed, in deserialize()
57 DDI.DepHeaders); in deserialize()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp970 auto *I = llvm::find_if(Container, [](auto *DDI) { in cacheDIVar() argument
971 return DDI->getExpression()->getNumElements() == 0; in cacheDIVar()
1914 auto SalvageOne = [&](auto *DDI) { in insertSpills() argument
1921 ValueAsMetadata::get(CurrentReload), DDI->getVariable(), in insertSpills()
1922 DDI->getExpression(), DDI->getDebugLoc(), in insertSpills()
1928 .insertDeclare(CurrentReload, DDI->getVariable(), in insertSpills()
1929 DDI->getExpression(), DDI->getDebugLoc(), in insertSpills()
1934 coro::salvageDebugInfo(ArgToAllocaMap, *DDI, Shape.OptimizeFrame, in insertSpills()
H A DCoroSplit.cpp1964 for (auto *DDI : DbgInsts) in splitCoroutine() local
1965 coro::salvageDebugInfo(ArgToAllocaMap, *DDI, Shape.OptimizeFrame, in splitCoroutine()
/freebsd/sys/contrib/device-tree/Bindings/arm/
H A Dcoresight-cpu-debug.txt4 reference manual (ARM DDI 0487A.k) Chapter 'Part H: External debug'. The
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp1929 if (auto *DDI = dyn_cast<DbgDeclareInst>(&BI)) in LowerDbgDeclare() local
1930 Dbgs.push_back(DDI); in LowerDbgDeclare()
1941 auto LowerOne = [&](auto *DDI) { in LowerDbgDeclare() argument
1943 dyn_cast_or_null<AllocaInst>(DDI->getVariableLocationOp(0)); in LowerDbgDeclare()
1971 ConvertDebugDeclareToDebugValue(DDI, SI, DIB); in LowerDbgDeclare()
1973 ConvertDebugDeclareToDebugValue(DDI, LI, DIB); in LowerDbgDeclare()
1979 DebugLoc NewLoc = getDebugValueLoc(DDI); in LowerDbgDeclare()
1981 DIExpression::append(DDI->getExpression(), dwarf::DW_OP_deref); in LowerDbgDeclare()
1982 insertDbgValueOrDbgVariableRecord(DIB, AI, DDI->getVariable(), in LowerDbgDeclare()
1992 DDI->eraseFromParent(); in LowerDbgDeclare()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp659 } else if (auto *DDI = dyn_cast<DbgDeclareInst>(&*BI)) { in filterInstsUnrelatedToPDI() local
660 ExamineDbgDeclare(DDI, PDIRelated); in filterInstsUnrelatedToPDI()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DAssignmentTrackingAnalysis.cpp2272 for (auto *DDI : InstDeclares) in buildOverlapMapAndRecordDeclares() local
2273 FnVarLocs->addSingleLocVar(DebugVariable(DDI), DDI->getExpression(), in buildOverlapMapAndRecordDeclares()
2274 DDI->getDebugLoc(), DDI->getWrappedLocation()); in buildOverlapMapAndRecordDeclares()
H A DTwoAddressInstructionPass.cpp1081 DenseMap<MachineInstr*, unsigned>::iterator DDI = DistanceMap.find(&DefMI); in isDefTooClose() local
1082 if (DDI == DistanceMap.end()) in isDefTooClose()
1084 unsigned DefDist = DDI->second; in isDefTooClose()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfo.cpp61 if (auto *DDI = dyn_cast<DbgDeclareInst>(U)) in findDbgDeclares() local
62 Declares.push_back(DDI); in findDbgDeclares()
2184 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(&I)) in runOnFunction() local
2185 ProcessDeclare(DDI, DbgDeclares); in runOnFunction()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp4720 auto DDI = DeferredDecls.find(MangledName); in GetOrCreateLLVMFunction() local
4721 if (DDI != DeferredDecls.end()) { in GetOrCreateLLVMFunction()
4725 addDeferredDeclToEmit(DDI->second); in GetOrCreateLLVMFunction()
4726 DeferredDecls.erase(DDI); in GetOrCreateLLVMFunction()
4977 auto DDI = DeferredDecls.find(MangledName); in GetOrCreateLLVMGlobal() local
4978 if (DDI != DeferredDecls.end()) { in GetOrCreateLLVMGlobal()
4981 addDeferredDeclToEmit(DDI->second); in GetOrCreateLLVMGlobal()
4982 DeferredDecls.erase(DDI); in GetOrCreateLLVMGlobal()
H A DCGStmtOpenMP.cpp4808 if (auto DDI = dyn_cast<llvm::DbgVariableIntrinsic>(&Last)) in EmitOMPTaskBasedDirective() local
4809 UpdateExpr(DDI->getContext(), DDI, Offset); in EmitOMPTaskBasedDirective()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp628 if (auto *DDI = dyn_cast<DbgDeclareInst>(&I)) in upgradeDeclareExpressions() local
629 UpdateDeclareIfNeeded(DDI); in upgradeDeclareExpressions()
/freebsd/sys/conf/
H A DNOTES2516 # USB serial support for DDI pocket's PHS
/freebsd/crypto/heimdal/lib/wind/
H A DUnicodeData.txt3549 12FA;ETHIOPIC SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
9707 A138;YI SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
H A DNormalizationTest.txt5233 B760;B760;1104 1175;B760;1104 1175; # (띠; 띠; 띠; 띠; 띠; ) HANGUL SYLLABLE DDI
/freebsd/share/misc/
H A Dusb_vendors23437 0201 DDI to Reader-19