Lines Matching refs:code
25 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetOatQuickMethodHeader() local
26 if (code == nullptr) { in GetOatQuickMethodHeader()
30 return reinterpret_cast<const OatQuickMethodHeader*>(code) - 1; in GetOatQuickMethodHeader()
42 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetQuickCodeSize() local
43 if (code == nullptr) { in GetQuickCodeSize()
46 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].code_size_; in GetQuickCodeSize()
58 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetFrameSizeInBytes() local
59 if (code == nullptr) { in GetFrameSizeInBytes()
62 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FrameSizeInBytes(); in GetFrameSizeInBytes()
66 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetCoreSpillMask() local
67 if (code == nullptr) { in GetCoreSpillMask()
70 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.CoreSpillMask(); in GetCoreSpillMask()
74 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetFpSpillMask() local
75 if (code == nullptr) { in GetFpSpillMask()
78 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FpSpillMask(); in GetFpSpillMask()
82 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetGcMap() local
83 if (code == nullptr) { in GetGcMap()
86 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].gc_map_offset_; in GetGcMap()
90 return reinterpret_cast<const uint8_t*>(code) - offset; in GetGcMap()
133 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetMappingTable() local
134 if (code == nullptr) { in GetMappingTable()
137 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].mapping_table_offset_; in GetMappingTable()
141 return reinterpret_cast<const uint8_t*>(code) - offset; in GetMappingTable()
145 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetVmapTable() local
146 if (code == nullptr) { in GetVmapTable()
149 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].vmap_table_offset_; in GetVmapTable()
153 return reinterpret_cast<const uint8_t*>(code) - offset; in GetVmapTable()