/art/runtime/ |
D | stack_map.h | 44 region_.Store<uint8_t>(kDepthOffset, depth); in SetDepth() 52 region_.Store<uint32_t>(kFixedSize + depth * SingleEntrySize(), index); in SetMethodReferenceIndexAtDepth() 99 region_.Store<LocationKind>(entry, kind); in SetRegisterInfo() 100 region_.Store<int32_t>(entry + sizeof(LocationKind), value); in SetRegisterInfo() 145 region_.Store<uint32_t>(kDexPcOffset, dex_pc); in SetDexPc() 153 return region_.Store<T>(kNativePcOffset, native_pc); in SetNativePc() 161 return region_.Store<uint32_t>(kDexRegisterMapOffsetOffset, offset); in SetDexRegisterMapOffset() 169 return region_.Store<uint32_t>(kInlineDescriptorOffsetOffset, offset); in SetInlineDescriptorOffset() 177 region_.Store<uint32_t>(kRegisterMaskOffset, mask); in SetRegisterMask() 239 region_.Store<uint32_t>(kStackMaskSizeOffset, size); in SetStackMaskSize() [all …]
|
D | memory_region.h | 51 template<typename T> void Store(uintptr_t offset, T value) const { in Store() function
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 238 __ Store(saved_cookie_offset, main_jni_conv->IntReturnRegister(), 4); in ArtJniCompileMethodInternal() local 338 …__ Store(return_save_location, main_jni_conv->ReturnRegister(), main_jni_conv->SizeOfReturnValue()… in ArtJniCompileMethodInternal() local 524 __ Store(out_off, in_reg, param_size); in CopyParameter() local
|
/art/compiler/utils/ |
D | assembler.h | 191 template<typename T> void Store(size_t position, T value) { in Store() function 383 virtual void Store(FrameOffset offs, ManagedRegister src, size_t size) = 0;
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 1317 buffer_.Store<int32_t>(position, bound - (position + 4)); in Bind() 1452 void X86Assembler::Store(FrameOffset offs, ManagedRegister msrc, size_t size) { in Store() function in art::x86::X86Assembler 1666 Store(fr_offs, scratch, 4); in CopyRawPtrFromThread32() 1684 Store(dest, scratch, 4); in Copy() 1686 Store(FrameOffset(dest.Int32Value() + 4), scratch, 4); in Copy() 1689 Store(dest, scratch, size); in Copy() 1778 Store(out_off, scratch, 4); in CreateHandleScopeEntry()
|
D | assembler_x86.h | 475 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 1513 buffer_.Store<int32_t>(position, bound - (position + 4)); in Bind() 1806 void X86_64Assembler::Store(FrameOffset offs, ManagedRegister msrc, size_t size) { in Store() function in art::x86_64::X86_64Assembler 2025 Store(fr_offs, scratch, 8); in CopyRawPtrFromThread64() 2043 Store(dest, scratch, 4); in Copy() 2045 Store(FrameOffset(dest.Int32Value() + 4), scratch, 4); in Copy() 2048 Store(dest, scratch, size); in Copy() 2143 Store(out_off, scratch, 8); in CreateHandleScopeEntry()
|
D | assembler_x86_64.h | 517 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
|
/art/compiler/utils/arm64/ |
D | assembler_arm64.h | 114 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
|
D | assembler_arm64.cc | 122 void Arm64Assembler::Store(FrameOffset offs, ManagedRegister m_src, size_t size) { in Store() function in art::arm64::Arm64Assembler
|
/art/compiler/utils/arm/ |
D | assembler_thumb2.cc | 1201 buffer->Store<int16_t>(location_, static_cast<int16_t>(encoding >> 16)); in Emit() 1202 buffer->Store<int16_t>(location_+2, static_cast<int16_t>(encoding & 0xffff)); in Emit() 1214 buffer->Store<int16_t>(location_, encoding); in Emit() 1226 buffer->Store<int16_t>(location_, encoding); in Emit() 2111 buffer_.Store<int16_t>(branch_location, cmp); in Bind()
|
D | assembler_arm.cc | 455 void ArmAssembler::Store(FrameOffset dest, ManagedRegister msrc, size_t size) { in Store() function in art::arm::ArmAssembler
|
D | assembler_arm.h | 627 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
|
D | assembler_arm32.cc | 1213 buffer_.Store<int32_t>(position, encoded); in Bind()
|
/art/compiler/utils/mips/ |
D | assembler_mips.h | 171 void Store(FrameOffset offs, ManagedRegister msrc, size_t size) OVERRIDE;
|
D | assembler_mips.cc | 156 buffer_.Store<int32_t>(position, encoded); in Bind() 598 void MipsAssembler::Store(FrameOffset dest, ManagedRegister msrc, size_t size) { in Store() function in art::mips::MipsAssembler
|