/external/llvm/test/CodeGen/AArch64/ |
D | arm64-atomic-128.ll | 8 ; 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, xzr, [x2]
|
D | arm64-ldxr-stxr.ll | 146 ; 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
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | basic-a64-unpredictable.txt | 13 #ldaxp w19, w19, [x1]
|
D | arm64-memory.txt | 502 # CHECK: ldaxp w2, w6, [x1] 503 # CHECK: ldaxp x2, x6, [x1]
|
D | basic-a64-instructions.txt | 1982 #CHECK: ldaxp w5, w18, [sp] 1983 #CHECK: ldaxp x6, x19, [x22] 1984 #CHECK: ldaxp x6, x19, [x22]
|
/external/llvm/test/MC/AArch64/ |
D | arm64-memory.s | 514 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]
|
D | basic-a64-instructions.s | 2308 ldaxp w26, wzr, [sp] 2309 ldaxp x27, x28, [x30]
|
/external/vixl/ |
D | README.md | 118 `stlxrh`, `stlxr`, `ldaxrb`, `ldaxrh`, `ldaxr`, `stlxp`, `ldaxp`, `stlrb`,
|
/external/vixl/test/ |
D | test-disasm-a64.cc | 1804 COMPARE(ldaxp(w10, w11, MemOperand(x12)), "ldaxp w10, w11, [x12]"); in TEST() 1805 COMPARE(ldaxp(w13, w14, MemOperand(sp)), "ldaxp w13, w14, [sp]"); in TEST() 1806 COMPARE(ldaxp(x15, x16, MemOperand(x17)), "ldaxp x15, x16, [x17]"); in TEST() 1807 COMPARE(ldaxp(x18, x19, MemOperand(sp)), "ldaxp x18, x19, [sp]"); in TEST()
|
/external/vixl/src/vixl/a64/ |
D | macro-assembler-a64.h | 1438 ldaxp(rt, rt2, src); in Ldaxp()
|
D | assembler-a64.h | 1894 void ldaxp(const Register& rt, const Register& rt2, const MemOperand& src);
|
D | assembler-a64.cc | 1833 void Assembler::ldaxp(const Register& rt, in ldaxp() function in vixl::Assembler
|
/external/vixl/doc/ |
D | supported-instructions.md | 547 void ldaxp(const Register& rt, const Register& rt2, const MemOperand& src)
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.td | 2405 def LDAXPW : LoadExclusivePair<0b10, 0, 1, 1, 1, GPR32, "ldaxp">; 2406 def LDAXPX : LoadExclusivePair<0b11, 0, 1, 1, 1, GPR64, "ldaxp">;
|