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

  /external/swiftshader/third_party/LLVM/lib/Analysis/
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...]
ConstantFolding.cpp 735 Constant *CommonValue = 0;
748 if (!C || (CommonValue && C != CommonValue))
750 CommonValue = C;
754 return CommonValue ? CommonValue : UndefValue::get(PN->getType());
    [all...]
  /external/llvm/lib/Analysis/
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...]
ConstantFolding.cpp     [all...]

Completed in 231 milliseconds