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.s188 fcmp h1, h2
189 fcmp s1, s2
190 fcmp d1, d2
191 fcmp h1, #0.0
192 fcmp s1, #0.0
193 fcmp d1, #0.0
201 ; FP16: fcmp h1, h2 ; encoding: [0x20,0x20,0xe2,0x1e]
203 ; NO-FP16-NEXT: fcmp h1, h2
204 ; CHECK: fcmp s1, s2 ; encoding: [0x20,0x20,0x22,0x1e]
205 ; CHECK: fcmp d
[all...]
H A Dbasic-a64-diagnostics.s1533 fcmp s3, d2
1536 // CHECK-ERROR-NEXT: fcmp s3, d2
1539 fcmp s9, #-0.0
1540 fcmp d3, #-0.0
1541 fcmp s1, #1.0
1544 // CHECK-ERROR-NEXT: fcmp s9, #-0.0
1547 // CHECK-ERROR-NEXT: fcmp d3, #-0.0
1550 // CHECK-ERROR-NEXT: fcmp s1, #1.0
H A Dbasic-a64-instructions.s1762 fcmp s3, s5
1763 fcmp s31, #0.0
1764 // CHECK: fcmp s3, s5 // encoding: [0x60,0x20,0x25,0x1e]
1765 // CHECK: fcmp s31, #0.0 // encoding: [0xe8,0x23,0x20,0x1e]
1772 fcmp d4, d12
1773 fcmp d23, #0.0
1774 // CHECK: fcmp d4, d12 // encoding: [0x80,0x20,0x6c,0x1e]
1775 // CHECK: fcmp d23, #0.0 // encoding: [0xe8,0x22,0x60,0x1e]
/external/llvm/utils/vim/syntax/
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.h584 fcmp(fn, fm);
594 fcmp(fn, tmp);
596 fcmp(fn, value);
H A Dassembler-arm64.h1599 void fcmp(const FPRegister& fn, const FPRegister& fm);
1602 void fcmp(const FPRegister& fn, double value);
H A Dassembler-arm64.cc1998 void Assembler::fcmp(const FPRegister& fn, function in class:v8::internal::Assembler
2005 void Assembler::fcmp(const FPRegister& fn, function in class:v8::internal::Assembler
2008 // Although the fcmp instruction can strictly only take an immediate value of
/external/v8/test/cctest/
H A Dtest-disasm-arm64.cc1481 COMPARE(fcmp(s0, s1), "fcmp s0, s1");
1482 COMPARE(fcmp(s31, s30), "fcmp s31, s30");
1483 COMPARE(fcmp(d0, d1), "fcmp d0, d1");
1484 COMPARE(fcmp(d31, d30), "fcmp d31, d30");
1485 COMPARE(fcmp(s12, 0), "fcmp s1
[all...]
H A Dtest-assembler-arm64.cc5985 TEST(fcmp) {
/external/vixl/src/vixl/a64/
H A Dsimulator-a64.cc2604 case NEON_FCMEQ: fcmp(vf, rd, rn, rm, eq); break;
2605 case NEON_FCMGE: fcmp(vf, rd, rn, rm, ge); break;
2606 case NEON_FCMGT: fcmp(vf, rd, rn, rm, gt); break;
3500 case NEON_FCMEQ_scalar: fcmp(vf, rd, rn, rm, eq); break;
3501 case NEON_FCMGE_scalar: fcmp(vf, rd, rn, rm, ge); break;
3502 case NEON_FCMGT_scalar: fcmp(vf, rd, rn, rm, gt); break;
H A Dlogic-a64.cc3974 LogicVRegister Simulator::fcmp(VectorFormat vform, function in class:vixl::Simulator
4001 LogicVRegister Simulator::fcmp(VectorFormat vform, function in class:vixl::Simulator
4007 fcmp<float>(vform, dst, src1, src2, cond);
4010 fcmp<double>(vform, dst, src1, src2, cond);
4023 fcmp<float>(vform, dst, src, zero_reg, cond);
4028 fcmp<double>(vform, dst, src, zero_reg, cond);
4043 fcmp<float>(vform, dst, abs_src1, abs_src2, cond);
4048 fcmp<double>(vform, dst, abs_src1, abs_src2, cond);
H A Dsimulator-a64.h2281 LogicVRegister fcmp(VectorFormat vform,
2286 LogicVRegister fcmp(VectorFormat vform,
H A Dassembler-a64.h2127 void fcmp(const VRegister& vn, const VRegister& vm);
2130 void fcmp(const VRegister& vn, double value);
H A Dassembler-a64.cc2685 // Although the fcmp{e} instructions can strictly only take an immediate
2705 void Assembler::fcmp(const VRegister& vn,
2717 void Assembler::fcmp(const VRegister& vn,
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp724 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/vixl/test/
H A Dtest-simulator-a64.cc2528 TEST(fcmp_d) { CALL_TEST_FP_HELPER(fcmp, d, Cmp, kInputDoubleBasic); }
2529 TEST(fcmp_s) { CALL_TEST_FP_HELPER(fcmp, s, Cmp, kInputFloatBasic); }
2530 TEST(fcmp_dz) { CALL_TEST_FP_HELPER(fcmp, dz, CmpZero, kInputDoubleBasic); }
2531 TEST(fcmp_sz) { CALL_TEST_FP_HELPER(fcmp, sz, CmpZero, kInputFloatBasic); }
H A Dtest-disasm-a64.cc2369 COMPARE(fcmp(s0, s1), "fcmp s0, s1");
2370 COMPARE(fcmp(s31, s30), "fcmp s31, s30");
2371 COMPARE(fcmp(d0, d1), "fcmp d0, d1");
2372 COMPARE(fcmp(d31, d30), "fcmp d31, d30");
2373 COMPARE(fcmp(s12, 0), "fcmp s1
[all...]
H A Dtest-assembler-a64.cc10082 TEST(fcmp) {
/external/v8/src/mips/
H A Dassembler-mips.h975 void fcmp(FPURegister src1, const double src2, FPUCondition cond);
H A Dassembler-mips.cc2850 void Assembler::fcmp(FPURegister src1, const double src2, function in class:v8::Assembler
/external/v8/src/mips64/
H A Dassembler-mips64.h1037 void fcmp(FPURegister src1, const double src2, FPUCondition cond);
H A Dassembler-mips64.cc3097 void Assembler::fcmp(FPURegister src1, const double src2, function in class:v8::internal::Assembler
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli181 (** The predicate for a floating-point comparison ([fcmp]) instruction.
1745 (** [fcmp_predicate i] returns the [fcmp.t] corresponding to an [fcmp]
2418 [%name = fcmp %pred %x, %y]

Completed in 698 milliseconds