Searched refs:Load (Results 1 - 20 of 20) sorted by relevance

/art/runtime/
H A Dstack_map.h40 return region_.Load<uint8_t>(kDepthOffset);
48 return region_.Load<uint32_t>(kFixedSize + depth * SingleEntrySize());
93 return region_.Load<LocationKind>(
104 return region_.Load<int32_t>(
141 return region_.Load<uint32_t>(kDexPcOffset);
149 return region_.Load<T>(kNativePcOffset);
157 return region_.Load<uint32_t>(kDexRegisterMapOffsetOffset);
165 return region_.Load<uint32_t>(kInlineDescriptorOffsetOffset);
173 return region_.Load<uint32_t>(kRegisterMaskOffset);
235 return region_.Load<uint32_
[all...]
H A Dmemory_region.h47 template<typename T> T Load(uintptr_t offset) const { function in class:art::MemoryRegion
59 // Load a single bit in the region. The bit at offset 0 is the least
H A Delf_file.h50 // Load segments into memory based on PT_LOAD program headers
110 // Load segments into memory based on PT_LOAD program headers.
112 bool Load(bool executable, std::string* error_msg);
181 // Pointer to start of first PT_LOAD program segment after Load()
H A Doat_file.cc205 bool loaded = elf_file_->Load(executable, error_msg);
H A Delf_file.cc727 // Even if we Load(), it doesn't bring in all the sections.
778 // otherwise it will be wrongly 0 if ::Load has not yet been called.
1042 bool ElfFile::Load(bool executable, std::string* error_msg) { function in class:art::ElfFile
1142 // FindDynamicSymbolAddress returns the wrong values until Load is called.
/art/compiler/
H A Delf_writer_test.cc109 CHECK(ef->Load(false, &error_msg)) << error_msg;
/art/compiler/utils/arm64/
H A Dassembler_arm64.h126 // Load routines.
127 void Load(ManagedRegister dest, FrameOffset src, size_t size) OVERRIDE;
229 void Load(Arm64ManagedRegister dst, Register src, int32_t src_offset, size_t size);
H A Dassembler_arm64.cc195 // Load routines.
256 void Arm64Assembler::Load(Arm64ManagedRegister dest, Register base, function in class:art::arm64::Arm64Assembler
279 void Arm64Assembler::Load(ManagedRegister m_dst, FrameOffset src, size_t size) { function in class:art::arm64::Arm64Assembler
280 return Load(m_dst.AsArm64(), SP, src.Int32Value(), size);
284 return Load(m_dst.AsArm64(), ETR, src.Int32Value(), size);
/art/compiler/jni/quick/
H A Djni_compiler.cc376 __ Load(out_reg, saved_cookie_offset, 4);
414 __ Load(mr_conv->ReturnRegister(), return_save_location, mr_conv->SizeOfReturnValue());
507 __ Load(out_reg, in_off, param_size);
/art/compiler/utils/
H A Dassembler.h186 template<typename T> T Load(size_t position) { function in class:art::AssemblerBuffer
408 // Load routines
409 virtual void Load(ManagedRegister dest, FrameOffset src, size_t size) = 0;
/art/compiler/utils/x86/
H A Dassembler_x86.cc1316 int next = buffer_.Load<int32_t>(position);
1520 void X86Assembler::Load(ManagedRegister mdest, FrameOffset src, size_t size) { function in class:art::x86::X86Assembler
1674 Load(scratch, fr_offs, 4);
1683 Load(scratch, src, 4);
1685 Load(scratch, FrameOffset(src.Int32Value() + 4), 4);
1688 Load(scratch, src, size);
H A Dassembler_x86.h492 // Load routines
493 void Load(ManagedRegister dest, FrameOffset src, size_t size) OVERRIDE;
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc1512 int next = buffer_.Load<int32_t>(position);
1879 void X86_64Assembler::Load(ManagedRegister mdest, FrameOffset src, size_t size) { function in class:art::x86_64::X86_64Assembler
2033 Load(scratch, fr_offs, 8);
2042 Load(scratch, src, 4);
2044 Load(scratch, FrameOffset(src.Int32Value() + 4), 4);
2047 Load(scratch, src, size);
H A Dassembler_x86_64.h534 // Load routines
535 void Load(ManagedRegister dest, FrameOffset src, size_t size) OVERRIDE;
/art/compiler/utils/mips/
H A Dassembler_mips.h188 // Load routines
189 void Load(ManagedRegister mdest, FrameOffset src, size_t size) OVERRIDE;
H A Dassembler_mips.cc153 int32_t next = buffer_.Load<int32_t>(position);
669 void MipsAssembler::Load(ManagedRegister mdest, FrameOffset src, size_t size) { function in class:art::mips::MipsAssembler
/art/compiler/utils/arm/
H A Dassembler_arm.cc564 void ArmAssembler::Load(ManagedRegister m_dst, FrameOffset src, size_t size) {
H A Dassembler_arm.h170 // Load/store multiple addressing mode.
419 // Load/store instructions.
540 // Load and Store. May clobber IP.
644 // Load routines
645 void Load(ManagedRegister dest, FrameOffset src, size_t size) OVERRIDE;
H A Dassembler_arm32.cc1211 int32_t next = buffer_.Load<int32_t>(position);
H A Dassembler_thumb2.cc2094 uint16_t next = buffer_.Load<uint16_t>(branch_location); // Get next in chain.

Completed in 742 milliseconds