Searched defs:Load (Results 1 - 12 of 12) sorted by relevance

/art/runtime/
H A Dmemory_region.h52 // Load value of type `T` at `offset`. The memory address corresponding
55 ALWAYS_INLINE T Load(uintptr_t offset) const { function in class:art::FINAL
71 // Load value of type `T` at `offset`. The memory address corresponding
105 // Load a single bit in the region. The bit at offset 0 is the least
123 // Load `length` bits from the region starting at bit offset `bit_offset`.
H A Doat_file.cc75 // 2) Load() to try to open the file.
103 virtual bool Load(const std::string& elf_filename,
146 if (!ret->Load(elf_filename,
526 bool Load(const std::string& elf_filename,
589 bool DlOpenOatFile::Load(const std::string& elf_filename, function in class:art::DlOpenOatFile
786 bool Load(const std::string& elf_filename,
863 bool ElfOatFile::Load(const std::string& elf_filename, function in class:art::ElfOatFile
901 bool loaded = elf_file_->Load(file, executable, low_4gb, error_msg);
H A Delf_file.cc709 // Even if we Load(), it doesn't bring in all the sections.
764 // otherwise it will be wrongly 0 if ::Load has not yet been called.
1073 bool ElfFileImpl<ElfTypes>::Load(File* file, function in class:art::ElfFileImpl
1161 // FindDynamicSymbolAddress returns the wrong values until Load is called.
1787 bool ElfFile::Load(File* file, bool executable, bool low_4gb, std::string* error_msg) { function in class:art::ElfFile
1788 DELEGATE_TO_IMPL(Load, file, executable, low_4gb, error_msg);
H A Dstack_map.h665 ALWAYS_INLINE int32_t Load(const MemoryRegion& region) const { function in struct:art::DexRegisterLocation::FieldEncoding
674 // Load the value (reading only the strictly needed bytes).
697 DCHECK_EQ(Load(region), value);
799 return encoding.GetDexPcEncoding().Load(region_);
807 return encoding.GetNativePcEncoding().Load(region_);
815 return encoding.GetDexRegisterMapEncoding().Load(region_);
823 return encoding.GetInlineInfoEncoding().Load(region_);
831 return encoding.GetRegisterMaskEncoding().Load(region_);
958 return encoding.GetMethodIndexEncoding().Load(GetRegionAtDepth(encoding, depth));
969 return encoding.GetDexPcEncoding().Load(GetRegionAtDept
[all...]
/art/compiler/utils/
H A Dassembler.h104 template<typename T> T Load(size_t position) { function in class:art::AssemblerBuffer
413 // Load routines
414 virtual void Load(ManagedRegister dest, FrameOffset src, size_t size) = 0;
/art/runtime/jit/
H A Doffline_profiling_info.cc89 // Load the file but keep a copy around to be able to infer if the content has changed.
459 bool ProfileCompilationInfo::Load(int fd) { function in class:art::ProfileCompilationInfo
/art/compiler/utils/arm64/
H A Dassembler_arm64.cc200 // Load routines.
261 void Arm64Assembler::Load(Arm64ManagedRegister dest, XRegister base, function in class:art::arm64::Arm64Assembler
284 void Arm64Assembler::Load(ManagedRegister m_dst, FrameOffset src, size_t size) { function in class:art::arm64::Arm64Assembler
285 return Load(m_dst.AsArm64(), SP, src.Int32Value(), size);
289 return Load(m_dst.AsArm64(), TR, src.Int32Value(), size);
/art/compiler/utils/x86/
H A Dassembler_x86.cc1793 int next = buffer_.Load<int32_t>(position);
1806 uint8_t delta = buffer_.Load<uint8_t>(position);
2068 void X86Assembler::Load(ManagedRegister mdest, FrameOffset src, size_t size) { function in class:art::x86::X86Assembler
2222 Load(scratch, fr_offs, 4);
2231 Load(scratch, src, 4);
2233 Load(scratch, FrameOffset(src.Int32Value() + 4), 4);
2236 Load(scratch, src, size);
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc2354 int next = buffer_.Load<int32_t>(position);
2367 uint8_t delta = buffer_.Load<uint8_t>(position);
2819 void X86_64Assembler::Load(ManagedRegister mdest, FrameOffset src, size_t size) { function in class:art::x86_64::X86_64Assembler
2975 Load(scratch, fr_offs, 8);
2983 Load(scratch, src, 4);
2985 Load(scratch, FrameOffset(src.Int32Value() + 4), 4);
2988 Load(scratch, src, size);
/art/compiler/optimizing/
H A Dcode_generator_arm64.cc1287 void CodeGeneratorARM64::Load(Primitive::Type type, function in class:art::arm64::CodeGeneratorARM64
1660 codegen_->Load(field_type, OutputCPURegister(instruction), field);
2058 // Block pools between `Load` and `MaybeRecordImplicitNullCheck`.
2097 codegen_->Load(type, OutputCPURegister(instruction), source);
3640 // Load method address from literal pool.
3644 // Load method address from literal pool with a link-time patch.
4813 // Load jump offset from the table.
4834 // Load with fast path based Baker's read barrier.
4844 // Load with slow path based read barrier.
4871 // Load wit
[all...]
/art/compiler/utils/mips/
H A Dassembler_mips.cc1874 uint32_t prev = buffer_.Load<uint32_t>(branch_location);
2605 void MipsAssembler::Load(ManagedRegister mdest, FrameOffset src, size_t size) { function in class:art::mips::MipsAssembler
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc1539 uint32_t prev = buffer_.Load<uint32_t>(branch_location);
1891 UNIMPLEMENTED(FATAL) << "We only support Load() of size 4 and 8";
1901 UNIMPLEMENTED(FATAL) << "We only support Load() of size 4 and 8";
2134 void Mips64Assembler::Load(ManagedRegister mdest, FrameOffset src, size_t size) { function in class:art::mips64::Mips64Assembler

Completed in 219 milliseconds