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.h410 Region* first_reg = &regions_[left]; in AllocLargeInRange() local
411 DCHECK(first_reg->IsFree()); in AllocLargeInRange()
412 first_reg->UnfreeLarge(this, time_); in AllocLargeInRange()
421 first_reg->SetTop(first_reg->Begin() + allocated); in AllocLargeInRange()
424 first_reg->SetNewlyAllocated(); in AllocLargeInRange()
445 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.cc4485 CpuRegister first_reg = locations->InAt(0).AsRegister<CpuRegister>(); in HandleShift() local
4493 __ shll(first_reg, second_reg); in HandleShift()
4495 __ sarl(first_reg, second_reg); in HandleShift()
4497 __ shrl(first_reg, second_reg); in HandleShift()
4502 __ shll(first_reg, imm); in HandleShift()
4504 __ sarl(first_reg, imm); in HandleShift()
4506 __ shrl(first_reg, imm); in HandleShift()
4515 __ shlq(first_reg, second_reg); in HandleShift()
4517 __ sarq(first_reg, second_reg); in HandleShift()
4519 __ shrq(first_reg, second_reg); in HandleShift()
[all …]
Dinstruction_builder.h132 uint16_t first_reg,
Dcode_generator_arm_vixl.cc5191 vixl32::Register first_reg = InputRegisterAt(op, 0); in HandleShift() local
5197 __ Lsl(out_reg, first_reg, out_reg); in HandleShift()
5199 __ Asr(out_reg, first_reg, out_reg); in HandleShift()
5201 __ Lsr(out_reg, first_reg, out_reg); in HandleShift()
5207 __ Mov(out_reg, first_reg); in HandleShift()
5209 __ Lsl(out_reg, first_reg, shift_value); in HandleShift()
5211 __ Asr(out_reg, first_reg, shift_value); in HandleShift()
5213 __ Lsr(out_reg, first_reg, shift_value); in HandleShift()
8345 vixl32::Register first_reg = RegisterFrom(first); in VisitBitwiseNegatedRight() local
8351 __ Bic(out_reg, first_reg, second_reg); in VisitBitwiseNegatedRight()
[all …]
Dcode_generator_x86.cc4426 Register first_reg = first.AsRegister<Register>(); in HandleShift() local
4431 __ shll(first_reg, second_reg); in HandleShift()
4433 __ sarl(first_reg, second_reg); in HandleShift()
4435 __ shrl(first_reg, second_reg); in HandleShift()
4444 __ shll(first_reg, imm); in HandleShift()
4446 __ sarl(first_reg, imm); in HandleShift()
4448 __ shrl(first_reg, imm); in HandleShift()
4618 Register first_reg = first.AsRegister<Register>(); in VisitRor() local
4621 __ rorl(first_reg, second_reg); in VisitRor()
4624 __ rorl(first_reg, imm); in VisitRor()