HomeSort by relevance Sort by last modified time
    Searched refs:isInstructionTriviallyDead (Results 1 - 13 of 13) sorted by null

  /external/llvm/lib/Transforms/Scalar/
DCE.cpp 44 if (isInstructionTriviallyDead(Inst)) {
104 if (isInstructionTriviallyDead(I)) { // If the instruction is dead.
DeadStoreElimination.cpp 133 if (isInstructionTriviallyDead(OpI))
744 if (isInstructionTriviallyDead(BBI)) {
LoopIdiomRecognize.cpp 156 if (isInstructionTriviallyDead(OpI))
169 if (isInstructionTriviallyDead(I))
EarlyCSE.cpp 377 if (isInstructionTriviallyDead(Inst)) {
LICM.cpp 305 if (isInstructionTriviallyDead(&I)) {
LoopUnswitch.cpp     [all...]
ScalarReplAggregates.cpp     [all...]
LoopStrengthReduce.cpp 743 if (I == 0 || !isInstructionTriviallyDead(I))
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 55 /// isInstructionTriviallyDead - Return true if the result produced by the
58 bool isInstructionTriviallyDead(Instruction *I);
  /external/llvm/lib/Transforms/Utils/
Local.cpp 225 /// isInstructionTriviallyDead - Return true if the result produced by the
228 bool llvm::isInstructionTriviallyDead(Instruction *I) {
278 if (!I || !I->use_empty() || !isInstructionTriviallyDead(I))
299 if (isInstructionTriviallyDead(OpI))
    [all...]
LoopUnroll.cpp 435 if (isInstructionTriviallyDead(Inst))
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 417 if (isInstructionTriviallyDead(CS.getInstruction())) {
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]

Completed in 210 milliseconds