Home
last modified time | relevance | path

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

/art/runtime/
Doat_file-inl.h28 inline const OatQuickMethodHeader* OatFile::OatMethod::GetOatQuickMethodHeader() const { in GetOatQuickMethodHeader()
37 inline uint32_t OatFile::OatMethod::GetOatQuickMethodHeaderOffset() const { in GetOatQuickMethodHeaderOffset()
45 inline size_t OatFile::OatMethod::GetFrameSizeInBytes() const { in GetFrameSizeInBytes()
53 inline uint32_t OatFile::OatMethod::GetCoreSpillMask() const { in GetCoreSpillMask()
61 inline uint32_t OatFile::OatMethod::GetFpSpillMask() const { in GetFpSpillMask()
69 inline uint32_t OatFile::OatMethod::GetVmapTableOffset() const { in GetVmapTableOffset()
74 inline const uint8_t* OatFile::OatMethod::GetVmapTable() const { in GetVmapTable()
86 inline uint32_t OatFile::OatMethod::GetQuickCodeSize() const { in GetQuickCodeSize()
94 inline const void* OatFile::OatMethod::GetQuickCode() const { in GetQuickCode()
Doat_file.h205 class OatMethod final {
227 OatMethod(const uint8_t* base, const uint32_t code_offset) in OatMethod() function
230 OatMethod(const OatMethod&) = default;
231 ~OatMethod() {} in ~OatMethod()
233 OatMethod& operator=(const OatMethod&) = default;
237 static const OatMethod Invalid() { in Invalid()
238 return OatMethod(nullptr, -1); in Invalid()
262 const OatMethod GetOatMethod(uint32_t method_index) const;
Dart_method.cc485 static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found) in FindOatMethodFromDexFileFor()
509 return OatFile::OatMethod::Invalid(); in FindOatMethodFromDexFileFor()
514 static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method, in FindOatMethodFor()
557 return OatFile::OatMethod::Invalid(); in FindOatMethodFor()
646 OatFile::OatMethod oat_method = in GetOatQuickMethodHeader()
685 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); in GetOatMethodQuickCode()
Doat_file.cc2409 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const { in GetOatMethod()
2412 return OatMethod(nullptr, 0); in GetOatMethod()
2417 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_); in GetOatMethod()
2421 return OatMethod(oat_file_->Begin(), 0); in GetOatMethod()
Dclass_linker.cc3682 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode()
/art/test/661-oat-writer-layout/
Dinfo.txt1 Tests Oat Writer is correctly changing the layout of OatMethod code addresses.
/art/oatdump/
Doatdump.cc284 void WalkOatMethod(const OatFile::OatMethod& oat_method, in WalkOatMethod()
854 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets()
1115 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod()
1336 const OatFile::OatMethod& oat_method, in DumpVmapData()
1355 const OatFile::OatMethod& oat_method) { in DumpCodeInfo()
1410 void DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpVregLocations()
1454 const OatFile::OatMethod& oat_method, in IsMethodGeneratedByOptimizingCompiler()
1502 const OatFile::OatMethod& oat_method, in DumpCode()
/art/dex2oat/linker/
Doat_writer_test.cc62 const OatFile::OatMethod& oat_method, in CheckMethod()