Home
last modified time | relevance | path

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

/art/runtime/oat/
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.h214 class OatMethod final {
236 OatMethod(const uint8_t* base, const uint32_t code_offset) in OatMethod() function
239 OatMethod(const OatMethod&) = default;
240 ~OatMethod() {} in ~OatMethod()
242 OatMethod& operator=(const OatMethod&) = default;
246 static const OatMethod Invalid() { in Invalid()
247 return OatMethod(nullptr, -1); in Invalid()
271 EXPORT const OatMethod GetOatMethod(uint32_t method_index) const;
Doat_file.cc2431 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const { in GetOatMethod()
2434 return OatMethod(nullptr, 0); in GetOatMethod()
2439 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_); in GetOatMethod()
2443 return OatMethod(oat_file_->Begin(), 0); in GetOatMethod()
/art/test/661-oat-writer-layout/
Dinfo.txt1 Tests Oat Writer is correctly changing the layout of OatMethod code addresses.
/art/runtime/
Dart_method.cc484 static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found) in FindOatMethodFromDexFileFor()
507 return OatFile::OatMethod::Invalid(); in FindOatMethodFromDexFileFor()
512 static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method, in FindOatMethodFor()
555 return OatFile::OatMethod::Invalid(); in FindOatMethodFor()
650 OatFile::OatMethod oat_method = in GetOatQuickMethodHeader()
714 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); in GetOatMethodQuickCode()
/art/oatdump/
Doatdump.cc290 void WalkOatMethod(const OatFile::OatMethod& oat_method, in WalkOatMethod()
872 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets()
1136 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod()
1357 const OatFile::OatMethod& oat_method, in DumpVmapData()
1376 const OatFile::OatMethod& oat_method) { in DumpCodeInfo()
1431 void DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpVregLocations()
1475 const OatFile::OatMethod& oat_method, in IsMethodGeneratedByOptimizingCompiler()
1523 const OatFile::OatMethod& oat_method, in DumpCode()
/art/dex2oat/linker/
Doat_writer_test.cc62 const OatFile::OatMethod& oat_method, in CheckMethod()