OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DeadInsts
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp
421
SmallVector<WeakVH, 16>
DeadInsts
;
422
simplifyLoopIVs(L, SE, LPM,
DeadInsts
);
426
while (!
DeadInsts
.empty())
428
dyn_cast_or_null<Instruction>(&*
DeadInsts
.pop_back_val()))
SimplifyIndVar.cpp
49
SmallVectorImpl<WeakVH> &
DeadInsts
;
60
DeadInsts
(Dead),
143
DeadInsts
.push_back(IVOperand);
180
DeadInsts
.push_back(ICmp);
231
DeadInsts
.push_back(Rem);
262
DeadInsts
.push_back(UseInst);
PromoteMemoryToRegister.cpp
68
SmallVector<Instruction *, 8>
DeadInsts
;
83
DeadInsts
.clear();
163
DeadInsts
.push_back(&BC);
171
DeadInsts
.push_back(&GEPI);
183
DeadInsts
.push_back(&I);
197
DeadInsts
.push_back(&II);
366
SmallVectorImpl<Instruction *> &
DeadInsts
) {
367
while (!
DeadInsts
.empty()) {
368
Instruction *I =
DeadInsts
.pop_back_val();
392
DeadInsts
.push_back(Op)
[
all
...]
/external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp
74
SmallVector<WeakVH, 16>
DeadInsts
;
100
DeadInsts
.clear();
583
DeadInsts
.push_back(ExitVal);
594
DeadInsts
.push_back(Inst);
717
SmallVectorImpl<WeakVH> &
DeadInsts
;
736
DeadInsts
(DI) {
[
all
...]
ScalarReplAggregates.cpp
92
///
DeadInsts
- Keep track of instructions we have made dead, so that
94
SmallVector<Value*, 32>
DeadInsts
;
[
all
...]
SROA.cpp
[
all
...]
LoopStrengthReduce.cpp
752
DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &
DeadInsts
) {
755
while (!
DeadInsts
.empty()) {
756
Value *V =
DeadInsts
.pop_back_val();
766
DeadInsts
.push_back(U);
[
all
...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp
175
SmallPtrSet<Instruction*, 32>
DeadInsts
;
231
DeadInsts
.insert(Exn);
232
DeadInsts
.insert(Sel);
258
I =
DeadInsts
.begin(), E =
DeadInsts
.end(); I != E; ++I) {
[
all
...]
/external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp
[
all
...]
Completed in 140 milliseconds