/external/llvm/lib/Transforms/Scalar/ |
CorrelatedValuePropagation.cpp | 193 case Instruction::FCmp:
|
SimplifyLibCalls.cpp | 877 Value *FCmp = B.CreateFCmpOEQ(Op1, NegInf, "tmp"); 878 Value *Sel = B.CreateSelect(FCmp, Inf, FAbs, "tmp"); [all...] |
GVN.cpp | 370 case Instruction::FCmp: [all...] |
/external/llvm/lib/VMCore/ |
ConstantsContext.h | 222 // behind the scenes to implement ICmp and FCmp constant expressions. This is 446 if (V.opcode == Instruction::FCmp) 447 return new CompareConstantExpr(Ty, Instruction::FCmp, V.subclassdata,
|
Instruction.cpp | 148 case FCmp: return "fcmp";
|
Constants.cpp | 746 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp; 898 case Instruction::FCmp: [all...] |
/external/v8/test/cctest/ |
test-assembler-ia32.cc | 353 __ FCmp();
|
/external/llvm/include/llvm/ |
InstrTypes.h | [all...] |
Instructions.h | 748 Instruction::FCmp, pred, LHS, RHS, NameStr, 751 "Invalid FCmp predicate value"); 753 "Both operands to FCmp instruction are not of the same type!"); 756 "Invalid operand types for FCmp instruction"); 767 Instruction::FCmp, pred, LHS, RHS, NameStr, 770 "Invalid FCmp predicate value"); 772 "Both operands to FCmp instruction are not of the same type!"); 775 "Invalid operand types for FCmp instruction"); 785 Instruction::FCmp, pred, LHS, RHS, NameStr) { 787 "Invalid FCmp predicate value") [all...] |
/external/llvm/tools/llvm-diff/ |
DifferenceEngine.cpp | 404 case Instruction::FCmp:
|
/external/v8/src/ia32/ |
macro-assembler-ia32.h | 241 // FCmp is similar to integer cmp, but requires unsigned 243 void FCmp(); [all...] |
code-stubs-ia32.cc | 280 __ FCmp(); [all...] |
macro-assembler-ia32.cc | 263 void MacroAssembler::FCmp() { [all...] |
/external/llvm/lib/Analysis/ |
InstructionSimplify.cpp | 405 if (Value *FCmp = SimplifyCmpInst(Pred, SI->getFalseValue(), RHS, TD, DT, 409 if (TCmp == FCmp) 415 if (match(FCmp, m_Zero())) 419 // is equal to "Cond || FCmp". 421 if (Value *V = SimplifyOrInst(Cond, FCmp, TD, DT, MaxRecurse)) 425 if (match(FCmp, m_One()) && match(TCmp, m_Zero())) [all...] |
ConstantFolding.cpp | [all...] |
/external/llvm/lib/AsmParser/ |
LLLexer.cpp | 604 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp);
|
LLParser.cpp | [all...] |
/external/llvm/lib/Bitcode/Writer/ |
BitcodeWriter.cpp | [all...] |
/external/llvm/lib/Target/CppBackend/ |
CPPBackend.cpp | 830 case Instruction::FCmp: 849 default: error("Invalid FCmp Predicate"); [all...] |
/frameworks/compile/slang/BitWriter_2_9/ |
BitcodeWriter.cpp | [all...] |
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Execution.cpp | 295 dbgs() << "Unhandled type for FCmp EQ instruction: " << *Ty << "\n"; 309 dbgs() << "Unhandled type for FCmp NE instruction: " << *Ty << "\n"; 322 dbgs() << "Unhandled type for FCmp LE instruction: " << *Ty << "\n"; 335 dbgs() << "Unhandled type for FCmp GE instruction: " << *Ty << "\n"; 348 dbgs() << "Unhandled type for FCmp LT instruction: " << *Ty << "\n"; 361 dbgs() << "Unhandled type for FCmp GT instruction: " << *Ty << "\n"; 470 dbgs() << "Don't know how to handle this FCmp predicate!\n-->" << I; [all...] |
/external/v8/src/x64/ |
macro-assembler-x64.h | 758 // FCmp compares and pops the two values on top of the FPU stack. 761 void FCmp(); [all...] |
/external/llvm/lib/Target/ARM/ |
ARMFastISel.cpp | [all...] |
/external/llvm/lib/Target/CBackend/ |
CBackend.cpp | 873 case Instruction::FCmp: { 883 default: llvm_unreachable("Illegal FCmp predicate"); [all...] |
/external/llvm/lib/Target/X86/ |
X86FastISel.cpp | [all...] |