Home
last modified time | relevance | path

Searched refs:first_reg (Results 1 – 6 of 6) sorted by relevance

/art/runtime/gc/space/
Dregion_space-inl.h415 Region* first_reg = &regions_[left]; in AllocLargeInRange() local
416 DCHECK(first_reg->IsFree()); in AllocLargeInRange()
417 first_reg->UnfreeLarge(this, time_); in AllocLargeInRange()
426 first_reg->SetTop(first_reg->Begin() + allocated); in AllocLargeInRange()
429 first_reg->SetNewlyAllocated(); in AllocLargeInRange()
450 mirror::Object* large_region = reinterpret_cast<mirror::Object*>(first_reg->Begin()); in AllocLargeInRange()
/art/libdexfile/dex/
Ddex_instruction.cc429 uint16_t first_reg = VRegC_3rc(); in DumpString() local
439 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, first_reg, last_reg) in DumpString()
447 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, first_reg, last_reg) in DumpString()
455 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, first_reg, last_reg) in DumpString()
461 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, first_reg, last_reg) in DumpString()
/art/compiler/optimizing/
Dcode_generator_x86_64.cc4272 CpuRegister first_reg = locations->InAt(0).AsRegister<CpuRegister>(); in HandleShift() local
4280 __ shll(first_reg, second_reg); in HandleShift()
4282 __ sarl(first_reg, second_reg); in HandleShift()
4284 __ shrl(first_reg, second_reg); in HandleShift()
4289 __ shll(first_reg, imm); in HandleShift()
4291 __ sarl(first_reg, imm); in HandleShift()
4293 __ shrl(first_reg, imm); in HandleShift()
4302 __ shlq(first_reg, second_reg); in HandleShift()
4304 __ sarq(first_reg, second_reg); in HandleShift()
4306 __ shrq(first_reg, second_reg); in HandleShift()
[all …]
Dinstruction_builder.h134 uint16_t first_reg,
Dcode_generator_arm_vixl.cc4842 vixl32::Register first_reg = InputRegisterAt(op, 0); in HandleShift() local
4848 __ Lsl(out_reg, first_reg, out_reg); in HandleShift()
4850 __ Asr(out_reg, first_reg, out_reg); in HandleShift()
4852 __ Lsr(out_reg, first_reg, out_reg); in HandleShift()
4858 __ Mov(out_reg, first_reg); in HandleShift()
4860 __ Lsl(out_reg, first_reg, shift_value); in HandleShift()
4862 __ Asr(out_reg, first_reg, shift_value); in HandleShift()
4864 __ Lsr(out_reg, first_reg, shift_value); in HandleShift()
7976 vixl32::Register first_reg = RegisterFrom(first); in VisitBitwiseNegatedRight() local
7982 __ Bic(out_reg, first_reg, second_reg); in VisitBitwiseNegatedRight()
[all …]
Dcode_generator_x86.cc4255 Register first_reg = first.AsRegister<Register>(); in HandleShift() local
4260 __ shll(first_reg, second_reg); in HandleShift()
4262 __ sarl(first_reg, second_reg); in HandleShift()
4264 __ shrl(first_reg, second_reg); in HandleShift()
4273 __ shll(first_reg, imm); in HandleShift()
4275 __ sarl(first_reg, imm); in HandleShift()
4277 __ shrl(first_reg, imm); in HandleShift()
4447 Register first_reg = first.AsRegister<Register>(); in VisitRor() local
4450 __ rorl(first_reg, second_reg); in VisitRor()
4453 __ rorl(first_reg, imm); in VisitRor()