Home
last modified time | relevance | path

Searched refs:CommonValue (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Analysis/
DInstructionSimplify.cpp471 Value *CommonValue = nullptr; in ThreadBinOpOverPHI() local
481 if (!V || (CommonValue && V != CommonValue)) in ThreadBinOpOverPHI()
483 CommonValue = V; in ThreadBinOpOverPHI()
486 return CommonValue; in ThreadBinOpOverPHI()
512 Value *CommonValue = nullptr; in ThreadCmpOverPHI() local
520 if (!V || (CommonValue && V != CommonValue)) in ThreadCmpOverPHI()
522 CommonValue = V; in ThreadCmpOverPHI()
525 return CommonValue; in ThreadCmpOverPHI()
3378 Value *CommonValue = nullptr; in SimplifyPHINode() local
3389 if (CommonValue && Incoming != CommonValue) in SimplifyPHINode()
[all …]
DConstantFolding.cpp896 Constant *CommonValue = nullptr; in ConstantFoldInstruction() local
915 if (CommonValue && C != CommonValue) in ConstantFoldInstruction()
917 CommonValue = C; in ConstantFoldInstruction()
922 return CommonValue ? CommonValue : UndefValue::get(PN->getType()); in ConstantFoldInstruction()