Lines Matching refs:code
28 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetOatQuickMethodHeader() local
29 if (code == nullptr) { in GetOatQuickMethodHeader()
33 return reinterpret_cast<const OatQuickMethodHeader*>(code) - 1; in GetOatQuickMethodHeader()
45 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetFrameSizeInBytes() local
46 if (code == nullptr) { in GetFrameSizeInBytes()
49 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].GetFrameInfo().FrameSizeInBytes(); in GetFrameSizeInBytes()
53 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetCoreSpillMask() local
54 if (code == nullptr) { in GetCoreSpillMask()
57 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].GetFrameInfo().CoreSpillMask(); in GetCoreSpillMask()
61 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetFpSpillMask() local
62 if (code == nullptr) { in GetFpSpillMask()
65 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].GetFrameInfo().FpSpillMask(); in GetFpSpillMask()
74 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetVmapTable() local
75 if (code == nullptr) { in GetVmapTable()
78 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].GetCodeInfoOffset(); in GetVmapTable()
82 return reinterpret_cast<const uint8_t*>(code) - offset; in GetVmapTable()
86 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetQuickCodeSize() local
87 if (code == nullptr) { in GetQuickCodeSize()
90 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].GetCodeSize(); in GetQuickCodeSize()