Home
last modified time | relevance | path

Searched refs:OatMethod (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Doat_file-inl.h24 inline const OatQuickMethodHeader* OatFile::OatMethod::GetOatQuickMethodHeader() const { in GetOatQuickMethodHeader()
33 inline uint32_t OatFile::OatMethod::GetOatQuickMethodHeaderOffset() const { in GetOatQuickMethodHeaderOffset()
41 inline uint32_t OatFile::OatMethod::GetQuickCodeSize() const { in GetQuickCodeSize()
49 inline uint32_t OatFile::OatMethod::GetQuickCodeSizeOffset() const { in GetQuickCodeSizeOffset()
57 inline size_t OatFile::OatMethod::GetFrameSizeInBytes() const { in GetFrameSizeInBytes()
65 inline uint32_t OatFile::OatMethod::GetCoreSpillMask() const { in GetCoreSpillMask()
73 inline uint32_t OatFile::OatMethod::GetFpSpillMask() const { in GetFpSpillMask()
81 inline uint32_t OatFile::OatMethod::GetMappingTableOffset() const { in GetMappingTableOffset()
86 inline uint32_t OatFile::OatMethod::GetMappingTableOffsetOffset() const { in GetMappingTableOffsetOffset()
94 inline uint32_t OatFile::OatMethod::GetVmapTableOffset() const { in GetVmapTableOffset()
[all …]
Doat_file.h89 class OatMethod {
150 ~OatMethod();
153 OatMethod(const byte* base,
157 OatMethod() {} in OatMethod() function
190 const OatMethod GetOatMethod(uint32_t method_index) const;
Doat_file.cc565 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const { in GetOatMethod()
568 return OatMethod(nullptr, 0, 0); in GetOatMethod()
573 return OatMethod( in GetOatMethod()
579 return OatMethod(oat_file_->Begin(), 0, 0); in GetOatMethod()
583 OatFile::OatMethod::OatMethod(const byte* base, in OatMethod() function in art::OatFile::OatMethod
591 OatFile::OatMethod::~OatMethod() {} in ~OatMethod()
593 void OatFile::OatMethod::LinkMethod(mirror::ArtMethod* method) const { in LinkMethod()
Dclass_linker.h406 bool FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method)
Dclass_linker.cc2365 bool ClassLinker::FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method) { in FindOatMethodFor()
2412 OatFile::OatMethod oat_method; in GetQuickOatCodeFor()
2443 OatFile::OatMethod oat_method; in GetPortableOatCodeFor()
2549 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines()
2606 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index); in LinkCode()
/art/compiler/
Dcommon_compiler_test.cc145 OatFile::OatMethod CommonCompilerTest::CreateOatMethod(const void* code, const uint8_t* gc_map) { in CreateOatMethod()
160 return OatFile::OatMethod(base, code_offset, gc_map_offset); in CreateOatMethod()
213 OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); in MakeExecutable()
225 OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); in MakeExecutable()
231 OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); in MakeExecutable()
Dcommon_compiler_test.h45 OatFile::OatMethod CreateOatMethod(const void* code, const uint8_t* gc_map);
Doat_test.cc39 const OatFile::OatMethod& oat_method, in CheckMethod()
/art/oatdump/
Doatdump.cc343 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets()
467 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod()
666 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) { in DumpVmap()
693 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method, in DescribeVReg()
714 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpGcMapRegisters()
738 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpGcMap()
765 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) { in DumpMappingTable()
793 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpMappingAtOffset()
816 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpGcMapAtNativePcOffset()
847 const OatFile::OatMethod& oat_method, in DumpVRegsAtDexPc()
[all …]