Searched refs:Store (Results 1 - 16 of 16) sorted by relevance

/art/runtime/
H A Dstack_map.h44 region_.Store<uint8_t>(kDepthOffset, depth);
52 region_.Store<uint32_t>(kFixedSize + depth * SingleEntrySize(), index);
99 region_.Store<LocationKind>(entry, kind);
100 region_.Store<int32_t>(entry + sizeof(LocationKind), value);
145 region_.Store<uint32_t>(kDexPcOffset, dex_pc);
153 return region_.Store<T>(kNativePcOffset, native_pc);
161 return region_.Store<uint32_t>(kDexRegisterMapOffsetOffset, offset);
169 return region_.Store<uint32_t>(kInlineDescriptorOffsetOffset, offset);
177 region_.Store<uint32_t>(kRegisterMaskOffset, mask);
239 region_.Store<uint32_
[all...]
H A Dmemory_region.h51 template<typename T> void Store(uintptr_t offset, T value) const { function in class:art::MemoryRegion
/art/compiler/jni/quick/
H A Djni_compiler.cc238 __ Store(saved_cookie_offset, main_jni_conv->IntReturnRegister(), 4);
338 __ Store(return_save_location, main_jni_conv->ReturnRegister(), main_jni_conv->SizeOfReturnValue());
524 __ Store(out_off, in_reg, param_size);
/art/compiler/utils/
H A Dassembler.h191 template<typename T> void Store(size_t position, T value) { function in class:art::AssemblerBuffer
382 // Store routines
383 virtual void Store(FrameOffset offs, ManagedRegister src, size_t size) = 0;
/art/compiler/utils/arm64/
H A Dassembler_arm64.h113 // Store routines.
114 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
H A Dassembler_arm64.cc122 void Arm64Assembler::Store(FrameOffset offs, ManagedRegister m_src, size_t size) { function in class:art::arm64::Arm64Assembler
/art/compiler/utils/x86/
H A Dassembler_x86.cc1317 buffer_.Store<int32_t>(position, bound - (position + 4));
1452 void X86Assembler::Store(FrameOffset offs, ManagedRegister msrc, size_t size) { function in class:art::x86::X86Assembler
1666 Store(fr_offs, scratch, 4);
1684 Store(dest, scratch, 4);
1686 Store(FrameOffset(dest.Int32Value() + 4), scratch, 4);
1689 Store(dest, scratch, size);
1778 Store(out_off, scratch, 4);
H A Dassembler_x86.h474 // Store routines
475 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc1513 buffer_.Store<int32_t>(position, bound - (position + 4));
1806 void X86_64Assembler::Store(FrameOffset offs, ManagedRegister msrc, size_t size) { function in class:art::x86_64::X86_64Assembler
2025 Store(fr_offs, scratch, 8);
2043 Store(dest, scratch, 4);
2045 Store(FrameOffset(dest.Int32Value() + 4), scratch, 4);
2048 Store(dest, scratch, size);
2143 Store(out_off, scratch, 8);
H A Dassembler_x86_64.h516 // Store routines
517 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
/art/compiler/utils/mips/
H A Dassembler_mips.h170 // Store routines
171 void Store(FrameOffset offs, ManagedRegister msrc, size_t size) OVERRIDE;
H A Dassembler_mips.cc156 buffer_.Store<int32_t>(position, encoded);
598 void MipsAssembler::Store(FrameOffset dest, ManagedRegister msrc, size_t size) { function in class:art::mips::MipsAssembler
/art/compiler/utils/arm/
H A Dassembler_thumb2.cc1201 buffer->Store<int16_t>(location_, static_cast<int16_t>(encoding >> 16));
1202 buffer->Store<int16_t>(location_+2, static_cast<int16_t>(encoding & 0xffff));
1214 buffer->Store<int16_t>(location_, encoding);
1226 buffer->Store<int16_t>(location_, encoding);
2111 buffer_.Store<int16_t>(branch_location, cmp);
H A Dassembler_arm.cc455 void ArmAssembler::Store(FrameOffset dest, ManagedRegister msrc, size_t size) {
H A Dassembler_arm.h540 // Load and Store. May clobber IP.
626 // Store routines
627 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
H A Dassembler_arm32.cc1213 buffer_.Store<int32_t>(position, encoded);

Completed in 198 milliseconds