HomeSort by relevance Sort by last modified time
    Searched defs:DeadInsts (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 415 SmallVector<WeakVH, 16> DeadInsts;
416 simplifyLoopIVs(L, SE, LPM, DeadInsts);
420 while (!DeadInsts.empty())
422 dyn_cast_or_null<Instruction>(&*DeadInsts.pop_back_val()))
SimplifyIndVar.cpp 51 SmallVectorImpl<WeakVH> &DeadInsts;
62 DeadInsts(Dead),
145 DeadInsts.push_back(IVOperand);
182 DeadInsts.push_back(ICmp);
233 DeadInsts.push_back(Rem);
264 DeadInsts.push_back(UseInst);
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 79 SmallVector<WeakVH, 8> DeadInsts;
125 DeadInsts.push_back(Op);
612 DeadInsts.push_back(BO);
    [all...]
IndVarSimplify.cpp 72 SmallVector<WeakVH, 16> DeadInsts;
98 DeadInsts.clear();
544 DeadInsts.push_back(ExitVal);
676 SmallVectorImpl<WeakVH> &DeadInsts;
695 DeadInsts(DI) {
    [all...]
ScalarReplAggregates.cpp 79 /// DeadInsts - Keep track of instructions we have made dead, so that
81 SmallVector<Value*, 32> DeadInsts;
    [all...]
LoopStrengthReduce.cpp 737 DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
740 while (!DeadInsts.empty()) {
741 Instruction *I = dyn_cast_or_null<Instruction>(&*DeadInsts.pop_back_val());
750 DeadInsts.push_back(U);
    [all...]
ObjCARC.cpp     [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...]

Completed in 100 milliseconds