Searched refs:OatMethod (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | oat_file-inl.h | 25 inline const OatQuickMethodHeader* OatFile::OatMethod::GetOatQuickMethodHeader() const { in GetOatQuickMethodHeader() 34 inline uint32_t OatFile::OatMethod::GetOatQuickMethodHeaderOffset() const { in GetOatQuickMethodHeaderOffset() 42 inline uint32_t OatFile::OatMethod::GetQuickCodeSizeOffset() const { in GetQuickCodeSizeOffset() 50 inline size_t OatFile::OatMethod::GetFrameSizeInBytes() const { in GetFrameSizeInBytes() 58 inline uint32_t OatFile::OatMethod::GetCoreSpillMask() const { in GetCoreSpillMask() 66 inline uint32_t OatFile::OatMethod::GetFpSpillMask() const { in GetFpSpillMask() 74 inline uint32_t OatFile::OatMethod::GetVmapTableOffset() const { in GetVmapTableOffset() 79 inline uint32_t OatFile::OatMethod::GetVmapTableOffsetOffset() const { in GetVmapTableOffsetOffset() 87 inline const uint8_t* OatFile::OatMethod::GetVmapTable() const { in GetVmapTable() 99 inline uint32_t OatFile::OatMethod::GetQuickCodeSize() const { in GetQuickCodeSize() [all …]
|
D | oat_file.h | 108 class OatMethod FINAL { 134 OatMethod(const uint8_t* base, const uint32_t code_offset) in OatMethod() function 137 OatMethod(const OatMethod&) = default; 138 ~OatMethod() {} in ~OatMethod() 140 OatMethod& operator=(const OatMethod&) = default; 144 static const OatMethod Invalid() { in Invalid() 145 return OatMethod(nullptr, -1); in Invalid() 177 const OatMethod GetOatMethod(uint32_t method_index) const;
|
D | oat_file.cc | 1290 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const { in GetOatMethod() 1293 return OatMethod(nullptr, 0); in GetOatMethod() 1298 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_); in GetOatMethod() 1302 return OatMethod(oat_file_->Begin(), 0); in GetOatMethod() 1305 void OatFile::OatMethod::LinkMethod(ArtMethod* method) const { in LinkMethod()
|
D | art_method.cc | 363 OatFile::OatMethod oat_method = in GetQuickenedInfo() 427 OatFile::OatMethod oat_method = class_linker->FindOatMethodFor(this, &found); in GetOatQuickMethodHeader()
|
D | class_linker.cc | 2678 const OatFile::OatMethod ClassLinker::FindOatMethodFor(ArtMethod* method, bool* found) { in FindOatMethodFor() 2710 return OatFile::OatMethod::Invalid(); in FindOatMethodFor() 2722 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found); in GetQuickOatCodeFor() 2741 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found); in GetOatMethodQuickCodeFor() 2830 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines() 2864 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() 7708 static OatFile::OatMethod CreateOatMethod(const void* code) { in CreateOatMethod() 7713 return OatFile::OatMethod(base, code_offset); in CreateOatMethod() 7737 OatFile::OatMethod oat_method = CreateOatMethod(method_code); in SetEntryPointsToCompiledCode() 7746 OatFile::OatMethod oat_method = CreateOatMethod(quick_method_code); in SetEntryPointsToInterpreter()
|
D | class_linker.h | 500 const OatFile::OatMethod FindOatMethodFor(ArtMethod* method, bool* found)
|
/art/compiler/ |
D | common_compiler_test.h | 48 OatFile::OatMethod CreateOatMethod(const void* code);
|
D | oat_test.cc | 60 const OatFile::OatMethod& oat_method, in CheckMethod()
|
/art/oatdump/ |
D | oatdump.cc | 231 void WalkOatMethod(const OatFile::OatMethod& oat_method, in WalkOatMethod() 562 void AddOffsets(const OatFile::OatMethod& oat_method) { in AddOffsets() 797 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod() 1000 const OatFile::OatMethod& oat_method, in DumpVmapData() 1024 const OatFile::OatMethod& oat_method, in DumpCodeInfo() 1032 void DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method, in DumpVregLocations() 1088 static bool IsMethodGeneratedByOptimizingCompiler(const OatFile::OatMethod& oat_method, in IsMethodGeneratedByOptimizingCompiler() 1100 static bool IsMethodGeneratedByDexToDexCompiler(const OatFile::OatMethod& oat_method, in IsMethodGeneratedByDexToDexCompiler() 1217 const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, in DumpCode()
|