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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 143 Value *CommonValue = nullptr;
148 } else if (!CommonValue) {
150 CommonValue = Incoming;
151 } else if (Incoming != CommonValue) {
157 if (!CommonValue || IncomingConstants.empty())
162 if (auto *CommonInst = dyn_cast<Instruction>(CommonValue))
172 if (C != LVI->getConstantOnEdge(CommonValue, IncomingBB, ToBB, P))
178 P->replaceAllUsesWith(CommonValue);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ConstantFolding.cpp 735 Constant *CommonValue = 0;
748 if (!C || (CommonValue && C != CommonValue))
750 CommonValue = C;
754 return CommonValue ? CommonValue : UndefValue::get(PN->getType());
    [all...]
InstructionSimplify.cpp 482 Value *CommonValue = 0;
492 if (!V || (CommonValue && V != CommonValue))
494 CommonValue = V;
497 return CommonValue;
524 Value *CommonValue = 0;
532 if (!V || (CommonValue && V != CommonValue))
534 CommonValue = V;
537 return CommonValue;
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
InstructionSimplify.cpp 472 Value *CommonValue = nullptr;
481 if (!V || (CommonValue && V != CommonValue))
483 CommonValue = V;
486 return CommonValue;
512 Value *CommonValue = nullptr;
519 if (!V || (CommonValue && V != CommonValue))
521 CommonValue = V;
524 return CommonValue;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
InstructionSimplify.cpp 501 Value *CommonValue = nullptr;
510 if (!V || (CommonValue && V != CommonValue))
512 CommonValue = V;
515 return CommonValue;
541 Value *CommonValue = nullptr;
548 if (!V || (CommonValue && V != CommonValue))
550 CommonValue = V;
553 return CommonValue;
    [all...]

Completed in 349 milliseconds