Searched refs:first_reg (Results 1 – 5 of 5) sorted by relevance
/art/runtime/gc/space/ |
D | region_space-inl.h | 300 Region* first_reg = ®ions_[left]; in AllocLarge() local 301 DCHECK(first_reg->IsFree()); in AllocLarge() 302 first_reg->UnfreeLarge(time_); in AllocLarge() 304 first_reg->SetTop(first_reg->Begin() + num_bytes); in AllocLarge() 316 return reinterpret_cast<mirror::Object*>(first_reg->Begin()); in AllocLarge()
|
/art/compiler/optimizing/ |
D | code_generator_x86_64.cc | 2937 CpuRegister first_reg = locations->InAt(0).AsRegister<CpuRegister>(); in HandleShift() local 2945 __ shll(first_reg, second_reg); in HandleShift() 2947 __ sarl(first_reg, second_reg); in HandleShift() 2949 __ shrl(first_reg, second_reg); in HandleShift() 2954 __ shll(first_reg, imm); in HandleShift() 2956 __ sarl(first_reg, imm); in HandleShift() 2958 __ shrl(first_reg, imm); in HandleShift() 2967 __ shlq(first_reg, second_reg); in HandleShift() 2969 __ sarq(first_reg, second_reg); in HandleShift() 2971 __ shrq(first_reg, second_reg); in HandleShift() [all …]
|
D | builder.h | 149 uint16_t first_reg,
|
D | code_generator_arm.cc | 2490 Register first_reg = first.AsRegister<Register>(); in HandleShift() local 2496 __ Lsl(out_reg, first_reg, out_reg); in HandleShift() 2498 __ Asr(out_reg, first_reg, out_reg); in HandleShift() 2500 __ Lsr(out_reg, first_reg, out_reg); in HandleShift() 2506 __ Mov(out_reg, first_reg); in HandleShift() 2508 __ Lsl(out_reg, first_reg, shift_value); in HandleShift() 2510 __ Asr(out_reg, first_reg, shift_value); in HandleShift() 2512 __ Lsr(out_reg, first_reg, shift_value); in HandleShift()
|
D | code_generator_x86.cc | 2771 Register first_reg = first.AsRegister<Register>(); in HandleShift() local 2776 __ shll(first_reg, second_reg); in HandleShift() 2778 __ sarl(first_reg, second_reg); in HandleShift() 2780 __ shrl(first_reg, second_reg); in HandleShift() 2789 __ shll(first_reg, imm); in HandleShift() 2791 __ sarl(first_reg, imm); in HandleShift() 2793 __ shrl(first_reg, imm); in HandleShift()
|