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 const uint8_t* OatFile::OatMethod::GetGcMap() const { in GetGcMap()
93 uint32_t OatFile::OatMethod::GetGcMapOffset() const { in GetGcMapOffset()
98 uint32_t OatFile::OatMethod::GetGcMapOffsetOffset() const { in GetGcMapOffsetOffset()
[all …]
Doat_file.h92 class OatMethod {
150 ~OatMethod();
153 OatMethod(const byte* base, const uint32_t code_offset);
155 OatMethod() {} in OatMethod() function
187 const OatMethod GetOatMethod(uint32_t method_index) const;
Doat_file.cc572 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const { in GetOatMethod()
575 return OatMethod(nullptr, 0); in GetOatMethod()
580 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_); in GetOatMethod()
583 return OatMethod(oat_file_->Begin(), 0); in GetOatMethod()
587 OatFile::OatMethod::OatMethod(const byte* base, in OatMethod() function in art::OatFile::OatMethod
593 OatFile::OatMethod::~OatMethod() {} in ~OatMethod()
595 void OatFile::OatMethod::LinkMethod(mirror::ArtMethod* method) const { in LinkMethod()
Dclass_linker.h431 bool FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method)
Dclass_linker.cc2392 bool ClassLinker::FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method) { in FindOatMethodFor()
2439 OatFile::OatMethod oat_method; in GetQuickOatCodeFor()
2470 OatFile::OatMethod oat_method; in GetPortableOatCodeFor()
2497 OatFile::OatMethod oat_method; in GetOatMethodQuickCodeFor()
2585 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines()
2642 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) { in CreateOatMethod()
150 return OatFile::OatMethod(base, code_offset); in CreateOatMethod()
208 OatFile::OatMethod oat_method = CreateOatMethod(method_code); in MakeExecutable()
220 OatFile::OatMethod oat_method = CreateOatMethod(method_code); in MakeExecutable()
226 OatFile::OatMethod oat_method = CreateOatMethod(method_code); in MakeExecutable()
Dcommon_compiler_test.h45 OatFile::OatMethod CreateOatMethod(const void* code);
Doat_test.cc39 const OatFile::OatMethod& oat_method, in CheckMethod()
/art/oatdump/
Doatdump.cc350 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets()
474 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod()
673 void DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) { in DumpVmap()
700 void DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method, in DescribeVReg()
721 void DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpGcMapRegisters()
745 void DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpGcMap()
772 void DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) { in DumpMappingTable()
800 uint32_t DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpMappingAtOffset()
823 void DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpGcMapAtNativePcOffset()
854 const OatFile::OatMethod& oat_method, in DumpVRegsAtDexPc()
[all …]