Home
last modified time | relevance | path

Searched refs:bfm (Results 1 – 16 of 16) sorted by relevance

/external/llvm/test/MC/AArch64/
Darm64-bitfield-encoding.s8 bfm w1, w2, #1, #15
9 bfm x1, x2, #1, #15
Dbasic-a64-diagnostics.s815 bfm w3, w5, #32, #1
816 bfm w7, w11, #19, #32
817 bfm x29, x30, #64, #0
818 bfm x10, x20, #63, #64
Dbasic-a64-instructions.s975 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/
Darm64-bitfield-extract.ll105 ; 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 …]
Dbitfield-insert.ll144 ; CHECK-NOT: bfm
164 ; CHECK-NOT: bfm
/external/vixl/doc/
Dchangelog.md39 + MacroAssembler support for `bfm`, `ubfm` and `sbfm`.
/external/v8/src/arm64/
Dassembler-arm64.h1129 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()
Dassembler-arm64.cc1286 void Assembler::bfm(const Register& rd, const Register& rn, int immr, in bfm() function in v8::internal::Assembler
/external/vixl/src/aarch64/
Dassembler-aarch64.h684 void bfm(const Register& rd,
709 bfm(rd, in bfi()
722 bfm(rd, rn, lsb, lsb + width - 1); in bfxil()
Dmacro-assembler-aarch64.h987 bfm(rd, rn, immr, imms); in Bfm()
Dassembler-aarch64.cc591 void Assembler::bfm(const Register& rd, in bfm() function in vixl::aarch64::Assembler
/external/valgrind/none/tests/arm64/
Dinteger.stdout.exp148 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/
Dtest-trace-aarch64.cc71 __ bfm(w21, w22, 5, 6); in GenerateTestSequenceBase() local
72 __ bfm(x23, x24, 7, 8); in GenerateTestSequenceBase() local
Dtest-assembler-aarch64.cc9493 TEST(bfm) { in TEST() argument
/external/vixl/doc/aarch64/
Dsupported-instructions-aarch64.md150 void bfm(const Register& rd,
/external/llvm/lib/Target/AArch64/
DAArch64InstrInfo.td1004 defm BFM : BitfieldImmWith2RegArgs<0b01, "bfm">;