Searched refs:array_length_offset (Results 1 – 9 of 9) sorted by relevance
/art/compiler/optimizing/ |
D | intrinsics_riscv64.cc | 3262 const MemberOffset array_length_offset = mirror::Array::LengthOffset(); in GenerateVarHandleArrayChecks() local 3323 __ Loadw(temp, object, array_length_offset.Int32Value()); in GenerateVarHandleArrayChecks() 4648 MemberOffset array_length_offset = mirror::Array::LengthOffset(); in EmitByteArrayViewCode() local 4669 __ Loadw(temp, object, array_length_offset.Int32Value()); in EmitByteArrayViewCode()
|
D | intrinsics_x86_64.cc | 3769 const MemberOffset array_length_offset = mirror::Array::LengthOffset(); in GenerateVarHandleArrayChecks() local 3829 __ cmpl(index, Address(object, array_length_offset.Int32Value())); in GenerateVarHandleArrayChecks() 5083 MemberOffset array_length_offset = mirror::Array::LengthOffset(); in EmitByteArrayViewCode() local 5100 __ movl(temp, Address(object, array_length_offset.Int32Value())); in EmitByteArrayViewCode()
|
D | intrinsics_arm_vixl.cc | 4262 const MemberOffset array_length_offset = mirror::Array::LengthOffset(); in GenerateVarHandleArrayChecks() local 4327 __ Ldr(temp, MemOperand(object, array_length_offset.Int32Value())); in GenerateVarHandleArrayChecks() 5545 MemberOffset array_length_offset = mirror::Array::LengthOffset(); in EmitByteArrayViewCode() local 5569 __ Ldr(temp, MemOperand(object, array_length_offset.Int32Value())); in EmitByteArrayViewCode()
|
D | intrinsics_arm64.cc | 4542 const MemberOffset array_length_offset = mirror::Array::LengthOffset(); in GenerateVarHandleArrayChecks() local 4605 __ Ldr(temp, HeapOperand(object, array_length_offset.Int32Value())); in GenerateVarHandleArrayChecks() 5689 MemberOffset array_length_offset = mirror::Array::LengthOffset(); in EmitByteArrayViewCode() local 5711 __ Ldr(temp, HeapOperand(object, array_length_offset.Int32Value())); in EmitByteArrayViewCode()
|
D | code_generator_arm64.cc | 4194 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitInstanceOf() local 4368 __ Ldr(out, HeapOperand(temp, array_length_offset)); in VisitInstanceOf() 4482 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitCheckCast() local 4634 __ Ldr(WRegisterFrom(maybe_temp2_loc), HeapOperand(temp.W(), array_length_offset)); in VisitCheckCast()
|
D | code_generator_riscv64.cc | 3245 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitCheckCast() local 3386 __ Loadw(temp2, temp, array_length_offset); in VisitCheckCast() 3898 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitInstanceOf() local 4032 __ Loadw(out, temp, array_length_offset); in VisitInstanceOf()
|
D | code_generator_x86_64.cc | 7113 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitInstanceOf() local 7316 __ movl(out, Address(temp, array_length_offset)); in VisitInstanceOf() 7450 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitCheckCast() local 7624 __ movl(maybe_temp2_loc.AsRegister<CpuRegister>(), Address(temp, array_length_offset)); in VisitCheckCast()
|
D | code_generator_x86.cc | 7777 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitInstanceOf() local 7974 __ movl(out, Address(temp, array_length_offset)); in VisitInstanceOf() 8102 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitCheckCast() local 8275 __ movl(maybe_temp2_loc.AsRegister<Register>(), Address(temp, array_length_offset)); in VisitCheckCast()
|
D | code_generator_arm_vixl.cc | 8160 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitInstanceOf() local 8391 __ Ldr(out, MemOperand(temp, array_length_offset)); in VisitInstanceOf() 8501 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value(); in VisitCheckCast() local 8657 __ Ldr(RegisterFrom(maybe_temp2_loc), MemOperand(temp, array_length_offset)); in VisitCheckCast()
|