Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Utils/
DLocal.cpp298 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) { in isInstructionTriviallyDead() local
299 if (DDI->getAddress()) in isInstructionTriviallyDead()
1038 bool llvm::ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI, in ConvertDebugDeclareToDebugValue() argument
1040 auto *DIVar = DDI->getVariable(); in ConvertDebugDeclareToDebugValue()
1041 auto *DIExpr = DDI->getExpression(); in ConvertDebugDeclareToDebugValue()
1056 DDI->getDebugLoc(), SI); in ConvertDebugDeclareToDebugValue()
1059 DDI->getDebugLoc(), SI); in ConvertDebugDeclareToDebugValue()
1065 bool llvm::ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI, in ConvertDebugDeclareToDebugValue() argument
1067 auto *DIVar = DDI->getVariable(); in ConvertDebugDeclareToDebugValue()
1068 auto *DIExpr = DDI->getExpression(); in ConvertDebugDeclareToDebugValue()
[all …]
DPromoteMemoryToRegister.cpp403 if (DbgDeclareInst *DDI = Info.DbgDeclare) { in rewriteSingleStoreAlloca() local
405 ConvertDebugDeclareToDebugValue(DDI, Info.OnlyStore, DIB); in rewriteSingleStoreAlloca()
406 DDI->eraseFromParent(); in rewriteSingleStoreAlloca()
407 LBI.deleteValue(DDI); in rewriteSingleStoreAlloca()
494 if (DbgDeclareInst *DDI = Info.DbgDeclare) { in promoteSingleBlockAlloca() local
496 ConvertDebugDeclareToDebugValue(DDI, SI, DIB); in promoteSingleBlockAlloca()
508 if (DbgDeclareInst *DDI = Info.DbgDeclare) { in promoteSingleBlockAlloca() local
509 DDI->eraseFromParent(); in promoteSingleBlockAlloca()
510 LBI.deleteValue(DDI); in promoteSingleBlockAlloca()
674 if (DbgDeclareInst *DDI = AllocaDbgDeclares[i]) in run() local
[all …]
/external/llvm/tools/llvm-dis/
Dllvm-dis.cpp97 if (const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) { in printInfoComment() local
102 OS << " [debug variable = " << DDI->getVariable()->getName() << "]"; in printInfoComment()
/external/llvm/include/llvm/Transforms/Utils/
DLocal.h258 bool ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI,
263 bool ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI,
/external/llvm/lib/IR/
DDebugInfo.cpp213 const DbgDeclareInst *DDI) { in processDeclare() argument
214 auto *N = dyn_cast<MDNode>(DDI->getVariable()); in processDeclare()
DVerifier.cpp3856 auto *DDI = cast<DbgDeclareInst>(&I); in verifyBitPieceExpression() local
3857 V = dyn_cast_or_null<DILocalVariable>(DDI->getRawVariable()); in verifyBitPieceExpression()
3858 E = dyn_cast_or_null<DIExpression>(DDI->getRawExpression()); in verifyBitPieceExpression()
/external/llvm/include/llvm/IR/
DDebugInfo.h77 void processDeclare(const Module &M, const DbgDeclareInst *DDI);
/external/mesa3d/src/gallium/docs/
Dd3d11ddi.txt9 Also note that this is specifically for the DirectX 10/11 Windows Vista/7 DDI interfaces.
12 The user-visible DirectX 10/11 interfaces are distinct from the kernel DDI, but they match very clo…
29 d3d10umddi.h contains the DDI interface analyzed in this document: note that it is much easier to r…
32 d3dumddi.h contains the DirectX 9 DDI interface
82 * DirectX 10/11 DDI functions and Gallium equivalents
/external/llvm/lib/Transforms/IPO/
DInliner.cpp236 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(U)) in InlineCallIfPossible() local
237 DDI->moveBefore(AvailableAlloca->getNextNode()); in InlineCallIfPossible()
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp1066 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(U)) in run() local
1067 DDIs.push_back(DDI); in run()
1077 DbgDeclareInst *DDI = *I; in run() local
1078 DDI->eraseFromParent(); in run()
1097 DbgDeclareInst *DDI = *I; in updateDebugInfo() local
1099 ConvertDebugDeclareToDebugValue(DDI, SI, *DIB); in updateDebugInfo()
1101 ConvertDebugDeclareToDebugValue(DDI, LI, *DIB); in updateDebugInfo()
/external/clang/lib/CodeGen/
DCodeGenModule.cpp1841 auto DDI = DeferredDecls.find(MangledName); in GetOrCreateLLVMFunction() local
1842 if (DDI != DeferredDecls.end()) { in GetOrCreateLLVMFunction()
1846 addDeferredDeclToEmit(F, DDI->second); in GetOrCreateLLVMFunction()
1847 DeferredDecls.erase(DDI); in GetOrCreateLLVMFunction()
1997 auto DDI = DeferredDecls.find(MangledName); in GetOrCreateLLVMGlobal() local
1998 if (DDI != DeferredDecls.end()) { in GetOrCreateLLVMGlobal()
2001 addDeferredDeclToEmit(GV, DDI->second); in GetOrCreateLLVMGlobal()
2002 DeferredDecls.erase(DDI); in GetOrCreateLLVMGlobal()
/external/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp992 DenseMap<MachineInstr*, unsigned>::iterator DDI = DistanceMap.find(&DefMI); in isDefTooClose() local
993 if (DDI == DistanceMap.end()) in isDefTooClose()
995 unsigned DefDist = DDI->second; in isDefTooClose()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp943 DanglingDebugInfo &DDI = DanglingDebugInfoMap[V]; in resolveDanglingDebugInfo() local
944 if (DDI.getDI()) { in resolveDanglingDebugInfo()
945 const DbgValueInst *DI = DDI.getDI(); in resolveDanglingDebugInfo()
946 DebugLoc dl = DDI.getdl(); in resolveDanglingDebugInfo()
947 unsigned DbgSDNodeOrder = DDI.getSDNodeOrder(); in resolveDanglingDebugInfo()
4525 DanglingDebugInfo DDI(&DI, dl, SDNodeOrder); in visitIntrinsicCall() local
4526 DanglingDebugInfoMap[V] = DDI; in visitIntrinsicCall()
/external/icu/icu4c/source/data/unidata/
DUnicodeData.txt4146 12FA;ETHIOPIC SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
12278 A138;YI SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
Dppucd.txt5989 cp;12FA;na=ETHIOPIC SYLLABLE DDI
15178 cp;A138;na=YI SYLLABLE DDI
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/unicode/
DUnicodeData.txt4146 12FA;ETHIOPIC SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
12278 A138;YI SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
DUnicodeData.txt4146 12FA;ETHIOPIC SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
12278 A138;YI SYLLABLE DDI;Lo;0;L;;;;;N;;;;;