Home
last modified time | relevance | path

Searched refs:DVI (Results 1 – 25 of 76) sorted by relevance

1234

/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt/
DDebugify.cpp170 bool diagnoseMisSizedDbgValue(Module &M, DbgValueInst *DVI) { in diagnoseMisSizedDbgValue() argument
176 Value *V = DVI->getValue(); in diagnoseMisSizedDbgValue()
182 if (DVI->getExpression()->getNumElements()) in diagnoseMisSizedDbgValue()
187 Optional<uint64_t> DbgVarSize = DVI->getFragmentSizeInBits(); in diagnoseMisSizedDbgValue()
193 auto Signedness = DVI->getVariable()->getSignedness(); in diagnoseMisSizedDbgValue()
203 DVI->print(dbg()); in diagnoseMisSizedDbgValue()
263 auto *DVI = dyn_cast<DbgValueInst>(&I); in checkDebugifyMetadata() local
264 if (!DVI) in checkDebugifyMetadata()
268 (void)to_integer(DVI->getVariable()->getName(), Var, 10); in checkDebugifyMetadata()
270 bool HasBadSize = diagnoseMisSizedDbgValue(M, DVI); in checkDebugifyMetadata()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DDebugInfoProbe.cpp82 } else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(BI)) { in initialize() local
83 Addr = DVI->getValue(); in initialize()
84 Node = DVI->getVariable(); in initialize()
133 } else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(BI)) { in finalize() local
134 Addr = DVI->getValue(); in finalize()
135 Node = DVI->getVariable(); in finalize()
/external/llvm/lib/Transforms/Utils/
DLocal.cpp304 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in isInstructionTriviallyDead() local
305 if (DVI->getValue()) in isInstructionTriviallyDead()
1050 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(PrevI)) in LdStHasDebugValue() local
1051 if (DVI->getValue() == I->getOperand(0) && in LdStHasDebugValue()
1052 DVI->getOffset() == 0 && in LdStHasDebugValue()
1053 DVI->getVariable() == DIVar && in LdStHasDebugValue()
1054 DVI->getExpression() == DIExpr) in LdStHasDebugValue()
1252 static void replaceOneDbgValueForAlloca(DbgValueInst *DVI, Value *NewAddress, in replaceOneDbgValueForAlloca() argument
1254 DebugLoc Loc = DVI->getDebugLoc(); in replaceOneDbgValueForAlloca()
1255 auto *DIVar = DVI->getVariable(); in replaceOneDbgValueForAlloca()
[all …]
/external/e2fsprogs/doc/
DMakefile.in14 DVI=texi2dvi --clean
42 -$(Q) $(DVI) $(srcdir)/libext2fs.texinfo
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DLocal.cpp370 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in wouldInstructionBeTriviallyDead() local
371 if (DVI->getValue()) in wouldInstructionBeTriviallyDead()
1205 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(PrevI)) in LdStHasDebugValue() local
1206 if (DVI->getValue() == I->getOperand(0) && in LdStHasDebugValue()
1207 DVI->getVariable() == DIVar && in LdStHasDebugValue()
1208 DVI->getExpression() == DIExpr) in LdStHasDebugValue()
1223 for (auto *DVI : DbgValues) { in PhiHasDebugValue() local
1224 assert(DVI->getValue() == APN); in PhiHasDebugValue()
1225 if ((DVI->getVariable() == DIVar) && (DVI->getExpression() == DIExpr)) in PhiHasDebugValue()
1511 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(U)) in findDbgValues() local
[all …]
DLCSSA.cpp210 for (auto DVI : DbgValues) { in formLCSSAForInstructions() local
211 BasicBlock *UserBB = DVI->getParent(); in formLCSSAForInstructions()
217 DVI->setOperand(0, MetadataAsValue::get(Ctx, ValueAsMetadata::get(V))); in formLCSSAForInstructions()
DBasicBlockUtils.cpp186 for (auto &DVI : DbgValues) { in MergeBlockIntoPredecessor() local
187 auto R = DbgValueSet.insert({DVI->getVariable(), DVI->getExpression()}); in MergeBlockIntoPredecessor()
189 DVI->eraseFromParent(); in MergeBlockIntoPredecessor()
/external/llvm/lib/CodeGen/
DCriticalAntiDepBreaker.cpp648 for (DbgValueVector::iterator DVI = DbgValues.begin(), in BreakAntiDependencies() local
649 DVE = DbgValues.end(); DVI != DVE; ++DVI) in BreakAntiDependencies()
650 if (DVI->second == Q->second->getParent()) in BreakAntiDependencies()
651 UpdateDbgValue(*DVI->first, AntiDepReg, NewReg); in BreakAntiDependencies()
DAggressiveAntiDepBreaker.cpp965 for (DbgValueVector::iterator DVI = DbgValues.begin(), in BreakAntiDependencies() local
966 DVE = DbgValues.end(); DVI != DVE; ++DVI) in BreakAntiDependencies()
967 if (DVI->second == Q.second.Operand->getParent()) in BreakAntiDependencies()
968 UpdateDbgValue(*DVI->first, AntiDepReg, NewReg); in BreakAntiDependencies()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DCriticalAntiDepBreaker.cpp630 for (DbgValueVector::iterator DVI = DbgValues.begin(), in BreakAntiDependencies() local
631 DVE = DbgValues.end(); DVI != DVE; ++DVI) in BreakAntiDependencies()
632 if (DVI->second == Q->second->getParent()) in BreakAntiDependencies()
633 UpdateDbgValue(DVI->first, AntiDepReg, NewReg); in BreakAntiDependencies()
DAggressiveAntiDepBreaker.cpp929 for (DbgValueVector::iterator DVI = DbgValues.begin(), in BreakAntiDependencies() local
930 DVE = DbgValues.end(); DVI != DVE; ++DVI) in BreakAntiDependencies()
931 if (DVI->second == Q->second.Operand->getParent()) in BreakAntiDependencies()
932 UpdateDbgValue(DVI->first, AntiDepReg, NewReg); in BreakAntiDependencies()
/external/swiftshader/third_party/LLVM/tools/llvm-dis/
Dllvm-dis.cpp100 else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in printInfoComment() local
101 DIVariable Var(DVI->getVariable()); in printInfoComment()
/external/u-boot/board/compulab/common/
Domap3_display.c21 DVI, enumerator
157 return DVI; in set_dvi_preset()
439 case DVI: in lcd_enable()
/external/python/cpython2/Doc/library/
Daudioop.rst16 single: Intel/DVI ADPCM
17 single: ADPCM, Intel/DVI
21 This module provides support for a-LAW, u-LAW and Intel/DVI ADPCM encodings.
46 Decode an Intel/DVI ADPCM coded fragment to a linear fragment. See the
119 Convert samples to 4 bit Intel/DVI ADPCM encoding. ADPCM coding is an adaptive
121 and the next, divided by a (varying) step. The Intel/DVI ADPCM algorithm has
/external/python/cpython3/Doc/library/
Daudioop.rst20 single: Intel/DVI ADPCM
21 single: ADPCM, Intel/DVI
25 This module provides support for a-LAW, u-LAW and Intel/DVI ADPCM encodings.
50 Decode an Intel/DVI ADPCM coded fragment to a linear fragment. See the
129 Convert samples to 4 bit Intel/DVI ADPCM encoding. ADPCM coding is an adaptive
131 and the next, divided by a (varying) step. The Intel/DVI ADPCM algorithm has
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dis/
Dllvm-dis.cpp113 else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in printInfoComment() local
118 OS << " [debug variable = " << DVI->getVariable()->getName() << "]"; in printInfoComment()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DCodeGenPrepare.cpp1155 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn); in PlaceDbgValues() local
1156 if (!DVI) { in PlaceDbgValues()
1161 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue()); in PlaceDbgValues()
1163 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI); in PlaceDbgValues()
1164 DVI->removeFromParent(); in PlaceDbgValues()
1166 DVI->insertBefore(VI->getParent()->getFirstInsertionPt()); in PlaceDbgValues()
1168 DVI->insertAfter(VI); in PlaceDbgValues()
DScalarReplAggregates.cpp942 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(*UI)) in run() local
943 DVIs.push_back(DVI); in run()
955 DbgValueInst *DVI = *I; in run() local
956 DVI->eraseFromParent(); in run()
978 DbgValueInst *DVI = *I; in updateDebugInfo() local
990 DIVariable(DVI->getVariable()), in updateDebugInfo()
994 DIVariable(DVI->getVariable()), in updateDebugInfo()
996 DbgVal->setDebugLoc(DVI->getDebugLoc()); in updateDebugInfo()
1000 DIVariable(DVI->getVariable()), LI); in updateDebugInfo()
1001 DbgVal->setDebugLoc(DVI->getDebugLoc()); in updateDebugInfo()
/external/llvm/tools/llvm-dis/
Dllvm-dis.cpp110 else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in printInfoComment() local
115 OS << " [debug variable = " << DVI->getVariable()->getName() << "]"; in printInfoComment()
/external/u-boot/board/advantech/
DKconfig20 HDMI/DisplayPort/DVI, LVDS, VGA
/external/llvm/lib/IR/
DDebugInfo.cpp173 void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) { in processValue() argument
174 auto *N = dyn_cast<MDNode>(DVI->getVariable()); in processValue()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/
DLocal.cpp585 return any_of(ADbgVals, [&](DbgValueInst *DVI) { in TEST() argument
586 assert(DVI->getVariable()->getName() == "2"); in TEST()
587 return DVI->getExpression()->getElements() == Ops; in TEST()
/external/e2fsprogs/lib/et/
DMakefile.in62 DVI=texi2dvi
77 -$(Q) $(DVI) $(srcdir)/com_err.texinfo
/external/llvm/include/llvm/IR/
DDebugInfo.h66 void processValue(const Module &M, const DbgValueInst *DVI);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDebugInfo.h75 void processValue(const Module &M, const DbgValueInst *DVI);

1234