Searched refs:OatMethod (Results 1 – 8 of 8) sorted by relevance
/art/runtime/ |
D | oat_file-inl.h | 27 inline const OatQuickMethodHeader* OatFile::OatMethod::GetOatQuickMethodHeader() const { in GetOatQuickMethodHeader() 36 inline uint32_t OatFile::OatMethod::GetOatQuickMethodHeaderOffset() const { in GetOatQuickMethodHeaderOffset() 44 inline size_t OatFile::OatMethod::GetFrameSizeInBytes() const { in GetFrameSizeInBytes() 52 inline uint32_t OatFile::OatMethod::GetCoreSpillMask() const { in GetCoreSpillMask() 60 inline uint32_t OatFile::OatMethod::GetFpSpillMask() const { in GetFpSpillMask() 68 inline uint32_t OatFile::OatMethod::GetVmapTableOffset() const { in GetVmapTableOffset() 73 inline const uint8_t* OatFile::OatMethod::GetVmapTable() const { in GetVmapTable() 85 inline uint32_t OatFile::OatMethod::GetQuickCodeSize() const { in GetQuickCodeSize() 93 inline uint32_t OatFile::OatMethod::GetCodeOffset() const { in GetCodeOffset() 97 inline const void* OatFile::OatMethod::GetQuickCode() const { in GetQuickCode()
|
D | oat_file.h | 194 class OatMethod final { 216 OatMethod(const uint8_t* base, const uint32_t code_offset) in OatMethod() function 219 OatMethod(const OatMethod&) = default; 220 ~OatMethod() {} in ~OatMethod() 222 OatMethod& operator=(const OatMethod&) = default; 226 static const OatMethod Invalid() { in Invalid() 227 return OatMethod(nullptr, -1); in Invalid() 259 const OatMethod GetOatMethod(uint32_t method_index) const;
|
D | art_method.cc | 436 static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found) in FindOatMethodFromDexFileFor() 460 return OatFile::OatMethod::Invalid(); in FindOatMethodFromDexFileFor() 465 static const OatFile::OatMethod FindOatMethodFor(ArtMethod* method, in FindOatMethodFor() 508 return OatFile::OatMethod::Invalid(); in FindOatMethodFor() 596 OatFile::OatMethod oat_method = in GetOatQuickMethodHeader() 637 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); in GetOatMethodQuickCode()
|
D | oat_file.cc | 2365 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const { in GetOatMethod() 2368 return OatMethod(nullptr, 0); in GetOatMethod() 2373 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_); in GetOatMethod() 2377 return OatMethod(oat_file_->Begin(), 0); in GetOatMethod()
|
D | class_linker.cc | 3473 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines() 3540 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode()
|
/art/test/661-oat-writer-layout/ |
D | info.txt | 1 Tests Oat Writer is correctly changing the layout of OatMethod code addresses.
|
/art/oatdump/ |
D | oatdump.cc | 285 void WalkOatMethod(const OatFile::OatMethod& oat_method, in WalkOatMethod() 852 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets() 1112 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod() 1330 const OatFile::OatMethod& oat_method, in DumpVmapData() 1354 const OatFile::OatMethod& oat_method) { in DumpCodeInfo() 1409 void DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpVregLocations() 1453 const OatFile::OatMethod& oat_method, in IsMethodGeneratedByOptimizingCompiler() 1466 const OatFile::OatMethod& oat_method, in IsMethodGeneratedByDexToDexCompiler() 1505 const OatFile::OatMethod& oat_method, in DumpCode()
|
/art/dex2oat/linker/ |
D | oat_writer_test.cc | 62 const OatFile::OatMethod& oat_method, in CheckMethod()
|