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 448 SmallVector<WeakVH, 16> DeadInsts;
449 simplifyLoopIVs(L, SE, LPM, DeadInsts);
453 while (!DeadInsts.empty())
455 dyn_cast_or_null<Instruction>(&*DeadInsts.pop_back_val()))
SimplifyIndVar.cpp 53 SmallVectorImpl<WeakVH> &DeadInsts;
63 DeadInsts(Dead),
151 DeadInsts.push_back(IVOperand);
188 DeadInsts.push_back(ICmp);
239 DeadInsts.push_back(Rem);
270 DeadInsts.push_back(UseInst);
333 DeadInsts.push_back(AddVal);
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 78 SmallVector<WeakVH, 16> DeadInsts;
104 DeadInsts.clear();
603 DeadInsts.push_back(ExitVal);
614 DeadInsts.push_back(Inst);
725 SmallVectorImpl<WeakVH> &DeadInsts;
744 DeadInsts(DI) {
    [all...]
ScalarReplAggregates.cpp 93 /// DeadInsts - Keep track of instructions we have made dead, so that
95 SmallVector<Value*, 32> DeadInsts;
    [all...]
SROA.cpp     [all...]
LoopStrengthReduce.cpp 812 DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
815 while (!DeadInsts.empty()) {
816 Value *V = DeadInsts.pop_back_val();
826 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 408 milliseconds