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 733 Value *CondVal = SI.getCondition();
737 if (Value *V = SimplifySelectInst(CondVal, TrueVal, FalseVal, TD))
744 return BinaryOperator::CreateOr(CondVal, FalseVal);
747 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
753 return BinaryOperator::CreateAnd(CondVal, TrueVal);
756 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
762 if (CondVal == TrueVal)
763 return BinaryOperator::CreateOr(CondVal, FalseVal)
    [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 639 Constant *CondVal = 0;
642 if (IsTrivialUnswitchCondition(LoopCond, &CondVal, &ExitBlock)) {
645 UnswitchTrivialCondition(currentLoop, LoopCond, CondVal, ExitBlock);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 104 milliseconds