• Home
  • Raw
  • Download

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()
108 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetMappingTable() local
109 if (code == nullptr) { in GetMappingTable()
112 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].mapping_table_offset_; in GetMappingTable()
116 return reinterpret_cast<const uint8_t*>(code) - offset; in GetMappingTable()
120 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode()); in GetVmapTable() local
121 if (code == nullptr) { in GetVmapTable()
124 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].vmap_table_offset_; in GetVmapTable()
128 return reinterpret_cast<const uint8_t*>(code) - offset; in GetVmapTable()