Home
last modified time | relevance | path

Searched refs:dextm (Results 1 – 12 of 12) sorted by relevance

/external/valgrind/none/tests/mips64/
Dextract_insert_bit_field.stdout.exp-mips64r2665 dextm :: in 0x0, in1 0x0, out 0x0, pos: 0, size: 33
666 dextm :: in 0x0, in1 0xffffffffffffffff, out 0x0, pos: 0, size: 33
667 dextm :: in 0x0, in1 0x98765432, out 0x0, pos: 0, size: 33
668 dextm :: in 0x0, in1 0xffffffffff865421, out 0x0, pos: 0, size: 33
669 dextm :: in 0xffffffffffffffff, in1 0x0, out 0x1ffffffff, pos: 0, size: 33
670 dextm :: in 0xffffffffffffffff, in1 0xffffffffffffffff, out 0x1ffffffff, pos: 0, size: 33
671 dextm :: in 0xffffffffffffffff, in1 0x98765432, out 0x1ffffffff, pos: 0, size: 33
672 dextm :: in 0xffffffffffffffff, in1 0xffffffffff865421, out 0x1ffffffff, pos: 0, size: 33
673 dextm :: in 0x98765432, in1 0x0, out 0x198765432, pos: 0, size: 33
674 dextm :: in 0x98765432, in1 0xffffffffffffffff, out 0x198765432, pos: 0, size: 33
[all …]
/external/llvm/test/MC/Mips/
Dmips64extins.ll21 define i64 @dextm(i64 %i) nounwind readnone {
23 ; CHECK: dextm ${{[0-9]+}}, ${{[0-9]+}}, 5, 2
/external/llvm/test/MC/Mips/micromips64r6/
Dinvalid.s26 dextm $2, $3, -1, 1 # CHECK: :[[@LINE]]:17: error: expected 5-bit unsigned immediate
27 dextm $2, $3, 32, 1 # CHECK: :[[@LINE]]:17: error: expected 5-bit unsigned immediate
28 dextm $2, $3, -1, 33 # CHECK: :[[@LINE]]:17: error: expected 5-bit unsigned immediate
29 dextm $2, $3, 32, 33 # CHECK: :[[@LINE]]:17: error: expected 5-bit unsigned immediate
30 dextm $2, $3, 1, 32 # CHECK: :[[@LINE]]:20: error: expected immediate in range 33 .. 64
31 dextm $2, $3, 1, 65 # CHECK: :[[@LINE]]:20: error: expected immediate in range 33 .. 64
Dvalid.s21 dextm $9, $6, 3, 39 # CHECK: dextm $9, $6, 3, 39 # encoding: [0x59,0x26,0x30,0xe4]
/external/llvm/test/Object/Mips/
Dfeature.test11 CHECK: dextm:
/external/llvm/test/CodeGen/Mips/
Dmips64extins.ll11 define i64 @dextm(i64 %i) nounwind readnone {
/external/llvm/lib/Target/Mips/
DMicroMips64r6InstrInfo.td73 class DEXTM_MMR6_DESC : EXTBITS_DESC_BASE<"dextm", GPR64Opnd, uimm5,
DMips64InstrInfo.td281 def DEXTM : ExtBase<"dextm", GPR64Opnd, uimm5, uimm5_plus33, MipsExt>,
/external/llvm/test/MC/Disassembler/Mips/micromips64r6/
Dvalid.txt28 0x59 0x26 0x30 0xe4 # CHECK: dextm $9, $6, 3, 7
/external/v8/src/mips64/
Dassembler-mips64.h889 void dextm(Register rt, Register rs, uint16_t pos, uint16_t size);
Dassembler-mips64.cc2430 void Assembler::dextm(Register rt, Register rs, uint16_t pos, uint16_t size) { in dextm() function in v8::internal::Assembler
Dmacro-assembler-mips64.cc1514 dextm(rt, rs, pos, size); in Dextm()