Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Utils/
DLocal.cpp290 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) { in isInstructionTriviallyDead() local
291 if (DDI->getAddress()) in isInstructionTriviallyDead()
999 bool llvm::ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI, in ConvertDebugDeclareToDebugValue() argument
1001 DIVariable DIVar = DDI->getVariable(); in ConvertDebugDeclareToDebugValue()
1002 DIExpression DIExpr = DDI->getExpression(); in ConvertDebugDeclareToDebugValue()
1018 DDI->getDebugLoc(), SI); in ConvertDebugDeclareToDebugValue()
1021 DDI->getDebugLoc(), SI); in ConvertDebugDeclareToDebugValue()
1027 bool llvm::ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI, in ConvertDebugDeclareToDebugValue() argument
1029 DIVariable DIVar = DDI->getVariable(); in ConvertDebugDeclareToDebugValue()
1030 DIExpression DIExpr = DDI->getExpression(); in ConvertDebugDeclareToDebugValue()
[all …]
DPromoteMemoryToRegister.cpp419 if (DbgDeclareInst *DDI = Info.DbgDeclare) { in rewriteSingleStoreAlloca() local
422 ConvertDebugDeclareToDebugValue(DDI, Info.OnlyStore, DIB); in rewriteSingleStoreAlloca()
423 DDI->eraseFromParent(); in rewriteSingleStoreAlloca()
424 LBI.deleteValue(DDI); in rewriteSingleStoreAlloca()
503 if (DbgDeclareInst *DDI = Info.DbgDeclare) { in promoteSingleBlockAlloca() local
506 ConvertDebugDeclareToDebugValue(DDI, SI, DIB); in promoteSingleBlockAlloca()
518 if (DbgDeclareInst *DDI = Info.DbgDeclare) { in promoteSingleBlockAlloca() local
519 DDI->eraseFromParent(); in promoteSingleBlockAlloca()
520 LBI.deleteValue(DDI); in promoteSingleBlockAlloca()
675 if (DbgDeclareInst *DDI = AllocaDbgDeclares[i]) in run() local
[all …]
/external/llvm/tools/llvm-dis/
Dllvm-dis.cpp96 if (const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) { in printInfoComment() local
97 DIVariable Var(DDI->getVariable()); in printInfoComment()
/external/llvm/include/llvm/Transforms/Utils/
DLocal.h257 bool ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI,
262 bool ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI,
/external/llvm/lib/IR/
DDebugInfo.cpp222 const DbgDeclareInst *DDI) { in processDeclare() argument
223 MDNode *N = dyn_cast<MDNode>(DDI->getVariable()); in processDeclare()
DVerifier.cpp3457 auto *DDI = cast<DbgDeclareInst>(&I); in verifyBitPieceExpression() local
3458 V = dyn_cast_or_null<MDLocalVariable>(DDI->getRawVariable()); in verifyBitPieceExpression()
3459 E = dyn_cast_or_null<MDExpression>(DDI->getRawExpression()); in verifyBitPieceExpression()
/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/Scalar/
DScalarReplAggregates.cpp1065 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(U)) in run() local
1066 DDIs.push_back(DDI); in run()
1076 DbgDeclareInst *DDI = *I; in run() local
1077 DDI->eraseFromParent(); in run()
1096 DbgDeclareInst *DDI = *I; in updateDebugInfo() local
1098 ConvertDebugDeclareToDebugValue(DDI, SI, *DIB); in updateDebugInfo()
1100 ConvertDebugDeclareToDebugValue(DDI, LI, *DIB); in updateDebugInfo()
DSROA.cpp1101 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(U)) in run() local
1102 DDIs.push_back(DDI); in run()
1148 for (DbgDeclareInst *DDI : DDIs) in updateDebugInfo()
1150 ConvertDebugDeclareToDebugValue(DDI, SI, DIB); in updateDebugInfo()
1152 ConvertDebugDeclareToDebugValue(DDI, LI, DIB); in updateDebugInfo()
/external/clang/lib/CodeGen/
DCodeGenModule.cpp1616 auto DDI = DeferredDecls.find(MangledName); in GetOrCreateLLVMFunction() local
1617 if (DDI != DeferredDecls.end()) { in GetOrCreateLLVMFunction()
1621 addDeferredDeclToEmit(F, DDI->second); in GetOrCreateLLVMFunction()
1622 DeferredDecls.erase(DDI); in GetOrCreateLLVMFunction()
1766 auto DDI = DeferredDecls.find(MangledName); in GetOrCreateLLVMGlobal() local
1767 if (DDI != DeferredDecls.end()) { in GetOrCreateLLVMGlobal()
1770 addDeferredDeclToEmit(GV, DDI->second); in GetOrCreateLLVMGlobal()
1771 DeferredDecls.erase(DDI); in GetOrCreateLLVMGlobal()
/external/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp996 DenseMap<MachineInstr*, unsigned>::iterator DDI = DistanceMap.find(&DefMI); in isDefTooClose() local
997 if (DDI == DistanceMap.end()) in isDefTooClose()
999 unsigned DefDist = DDI->second; in isDefTooClose()
/external/llvm/include/llvm/IR/
DDebugInfo.h462 void processDeclare(const Module &M, const DbgDeclareInst *DDI);
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp996 DanglingDebugInfo &DDI = DanglingDebugInfoMap[V]; in resolveDanglingDebugInfo() local
997 if (DDI.getDI()) { in resolveDanglingDebugInfo()
998 const DbgValueInst *DI = DDI.getDI(); in resolveDanglingDebugInfo()
999 DebugLoc dl = DDI.getdl(); in resolveDanglingDebugInfo()
1000 unsigned DbgSDNodeOrder = DDI.getSDNodeOrder(); in resolveDanglingDebugInfo()
4766 DanglingDebugInfo DDI(&DI, dl, SDNodeOrder); in visitIntrinsicCall() local
4767 DanglingDebugInfoMap[V] = DDI; in visitIntrinsicCall()
/external/icu/icu4c/source/data/unidata/
DUnicodeData.txt4140 12FA;ETHIOPIC SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
12258 A138;YI SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
Dppucd.txt5961 cp;12FA;na=ETHIOPIC SYLLABLE DDI
15121 cp;A138;na=YI SYLLABLE DDI
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
DUnicodeData.txt4140 12FA;ETHIOPIC SYLLABLE DDI;Lo;0;L;;;;;N;;;;;
12258 A138;YI SYLLABLE DDI;Lo;0;L;;;;;N;;;;;