OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EVI
(Results
1 - 17
of
17
) sorted by null
/external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp
159
ExtractValueInst *
EVI
= dyn_cast<ExtractValueInst>(Val);
160
if (!
EVI
) continue;
161
if (
EVI
->getNumIndices() != 1) continue;
162
if (*
EVI
->idx_begin() == 0)
163
EVI
->replaceAllUsesWith(ExnVal);
164
else if (*
EVI
->idx_begin() == 1)
165
EVI
->replaceAllUsesWith(SelVal);
166
if (
EVI
->getNumUses() == 0)
167
EVI
->eraseFromParent();
Analysis.cpp
299
} else if (const ExtractValueInst *
EVI
= dyn_cast<ExtractValueInst>(V)) {
303
ArrayRef<unsigned> ExtractLoc =
EVI
->getIndices();
/external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp
126
if (const ExtractValueInst *
EVI
= dyn_cast<ExtractValueInst>(Inst))
127
return hash_combine(
EVI
->getOpcode(),
EVI
->getOperand(0),
128
hash_combine_range(
EVI
->idx_begin(),
EVI
->idx_end()));
SCCP.cpp
477
void visitExtractValueInst(ExtractValueInst &
EVI
);
755
void SCCPSolver::visitExtractValueInst(ExtractValueInst &
EVI
) {
758
if (
EVI
.getType()->isStructTy())
759
return markAnythingOverdefined(&
EVI
);
762
if (
EVI
.getNumIndices() != 1)
763
return markOverdefined(&
EVI
);
765
Value *AggVal =
EVI
.getAggregateOperand();
767
unsigned i = *
EVI
.idx_begin();
769
mergeInValue(getValueState(&
EVI
), &
EVI
, EltVal)
[
all
...]
/external/llvm/lib/IR/
Instruction.cpp
305
if (const ExtractValueInst *
EVI
= dyn_cast<ExtractValueInst>(this))
306
return
EVI
->getIndices() == cast<ExtractValueInst>(I)->getIndices();
379
if (const ExtractValueInst *
EVI
= dyn_cast<ExtractValueInst>(this))
380
return
EVI
->getIndices() == cast<ExtractValueInst>(I)->getIndices();
Verifier.cpp
310
void visitExtractValueInst(ExtractValueInst &
EVI
);
[
all
...]
Instructions.cpp
[
all
...]
AsmWriter.cpp
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp
[
all
...]
/external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp
334
if (const ExtractValueInst *
EVI
= dyn_cast<ExtractValueInst>(I1))
335
return
EVI
->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
/external/llvm/lib/Analysis/
ConstantFolding.cpp
[
all
...]
ValueTracking.cpp
761
ExtractValueInst *
EVI
= cast<ExtractValueInst>(I);
762
if (
EVI
->getNumIndices() != 1) break;
763
if (
EVI
->getIndices()[0] == 0) {
[
all
...]
/external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
[
all
...]
/frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp
[
all
...]
/frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp
[
all
...]
/frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp
[
all
...]
/external/llvm/include/llvm/IR/
Instructions.h
[
all
...]
Completed in 2248 milliseconds