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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 658 Value *CondVal = SI.getCondition();
662 if (Value *V = SimplifySelectInst(CondVal, TrueVal, FalseVal, TD))
669 return BinaryOperator::CreateOr(CondVal, FalseVal);
672 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
677 return BinaryOperator::CreateAnd(CondVal, TrueVal);
680 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
686 if (CondVal == TrueVal)
687 return BinaryOperator::CreateOr(CondVal, FalseVal)
    [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 628 Constant *CondVal = 0;
631 if (IsTrivialUnswitchCondition(LoopCond, &CondVal, &ExitBlock)) {
634 UnswitchTrivialCondition(currentLoop, LoopCond, CondVal, ExitBlock);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 2531 milliseconds