Home | History | Annotate | Download | only in runtime

Lines Matching defs:code

25   const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode());
26 if (code == nullptr) {
29 // Return a pointer to the packed struct before the code.
30 return reinterpret_cast<const OatQuickMethodHeader*>(code) - 1;
42 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode());
43 if (code == nullptr) {
46 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].code_size_;
58 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode());
59 if (code == nullptr) {
62 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FrameSizeInBytes();
66 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode());
67 if (code == nullptr) {
70 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.CoreSpillMask();
74 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode());
75 if (code == nullptr) {
78 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FpSpillMask();
82 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode());
83 if (code == nullptr) {
86 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].gc_map_offset_;
90 return reinterpret_cast<const uint8_t*>(code) - offset;
133 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode());
134 if (code == nullptr) {
137 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].mapping_table_offset_;
141 return reinterpret_cast<const uint8_t*>(code) - offset;
145 const void* code = mirror::ArtMethod::EntryPointToCodePointer(GetQuickCode());
146 if (code == nullptr) {
149 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].vmap_table_offset_;
153 return reinterpret_cast<const uint8_t*>(code) - offset;