Searched refs:fcmp (Results 1 - 25 of 25) sorted by relevance

/external/llvm/test/MC/AArch64/
H A Doptional-hash.s10 // CHECK: fcmp s0, #0.0
11 fcmp s0, 0.0
H A Darm64-fp-encoding.s114 fcmp s1, s2
115 fcmp d1, d2
116 fcmp s1, #0.0
117 fcmp d1, #0.0
123 ; CHECK: fcmp s1, s2 ; encoding: [0x20,0x20,0x22,0x1e]
124 ; CHECK: fcmp d1, d2 ; encoding: [0x20,0x20,0x62,0x1e]
125 ; CHECK: fcmp s1, #0.0 ; encoding: [0x28,0x20,0x20,0x1e]
126 ; CHECK: fcmp d1, #0.0 ; encoding: [0x28,0x20,0x60,0x1e]
H A Dbasic-a64-diagnostics.s1516 fcmp s3, d2
1519 // CHECK-ERROR-NEXT: fcmp s3, d2
1522 fcmp s9, #-0.0
1523 fcmp d3, #-0.0
1524 fcmp s1, #1.0
1527 // CHECK-ERROR-NEXT: fcmp s9, #-0.0
1530 // CHECK-ERROR-NEXT: fcmp d3, #-0.0
1533 // CHECK-ERROR-NEXT: fcmp s1, #1.0
H A Dbasic-a64-instructions.s1749 fcmp s3, s5
1750 fcmp s31, #0.0
1751 // CHECK: fcmp s3, s5 // encoding: [0x60,0x20,0x25,0x1e]
1752 // CHECK: fcmp s31, #0.0 // encoding: [0xe8,0x23,0x20,0x1e]
1759 fcmp d4, d12
1760 fcmp d23, #0.0
1761 // CHECK: fcmp d4, d12 // encoding: [0x80,0x20,0x6c,0x1e]
1762 // CHECK: fcmp d23, #0.0 // encoding: [0xe8,0x22,0x60,0x1e]
/external/llvm/utils/vim/
H A Dllvm.vim27 syn keyword llvmStatement extractvalue fadd fast fcmp fdiv fence fmul fpext
/external/v8/src/arm64/
H A Dmacro-assembler-arm64-inl.h568 fcmp(fn, fm);
578 fcmp(fn, tmp);
580 fcmp(fn, value);
H A Dassembler-arm64.h1665 void fcmp(const FPRegister& fn, const FPRegister& fm);
1668 void fcmp(const FPRegister& fn, double value);
H A Dassembler-arm64.cc1946 void Assembler::fcmp(const FPRegister& fn, function in class:v8::internal::Assembler
1953 void Assembler::fcmp(const FPRegister& fn, function in class:v8::internal::Assembler
1956 // Although the fcmp instruction can strictly only take an immediate value of
/external/v8/test/cctest/
H A Dtest-disasm-arm64.cc1466 COMPARE(fcmp(s0, s1), "fcmp s0, s1");
1467 COMPARE(fcmp(s31, s30), "fcmp s31, s30");
1468 COMPARE(fcmp(d0, d1), "fcmp d0, d1");
1469 COMPARE(fcmp(d31, d30), "fcmp d31, d30");
1470 COMPARE(fcmp(s12, 0), "fcmp s1
[all...]
H A Dtest-assembler-arm64.cc6035 TEST(fcmp) {
/external/vixl/src/vixl/a64/
H A Dsimulator-a64.cc2660 case NEON_FCMEQ: fcmp(vf, rd, rn, rm, eq); break;
2661 case NEON_FCMGE: fcmp(vf, rd, rn, rm, ge); break;
2662 case NEON_FCMGT: fcmp(vf, rd, rn, rm, gt); break;
3556 case NEON_FCMEQ_scalar: fcmp(vf, rd, rn, rm, eq); break;
3557 case NEON_FCMGE_scalar: fcmp(vf, rd, rn, rm, ge); break;
3558 case NEON_FCMGT_scalar: fcmp(vf, rd, rn, rm, gt); break;
H A Dlogic-a64.cc3970 LogicVRegister Simulator::fcmp(VectorFormat vform, function in class:vixl::Simulator
3997 LogicVRegister Simulator::fcmp(VectorFormat vform, function in class:vixl::Simulator
4003 fcmp<float>(vform, dst, src1, src2, cond);
4006 fcmp<double>(vform, dst, src1, src2, cond);
4019 fcmp<float>(vform, dst, src, zero_reg, cond);
4024 fcmp<double>(vform, dst, src, zero_reg, cond);
4039 fcmp<float>(vform, dst, abs_src1, abs_src2, cond);
4044 fcmp<double>(vform, dst, abs_src1, abs_src2, cond);
H A Dsimulator-a64.h2392 LogicVRegister fcmp(VectorFormat vform,
2397 LogicVRegister fcmp(VectorFormat vform,
H A Dassembler-a64.h2046 void fcmp(const VRegister& vn, const VRegister& vm);
2049 void fcmp(const VRegister& vn, double value);
H A Dassembler-a64.cc2652 // Although the fcmp{e} instructions can strictly only take an immediate
2672 void Assembler::fcmp(const VRegister& vn,
2684 void Assembler::fcmp(const VRegister& vn,
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp708 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp);
/external/llvm/test/Bindings/OCaml/
H A Dcore.ml284 * CHECK: @const_fcmp = global i1 fcmp ole
1028 * CHECK: %build_fcmp_false = fcmp false float %F1, %F2
1029 * CHECK: %build_fcmp_true = fcmp true float %F2, %F1
/external/v8/src/mips/
H A Dassembler-mips.h942 void fcmp(FPURegister src1, const double src2, FPUCondition cond);
H A Dassembler-mips.cc2303 void Assembler::fcmp(FPURegister src1, const double src2, function in class:v8::Assembler
/external/vixl/test/
H A Dtest-simulator-a64.cc2519 TEST(fcmp_d) { CALL_TEST_FP_HELPER(fcmp, d, Cmp, kInputDoubleBasic); }
2520 TEST(fcmp_s) { CALL_TEST_FP_HELPER(fcmp, s, Cmp, kInputFloatBasic); }
2521 TEST(fcmp_dz) { CALL_TEST_FP_HELPER(fcmp, dz, CmpZero, kInputDoubleBasic); }
2522 TEST(fcmp_sz) { CALL_TEST_FP_HELPER(fcmp, sz, CmpZero, kInputFloatBasic); }
H A Dtest-disasm-a64.cc2358 COMPARE(fcmp(s0, s1), "fcmp s0, s1");
2359 COMPARE(fcmp(s31, s30), "fcmp s31, s30");
2360 COMPARE(fcmp(d0, d1), "fcmp d0, d1");
2361 COMPARE(fcmp(d31, d30), "fcmp d31, d30");
2362 COMPARE(fcmp(s12, 0), "fcmp s1
[all...]
H A Dtest-assembler-a64.cc9833 TEST(fcmp) {
/external/v8/src/mips64/
H A Dassembler-mips64.h978 void fcmp(FPURegister src1, const double src2, FPUCondition cond);
H A Dassembler-mips64.cc2530 void Assembler::fcmp(FPURegister src1, const double src2, function in class:v8::Assembler
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli181 (** The predicate for a floating-point comparison ([fcmp]) instruction.
1735 (** [fcmp_predicate i] returns the [fcmp.t] corresponding to an [fcmp]
2408 [%name = fcmp %pred %x, %y]

Completed in 1752 milliseconds