/art/compiler/utils/ |
D | assembler_thumb_test_expected.cc.inc | 2 " 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 …]
|
D | assembler_thumb_test.cc | 241 __ movs(R0, ShifterOperand(R1)); in TEST() local 278 __ movs(R0, ShifterOperand(0x55)); in TEST() local
|
/art/compiler/utils/arm/ |
D | assembler_arm32.cc | 162 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()
|
D | assembler_arm32.h | 74 void movs(Register rd, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
|
D | assembler_arm32_test.cc | 611 T3Helper(&arm::Arm32Assembler::movs, true, "mov{cond}s {reg1}, {shift}", "movs"); in TEST_F()
|
D | assembler_thumb2.h | 96 void movs(Register rd, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
|
D | assembler_arm.h | 383 virtual void movs(Register rd, const ShifterOperand& so, Condition cond = AL) = 0;
|
D | assembler_thumb2.cc | 159 void Thumb2Assembler::movs(Register rd, const ShifterOperand& so, Condition cond) { in movs() function in art::arm::Thumb2Assembler
|