blob: 224b2ba0d471de28d51b0267b1461dbb87ba3a48 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Brian Carlstromea46f952013-07-30 01:26:50 -070017#ifndef ART_RUNTIME_MIRROR_ART_METHOD_INL_H_
18#define ART_RUNTIME_MIRROR_ART_METHOD_INL_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
Brian Carlstromea46f952013-07-30 01:26:50 -070020#include "art_method.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022#include "dex_file.h"
Ian Rogers7655f292013-07-29 11:07:13 -070023#include "entrypoints/entrypoint_utils.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070024#include "object_array.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "runtime.h"
26
27namespace art {
28namespace mirror {
29
Brian Carlstromea46f952013-07-30 01:26:50 -070030inline Class* ArtMethod::GetDeclaringClass() const {
31 Class* result = GetFieldObject<Class*>(OFFSET_OF_OBJECT_MEMBER(ArtMethod, declaring_class_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032 DCHECK(result != NULL) << this;
33 DCHECK(result->IsIdxLoaded() || result->IsErroneous()) << this;
34 return result;
35}
36
Brian Carlstromea46f952013-07-30 01:26:50 -070037inline void ArtMethod::SetDeclaringClass(Class *new_declaring_class) {
38 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(ArtMethod, declaring_class_), new_declaring_class, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039}
40
Brian Carlstromea46f952013-07-30 01:26:50 -070041inline uint32_t ArtMethod::GetAccessFlags() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042 DCHECK(GetDeclaringClass()->IsIdxLoaded() || GetDeclaringClass()->IsErroneous());
Brian Carlstromea46f952013-07-30 01:26:50 -070043 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, access_flags_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044}
45
Brian Carlstromea46f952013-07-30 01:26:50 -070046inline uint16_t ArtMethod::GetMethodIndex() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047 DCHECK(GetDeclaringClass()->IsResolved() || GetDeclaringClass()->IsErroneous());
Brian Carlstromea46f952013-07-30 01:26:50 -070048 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_index_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080049}
50
Brian Carlstromea46f952013-07-30 01:26:50 -070051inline uint32_t ArtMethod::GetDexMethodIndex() const {
Dragos Sbirlea90af14d2013-08-15 17:50:16 -070052#ifdef ART_SEA_IR_MODE
53 // TODO: Re-add this check for (PORTABLE + SMALL + ) SEA IR when PORTABLE IS fixed!
54 // DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
55#else
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080056 DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous());
Dragos Sbirlea90af14d2013-08-15 17:50:16 -070057#endif
Brian Carlstromea46f952013-07-30 01:26:50 -070058 return GetField32(OFFSET_OF_OBJECT_MEMBER(ArtMethod, method_dex_index_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080059}
60
Brian Carlstromea46f952013-07-30 01:26:50 -070061inline ObjectArray<String>* ArtMethod::GetDexCacheStrings() const {
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070062 return GetFieldObject<ObjectArray<String>*>(
Brian Carlstromea46f952013-07-30 01:26:50 -070063 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_strings_), false);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070064}
65
Brian Carlstromea46f952013-07-30 01:26:50 -070066inline ObjectArray<ArtMethod>* ArtMethod::GetDexCacheResolvedMethods() const {
67 return GetFieldObject<ObjectArray<ArtMethod>*>(
68 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_methods_), false);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070069}
70
Brian Carlstromea46f952013-07-30 01:26:50 -070071inline ObjectArray<Class>* ArtMethod::GetDexCacheResolvedTypes() const {
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070072 return GetFieldObject<ObjectArray<Class>*>(
Brian Carlstromea46f952013-07-30 01:26:50 -070073 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_types_), false);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070074}
75
Brian Carlstromea46f952013-07-30 01:26:50 -070076inline ObjectArray<StaticStorageBase>* ArtMethod::GetDexCacheInitializedStaticStorage() const {
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070077 return GetFieldObject<ObjectArray<StaticStorageBase>*>(
Brian Carlstromea46f952013-07-30 01:26:50 -070078 OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_initialized_static_storage_),
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070079 false);
80}
81
Brian Carlstromea46f952013-07-30 01:26:50 -070082inline uint32_t ArtMethod::GetCodeSize() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080083 DCHECK(!IsRuntimeMethod() && !IsProxyMethod()) << PrettyMethod(this);
Jeff Haoaa4a7932013-05-13 11:28:27 -070084 uintptr_t code = reinterpret_cast<uintptr_t>(GetEntryPointFromCompiledCode());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080085 if (code == 0) {
86 return 0;
87 }
88 // TODO: make this Thumb2 specific
89 code &= ~0x1;
90 return reinterpret_cast<uint32_t*>(code)[-1];
91}
92
Brian Carlstromea46f952013-07-30 01:26:50 -070093inline bool ArtMethod::CheckIncompatibleClassChange(InvokeType type) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080094 switch (type) {
95 case kStatic:
96 return !IsStatic();
97 case kDirect:
98 return !IsDirect() || IsStatic();
99 case kVirtual: {
100 Class* methods_class = GetDeclaringClass();
101 return IsDirect() || (methods_class->IsInterface() && !IsMiranda());
102 }
103 case kSuper:
104 return false; // TODO: appropriate checks for call to super class.
105 case kInterface: {
106 Class* methods_class = GetDeclaringClass();
107 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass());
108 }
109 default:
110 LOG(FATAL) << "Unreachable - invocation type: " << type;
111 return true;
112 }
113}
114
Brian Carlstromea46f952013-07-30 01:26:50 -0700115inline void ArtMethod::AssertPcIsWithinCode(uintptr_t pc) const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800116 if (!kIsDebugBuild) {
117 return;
118 }
119 if (IsNative() || IsRuntimeMethod() || IsProxyMethod()) {
120 return;
121 }
Ian Rogers848871b2013-08-05 10:56:33 -0700122 if (pc == GetQuickInstrumentationExitPc()) {
Jeff Hao65d15d92013-07-16 16:39:33 -0700123 return;
124 }
125 const void* code = GetEntryPointFromCompiledCode();
Ian Rogers848871b2013-08-05 10:56:33 -0700126 if (code == GetCompiledCodeToInterpreterBridge() || code == GetQuickInstrumentationEntryPoint()) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800127 return;
128 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700129 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Jeff Hao65d15d92013-07-16 16:39:33 -0700130 if (code == GetResolutionTrampoline(class_linker)) {
131 return;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800132 }
133 DCHECK(IsWithinCode(pc))
134 << PrettyMethod(this)
135 << " pc=" << std::hex << pc
Jeff Hao65d15d92013-07-16 16:39:33 -0700136 << " code=" << code
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800137 << " size=" << GetCodeSize();
138}
139
Brian Carlstromea46f952013-07-30 01:26:50 -0700140inline uint32_t ArtMethod::GetOatCodeOffset() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800141 DCHECK(!Runtime::Current()->IsStarted());
Jeff Haoaa4a7932013-05-13 11:28:27 -0700142 return reinterpret_cast<uint32_t>(GetEntryPointFromCompiledCode());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800143}
144
Brian Carlstromea46f952013-07-30 01:26:50 -0700145inline void ArtMethod::SetOatCodeOffset(uint32_t code_offset) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800146 DCHECK(!Runtime::Current()->IsStarted());
Jeff Haoaa4a7932013-05-13 11:28:27 -0700147 SetEntryPointFromCompiledCode(reinterpret_cast<void*>(code_offset));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800148}
149
Brian Carlstromea46f952013-07-30 01:26:50 -0700150inline uint32_t ArtMethod::GetOatMappingTableOffset() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800151 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogers1809a722013-08-09 22:05:32 -0700152 return reinterpret_cast<uint32_t>(GetMappingTable());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800153}
154
Brian Carlstromea46f952013-07-30 01:26:50 -0700155inline void ArtMethod::SetOatMappingTableOffset(uint32_t mapping_table_offset) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800156 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogers1809a722013-08-09 22:05:32 -0700157 SetMappingTable(reinterpret_cast<const uint8_t*>(mapping_table_offset));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800158}
159
Brian Carlstromea46f952013-07-30 01:26:50 -0700160inline uint32_t ArtMethod::GetOatVmapTableOffset() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800161 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogers1809a722013-08-09 22:05:32 -0700162 return reinterpret_cast<uint32_t>(GetVmapTable());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800163}
164
Brian Carlstromea46f952013-07-30 01:26:50 -0700165inline void ArtMethod::SetOatVmapTableOffset(uint32_t vmap_table_offset) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800166 DCHECK(!Runtime::Current()->IsStarted());
Ian Rogers1809a722013-08-09 22:05:32 -0700167 SetVmapTable(reinterpret_cast<uint8_t*>(vmap_table_offset));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800168}
169
Brian Carlstromea46f952013-07-30 01:26:50 -0700170inline void ArtMethod::SetOatNativeGcMapOffset(uint32_t gc_map_offset) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800171 DCHECK(!Runtime::Current()->IsStarted());
172 SetNativeGcMap(reinterpret_cast<uint8_t*>(gc_map_offset));
173}
174
Brian Carlstromea46f952013-07-30 01:26:50 -0700175inline uint32_t ArtMethod::GetOatNativeGcMapOffset() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800176 DCHECK(!Runtime::Current()->IsStarted());
177 return reinterpret_cast<uint32_t>(GetNativeGcMap());
178}
179
Brian Carlstromea46f952013-07-30 01:26:50 -0700180inline bool ArtMethod::IsRuntimeMethod() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800181 return GetDexMethodIndex() == DexFile::kDexNoIndex16;
182}
183
Brian Carlstromea46f952013-07-30 01:26:50 -0700184inline bool ArtMethod::IsCalleeSaveMethod() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800185 if (!IsRuntimeMethod()) {
186 return false;
187 }
188 Runtime* runtime = Runtime::Current();
189 bool result = false;
190 for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) {
191 if (this == runtime->GetCalleeSaveMethod(Runtime::CalleeSaveType(i))) {
192 result = true;
193 break;
194 }
195 }
196 return result;
197}
198
Brian Carlstromea46f952013-07-30 01:26:50 -0700199inline bool ArtMethod::IsResolutionMethod() const {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800200 bool result = this == Runtime::Current()->GetResolutionMethod();
201 // Check that if we do think it is phony it looks like the resolution method.
202 DCHECK(!result || IsRuntimeMethod());
203 return result;
204}
205} // namespace mirror
206} // namespace art
207
Brian Carlstromea46f952013-07-30 01:26:50 -0700208#endif // ART_RUNTIME_MIRROR_ART_METHOD_INL_H_