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 130 if (isInstructionTriviallyDead(OpI))
627 if (isInstructionTriviallyDead(BBI)) {
LoopIdiomRecognize.cpp 156 if (isInstructionTriviallyDead(OpI))
169 if (isInstructionTriviallyDead(I))
EarlyCSE.cpp 321 if (isInstructionTriviallyDead(Inst)) {
LICM.cpp 294 if (isInstructionTriviallyDead(&I)) {
LoopUnswitch.cpp     [all...]
ScalarReplAggregates.cpp     [all...]
LoopStrengthReduce.cpp 649 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 223 /// isInstructionTriviallyDead - Return true if the result produced by the
226 bool llvm::isInstructionTriviallyDead(Instruction *I) {
269 if (!I || !I->use_empty() || !isInstructionTriviallyDead(I))
290 if (isInstructionTriviallyDead(OpI))
    [all...]
LoopUnroll.cpp 409 if (isInstructionTriviallyDead(Inst))
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 411 if (isInstructionTriviallyDead(CS.getInstruction())) {
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]

Completed in 433 milliseconds