Searched refs:CondVal (Results 1 - 7 of 7) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp662 Value *CondVal = SI.getCondition(); local
666 if (Value *V = SimplifySelectInst(CondVal, TrueVal, FalseVal, TD))
673 return BinaryOperator::CreateOr(CondVal, FalseVal);
676 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
681 return BinaryOperator::CreateAnd(CondVal, TrueVal);
684 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
690 if (CondVal == TrueVal)
691 return BinaryOperator::CreateOr(CondVal, FalseVa
[all...]
H A DInstructionCombining.cpp1922 bool CondVal = cast<ConstantInt>(BI->getCondition())->getZExtValue(); local
1923 BasicBlock *ReachableBB = BI->getSuccessor(!CondVal);
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp649 GenericValue CondVal = getOperandValue(Cond, SF);
659 if (executeICMP_EQ(Val, CondVal, ElTy).IntVal != 0) {
669 if (executeICMP_EQ(Val, CondVal, ElTy).IntVal != 0) {
682 if (executeICMP_ULE(Low, CondVal, ElTy).IntVal != 0 &&
683 executeICMP_ULE(CondVal, High, ElTy).IntVal != 0) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp628 Constant *CondVal = 0; local
631 if (IsTrivialUnswitchCondition(LoopCond, &CondVal, &ExitBlock)) {
634 UnswitchTrivialCondition(currentLoop, LoopCond, CondVal, ExitBlock);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DInstructionSimplify.cpp2508 static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal, argument
2513 if (ConstantInt *CB = dyn_cast<ConstantInt>(CondVal))
2520 if (isa<UndefValue>(CondVal)) { // select undef, X, Y -> X or Y
H A DScalarEvolution.cpp4930 ConstantInt *CondVal =
4935 if (!CondVal) return getCouldNotCompute();
4937 if (CondVal->getValue() == uint64_t(ExitWhen)) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1522 const Value *CondVal = I.getCondition(); local
1541 if (const BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) {
1576 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),

Completed in 134 milliseconds