HomeSort by relevance Sort by last modified time
    Searched refs:CondVal (Results 1 - 11 of 11) 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/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 649 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) {
    [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/clang/lib/Sema/
AnalysisBasedWarnings.cpp 463 /// condition is CondVal.
465 const Stmt *Else, bool CondVal,
467 if (CondVal) {
    [all...]
SemaStmt.cpp 418 Sema::ActOnIfStmt(SourceLocation IfLoc, FullExprArg CondVal, Decl *CondVar,
423 if (!CondVal.get() && !CondVar) {
428 ExprResult CondResult(CondVal.release());
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 809 milliseconds