blob: 5032d9f51ff2a74ac642c8788147450743c1b31f [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
Elliott Hughesa2155262011-11-16 16:26:58 -080043typedef bool (ClassVisitor)(Class* c, void* arg);
44
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070045class ClassLinker {
46 public:
Brian Carlstrom58ae9412011-10-04 00:56:06 -070047 // Creates the class linker by boot strapping from dex files.
48 static ClassLinker* Create(const std::string& boot_class_path, InternTable* intern_table);
49
50 // Creates the class linker from one or more images.
51 static ClassLinker* Create(InternTable* intern_table);
Carl Shapiro61e019d2011-07-14 16:53:09 -070052
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070053 ~ClassLinker();
Carl Shapiro565f5072011-07-10 13:39:43 -070054
Elliott Hughes64bf5a32011-09-20 14:43:12 -070055 // Finds a class by its descriptor, loading it if necessary.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070056 // If class_loader is null, searches boot_class_path_.
Brian Carlstromaded5f72011-10-07 17:15:04 -070057 Class* FindClass(const std::string& descriptor, const ClassLoader* class_loader);
58
59 Class* FindSystemClass(const std::string& descriptor) {
60 return FindClass(descriptor, NULL);
61 }
62
63 // Define a new a class based on a ClassDef from a DexFile
64 Class* DefineClass(const std::string& descriptor, const ClassLoader* class_loader,
65 const DexFile& dex_file, const DexFile::ClassDef& dex_class_def);
Elliott Hughes64bf5a32011-09-20 14:43:12 -070066
67 // Finds a class by its descriptor, returning NULL if it isn't wasn't loaded
68 // by the given 'class_loader'.
Brian Carlstromaded5f72011-10-07 17:15:04 -070069 Class* LookupClass(const std::string& descriptor, const ClassLoader* class_loader);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070070
Elliott Hughesd8ddfd52011-08-15 14:32:53 -070071 Class* FindPrimitiveClass(char type);
72
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070073 void DumpAllClasses(int flags) const;
74
Elliott Hughescac6cc72011-11-03 20:31:21 -070075 void DumpForSigQuit(std::ostream& os) const;
76
Elliott Hughese27955c2011-08-26 15:21:24 -070077 size_t NumLoadedClasses() const;
78
Brian Carlstromb63ec392011-08-27 17:38:27 -070079 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstromaded5f72011-10-07 17:15:04 -070080 // result in the DexCache. The referrer is used to identify the
81 // target DexCache and ClassLoader to use for resolution.
82 String* ResolveString(uint32_t string_idx, const Method* referrer) {
Ian Rogerscaab8c42011-10-12 12:11:18 -070083 String* resolved_string = referrer->GetDexCacheStrings()->Get(string_idx);
84 if (UNLIKELY(resolved_string == NULL)) {
85 Class* declaring_class = referrer->GetDeclaringClass();
86 DexCache* dex_cache = declaring_class->GetDexCache();
87 const DexFile& dex_file = FindDexFile(dex_cache);
88 resolved_string = ResolveString(dex_file, string_idx, dex_cache);
89 }
90 return resolved_string;
Brian Carlstromaded5f72011-10-07 17:15:04 -070091 }
92
93 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070094 // result in the DexCache.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070095 String* ResolveString(const DexFile& dex_file, uint32_t string_idx, DexCache* dex_cache);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070096
Brian Carlstromb63ec392011-08-27 17:38:27 -070097 // Resolve a Type with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070098 // result in the DexCache. The referrer is used to identity the
99 // target DexCache and ClassLoader to use for resolution.
100 Class* ResolveType(const DexFile& dex_file,
101 uint32_t type_idx,
102 const Class* referrer) {
103 return ResolveType(dex_file,
104 type_idx,
105 referrer->GetDexCache(),
106 referrer->GetClassLoader());
107 }
108
Brian Carlstromb63ec392011-08-27 17:38:27 -0700109 // Resolve a Type with the given index from the DexFile, storing the
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700110 // result in the DexCache. The referrer is used to identify the
Brian Carlstromb63ec392011-08-27 17:38:27 -0700111 // target DexCache and ClassLoader to use for resolution.
Brian Carlstromb9edb842011-08-28 16:31:06 -0700112 Class* ResolveType(uint32_t type_idx, const Method* referrer) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700113 Class* resolved_type = referrer->GetDexCacheResolvedTypes()->Get(type_idx);
114 if (UNLIKELY(resolved_type == NULL)) {
115 Class* declaring_class = referrer->GetDeclaringClass();
116 DexCache* dex_cache = declaring_class->GetDexCache();
117 const ClassLoader* class_loader = declaring_class->GetClassLoader();
118 const DexFile& dex_file = FindDexFile(dex_cache);
119 resolved_type = ResolveType(dex_file, type_idx, dex_cache, class_loader);
120 }
121 return resolved_type;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700122 }
123
124 Class* ResolveType(uint32_t type_idx, const Field* referrer) {
125 Class* declaring_class = referrer->GetDeclaringClass();
126 DexCache* dex_cache = declaring_class->GetDexCache();
Ian Rogerscaab8c42011-10-12 12:11:18 -0700127 Class* resolved_type = dex_cache->GetResolvedType(type_idx);
128 if (UNLIKELY(resolved_type == NULL)) {
129 const ClassLoader* class_loader = declaring_class->GetClassLoader();
130 const DexFile& dex_file = FindDexFile(dex_cache);
131 resolved_type = ResolveType(dex_file, type_idx, dex_cache, class_loader);
132 }
133 return resolved_type;
Brian Carlstromb63ec392011-08-27 17:38:27 -0700134 }
135
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700136 // Resolve a type with the given ID from the DexFile, storing the
137 // result in DexCache. The ClassLoader is used to search for the
138 // type, since it may be referenced from but not contained within
139 // the given DexFile.
140 Class* ResolveType(const DexFile& dex_file,
141 uint32_t type_idx,
142 DexCache* dex_cache,
143 const ClassLoader* class_loader);
144
145 // Resolve a method with a given ID from the DexFile, storing the
146 // result in DexCache. The ClassLinker and ClassLoader are used as
147 // in ResolveType. What is unique is the method type argument which
148 // is used to determine if this method is a direct, static, or
149 // virtual method.
150 Method* ResolveMethod(const DexFile& dex_file,
151 uint32_t method_idx,
152 DexCache* dex_cache,
153 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700154 bool is_direct);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700155
Brian Carlstrom16192862011-09-12 17:50:06 -0700156 Method* ResolveMethod(uint32_t method_idx, const Method* referrer, bool is_direct) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700157 Method* resolved_method = referrer->GetDexCacheResolvedMethods()->Get(method_idx);
158 if (UNLIKELY(resolved_method == NULL)) {
159 Class* declaring_class = referrer->GetDeclaringClass();
160 DexCache* dex_cache = declaring_class->GetDexCache();
161 const ClassLoader* class_loader = declaring_class->GetClassLoader();
162 const DexFile& dex_file = FindDexFile(dex_cache);
163 resolved_method = ResolveMethod(dex_file, method_idx, dex_cache, class_loader, is_direct);
164 }
165 return resolved_method;
Brian Carlstrom16192862011-09-12 17:50:06 -0700166 }
167
Brian Carlstrom845490b2011-09-19 15:56:53 -0700168 Field* ResolveField(uint32_t field_idx, const Method* referrer, bool is_static) {
Ian Rogerscaab8c42011-10-12 12:11:18 -0700169 Field* resolved_field = referrer->GetDexCacheResolvedFields()->Get(field_idx);
170 if (UNLIKELY(resolved_field == NULL)) {
171 Class* declaring_class = referrer->GetDeclaringClass();
172 DexCache* dex_cache = declaring_class->GetDexCache();
173 const ClassLoader* class_loader = declaring_class->GetClassLoader();
174 const DexFile& dex_file = FindDexFile(dex_cache);
175 resolved_field = ResolveField(dex_file, field_idx, dex_cache, class_loader, is_static);
176 }
177 return resolved_field;
Brian Carlstromb9edb842011-08-28 16:31:06 -0700178 }
179
Brian Carlstrom16192862011-09-12 17:50:06 -0700180 // Resolve a field with a given ID from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700181 // result in DexCache. The ClassLinker and ClassLoader are used as
182 // in ResolveType. What is unique is the is_static argument which is
183 // used to determine if we are resolving a static or non-static
184 // field.
185 Field* ResolveField(const DexFile& dex_file,
186 uint32_t field_idx,
187 DexCache* dex_cache,
188 const ClassLoader* class_loader,
189 bool is_static);
190
Ian Rogersad25ac52011-10-04 19:13:33 -0700191 // Get shorty from method index without resolution. Used to do handlerization.
192 const char* MethodShorty(uint32_t method_idx, Method* referrer);
193
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700194 // Returns true on success, false if there's an exception pending.
Brian Carlstrom25c33252011-09-18 15:58:35 -0700195 // can_run_clinit=false allows the compiler to attempt to init a class,
196 // given the restriction that no <clinit> execution is possible.
197 bool EnsureInitialized(Class* c, bool can_run_clinit);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700198
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700199 // Initializes classes that have instances in the image but that have
200 // <clinit> methods so they could not be initialized by the compiler.
201 void RunRootClinits();
202
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700203 void RegisterDexFile(const DexFile& dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700204 void RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700205
Brian Carlstrom8a487412011-08-29 20:08:52 -0700206 const std::vector<const DexFile*>& GetBootClassPath() {
207 return boot_class_path_;
208 }
209
Elliott Hughesa2155262011-11-16 16:26:58 -0800210 void VisitClasses(ClassVisitor* visitor, void* arg) const;
211
Elliott Hughes410c0c82011-09-01 17:58:25 -0700212 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700213
buzbeec143c552011-08-20 17:38:58 -0700214 const DexFile& FindDexFile(const DexCache* dex_cache) const;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700215 DexCache* FindDexCache(const DexFile& dex_file) const;
Brian Carlstromaded5f72011-10-07 17:15:04 -0700216 bool IsDexFileRegistered(const DexFile& dex_file) const;
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700217
jeffhao262bf462011-10-20 18:36:32 -0700218 // Generate an oat file from a dex file
219 const OatFile* GenerateOatFile(const std::string& filename);
220
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700221 // Find, possibily opening, an OatFile corresponding to a DexFile
222 const OatFile* FindOatFile(const DexFile& dex_file);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700223 const OatFile* FindOatFile(const std::string& location);
buzbeec143c552011-08-20 17:38:58 -0700224
Elliott Hughes418d20f2011-09-22 14:00:39 -0700225 // TODO: replace this with multiple methods that allocate the correct managed type.
Shih-wei Liao44175362011-08-28 16:59:17 -0700226 template <class T>
227 ObjectArray<T>* AllocObjectArray(size_t length) {
228 return ObjectArray<T>::Alloc(GetClassRoot(kObjectArrayClass), length);
229 }
230
Elliott Hughes418d20f2011-09-22 14:00:39 -0700231 ObjectArray<Class>* AllocClassArray(size_t length) {
232 return ObjectArray<Class>::Alloc(GetClassRoot(kClassArrayClass), length);
233 }
234
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700235 ObjectArray<StackTraceElement>* AllocStackTraceElementArray(size_t length);
236
jeffhao98eacac2011-09-14 16:11:53 -0700237 void VerifyClass(Class* klass);
238
Jesse Wilson95caa792011-10-12 18:14:17 -0400239 Class* CreateProxyClass(String* name, ObjectArray<Class>* interfaces, ClassLoader* loader,
Ian Rogers466bb252011-10-14 03:29:56 -0700240 ObjectArray<Method>* methods, ObjectArray<ObjectArray<Class> >* throws);
Jesse Wilson95caa792011-10-12 18:14:17 -0400241
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700242 pid_t GetClassesLockOwner(); // For SignalCatcher.
243 pid_t GetDexLockOwner(); // For SignalCatcher.
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -0700244
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700245 private:
Elliott Hughesa51a3dd2011-10-17 15:19:26 -0700246 explicit ClassLinker(InternTable*);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700247
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700248 // Initialize class linker by bootstraping from dex files
249 void Init(const std::string& boot_class_path);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700250
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700251 // Initialize class linker from one or more images.
252 void InitFromImage();
253 OatFile* OpenOat(const Space* space);
Brian Carlstrom78128a62011-09-15 17:21:19 -0700254 static void InitFromImageCallback(Object* obj, void* arg);
Brian Carlstromc74255f2011-09-11 22:47:39 -0700255 struct InitFromImageCallbackState;
Brian Carlstroma663ea52011-08-19 23:33:41 -0700256
257 void FinishInit();
258
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700259 // For early bootstrapping by Init
Brian Carlstrom4873d462011-08-21 15:23:39 -0700260 Class* AllocClass(Class* java_lang_Class, size_t class_size);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700261
262 // Alloc* convenience functions to avoid needing to pass in Class*
263 // values that are known to the ClassLinker such as
264 // kObjectArrayClass and kJavaLangString etc.
Brian Carlstrom4873d462011-08-21 15:23:39 -0700265 Class* AllocClass(size_t class_size);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700266 DexCache* AllocDexCache(const DexFile& dex_file);
Jesse Wilson35baaab2011-08-10 16:18:03 -0400267 Field* AllocField();
Ian Rogersbdb03912011-09-14 00:55:44 -0700268
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700269 Method* AllocMethod();
Ian Rogersbdb03912011-09-14 00:55:44 -0700270
Brian Carlstrom9cc262e2011-08-28 12:45:30 -0700271 CodeAndDirectMethods* AllocCodeAndDirectMethods(size_t length);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700272 InterfaceEntry* AllocInterfaceEntry(Class* interface);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700273
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700274 Class* CreatePrimitiveClass(const char* descriptor, Primitive::Type type) {
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700275 return InitializePrimitiveClass(AllocClass(sizeof(Class)), descriptor, type);
276 }
277 Class* InitializePrimitiveClass(Class* primitive_class,
278 const char* descriptor,
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700279 Primitive::Type type);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700280
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700281
Brian Carlstromaded5f72011-10-07 17:15:04 -0700282 Class* CreateArrayClass(const std::string& descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700283 const ClassLoader* class_loader);
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700284
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700285 void AppendToBootClassPath(const DexFile& dex_file);
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700286 void AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700287
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700288 void ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Ian Rogers0571d352011-11-03 19:51:38 -0700289 Class* c, std::map<uint32_t, Field*>& field_map);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700290
Brian Carlstrom4873d462011-08-21 15:23:39 -0700291 size_t SizeOfClass(const DexFile& dex_file,
292 const DexFile::ClassDef& dex_class_def);
293
Brian Carlstromf615a612011-07-23 12:50:34 -0700294 void LoadClass(const DexFile& dex_file,
295 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700296 SirtRef<Class>& klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700297 const ClassLoader* class_loader);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700298
Brian Carlstromf615a612011-07-23 12:50:34 -0700299 void LoadInterfaces(const DexFile& dex_file,
300 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700301 SirtRef<Class>& klass);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700302
Ian Rogers0571d352011-11-03 19:51:38 -0700303 void LoadField(const DexFile& dex_file, const ClassDataItemIterator& it, SirtRef<Class>& klass,
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700304 SirtRef<Field>& dst);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700305
Ian Rogers0571d352011-11-03 19:51:38 -0700306 void LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& dex_method,
307 SirtRef<Class>& klass, SirtRef<Method>& dst);
Brian Carlstrom934486c2011-07-12 23:42:50 -0700308
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700309 // Inserts a class into the class table. Returns true if the class
310 // was inserted.
Ian Rogers5d76c432011-10-31 21:42:49 -0700311 bool InsertClass(const std::string& descriptor, Class* klass, bool image_class);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700312
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700313 void RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700314 bool IsDexFileRegisteredLocked(const DexFile& dex_file) const;
315
Brian Carlstromd1422f82011-09-28 11:37:09 -0700316 bool InitializeClass(Class* klass, bool can_run_clinit);
317 bool WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700318 bool ValidateSuperClassDescriptors(const Class* klass);
Brian Carlstromd1422f82011-09-28 11:37:09 -0700319 bool InitializeSuperClass(Class* klass, bool can_run_clinit);
320 void InitializeStaticFields(Class* klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700321
322 bool HasSameDescriptorClasses(const char* descriptor,
323 const Class* klass1,
324 const Class* klass2);
325
326 bool HasSameMethodDescriptorClasses(const Method* descriptor,
327 const Class* klass1,
328 const Class* klass2);
329
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700330 bool LinkClass(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700331
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700332 bool LinkSuperClass(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700333
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700334 bool LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700335
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700336 bool LinkMethods(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700337
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700338 bool LinkVirtualMethods(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700339
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700340 bool LinkInterfaceMethods(SirtRef<Class>& klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700341
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700342 bool LinkStaticFields(SirtRef<Class>& klass);
343 bool LinkInstanceFields(SirtRef<Class>& klass);
344 bool LinkFields(SirtRef<Class>& klass, bool is_static);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700345
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700346
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700347 void CreateReferenceInstanceOffsets(SirtRef<Class>& klass);
348 void CreateReferenceStaticOffsets(SirtRef<Class>& klass);
349 void CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static,
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700350 uint32_t reference_offsets);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700351
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700352 // For use by ImageWriter to find DexCaches for its roots
353 const std::vector<DexCache*>& GetDexCaches() {
354 return dex_caches_;
355 }
356
Brian Carlstromfad71432011-10-16 20:25:10 -0700357 const OatFile* FindOpenedOatFile(const std::string& location);
358
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700359 Method* CreateProxyConstructor(SirtRef<Class>& klass);
360 Method* CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype, ObjectArray<Class>* throws);
Jesse Wilson95caa792011-10-12 18:14:17 -0400361
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700362 std::vector<const DexFile*> boot_class_path_;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700363
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700364 std::vector<const DexFile*> dex_files_;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700365 std::vector<DexCache*> dex_caches_;
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700366 std::vector<const OatFile*> oat_files_;
367 // lock to protect concurrent access to dex_files_, dex_caches_, and oat_files_
368 mutable Mutex dex_lock_;
369
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700370
Brian Carlstromaded5f72011-10-07 17:15:04 -0700371 // multimap from a string hash code of a class descriptor to
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700372 // Class* instances. Results should be compared for a matching
373 // Class::descriptor_ and Class::class_loader_.
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700374 // Protected by classes_lock_
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700375 typedef std::tr1::unordered_multimap<size_t, Class*> Table;
Ian Rogers5d76c432011-10-31 21:42:49 -0700376 Table image_classes_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700377 Table classes_;
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700378 mutable Mutex classes_lock_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700379
Brian Carlstroma663ea52011-08-19 23:33:41 -0700380 // indexes into class_roots_.
381 // needs to be kept in sync with class_roots_descriptors_.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700382 enum ClassRoot {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700383 kJavaLangClass,
384 kJavaLangObject,
Elliott Hughes418d20f2011-09-22 14:00:39 -0700385 kClassArrayClass,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700386 kObjectArrayClass,
387 kJavaLangString,
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700388 kJavaLangRefReference,
Elliott Hughes80609252011-09-23 17:24:51 -0700389 kJavaLangReflectConstructor,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700390 kJavaLangReflectField,
391 kJavaLangReflectMethod,
Ian Rogers466bb252011-10-14 03:29:56 -0700392 kJavaLangReflectProxy,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700393 kJavaLangClassLoader,
394 kDalvikSystemBaseDexClassLoader,
395 kDalvikSystemPathClassLoader,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700396 kJavaLangStackTraceElement,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700397 kPrimitiveBoolean,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700398 kPrimitiveByte,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700399 kPrimitiveChar,
400 kPrimitiveDouble,
401 kPrimitiveFloat,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700402 kPrimitiveInt,
403 kPrimitiveLong,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700404 kPrimitiveShort,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700405 kPrimitiveVoid,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700406 kBooleanArrayClass,
407 kByteArrayClass,
408 kCharArrayClass,
409 kDoubleArrayClass,
410 kFloatArrayClass,
411 kIntArrayClass,
412 kLongArrayClass,
413 kShortArrayClass,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700414 kJavaLangStackTraceElementArrayClass,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700415 kClassRootsMax,
416 };
417 ObjectArray<Class>* class_roots_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700418
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700419 Class* GetClassRoot(ClassRoot class_root) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700420 DCHECK(class_roots_ != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700421 Class* klass = class_roots_->Get(class_root);
422 DCHECK(klass != NULL);
423 return klass;
424 }
425
Brian Carlstroma663ea52011-08-19 23:33:41 -0700426 void SetClassRoot(ClassRoot class_root, Class* klass) {
427 DCHECK(!init_done_);
428
429 DCHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700430 DCHECK(klass->GetClassLoader() == NULL);
431 DCHECK(klass->GetDescriptor() != NULL);
432 DCHECK(klass->GetDescriptor()->Equals(GetClassRootDescriptor(class_root)));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700433
434 DCHECK(class_roots_ != NULL);
435 DCHECK(class_roots_->Get(class_root) == NULL);
436 class_roots_->Set(class_root, klass);
437 }
438
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700439 ObjectArray<Class>* GetClassRoots() {
440 DCHECK(class_roots_ != NULL);
441 return class_roots_;
442 }
443
Elliott Hughes418d20f2011-09-22 14:00:39 -0700444 static const char* class_roots_descriptors_[];
Brian Carlstroma663ea52011-08-19 23:33:41 -0700445
446 const char* GetClassRootDescriptor(ClassRoot class_root) {
447 const char* descriptor = class_roots_descriptors_[class_root];
448 CHECK(descriptor != NULL);
449 return descriptor;
450 }
451
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700452 ObjectArray<Class>* array_interfaces_;
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700453 ObjectArray<InterfaceEntry>* array_iftable_;
Carl Shapiro565f5072011-07-10 13:39:43 -0700454
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700455 bool init_done_;
456
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700457 InternTable* intern_table_;
458
Brian Carlstromf734cf52011-08-17 16:28:14 -0700459 friend class CommonTest;
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700460 FRIEND_TEST(DexCacheTest, Open);
461 friend class ObjectTest;
462 FRIEND_TEST(ObjectTest, AllocObjectArray);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700463 FRIEND_TEST(ExceptionTest, FindExceptionHandler);
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700464 friend class ImageWriter; // for GetClassRoots
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700465 DISALLOW_COPY_AND_ASSIGN(ClassLinker);
466};
467
468} // namespace art
469
470#endif // ART_SRC_CLASS_LINKER_H_