Home
last modified time | relevance | path

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

/external/llvm/lib/Analysis/
DInstructionSimplify.cpp533 Value *CommonValue = 0; in ThreadBinOpOverPHI() local
543 if (!V || (CommonValue && V != CommonValue)) in ThreadBinOpOverPHI()
545 CommonValue = V; in ThreadBinOpOverPHI()
548 return CommonValue; in ThreadBinOpOverPHI()
574 Value *CommonValue = 0; in ThreadCmpOverPHI() local
582 if (!V || (CommonValue && V != CommonValue)) in ThreadCmpOverPHI()
584 CommonValue = V; in ThreadCmpOverPHI()
587 return CommonValue; in ThreadCmpOverPHI()
2806 Value *CommonValue = 0; in SimplifyPHINode() local
2817 if (CommonValue && Incoming != CommonValue) in SimplifyPHINode()
[all …]
DConstantFolding.cpp819 Constant *CommonValue = 0; in ConstantFoldInstruction() local
838 if (CommonValue && C != CommonValue) in ConstantFoldInstruction()
840 CommonValue = C; in ConstantFoldInstruction()
845 return CommonValue ? CommonValue : UndefValue::get(PN->getType()); in ConstantFoldInstruction()