Home
last modified time | relevance | path

Searched refs:ldaxp (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm/test/CodeGen/AArch64/
Darm64-atomic-128.ll8 ; CHECK: ldaxp [[RESULTLO:x[0-9]+]], [[RESULTHI:x[0-9]+]], [x[[ADDR:[0-9]+]]]
41 ; CHECK: ldaxp [[DEST_REGLO:x[0-9]+]], [[DEST_REGHI:x[0-9]+]], [x0]
56 ; CHECK: ldaxp [[DEST_REGLO:x[0-9]+]], [[DEST_REGHI:x[0-9]+]], [x0]
71 ; CHECK: ldaxp [[DEST_REGLO:x[0-9]+]], [[DEST_REGHI:x[0-9]+]], [x0]
86 ; CHECK: ldaxp [[DEST_REGLO:x[0-9]+]], [[DEST_REGHI:x[0-9]+]], [x0]
107 ; CHECK: ldaxp [[DEST_REGLO:x[0-9]+]], [[DEST_REGHI:x[0-9]+]], [x0]
128 ; CHECK: ldaxp [[DEST_REGLO:x[0-9]+]], [[DEST_REGHI:x[0-9]+]], [x0]
149 ; CHECK: ldaxp [[DEST_REGLO:x[0-9]+]], [[DEST_REGHI:x[0-9]+]], [x0]
170 ; CHECK-LABEL: ldaxp
193 ; CHECK: ldaxp xzr, [[IGNORED:x[0-9]+]], [x2]
Darm64-ldxr-stxr.ll146 ; CHECK: ldaxp {{x[0-9]+}}, {{x[0-9]+}}, [x0]
148 %ldrexd = tail call %0 @llvm.aarch64.ldaxp(i8* %p)
169 declare %0 @llvm.aarch64.ldaxp(i8*) nounwind
Dcmpxchg-O0.ll66 ; CHECK: ldaxp [[OLD_LO:x[0-9]+]], [[OLD_HI:x[0-9]+]], [x0]
/external/llvm/test/MC/Disassembler/AArch64/
Dbasic-a64-unpredictable.txt13 #ldaxp w19, w19, [x1]
Darm64-memory.txt502 # CHECK: ldaxp w2, w6, [x1]
503 # CHECK: ldaxp x2, x6, [x1]
Dbasic-a64-instructions.txt1982 #CHECK: ldaxp w5, w18, [sp]
1983 #CHECK: ldaxp x6, x19, [x22]
1984 #CHECK: ldaxp x6, x19, [x22]
/external/llvm/test/MC/AArch64/
Darm64-memory.s514 ldaxp w2, w6, [x1]
515 ldaxp x2, x6, [x1]
521 ; CHECK: ldaxp w2, w6, [x1] ; encoding: [0x22,0x98,0x7f,0x88]
522 ; CHECK: ldaxp x2, x6, [x1] ; encoding: [0x22,0x98,0x7f,0xc8]
Dbasic-a64-instructions.s2308 ldaxp w26, wzr, [sp]
2309 ldaxp x27, x28, [x30]
/external/vixl/
DREADME.md166 `stlxrh`, `stlxr`, `ldaxrb`, `ldaxrh`, `ldaxr`, `stlxp`, `ldaxp`, `stlrb`,
/external/vixl/test/aarch64/
Dtest-disasm-aarch64.cc1637 COMPARE(ldaxp(w10, w11, MemOperand(x12)), "ldaxp w10, w11, [x12]"); in TEST()
1638 COMPARE(ldaxp(w13, w14, MemOperand(sp)), "ldaxp w13, w14, [sp]"); in TEST()
1639 COMPARE(ldaxp(x15, x16, MemOperand(x17)), "ldaxp x15, x16, [x17]"); in TEST()
1640 COMPARE(ldaxp(x18, x19, MemOperand(sp)), "ldaxp x18, x19, [sp]"); in TEST()
Dtest-trace-aarch64.cc160 __ ldaxp(w9, w10, MemOperand(x0)); in GenerateTestSequenceBase() local
161 __ ldaxp(x11, x12, MemOperand(x0)); in GenerateTestSequenceBase() local
Dtest-cpu-features-aarch64.cc278 TEST_NONE(ldaxp_0, ldaxp(w0, w1, MemOperand(x2, 0)))
279 TEST_NONE(ldaxp_1, ldaxp(x0, x1, MemOperand(x2, 0)))
/external/capstone/suite/MC/AArch64/
Dbasic-a64-instructions.s.cs898 0xfa,0xff,0x7f,0x88 = ldaxp w26, wzr, [sp]
899 0xdb,0xf3,0x7f,0xc8 = ldaxp x27, x28, [x30]
/external/vixl/test/test-trace-reference/
Dlog-disasm-colour104 0x~~~~~~~~~~~~~~~~ 887fa809 ldaxp w9, w10, [x0]
105 0x~~~~~~~~~~~~~~~~ c87fb00b ldaxp x11, x12, [x0]
Dlog-disasm104 0x~~~~~~~~~~~~~~~~ 887fa809 ldaxp w9, w10, [x0]
105 0x~~~~~~~~~~~~~~~~ c87fb00b ldaxp x11, x12, [x0]
Dlog-cpufeatures-custom104 0x~~~~~~~~~~~~~~~~ 887fa809 ldaxp w9, w10, [x0]
105 0x~~~~~~~~~~~~~~~~ c87fb00b ldaxp x11, x12, [x0]
Dlog-cpufeatures104 0x~~~~~~~~~~~~~~~~ 887fa809 ldaxp w9, w10, [x0]
105 0x~~~~~~~~~~~~~~~~ c87fb00b ldaxp x11, x12, [x0]
Dlog-cpufeatures-colour104 0x~~~~~~~~~~~~~~~~ 887fa809 ldaxp w9, w10, [x0]
105 0x~~~~~~~~~~~~~~~~ c87fb00b ldaxp x11, x12, [x0]
Dlog-all489 0x~~~~~~~~~~~~~~~~ 887fa809 ldaxp w9, w10, [x0]
492 0x~~~~~~~~~~~~~~~~ c87fb00b ldaxp x11, x12, [x0]
/external/capstone/arch/AArch64/
DAArch64MappingInsnOp.inc3585 { /* AArch64_LDAXPW, ARM64_INS_LDAXP: ldaxp $rt, $rt2, [$rn] */
3589 { /* AArch64_LDAXPX, ARM64_INS_LDAXP: ldaxp $rt, $rt2, [$rn] */
/external/vixl/src/aarch64/
Dassembler-aarch64.h1348 void ldaxp(const Register& rt, const Register& rt2, const MemOperand& src);
Dassembler-aarch64.cc1522 void Assembler::ldaxp(const Register& rt, in ldaxp() function in vixl::aarch64::Assembler
Dmacro-assembler-aarch64.h1725 ldaxp(rt, rt2, src); in Ldaxp()
/external/llvm/lib/Target/AArch64/
DAArch64InstrInfo.td2463 def LDAXPW : LoadExclusivePair<0b10, 0, 1, 1, 1, GPR32, "ldaxp">;
2464 def LDAXPX : LoadExclusivePair<0b11, 0, 1, 1, 1, GPR64, "ldaxp">;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64InstrInfo.td3272 def LDAXPW : LoadExclusivePair<0b10, 0, 1, 1, 1, GPR32, "ldaxp">;
3273 def LDAXPX : LoadExclusivePair<0b11, 0, 1, 1, 1, GPR64, "ldaxp">;

12