/external/llvm/test/MC/AArch64/ |
D | arm64-bitfield-encoding.s | 8 bfm w1, w2, #1, #15 9 bfm x1, x2, #1, #15
|
D | basic-a64-diagnostics.s | 815 bfm w3, w5, #32, #1 816 bfm w7, w11, #19, #32 817 bfm x29, x30, #64, #0 818 bfm x10, x20, #63, #64
|
D | basic-a64-instructions.s | 975 bfm x4, x5, #12, #10 976 bfm xzr, x4, #0, #0 977 bfm x4, xzr, #63, #5 978 bfm x5, x6, #12, #63
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-bitfield-extract.ll | 105 ; Check if we can still catch bfm instruction when we drop some low bits 126 ; Check if we can still catch bfm instruction when we drop some high bits 147 ; Check if we can still catch bfm instruction when we drop some low bits 169 ; Check if we can still catch bfm instruction when we drop some high bits 190 ; Check if we can catch bfm instruction when lsb is 0 (i.e., no lshr) 210 ; Check if we can catch bfm instruction when lsb is 0 (i.e., no lshr) 239 ; Check if we can still catch bfm instruction when we drop some high bits 261 ; Check if we can still catch bfm instruction when we drop some high bits 285 ; Check if we can still catch bfm instruction when we drop some high bits 314 ; Check if we can still catch bfm instruction when we drop some high bits [all …]
|
D | bitfield-insert.ll | 144 ; CHECK-NOT: bfm 164 ; CHECK-NOT: bfm
|
/external/vixl/doc/ |
D | changelog.md | 39 + MacroAssembler support for `bfm`, `ubfm` and `sbfm`.
|
/external/v8/src/arm64/ |
D | assembler-arm64.h | 1129 void bfm(const Register& rd, const Register& rn, int immr, int imms); 1142 bfm(rd, rn, (rd.SizeInBits() - lsb) & (rd.SizeInBits() - 1), width - 1); in bfi() 1149 bfm(rd, rn, lsb, lsb + width - 1); in bfxil()
|
D | assembler-arm64.cc | 1286 void Assembler::bfm(const Register& rd, const Register& rn, int immr, in bfm() function in v8::internal::Assembler
|
/external/vixl/src/aarch64/ |
D | assembler-aarch64.h | 684 void bfm(const Register& rd, 709 bfm(rd, in bfi() 722 bfm(rd, rn, lsb, lsb + width - 1); in bfxil()
|
D | macro-assembler-aarch64.h | 987 bfm(rd, rn, immr, imms); in Bfm()
|
D | assembler-aarch64.cc | 591 void Assembler::bfm(const Register& rd, in bfm() function in vixl::aarch64::Assembler
|
/external/valgrind/none/tests/arm64/ |
D | integer.stdout.exp | 148 bfm x2, x4, #0, #63 :: rd 5555555555555555 rn 5555555555555555, cin 0, nzcv 00000000 149 bfm x2, x4, #0, #63 :: rd aaaaaaaaaaaaaaaa rn aaaaaaaaaaaaaaaa, cin 0, nzcv 00000000
|
/external/vixl/test/aarch64/ |
D | test-trace-aarch64.cc | 71 __ bfm(w21, w22, 5, 6); in GenerateTestSequenceBase() local 72 __ bfm(x23, x24, 7, 8); in GenerateTestSequenceBase() local
|
D | test-assembler-aarch64.cc | 9493 TEST(bfm) { in TEST() argument
|
/external/vixl/doc/aarch64/ |
D | supported-instructions-aarch64.md | 150 void bfm(const Register& rd,
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.td | 1004 defm BFM : BitfieldImmWith2RegArgs<0b01, "bfm">;
|