Home
last modified time | relevance | path

Searched refs:R3 (Results 1 – 10 of 10) sorted by relevance

/art/compiler/utils/
Dassembler_thumb_test.cc437 __ movs(R3, ShifterOperand(R4, LSL, 4)); in TEST_F()
438 __ movs(R3, ShifterOperand(R4, LSR, 5)); in TEST_F()
439 __ movs(R3, ShifterOperand(R4, ASR, 6)); in TEST_F()
442 __ movs(R3, ShifterOperand(R4, ROR, 7)); in TEST_F()
445 __ movs(R3, ShifterOperand(R4, RRX)); in TEST_F()
448 __ mov(R3, ShifterOperand(R4, LSL, 4), AL, kCcKeep); in TEST_F()
449 __ mov(R3, ShifterOperand(R4, LSR, 5), AL, kCcKeep); in TEST_F()
450 __ mov(R3, ShifterOperand(R4, ASR, 6), AL, kCcKeep); in TEST_F()
451 __ mov(R3, ShifterOperand(R4, ROR, 7), AL, kCcKeep); in TEST_F()
452 __ mov(R3, ShifterOperand(R4, RRX), AL, kCcKeep); in TEST_F()
[all …]
/art/runtime/arch/arm/
Dregisters_arm.h30 R3 = 3, enumerator
Dcontext_arm.cc79 gprs_[R3] = nullptr; in SmashCallerSaves()
Dquick_method_frame_info_arm.h34 (1 << art::arm::R1) | (1 << art::arm::R2) | (1 << art::arm::R3);
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc27 R0, R1, R2, R3
137 entry_spills_.push_back(ArmManagedRegister::FromCoreRegister(R3)); in EntrySpills()
296 R0, R1, R2, R3
/art/compiler/optimizing/
Dcode_generator_arm.h37 static constexpr Register kParameterCoreRegisters[] = { R1, R2, R3 };
45 static constexpr Register kRuntimeParameterCoreRegisters[] = { R0, R1, R2, R3 };
117 ? Location::RegisterPairLocation(R2, R3) in GetSetValueLocation()
Dcode_generator_arm.cc2993 locations->SetOut(Location::RegisterPairLocation(R2, R3)); in VisitRem()
3803 locations->AddTemp(Location::RegisterLocation(R3)); in HandleFieldSet()
/art/compiler/utils/arm/
Dassembler_thumb2_test.cc52 new arm::Register(arm::R3), in SetUpHelpers()
186 __ ldrexd(arm::R5, arm::R3, arm::R7); in TEST_F()
200 __ strexd(arm::R9, arm::R5, arm::R3, arm::R7); in TEST_F()
267 __ umull(arm::R0, arm::R1, arm::R2, arm::R3); in TEST_F()
275 __ smull(arm::R0, arm::R1, arm::R2, arm::R3); in TEST_F()
839 __ LoadLiteral(arm::R1, arm::R3, literal); in TEST_F()
863 __ LoadLiteral(arm::R1, arm::R3, literal); in TEST_F()
Dassembler_arm32_test.cc86 new arm::Register(arm::R3), in SetUpHelpers()
148 shifter_operands_.push_back(arm::ShifterOperand(arm::R3)); in SetUpHelpers()
Dmanaged_register_arm_test.cc260 EXPECT_EQ(R3, reg.AsRegisterPairHigh()); in TEST()