blob: 108059caafd293185ea7a7dddc8a3559c9d0e475 [file] [log] [blame]
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#ifndef ART_SRC_CLASS_LINKER_H_
4#define ART_SRC_CLASS_LINKER_H_
5
6#include <map>
7#include <utility>
8#include <vector>
9
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070010#include "dex_file.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070011#include "heap.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070012#include "macros.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070013#include "mutex.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070014#include "object.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070015#include "unordered_map.h"
Brian Carlstroma663ea52011-08-19 23:33:41 -070016#include "unordered_set.h"
Brian Carlstrom7e93b502011-08-04 14:16:22 -070017
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070018#include "gtest/gtest.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070019
20namespace art {
21
Elliott Hughescf4c6c42011-09-01 15:16:42 -070022class ClassLoader;
23class InternTable;
24
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070025class ClassLinker {
26 public:
Brian Carlstromc74255f2011-09-11 22:47:39 -070027 // Initializes the class linker using DexFiles and an optional an image.
Elliott Hughescf4c6c42011-09-01 15:16:42 -070028 static ClassLinker* Create(const std::vector<const DexFile*>& boot_class_path,
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070029 const std::vector<const DexFile*>& class_path,
Brian Carlstromc74255f2011-09-11 22:47:39 -070030 InternTable* intern_table, bool image);
Carl Shapiro61e019d2011-07-14 16:53:09 -070031
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070032 ~ClassLinker();
Carl Shapiro565f5072011-07-10 13:39:43 -070033
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070034 // Finds a class by its descriptor name.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070035 // If class_loader is null, searches boot_class_path_.
Brian Carlstrom6cc18452011-07-18 15:10:33 -070036 Class* FindClass(const StringPiece& descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070037 const ClassLoader* class_loader);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070038
Elliott Hughesd8ddfd52011-08-15 14:32:53 -070039 Class* FindPrimitiveClass(char type);
40
Brian Carlstrom6cc18452011-07-18 15:10:33 -070041 Class* FindSystemClass(const StringPiece& descriptor) {
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070042 return FindClass(descriptor, NULL);
Carl Shapiro565f5072011-07-10 13:39:43 -070043 }
44
Elliott Hughese27955c2011-08-26 15:21:24 -070045 size_t NumLoadedClasses() const;
46
Brian Carlstromb63ec392011-08-27 17:38:27 -070047 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070048 // result in the DexCache.
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070049 String* ResolveString(const DexFile& dex_file, uint32_t string_idx, DexCache* dex_cache);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070050
Brian Carlstromb63ec392011-08-27 17:38:27 -070051 // Resolve a Type with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070052 // result in the DexCache. The referrer is used to identity the
53 // target DexCache and ClassLoader to use for resolution.
54 Class* ResolveType(const DexFile& dex_file,
55 uint32_t type_idx,
56 const Class* referrer) {
57 return ResolveType(dex_file,
58 type_idx,
59 referrer->GetDexCache(),
60 referrer->GetClassLoader());
61 }
62
Brian Carlstromb63ec392011-08-27 17:38:27 -070063 // Resolve a Type with the given index from the DexFile, storing the
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070064 // result in the DexCache. The referrer is used to identify the
Brian Carlstromb63ec392011-08-27 17:38:27 -070065 // target DexCache and ClassLoader to use for resolution.
Brian Carlstromb9edb842011-08-28 16:31:06 -070066 Class* ResolveType(uint32_t type_idx, const Method* referrer) {
Brian Carlstromb63ec392011-08-27 17:38:27 -070067 Class* declaring_class = referrer->GetDeclaringClass();
68 DexCache* dex_cache = declaring_class->GetDexCache();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070069 // TODO: we could check for a dex cache hit here
70 const ClassLoader* class_loader = declaring_class->GetClassLoader();
71 const DexFile& dex_file = FindDexFile(dex_cache);
72 return ResolveType(dex_file, type_idx, dex_cache, class_loader);
73 }
74
75 Class* ResolveType(uint32_t type_idx, const Field* referrer) {
76 Class* declaring_class = referrer->GetDeclaringClass();
77 DexCache* dex_cache = declaring_class->GetDexCache();
78 // TODO: we could check for a dex cache hit here
Brian Carlstromb63ec392011-08-27 17:38:27 -070079 const ClassLoader* class_loader = declaring_class->GetClassLoader();
80 const DexFile& dex_file = FindDexFile(dex_cache);
81 return ResolveType(dex_file, type_idx, dex_cache, class_loader);
82 }
83
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070084 // Resolve a type with the given ID from the DexFile, storing the
85 // result in DexCache. The ClassLoader is used to search for the
86 // type, since it may be referenced from but not contained within
87 // the given DexFile.
88 Class* ResolveType(const DexFile& dex_file,
89 uint32_t type_idx,
90 DexCache* dex_cache,
91 const ClassLoader* class_loader);
92
Brian Carlstromb9edb842011-08-28 16:31:06 -070093 static StaticStorageBase* InitializeStaticStorageFromCode(uint32_t type_idx,
94 const Method* referrer);
Brian Carlstrom1caa2c22011-08-28 13:02:33 -070095
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070096 // Resolve a method with a given ID from the DexFile, storing the
97 // result in DexCache. The ClassLinker and ClassLoader are used as
98 // in ResolveType. What is unique is the method type argument which
99 // is used to determine if this method is a direct, static, or
100 // virtual method.
101 Method* ResolveMethod(const DexFile& dex_file,
102 uint32_t method_idx,
103 DexCache* dex_cache,
104 const ClassLoader* class_loader,
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700105 bool is_direct);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700106
Brian Carlstrom16192862011-09-12 17:50:06 -0700107 Method* ResolveMethod(uint32_t method_idx, const Method* referrer, bool is_direct) {
108 Class* declaring_class = referrer->GetDeclaringClass();
109 DexCache* dex_cache = declaring_class->GetDexCache();
110 // TODO: we could check for a dex cache hit here
111 const ClassLoader* class_loader = declaring_class->GetClassLoader();
112 const DexFile& dex_file = FindDexFile(dex_cache);
113 return ResolveMethod(dex_file, method_idx, dex_cache, class_loader, is_direct);
114 }
115
Brian Carlstromb9edb842011-08-28 16:31:06 -0700116 Field* ResolveField(uint32_t field_idx, const Method* referrer) {
117 Class* declaring_class = referrer->GetDeclaringClass();
118 DexCache* dex_cache = declaring_class->GetDexCache();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700119 // TODO: we could check for a dex cache hit here
Brian Carlstromb9edb842011-08-28 16:31:06 -0700120 const ClassLoader* class_loader = declaring_class->GetClassLoader();
121 const DexFile& dex_file = FindDexFile(dex_cache);
122 return ResolveField(dex_file, field_idx, dex_cache, class_loader, true);
123 }
124
Brian Carlstrom16192862011-09-12 17:50:06 -0700125 // Resolve a field with a given ID from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700126 // result in DexCache. The ClassLinker and ClassLoader are used as
127 // in ResolveType. What is unique is the is_static argument which is
128 // used to determine if we are resolving a static or non-static
129 // field.
130 Field* ResolveField(const DexFile& dex_file,
131 uint32_t field_idx,
132 DexCache* dex_cache,
133 const ClassLoader* class_loader,
134 bool is_static);
135
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700136 // Returns true on success, false if there's an exception pending.
137 bool EnsureInitialized(Class* c);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700138
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700139 void RegisterDexFile(const DexFile& dex_file);
140 void RegisterDexFile(const DexFile& dex_file, DexCache* dex_cache);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700141
Brian Carlstrom8a487412011-08-29 20:08:52 -0700142 const std::vector<const DexFile*>& GetBootClassPath() {
143 return boot_class_path_;
144 }
145
Elliott Hughes410c0c82011-09-01 17:58:25 -0700146 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700147
buzbeec143c552011-08-20 17:38:58 -0700148 const DexFile& FindDexFile(const DexCache* dex_cache) const;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700149 DexCache* FindDexCache(const DexFile& dex_file) const;
buzbeec143c552011-08-20 17:38:58 -0700150
Shih-wei Liao44175362011-08-28 16:59:17 -0700151 template <class T>
152 ObjectArray<T>* AllocObjectArray(size_t length) {
153 return ObjectArray<T>::Alloc(GetClassRoot(kObjectArrayClass), length);
154 }
155
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700156 ObjectArray<StackTraceElement>* AllocStackTraceElementArray(size_t length);
157
jeffhao98eacac2011-09-14 16:11:53 -0700158 void VerifyClass(Class* klass);
159
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700160 private:
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700161 ClassLinker(InternTable*);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700162
Brian Carlstroma663ea52011-08-19 23:33:41 -0700163 // Initialize class linker from DexFile instances.
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700164 void Init(const std::vector<const DexFile*>& boot_class_path_,
165 const std::vector<const DexFile*>& class_path_);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700166
Brian Carlstromc74255f2011-09-11 22:47:39 -0700167 // Initialize class linker from pre-initialized image.
168 void InitFromImage(const std::vector<const DexFile*>& boot_class_path_,
169 const std::vector<const DexFile*>& class_path_);
170 static void InitFromImageCallback(Object* obj, void *arg);
171 struct InitFromImageCallbackState;
Brian Carlstroma663ea52011-08-19 23:33:41 -0700172
173 void FinishInit();
174
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700175 bool InitializeClass(Class* klass);
176
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700177 // For early bootstrapping by Init
Brian Carlstrom4873d462011-08-21 15:23:39 -0700178 Class* AllocClass(Class* java_lang_Class, size_t class_size);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700179
180 // Alloc* convenience functions to avoid needing to pass in Class*
181 // values that are known to the ClassLinker such as
182 // kObjectArrayClass and kJavaLangString etc.
Brian Carlstrom4873d462011-08-21 15:23:39 -0700183 Class* AllocClass(size_t class_size);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700184 DexCache* AllocDexCache(const DexFile& dex_file);
Jesse Wilson35baaab2011-08-10 16:18:03 -0400185 Field* AllocField();
Ian Rogersbdb03912011-09-14 00:55:44 -0700186
187 // TODO: have no friends, we need this currently to create a special method
188 // to describe callee save registers for throwing exceptions
189 friend class Thread;
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700190 Method* AllocMethod();
Ian Rogersbdb03912011-09-14 00:55:44 -0700191
Brian Carlstrom9cc262e2011-08-28 12:45:30 -0700192 CodeAndDirectMethods* AllocCodeAndDirectMethods(size_t length);
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700193 InterfaceEntry* AllocInterfaceEntry(Class* interface);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700194
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700195 Class* CreatePrimitiveClass(const char* descriptor,
196 Class::PrimitiveType type);
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700197
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700198 Class* CreateArrayClass(const StringPiece& descriptor,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700199 const ClassLoader* class_loader);
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700200
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700201 void AppendToBootClassPath(const DexFile& dex_file);
202 void AppendToBootClassPath(const DexFile& dex_file, DexCache* dex_cache);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700203
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700204 void ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
205 Class* c, std::map<int, Field*>& field_map);
206
Brian Carlstrom4873d462011-08-21 15:23:39 -0700207 size_t SizeOfClass(const DexFile& dex_file,
208 const DexFile::ClassDef& dex_class_def);
209
Brian Carlstromf615a612011-07-23 12:50:34 -0700210 void LoadClass(const DexFile& dex_file,
211 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700212 Class* klass,
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700213 const ClassLoader* class_loader);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700214
Brian Carlstromf615a612011-07-23 12:50:34 -0700215 void LoadInterfaces(const DexFile& dex_file,
216 const DexFile::ClassDef& dex_class_def,
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700217 Class *klass);
218
Brian Carlstromf615a612011-07-23 12:50:34 -0700219 void LoadField(const DexFile& dex_file,
220 const DexFile::Field& dex_field,
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700221 Class* klass,
222 Field* dst);
223
Brian Carlstromf615a612011-07-23 12:50:34 -0700224 void LoadMethod(const DexFile& dex_file,
225 const DexFile::Method& dex_method,
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700226 Class* klass,
Brian Carlstrom1f870082011-08-23 16:02:11 -0700227 Method* dst);
Brian Carlstrom934486c2011-07-12 23:42:50 -0700228
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700229 Class* LookupClass(const StringPiece& descriptor, const ClassLoader* class_loader);
Brian Carlstrom7e93b502011-08-04 14:16:22 -0700230
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700231 // Inserts a class into the class table. Returns true if the class
232 // was inserted.
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700233 bool InsertClass(const StringPiece& descriptor, Class* klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700234
235 bool InitializeSuperClass(Class* klass);
236
237 void InitializeStaticFields(Class* klass);
238
239 bool ValidateSuperClassDescriptors(const Class* klass);
240
241 bool HasSameDescriptorClasses(const char* descriptor,
242 const Class* klass1,
243 const Class* klass2);
244
245 bool HasSameMethodDescriptorClasses(const Method* descriptor,
246 const Class* klass1,
247 const Class* klass2);
248
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700249 bool LinkClass(Class* klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700250
251 bool LinkSuperClass(Class* klass);
252
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700253 bool LoadSuperAndInterfaces(Class* klass, const DexFile& dex_file);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700254
255 bool LinkMethods(Class* klass);
256
257 bool LinkVirtualMethods(Class* klass);
258
259 bool LinkInterfaceMethods(Class* klass);
260
Jesse Wilson7833bd22011-08-09 18:31:44 -0400261 bool LinkStaticFields(Class* klass);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700262 bool LinkInstanceFields(Class* klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700263 bool LinkFields(Class *klass, bool instance);
264
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700265
Brian Carlstrom4873d462011-08-21 15:23:39 -0700266 void CreateReferenceInstanceOffsets(Class* klass);
267 void CreateReferenceStaticOffsets(Class* klass);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700268 void CreateReferenceOffsets(Class *klass, bool instance,
269 uint32_t reference_offsets);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700270
Brian Carlstrom16192862011-09-12 17:50:06 -0700271 // lock to protect ClassLinker state
272 mutable Mutex lock_;
273
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700274 std::vector<const DexFile*> boot_class_path_;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700275
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700276 std::vector<const DexFile*> dex_files_;
Brian Carlstrom7e49dca2011-07-22 18:07:34 -0700277 std::vector<DexCache*> dex_caches_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700278
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700279 // multimap from a StringPiece hash code of a class descriptor to
280 // Class* instances. Results should be compared for a matching
281 // Class::descriptor_ and Class::class_loader_.
282 typedef std::tr1::unordered_multimap<size_t, Class*> Table;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700283 Table classes_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700284
Brian Carlstroma663ea52011-08-19 23:33:41 -0700285 // indexes into class_roots_.
286 // needs to be kept in sync with class_roots_descriptors_.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700287 enum ClassRoot {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700288 kJavaLangClass,
289 kJavaLangObject,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700290 kObjectArrayClass,
291 kJavaLangString,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700292 kJavaLangReflectField,
293 kJavaLangReflectMethod,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700294 kJavaLangClassLoader,
295 kDalvikSystemBaseDexClassLoader,
296 kDalvikSystemPathClassLoader,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700297 kJavaLangStackTraceElement,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700298 kPrimitiveBoolean,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700299 kPrimitiveByte,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700300 kPrimitiveChar,
301 kPrimitiveDouble,
302 kPrimitiveFloat,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700303 kPrimitiveInt,
304 kPrimitiveLong,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700305 kPrimitiveShort,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700306 kPrimitiveVoid,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700307 kBooleanArrayClass,
308 kByteArrayClass,
309 kCharArrayClass,
310 kDoubleArrayClass,
311 kFloatArrayClass,
312 kIntArrayClass,
313 kLongArrayClass,
314 kShortArrayClass,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700315 kJavaLangStackTraceElementArrayClass,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700316 kClassRootsMax,
317 };
318 ObjectArray<Class>* class_roots_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700319
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700320 Class* GetClassRoot(ClassRoot class_root) {
Brian Carlstroma663ea52011-08-19 23:33:41 -0700321 DCHECK(class_roots_ != NULL);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700322 Class* klass = class_roots_->Get(class_root);
323 DCHECK(klass != NULL);
324 return klass;
325 }
326
Brian Carlstroma663ea52011-08-19 23:33:41 -0700327 void SetClassRoot(ClassRoot class_root, Class* klass) {
328 DCHECK(!init_done_);
329
330 DCHECK(klass != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700331 DCHECK(klass->GetClassLoader() == NULL);
332 DCHECK(klass->GetDescriptor() != NULL);
333 DCHECK(klass->GetDescriptor()->Equals(GetClassRootDescriptor(class_root)));
Brian Carlstroma663ea52011-08-19 23:33:41 -0700334
335 DCHECK(class_roots_ != NULL);
336 DCHECK(class_roots_->Get(class_root) == NULL);
337 class_roots_->Set(class_root, klass);
338 }
339
340 static const char* class_roots_descriptors_[kClassRootsMax];
341
342 const char* GetClassRootDescriptor(ClassRoot class_root) {
343 const char* descriptor = class_roots_descriptors_[class_root];
344 CHECK(descriptor != NULL);
345 return descriptor;
346 }
347
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700348 ObjectArray<Class>* array_interfaces_;
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700349 ObjectArray<InterfaceEntry>* array_iftable_;
Carl Shapiro565f5072011-07-10 13:39:43 -0700350
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700351 bool init_done_;
352
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700353 InternTable* intern_table_;
354
Brian Carlstromf734cf52011-08-17 16:28:14 -0700355 friend class CommonTest;
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700356 FRIEND_TEST(DexCacheTest, Open);
357 friend class ObjectTest;
358 FRIEND_TEST(ObjectTest, AllocObjectArray);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700359 FRIEND_TEST(ExceptionTest, FindExceptionHandler);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700360 DISALLOW_COPY_AND_ASSIGN(ClassLinker);
361};
362
363} // namespace art
364
365#endif // ART_SRC_CLASS_LINKER_H_