Home
last modified time | relevance | path

Searched refs:movs (Results 1 – 8 of 8) sorted by relevance

/art/compiler/utils/
Dassembler_thumb_test_expected.cc.inc2 " 0: 0008 movs r0, r1\n",
4 " 4: 2001 movs r0, #1\n",
14 " 0: 0008 movs r0, r1\n",
20 " 0: 0008 movs r0, r1\n",
44 " 40: 0008 movs r0, r1\n",
50 " 0: 2055 movs r0, #85 ; 0x55\n",
67 " 3c: 2055 movs r0, #85 ; 0x55\n",
277 " 0: 2002 movs r0, #2\n",
278 " 2: 2101 movs r1, #1\n",
281 " 8: 2102 movs r1, #2\n",
[all …]
Dassembler_thumb_test.cc241 __ movs(R0, ShifterOperand(R1)); in TEST() local
278 __ movs(R0, ShifterOperand(0x55)); in TEST() local
/art/compiler/utils/arm/
Dassembler_arm32.cc162 void Arm32Assembler::movs(Register rd, const ShifterOperand& so, Condition cond) { in movs() function in art::arm::Arm32Assembler
1157 movs(rd, ShifterOperand(rm, LSL, shift_imm), cond); in Lsl()
1169 movs(rd, ShifterOperand(rm, LSR, shift_imm), cond); in Lsr()
1181 movs(rd, ShifterOperand(rm, ASR, shift_imm), cond); in Asr()
1192 movs(rd, ShifterOperand(rm, ROR, shift_imm), cond); in Ror()
1200 movs(rd, ShifterOperand(rm, ROR, 0), cond); in Rrx()
1210 movs(rd, ShifterOperand(rm, LSL, rn), cond); in Lsl()
1220 movs(rd, ShifterOperand(rm, LSR, rn), cond); in Lsr()
1230 movs(rd, ShifterOperand(rm, ASR, rn), cond); in Asr()
1240 movs(rd, ShifterOperand(rm, ROR, rn), cond); in Ror()
Dassembler_arm32.h74 void movs(Register rd, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
Dassembler_arm32_test.cc611 T3Helper(&arm::Arm32Assembler::movs, true, "mov{cond}s {reg1}, {shift}", "movs"); in TEST_F()
Dassembler_thumb2.h96 void movs(Register rd, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
Dassembler_arm.h383 virtual void movs(Register rd, const ShifterOperand& so, Condition cond = AL) = 0;
Dassembler_thumb2.cc159 void Thumb2Assembler::movs(Register rd, const ShifterOperand& so, Condition cond) { in movs() function in art::arm::Thumb2Assembler