Lines Matching refs:code
26 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetOatQuickMethodHeader() local
27 if (code == nullptr) { in GetOatQuickMethodHeader()
31 return reinterpret_cast<const OatQuickMethodHeader*>(code) - 1; in GetOatQuickMethodHeader()
51 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetFrameSizeInBytes() local
52 if (code == nullptr) { in GetFrameSizeInBytes()
55 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FrameSizeInBytes(); in GetFrameSizeInBytes()
59 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetCoreSpillMask() local
60 if (code == nullptr) { in GetCoreSpillMask()
63 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.CoreSpillMask(); in GetCoreSpillMask()
67 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetFpSpillMask() local
68 if (code == nullptr) { in GetFpSpillMask()
71 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FpSpillMask(); in GetFpSpillMask()
88 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetVmapTable() local
89 if (code == nullptr) { in GetVmapTable()
92 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].vmap_table_offset_; in GetVmapTable()
96 return reinterpret_cast<const uint8_t*>(code) - offset; in GetVmapTable()
100 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetQuickCodeSize() local
101 if (code == nullptr) { in GetQuickCodeSize()
104 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].code_size_; in GetQuickCodeSize()