HomeSort by: relevance | last modified time | path
    Searched refs:FCMP_TRUE (Results 1 - 22 of 22) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 2327 case CmpInst::FCMP_UEQ: Predicate = CmpInst::FCMP_TRUE; break;
2329 case CmpInst::FCMP_UGE: Predicate = CmpInst::FCMP_TRUE; break;
2331 case CmpInst::FCMP_ULE: Predicate = CmpInst::FCMP_TRUE; break;
2333 case CmpInst::FCMP_TRUE: Predicate = CmpInst::FCMP_TRUE; break;
2335 case CmpInst::ICMP_EQ: Predicate = CmpInst::FCMP_TRUE; break;
2338 case CmpInst::ICMP_UGE: Predicate = CmpInst::FCMP_TRUE; break;
2340 case CmpInst::ICMP_ULE: Predicate = CmpInst::FCMP_TRUE; break;
2342 case CmpInst::ICMP_SGE: Predicate = CmpInst::FCMP_TRUE; break;
2344 case CmpInst::ICMP_SLE: Predicate = CmpInst::FCMP_TRUE; break
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMLegalizerInfo.cpp 254 // FCMP_TRUE and FCMP_FALSE don't need libcalls, they should be
310 // FCMP_TRUE and FCMP_FALSE don't need libcalls, they should be
407 assert((Predicate == CmpInst::FCMP_TRUE ||
411 Predicate == CmpInst::FCMP_TRUE ? 1 : 0);
ARMInstructionSelector.cpp 537 if (Cond == CmpInst::FCMP_TRUE || Cond == CmpInst::FCMP_FALSE) {
538 putConstant(I, ResReg, Cond == CmpInst::FCMP_TRUE ? 1 : 0);
  /src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/
Operations.cpp 67 Ops.push_back(cmpOpDescriptor(1, Instruction::FCmp, CmpInst::FCMP_TRUE));
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPostLegalizerCombiner.cpp 105 case CmpInst::FCMP_TRUE:
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
InstrTypes.h 739 FCMP_TRUE = 15, ///< 1 1 1 1 Always true (always folded)
741 LAST_FCMP_PREDICATE = FCMP_TRUE,
742 BAD_FCMP_PREDICATE = FCMP_TRUE + 1,
IRBuilder.h 1180 Predicate != CmpInst::FCMP_TRUE &&
Instructions.h 1430 getPredicate() == FCMP_TRUE ||
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
Analysis.cpp 207 case FCmpInst::FCMP_TRUE: return ISD::SETTRUE;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 3696 case FCMP_TRUE: return FCMP_FALSE;
3697 case FCMP_FALSE: return FCMP_TRUE;
3719 case FCmpInst::FCMP_TRUE: return "true";
3773 case FCMP_FALSE: case FCMP_TRUE:
3962 case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
ConstantFold.cpp 1960 // Fold FCMP_FALSE/FCMP_TRUE unconditionally.
1964 if (pred == FCmpInst::FCMP_TRUE)
2063 case FCmpInst::FCMP_TRUE: return Constant::getAllOnesValue(ResultTy);
2145 case FCmpInst::FCMP_TRUE:
Constants.cpp 2397 case CmpInst::FCMP_TRUE:
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 30 assert(FCmpInst::FCMP_FALSE <= CC && CC <= FCmpInst::FCMP_TRUE &&
49 static_assert(FCmpInst::FCMP_TRUE == 15, ""); // 1 1 1 1
70 assert(FCmpInst::FCMP_FALSE <= Pred && Pred <= FCmpInst::FCMP_TRUE &&
74 if (Pred == FCmpInst::FCMP_TRUE)
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86FastISel.cpp 1470 case CmpInst::FCMP_TRUE: {
1664 case CmpInst::FCMP_TRUE: fastEmitBranch(TrueMBB, DbgLoc); return true;
2364 case CmpInst::FCMP_TRUE: Opnd = I->getOperand(1); break;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 679 case FCmpInst::FCMP_TRUE: R = executeFCMP_BOOL(Src1, Src2, Ty, true);
729 case FCmpInst::FCMP_TRUE: return executeFCMP_BOOL(Src1, Src2, Ty, true);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 2386 case CmpInst::FCMP_TRUE:
2531 case CmpInst::FCMP_TRUE:
2708 case CmpInst::FCMP_TRUE:
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 205 case CmpInst::FCMP_TRUE:
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 330 else if (Pred == CmpInst::FCMP_TRUE)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MIParser.cpp 2437 .Case("true", CmpInst::FCMP_TRUE)
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
InstructionSimplify.cpp 3668 if (Pred == FCmpInst::FCMP_TRUE)
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 6363 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 14401 case 0x0f: Pred = FCmpInst::FCMP_TRUE; IsSignaling = false; break;
14415 (Pred == FCmpInst::FCMP_TRUE || Pred == FCmpInst::FCMP_FALSE ||

Completed in 105 milliseconds