blob: e2c5921d231f2be63d35918f58da69955bd61739 [file] [log] [blame]
Elliott Hughes418d20f2011-09-22 14:00:39 -07001/*
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 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
17#ifndef ART_SRC_CLASS_LINKER_H_
18#define ART_SRC_CLASS_LINKER_H_
19
20#include <map>
21#include <utility>
22#include <vector>
23
Ian Rogerscaab8c42011-10-12 12:11:18 -070024#include "dex_cache.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070025#include "dex_file.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070026#include "heap.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070027#include "macros.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070028#include "mutex.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070029#include "oat_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "object.h"
Brian Carlstrom40381fb2011-10-19 14:13:40 -070031#include "stack_indirect_reference_table.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070032#include "unordered_map.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070033#include "unordered_set.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070034
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "gtest/gtest.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070036
37namespace art {
38
Elliott Hughescf4c6c42011-09-01 15:16:42 -070039class ClassLoader;
40class InternTable;
Brian Carlstromd1422f82011-09-28 11:37:09 -070041class ObjectLock;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070042
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070043class ClassLinker {
44 public:
Brian Carlstrom58ae9412011-10-04 00:56:06 -070045 // Creates the class linker by boot strapping from dex files.
46 static ClassLinker* Create(const std::string& boot_class_path, InternTable* intern_table);
47
48 // Creates the class linker from one or more images.
49 static ClassLinker* Create(InternTable* intern_table);
Carl Shapiro61e019d2011-07-14 16:53:09 -070050
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070051 ~ClassLinker();
Carl Shapiro565f5072011-07-10 13:39:43 -070052
Elliott Hughes64bf5a32011-09-20 14:43:12 -070053 // Finds a class by its descriptor, loading it if necessary.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070054 // If class_loader is null, searches boot_class_path_.
Brian Carlstromaded5f72011-10-07 17:15:04 -070055 Class* FindClass(const std::string& descriptor, const ClassLoader* class_loader);
56
57 Class* FindSystemClass(const std::string& descriptor) {
58 return FindClass(descriptor, NULL);
59 }
60
61 // Define a new a class based on a ClassDef from a DexFile
62 Class* DefineClass(const std::string& descriptor, const ClassLoader* class_loader,
63 const DexFile& dex_file, const DexFile::ClassDef& dex_class_def);
Elliott Hughes64bf5a32011-09-20 14:43:12 -070064
65 // Finds a class by its descriptor, returning NULL if it isn't wasn't loaded
66 // by the given 'class_loader'.
Brian Carlstromaded5f72011-10-07 17:15:04 -070067 Class* LookupClass(const std::string& descriptor, const ClassLoader* class_loader);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070068
Elliott Hughesd8ddfd52011-08-15 14:32:53 -070069 Class* FindPrimitiveClass(char type);
70
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070071 void DumpAllClasses(int flags) const;
72
Elliott Hughese27955c2011-08-26 15:21:24 -070073 size_t NumLoadedClasses() const;
74
Brian Carlstromb63ec392011-08-27 17:38:27 -070075 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstromaded5f72011-10-07 17:15:04 -070076 // result in the DexCache. The referrer is used to identify the
77 // target DexCache and ClassLoader to use for resolution.
78 String* ResolveString(uint32_t string_idx, const Method* referrer) {
Ian Rogerscaab8c42011-10-12 12:11:18 -070079 String* resolved_string = referrer->GetDexCacheStrings()->Get(string_idx);
80 if (UNLIKELY(resolved_string == NULL)) {
81 Class* declaring_class = referrer->GetDeclaringClass();
82 DexCache* dex_cache = declaring_class->GetDexCache();
83 const DexFile& dex_file = FindDexFile(dex_cache);
84 resolved_string = ResolveString(dex_file, string_idx, dex_cache);
85 }
86 return resolved_string;
Brian Carlstromaded5f72011-10-07 17:15:04 -070087 }
88
89 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070090 // result in the DexCache.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070091 String* ResolveString(const DexFile& dex_file, uint32_t string_idx, DexCache* dex_cache);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070092
Brian Carlstromb63ec392011-08-27 17:38:27 -070093 // Resolve a Type with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070094 // result in the DexCache. The referrer is used to identity the
95 // target DexCache and ClassLoader to use for resolution.
96 Class* ResolveType(const DexFile& dex_file,
97 uint32_t type_idx,
98 const Class* referrer) {
99 return ResolveType(dex_file,
100 type_idx,
101 referrer->GetDexCache(),
102 referrer->GetClassLoader());
103 }
104
Brian Carlstromb63ec392011-08-27 17:38:27 -0700105 // Resolve a Type with the given index from the DexFile, storing the
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700106 // result in the DexCache. The referrer is used to identify the
Brian Carlstromb63ec392011-08-27 17:38:27 -0700107 // target DexCache and ClassLoader to use for resolution.
Brian Carlstromb9edb842011-08-28 16:31:06 -0700108 Class* ResolveType(uint32_t type_idx, const Method* referrer) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700109 Class* resolved_type = referrer->GetDexCacheResolvedTypes()->Get(type_idx);
110 if (UNLIKELY(resolved_type == NULL)) {
111 Class* declaring_class = referrer->GetDeclaringClass();
112 DexCache* dex_cache = declaring_class->GetDexCache();
113 const ClassLoader* class_loader = declaring_class->GetClassLoader();
114 const DexFile& dex_file = FindDexFile(dex_cache);
115 resolved_type = ResolveType(dex_file, type_idx, dex_cache, class_loader);
116 }
117 return resolved_type;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700118 }
119
120 Class* ResolveType(uint32_t type_idx, const Field* referrer) {
121 Class* declaring_class = referrer->GetDeclaringClass();
122 DexCache* dex_cache = declaring_class->GetDexCache();
Ian Rogerscaab8c42011-10-12 12:11:18 -0700123 Class* resolved_type = dex_cache->GetResolvedType(type_idx);
124 if (UNLIKELY(resolved_type == NULL)) {
125 const ClassLoader* class_loader = declaring_class->GetClassLoader();
126 const DexFile& dex_file = FindDexFile(dex_cache);
127 resolved_type = ResolveType(dex_file, type_idx, dex_cache, class_loader);
128 }
129 return resolved_type;
Brian Carlstromb63ec392011-08-27 17:38:27 -0700130 }
131
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700132 // Resolve a type with the given ID from the DexFile, storing the
133 // result in DexCache. The ClassLoader is used to search for the
134 // type, since it may be referenced from but not contained within
135 // the given DexFile.
136 Class* ResolveType(const DexFile& dex_file,
137 uint32_t type_idx,
138 DexCache* dex_cache,
139 const ClassLoader* class_loader);
140
141 // Resolve a method with a given ID from the DexFile, storing the
142 // result in DexCache. The ClassLinker and ClassLoader are used as
143 // in ResolveType. What is unique is the method type argument which
144 // is used to determine if this method is a direct, static, or
145 // virtual method.
146 Method* ResolveMethod(const DexFile& dex_file,
147 uint32_t method_idx,
148 DexCache* dex_cache,
149 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700150 bool is_direct);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700151
Brian Carlstrom16192862011-09-12 17:50:06 -0700152 Method* ResolveMethod(uint32_t method_idx, const Method* referrer, bool is_direct) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700153 Method* resolved_method = referrer->GetDexCacheResolvedMethods()->Get(method_idx);
154 if (UNLIKELY(resolved_method == NULL)) {
155 Class* declaring_class = referrer->GetDeclaringClass();
156 DexCache* dex_cache = declaring_class->GetDexCache();
157 const ClassLoader* class_loader = declaring_class->GetClassLoader();
158 const DexFile& dex_file = FindDexFile(dex_cache);
159 resolved_method = ResolveMethod(dex_file, method_idx, dex_cache, class_loader, is_direct);
160 }
161 return resolved_method;
Brian Carlstrom16192862011-09-12 17:50:06 -0700162 }
163
Brian Carlstrom845490b2011-09-19 15:56:53 -0700164 Field* ResolveField(uint32_t field_idx, const Method* referrer, bool is_static) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700165 Field* resolved_field = referrer->GetDexCacheResolvedFields()->Get(field_idx);
166 if (UNLIKELY(resolved_field == NULL)) {
167 Class* declaring_class = referrer->GetDeclaringClass();
168 DexCache* dex_cache = declaring_class->GetDexCache();
169 const ClassLoader* class_loader = declaring_class->GetClassLoader();
170 const DexFile& dex_file = FindDexFile(dex_cache);
171 resolved_field = ResolveField(dex_file, field_idx, dex_cache, class_loader, is_static);
172 }
173 return resolved_field;
Brian Carlstromb9edb842011-08-28 16:31:06 -0700174 }
175
Brian Carlstrom16192862011-09-12 17:50:06 -0700176 // Resolve a field with a given ID from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700177 // result in DexCache. The ClassLinker and ClassLoader are used as
178 // in ResolveType. What is unique is the is_static argument which is
179 // used to determine if we are resolving a static or non-static
180 // field.
181 Field* ResolveField(const DexFile& dex_file,
182 uint32_t field_idx,
183 DexCache* dex_cache,
184 const ClassLoader* class_loader,
185 bool is_static);
186
Ian Rogersad25ac52011-10-04 19:13:33 -0700187 // Get shorty from method index without resolution. Used to do handlerization.
188 const char* MethodShorty(uint32_t method_idx, Method* referrer);
189
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700190 // Returns true on success, false if there's an exception pending.
Brian Carlstrom25c33252011-09-18 15:58:35 -0700191 // can_run_clinit=false allows the compiler to attempt to init a class,
192 // given the restriction that no <clinit> execution is possible.
193 bool EnsureInitialized(Class* c, bool can_run_clinit);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700194
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700195 // Initializes classes that have instances in the image but that have
196 // <clinit> methods so they could not be initialized by the compiler.
197 void RunRootClinits();
198
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700199 void RegisterDexFile(const DexFile& dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700200 void RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700201
Brian Carlstrom8a487412011-08-29 20:08:52 -0700202 const std::vector<const DexFile*>& GetBootClassPath() {
203 return boot_class_path_;
204 }
205
Elliott Hughes410c0c82011-09-01 17:58:25 -0700206 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700207
buzbeec143c552011-08-20 17:38:58 -0700208 const DexFile& FindDexFile(const DexCache* dex_cache) const;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700209 DexCache* FindDexCache(const DexFile& dex_file) const;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700210 bool IsDexFileRegistered(const DexFile& dex_file) const;
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700211
jeffhao262bf462011-10-20 18:36:32 -0700212 // Generate an oat file from a dex file
213 const OatFile* GenerateOatFile(const std::string& filename);
214
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700215 // Find, possibily opening, an OatFile corresponding to a DexFile
216 const OatFile* FindOatFile(const DexFile& dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700217 const OatFile* FindOatFile(const std::string& location);
buzbeec143c552011-08-20 17:38:58 -0700218
Elliott Hughes418d20f2011-09-22 14:00:39 -0700219 // TODO: replace this with multiple methods that allocate the correct managed type.
Shih-wei Liao44175362011-08-28 16:59:17 -0700220 template <class T>
221 ObjectArray<T>* AllocObjectArray(size_t length) {
222 return ObjectArray<T>::Alloc(GetClassRoot(kObjectArrayClass), length);
223 }
224
Elliott Hughes418d20f2011-09-22 14:00:39 -0700225 ObjectArray<Class>* AllocClassArray(size_t length) {
226 return ObjectArray<Class>::Alloc(GetClassRoot(kClassArrayClass), length);
227 }
228
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700229 ObjectArray<StackTraceElement>* AllocStackTraceElementArray(size_t length);
230
jeffhao98eacac2011-09-14 16:11:53 -0700231 void VerifyClass(Class* klass);
232
Jesse Wilson95caa792011-10-12 18:14:17 -0400233 Class* CreateProxyClass(String* name, ObjectArray<Class>* interfaces, ClassLoader* loader,
Ian Rogers466bb252011-10-14 03:29:56 -0700234 ObjectArray<Method>* methods, ObjectArray<ObjectArray<Class> >* throws);
Jesse Wilson95caa792011-10-12 18:14:17 -0400235
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700236 pid_t GetClassesLockOwner(); // For SignalCatcher.
237 pid_t GetDexLockOwner(); // For SignalCatcher.
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -0700238
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700239 private:
Elliott Hughesa51a3dd2011-10-17 15:19:26 -0700240 explicit ClassLinker(InternTable*);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700241
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700242 // Initialize class linker by bootstraping from dex files
243 void Init(const std::string& boot_class_path);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700244
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700245 // Initialize class linker from one or more images.
246 void InitFromImage();
247 OatFile* OpenOat(const Space* space);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700248 static void InitFromImageCallback(Object* obj, void* arg);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700249 struct InitFromImageCallbackState;
Brian Carlstroma663ea52011-08-19 23:33:41 -0700250
251 void FinishInit();
252
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700253 // For early bootstrapping by Init
Brian Carlstrom4873d462011-08-21 15:23:39 -0700254 Class* AllocClass(Class* java_lang_Class, size_t class_size);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700255
256 // Alloc* convenience functions to avoid needing to pass in Class*
257 // values that are known to the ClassLinker such as
258 // kObjectArrayClass and kJavaLangString etc.
Brian Carlstrom4873d462011-08-21 15:23:39 -0700259 Class* AllocClass(size_t class_size);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700260 DexCache* AllocDexCache(const DexFile& dex_file);
Jesse Wilson35baaab2011-08-10 16:18:03 -0400261 Field* AllocField();
Ian Rogersbdb03912011-09-14 00:55:44 -0700262
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700263 Method* AllocMethod();
Ian Rogersbdb03912011-09-14 00:55:44 -0700264
Brian Carlstrom9cc262e2011-08-28 12:45:30 -0700265 CodeAndDirectMethods* AllocCodeAndDirectMethods(size_t length);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700266 InterfaceEntry* AllocInterfaceEntry(Class* interface);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700267
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700268 Class* CreatePrimitiveClass(const char* descriptor, Primitive::Type type) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700269 return InitializePrimitiveClass(AllocClass(sizeof(Class)), descriptor, type);
270 }
271 Class* InitializePrimitiveClass(Class* primitive_class,
272 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700273 Primitive::Type type);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700274
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700275
Brian Carlstromaded5f72011-10-07 17:15:04 -0700276 Class* CreateArrayClass(const std::string& descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700277 const ClassLoader* class_loader);
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700278
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700279 void AppendToBootClassPath(const DexFile& dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700280 void AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700281
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700282 void ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
283 Class* c, std::map<int, Field*>& field_map);
284
Brian Carlstrom4873d462011-08-21 15:23:39 -0700285 size_t SizeOfClass(const DexFile& dex_file,
286 const DexFile::ClassDef& dex_class_def);
287
Brian Carlstromf615a612011-07-23 12:50:34 -0700288 void LoadClass(const DexFile& dex_file,
289 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700290 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700291 const ClassLoader* class_loader);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700292
Brian Carlstromf615a612011-07-23 12:50:34 -0700293 void LoadInterfaces(const DexFile& dex_file,
294 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700295 SirtRef<Class>& klass);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700296
Brian Carlstromf615a612011-07-23 12:50:34 -0700297 void LoadField(const DexFile& dex_file,
298 const DexFile::Field& dex_field,
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700299 SirtRef<Class>& klass,
300 SirtRef<Field>& dst);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700301
Brian Carlstromf615a612011-07-23 12:50:34 -0700302 void LoadMethod(const DexFile& dex_file,
303 const DexFile::Method& dex_method,
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700304 SirtRef<Class>& klass,
305 SirtRef<Method>& dst);
Brian Carlstrom934486c2011-07-12 23:42:50 -0700306
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700307 // Inserts a class into the class table. Returns true if the class
308 // was inserted.
Brian Carlstromaded5f72011-10-07 17:15:04 -0700309 bool InsertClass(const std::string& descriptor, Class* klass);
310
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700311 void RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700312 bool IsDexFileRegisteredLocked(const DexFile& dex_file) const;
313
Brian Carlstromd1422f82011-09-28 11:37:09 -0700314 bool InitializeClass(Class* klass, bool can_run_clinit);
315 bool WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700316 bool ValidateSuperClassDescriptors(const Class* klass);
Brian Carlstromd1422f82011-09-28 11:37:09 -0700317 bool InitializeSuperClass(Class* klass, bool can_run_clinit);
318 void InitializeStaticFields(Class* klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700319
320 bool HasSameDescriptorClasses(const char* descriptor,
321 const Class* klass1,
322 const Class* klass2);
323
324 bool HasSameMethodDescriptorClasses(const Method* descriptor,
325 const Class* klass1,
326 const Class* klass2);
327
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700328 bool LinkClass(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700329
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 bool LinkSuperClass(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700331
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700332 bool LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700333
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700334 bool LinkMethods(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700335
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700336 bool LinkVirtualMethods(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700337
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700338 bool LinkInterfaceMethods(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700339
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700340 bool LinkStaticFields(SirtRef<Class>& klass);
341 bool LinkInstanceFields(SirtRef<Class>& klass);
342 bool LinkFields(SirtRef<Class>& klass, bool is_static);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700343
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700344
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700345 void CreateReferenceInstanceOffsets(SirtRef<Class>& klass);
346 void CreateReferenceStaticOffsets(SirtRef<Class>& klass);
347 void CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700348 uint32_t reference_offsets);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700349
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700350 // For use by ImageWriter to find DexCaches for its roots
351 const std::vector<DexCache*>& GetDexCaches() {
352 return dex_caches_;
353 }
354
Brian Carlstromfad71432011-10-16 20:25:10 -0700355 const OatFile* FindOpenedOatFile(const std::string& location);
356
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700357 Method* CreateProxyConstructor(SirtRef<Class>& klass);
358 Method* CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype, ObjectArray<Class>* throws);
Jesse Wilson95caa792011-10-12 18:14:17 -0400359
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700360 std::vector<const DexFile*> boot_class_path_;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700361
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700362 std::vector<const DexFile*> dex_files_;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700363 std::vector<DexCache*> dex_caches_;
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700364 std::vector<const OatFile*> oat_files_;
365 // lock to protect concurrent access to dex_files_, dex_caches_, and oat_files_
366 mutable Mutex dex_lock_;
367
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700368
Brian Carlstromaded5f72011-10-07 17:15:04 -0700369 // multimap from a string hash code of a class descriptor to
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700370 // Class* instances. Results should be compared for a matching
371 // Class::descriptor_ and Class::class_loader_.
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700372 // Protected by classes_lock_
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700373 typedef std::tr1::unordered_multimap<size_t, Class*> Table;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700374 Table classes_;
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700375 mutable Mutex classes_lock_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700376
Brian Carlstroma663ea52011-08-19 23:33:41 -0700377 // indexes into class_roots_.
378 // needs to be kept in sync with class_roots_descriptors_.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700379 enum ClassRoot {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700380 kJavaLangClass,
381 kJavaLangObject,
Elliott Hughes418d20f2011-09-22 14:00:39 -0700382 kClassArrayClass,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700383 kObjectArrayClass,
384 kJavaLangString,
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700385 kJavaLangRefReference,
Elliott Hughes80609252011-09-23 17:24:51 -0700386 kJavaLangReflectConstructor,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700387 kJavaLangReflectField,
388 kJavaLangReflectMethod,
Ian Rogers466bb252011-10-14 03:29:56 -0700389 kJavaLangReflectProxy,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700390 kJavaLangClassLoader,
391 kDalvikSystemBaseDexClassLoader,
392 kDalvikSystemPathClassLoader,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700393 kJavaLangStackTraceElement,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700394 kPrimitiveBoolean,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700395 kPrimitiveByte,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700396 kPrimitiveChar,
397 kPrimitiveDouble,
398 kPrimitiveFloat,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700399 kPrimitiveInt,
400 kPrimitiveLong,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700401 kPrimitiveShort,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700402 kPrimitiveVoid,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700403 kBooleanArrayClass,
404 kByteArrayClass,
405 kCharArrayClass,
406 kDoubleArrayClass,
407 kFloatArrayClass,
408 kIntArrayClass,
409 kLongArrayClass,
410 kShortArrayClass,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700411 kJavaLangStackTraceElementArrayClass,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700412 kClassRootsMax,
413 };
414 ObjectArray<Class>* class_roots_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700415
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700416 Class* GetClassRoot(ClassRoot class_root) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700417 DCHECK(class_roots_ != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700418 Class* klass = class_roots_->Get(class_root);
419 DCHECK(klass != NULL);
420 return klass;
421 }
422
Brian Carlstroma663ea52011-08-19 23:33:41 -0700423 void SetClassRoot(ClassRoot class_root, Class* klass) {
424 DCHECK(!init_done_);
425
426 DCHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700427 DCHECK(klass->GetClassLoader() == NULL);
428 DCHECK(klass->GetDescriptor() != NULL);
429 DCHECK(klass->GetDescriptor()->Equals(GetClassRootDescriptor(class_root)));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700430
431 DCHECK(class_roots_ != NULL);
432 DCHECK(class_roots_->Get(class_root) == NULL);
433 class_roots_->Set(class_root, klass);
434 }
435
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700436 ObjectArray<Class>* GetClassRoots() {
437 DCHECK(class_roots_ != NULL);
438 return class_roots_;
439 }
440
Elliott Hughes418d20f2011-09-22 14:00:39 -0700441 static const char* class_roots_descriptors_[];
Brian Carlstroma663ea52011-08-19 23:33:41 -0700442
443 const char* GetClassRootDescriptor(ClassRoot class_root) {
444 const char* descriptor = class_roots_descriptors_[class_root];
445 CHECK(descriptor != NULL);
446 return descriptor;
447 }
448
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700449 ObjectArray<Class>* array_interfaces_;
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700450 ObjectArray<InterfaceEntry>* array_iftable_;
Carl Shapiro565f5072011-07-10 13:39:43 -0700451
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700452 bool init_done_;
453
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700454 InternTable* intern_table_;
455
Brian Carlstromf734cf52011-08-17 16:28:14 -0700456 friend class CommonTest;
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700457 FRIEND_TEST(DexCacheTest, Open);
458 friend class ObjectTest;
459 FRIEND_TEST(ObjectTest, AllocObjectArray);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700460 FRIEND_TEST(ExceptionTest, FindExceptionHandler);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700461 friend class ImageWriter; // for GetClassRoots
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700462 DISALLOW_COPY_AND_ASSIGN(ClassLinker);
463};
464
465} // namespace art
466
467#endif // ART_SRC_CLASS_LINKER_H_