/external/llvm/test/MC/AArch64/ |
D | arm64-fp-encoding.s | 194 fcmpe h1, h2 195 fcmpe s1, s2 196 fcmpe d1, d2 define 197 fcmpe h1, #0.0 198 fcmpe s1, #0.0 199 fcmpe d1, #0.0 define 211 ; FP16: fcmpe h1, h2 ; encoding: [0x30,0x20,0xe2,0x1e] 213 ; NO-FP16-NEXT: fcmpe h1, h2 214 ; CHECK: fcmpe s1, s2 ; encoding: [0x30,0x20,0x22,0x1e] 215 ; CHECK: fcmpe d1, d2 ; encoding: [0x30,0x20,0x62,0x1e] [all …]
|
D | basic-a64-instructions.s | 1767 fcmpe s29, s30 1768 fcmpe s15, #0.0 1777 fcmpe d26, d22 1778 fcmpe d29, #0.0
|
D | basic-a64-diagnostics.s | 1542 fcmpe s30, #-0.0
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | arm64-scalar-fp.txt | 169 # FP16: fcmpe h1, h2 170 # CHECK: fcmpe s1, s2 171 # CHECK: fcmpe d1, d2 172 # FP16: fcmpe h1, #0.0 173 # CHECK: fcmpe s1, #0.0 174 # CHECK: fcmpe d1, #0.0
|
D | basic-a64-instructions.txt | 1327 # CHECK: fcmpe s29, s30 1328 # CHECK: fcmpe s15, #0.0 1329 # CHECK: fcmpe s15, #0.0 1341 # CHECK: fcmpe d26, d22 1342 # CHECK: fcmpe d29, #0.0 1343 # CHECK: fcmpe d29, #0.0
|
/external/vixl/doc/ |
D | changelog.md | 23 + Added support for `fcmpe` and `fccmpe` instructions.
|
D | supported-instructions.md | 1861 void fcmpe(const VRegister& vn, double value) 1868 void fcmpe(const VRegister& vn, const VRegister& vm)
|
/external/vixl/test/ |
D | test-disasm-a64.cc | 2376 COMPARE(fcmpe(s0, s1), "fcmpe s0, s1"); in TEST() 2377 COMPARE(fcmpe(s31, s30), "fcmpe s31, s30"); in TEST() 2378 COMPARE(fcmpe(d0, d1), "fcmpe d0, d1"); in TEST() 2379 COMPARE(fcmpe(d31, d30), "fcmpe d31, d30"); in TEST() 2380 COMPARE(fcmpe(s12, 0), "fcmpe s12, #0.0"); in TEST() 2381 COMPARE(fcmpe(d12, 0), "fcmpe d12, #0.0"); in TEST()
|
/external/vixl/src/vixl/a64/ |
D | assembler-a64.h | 2145 void fcmpe(const VRegister& vn, const VRegister& vm); 2148 void fcmpe(const VRegister& vn, double value);
|
D | assembler-a64.cc | 2711 void Assembler::fcmpe(const VRegister& vn, in fcmpe() function in vixl::Assembler 2723 void Assembler::fcmpe(const VRegister& vn, in fcmpe() function in vixl::Assembler
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.td | 2594 defm FCMPE : FPComparison<1, "fcmpe">;
|