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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 662 Value *CondVal = SI.getCondition();
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, FalseVal)
    [all...]
InstructionCombining.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 794 SVal CondVal = State->getSVal(CO->getCond(), N->getLocationContext());
795 if (State->isNull(CondVal).isConstrainedTrue()) {
798 assert(State->isNull(CondVal).isConstrainedFalse());
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 638 Constant *CondVal = 0;
641 if (IsTrivialUnswitchCondition(LoopCond, &CondVal, &ExitBlock)) {
644 UnswitchTrivialCondition(currentLoop, LoopCond, CondVal, ExitBlock);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 328 milliseconds