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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 824 Value *CondVal = SI.getCondition();
828 if (Value *V = SimplifySelectInst(CondVal, TrueVal, FalseVal, DL))
835 return BinaryOperator::CreateOr(CondVal, FalseVal);
838 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
844 return BinaryOperator::CreateAnd(CondVal, TrueVal);
847 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName());
853 if (CondVal == TrueVal)
854 return BinaryOperator::CreateOr(CondVal, FalseVal)
    [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 633 Constant *CondVal = nullptr;
636 if (IsTrivialUnswitchCondition(LoopCond, &CondVal, &ExitBlock)) {
639 UnswitchTrivialCondition(currentLoop, LoopCond, CondVal, ExitBlock);
    [all...]

Completed in 210 milliseconds