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

1 2

  /external/llvm/lib/Transforms/Scalar/
DCE.cpp 52 if (isInstructionTriviallyDead(Inst, TLI)) {
78 if (isInstructionTriviallyDead(I, TLI)) {
92 if (isInstructionTriviallyDead(OpI, TLI))
  /external/swiftshader/third_party/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)) {
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
Local.h 55 /// isInstructionTriviallyDead - Return true if the result produced by the
58 bool isInstructionTriviallyDead(Instruction *I);
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 71 bool isInstructionTriviallyDead(Instruction *I,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Local.h 72 bool isInstructionTriviallyDead(Instruction *I,
77 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Utils/
Local.h 72 bool isInstructionTriviallyDead(Instruction *I,
77 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Utils/
Local.h 72 bool isInstructionTriviallyDead(Instruction *I,
77 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/Utils/
Local.h 95 bool isInstructionTriviallyDead(Instruction *I,
100 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/Utils/
Local.h 95 bool isInstructionTriviallyDead(Instruction *I,
100 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/Utils/
Local.h 95 bool isInstructionTriviallyDead(Instruction *I,
100 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/Utils/
Local.h 95 bool isInstructionTriviallyDead(Instruction *I,
100 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Local.h 72 bool isInstructionTriviallyDead(Instruction *I,
77 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/Utils/
Local.h 72 bool isInstructionTriviallyDead(Instruction *I,
77 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/Utils/
Local.h 72 bool isInstructionTriviallyDead(Instruction *I,
77 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Transforms/Utils/
Local.h 95 bool isInstructionTriviallyDead(Instruction *I,
100 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Transforms/Utils/
Local.h 95 bool isInstructionTriviallyDead(Instruction *I,
100 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Transforms/Utils/
Local.h 95 bool isInstructionTriviallyDead(Instruction *I,
100 /// isInstructionTriviallyDead would be true if the use count was 0.
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Transforms/Utils/
Local.h 95 bool isInstructionTriviallyDead(Instruction *I,
100 /// isInstructionTriviallyDead would be true if the use count was 0.
  /external/llvm/lib/Transforms/Utils/
Local.cpp 285 /// isInstructionTriviallyDead - Return true if the result produced by the
288 bool llvm::isInstructionTriviallyDead(Instruction *I,
354 if (!I || !I->use_empty() || !isInstructionTriviallyDead(I, TLI))
375 if (isInstructionTriviallyDead(OpI, TLI))
433 if (isInstructionTriviallyDead(I, TLI)) {
447 if (isInstructionTriviallyDead(OpI, TLI))
471 if (isInstructionTriviallyDead(I, TLI)) {
    [all...]
  /external/swiftshader/third_party/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...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 461 if (isInstructionTriviallyDead(CS.getInstruction(), &TLI)) {
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
Inliner.cpp 411 if (isInstructionTriviallyDead(CS.getInstruction())) {

Completed in 682 milliseconds

1 2