OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DVI
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineDebugify.cpp
75
auto *
DVI
= dyn_cast<DbgValueInst>(U.getUser());
76
if (!
DVI
||
DVI
->getFunction() != &F)
78
unsigned Line =
DVI
->getDebugLoc().getLine();
80
Line2Var[Line] =
DVI
->getVariable();
82
EarliestDVI =
DVI
;
83
Expr =
DVI
->getExpression();
CodeGenPrepare.cpp
2911
for (auto *
DVI
: DbgValues)
2912
DVI
->replaceVariableLocationOp(New, Inst);
7971
DbgValueInst &
DVI
= *cast<DbgValueInst>(I);
7975
for (Value *Location :
DVI
.getValues()) {
7984
DVI
.replaceVariableLocationOp(Location, SunkAddr);
8003
DbgValueInst *
DVI
= dyn_cast<DbgValueInst>(Insn);
8004
if (!
DVI
)
8008
for (Value *V :
DVI
->getValues())
8012
// This
DVI
may depend on multiple instructions, complicating any
8014
// "undef" the
DVI
if it has more than one instruction and any of them d
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CodeExtractor.cpp
1455
for (DbgVariableIntrinsic *
DVI
: DbgUsers)
1456
if (
DVI
->getFunction() != &F)
1457
DVI
->eraseFromParent();
1526
auto *
DVI
= cast<DbgVariableIntrinsic>(DII);
1528
if (any_of(
DVI
->location_ops(), IsInvalidLocation)) {
1529
DebugIntrinsicsToDelete.push_back(
DVI
);
1534
DILocalVariable *OldVar =
DVI
->getVariable();
1541
DVI
->setVariable(cast<DILocalVariable>(NewVar));
LoopUtils.cpp
690
auto *
DVI
= dyn_cast<DbgVariableIntrinsic>(&I);
691
if (!
DVI
)
694
DeadDebugSet.find({
DVI
->getVariable(),
DVI
->getExpression()});
697
DeadDebugSet.insert({
DVI
->getVariable(),
DVI
->getExpression()});
698
DeadDebugInst.push_back(
DVI
);
711
for (auto *
DVI
: DeadDebugInst)
713
DVI
->getVariable(),
DVI
->getExpression()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp
5843
auto
DVI
= dyn_cast<DbgValueInst>(&I);
5844
if (!
DVI
)
5846
for (unsigned Idx = 0; Idx <
DVI
->getNumVariableLocationOps(); ++Idx) {
5849
Value *V =
DVI
->getVariableLocationOp(Idx);
5866
DbgValueToEqualSet[
DVI
].push_back({Idx, std::move(EqSet)});
5872
DVI
->hasArgList() ?
DVI
->getRawLocation()
5874
DVI
->getVariableLocationOp(0)->getType()));
5875
DbgValueToLocation[
DVI
] = {
DVI
->getExpression(), RawLocation}
[
all
...]
Completed in 34 milliseconds
Indexes created Mon Jun 15 00:25:07 UTC 2026