Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 1 | /* |
| 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 Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 16 | |
| 17 | #ifndef ART_SRC_CLASS_LINKER_H_ |
| 18 | #define ART_SRC_CLASS_LINKER_H_ |
| 19 | |
| 20 | #include <map> |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 21 | #include <string> |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 22 | #include <utility> |
| 23 | #include <vector> |
| 24 | |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 25 | #include "dex_cache.h" |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 26 | #include "dex_file.h" |
Brian Carlstrom | 7e93b50 | 2011-08-04 14:16:22 -0700 | [diff] [blame] | 27 | #include "heap.h" |
Brian Carlstrom | 7e93b50 | 2011-08-04 14:16:22 -0700 | [diff] [blame] | 28 | #include "macros.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 29 | #include "mutex.h" |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 30 | #include "oat_file.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 31 | #include "object.h" |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 32 | #include "stack_indirect_reference_table.h" |
Brian Carlstrom | 7e93b50 | 2011-08-04 14:16:22 -0700 | [diff] [blame] | 33 | #include "unordered_map.h" |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 34 | #include "unordered_set.h" |
Brian Carlstrom | 7e93b50 | 2011-08-04 14:16:22 -0700 | [diff] [blame] | 35 | |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 36 | #include "gtest/gtest.h" |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 37 | |
| 38 | namespace art { |
| 39 | |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 40 | class ClassLoader; |
| 41 | class InternTable; |
Brian Carlstrom | d1422f8 | 2011-09-28 11:37:09 -0700 | [diff] [blame] | 42 | class ObjectLock; |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 43 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 44 | typedef bool (ClassVisitor)(Class* c, void* arg); |
| 45 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 46 | class ClassLinker { |
| 47 | public: |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 48 | // Creates the class linker by boot strapping from dex files. |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame^] | 49 | static ClassLinker* Create(const std::string& boot_class_path, InternTable* intern_table); |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 50 | |
| 51 | // Creates the class linker from one or more images. |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame^] | 52 | static ClassLinker* Create(InternTable* intern_table); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 53 | |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 54 | ~ClassLinker(); |
Carl Shapiro | 565f507 | 2011-07-10 13:39:43 -0700 | [diff] [blame] | 55 | |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 56 | // Finds a class by its descriptor, loading it if necessary. |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 57 | // If class_loader is null, searches boot_class_path_. |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 58 | Class* FindClass(const std::string& descriptor, const ClassLoader* class_loader); |
| 59 | |
| 60 | Class* FindSystemClass(const std::string& descriptor) { |
| 61 | return FindClass(descriptor, NULL); |
| 62 | } |
| 63 | |
| 64 | // Define a new a class based on a ClassDef from a DexFile |
| 65 | Class* DefineClass(const std::string& descriptor, const ClassLoader* class_loader, |
| 66 | const DexFile& dex_file, const DexFile::ClassDef& dex_class_def); |
Elliott Hughes | 64bf5a3 | 2011-09-20 14:43:12 -0700 | [diff] [blame] | 67 | |
| 68 | // Finds a class by its descriptor, returning NULL if it isn't wasn't loaded |
| 69 | // by the given 'class_loader'. |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 70 | Class* LookupClass(const std::string& descriptor, const ClassLoader* class_loader); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 71 | |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 72 | // Finds all the classes with the given descriptor, regardless of ClassLoader. |
| 73 | void LookupClasses(const std::string& descriptor, std::vector<Class*>& classes); |
| 74 | |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 75 | Class* FindPrimitiveClass(char type); |
| 76 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 77 | // General class unloading is not supported, this is used to prune |
| 78 | // unwanted classes during image writing. |
| 79 | bool RemoveClass(const std::string& descriptor, const ClassLoader* class_loader); |
| 80 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 81 | void DumpAllClasses(int flags) const; |
| 82 | |
Elliott Hughes | cac6cc7 | 2011-11-03 20:31:21 -0700 | [diff] [blame] | 83 | void DumpForSigQuit(std::ostream& os) const; |
| 84 | |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 85 | size_t NumLoadedClasses() const; |
| 86 | |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 87 | // Resolve a String with the given index from the DexFile, storing the |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 88 | // result in the DexCache. The referrer is used to identify the |
| 89 | // target DexCache and ClassLoader to use for resolution. |
| 90 | String* ResolveString(uint32_t string_idx, const Method* referrer) { |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 91 | String* resolved_string = referrer->GetDexCacheStrings()->Get(string_idx); |
| 92 | if (UNLIKELY(resolved_string == NULL)) { |
| 93 | Class* declaring_class = referrer->GetDeclaringClass(); |
| 94 | DexCache* dex_cache = declaring_class->GetDexCache(); |
| 95 | const DexFile& dex_file = FindDexFile(dex_cache); |
| 96 | resolved_string = ResolveString(dex_file, string_idx, dex_cache); |
| 97 | } |
| 98 | return resolved_string; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | // Resolve a String with the given index from the DexFile, storing the |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 102 | // result in the DexCache. |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 103 | String* ResolveString(const DexFile& dex_file, uint32_t string_idx, DexCache* dex_cache); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 104 | |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 105 | // Resolve a Type with the given index from the DexFile, storing the |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 106 | // result in the DexCache. The referrer is used to identity the |
| 107 | // target DexCache and ClassLoader to use for resolution. |
| 108 | Class* ResolveType(const DexFile& dex_file, |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 109 | uint16_t type_idx, |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 110 | const Class* referrer) { |
| 111 | return ResolveType(dex_file, |
| 112 | type_idx, |
| 113 | referrer->GetDexCache(), |
| 114 | referrer->GetClassLoader()); |
| 115 | } |
| 116 | |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 117 | // Resolve a Type with the given index from the DexFile, storing the |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 118 | // result in the DexCache. The referrer is used to identify the |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 119 | // target DexCache and ClassLoader to use for resolution. |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 120 | Class* ResolveType(uint16_t type_idx, const Method* referrer) { |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 121 | Class* resolved_type = referrer->GetDexCacheResolvedTypes()->Get(type_idx); |
| 122 | if (UNLIKELY(resolved_type == NULL)) { |
| 123 | Class* declaring_class = referrer->GetDeclaringClass(); |
| 124 | DexCache* dex_cache = declaring_class->GetDexCache(); |
| 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; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 130 | } |
| 131 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 132 | Class* ResolveType(uint16_t type_idx, const Field* referrer) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 133 | Class* declaring_class = referrer->GetDeclaringClass(); |
| 134 | DexCache* dex_cache = declaring_class->GetDexCache(); |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 135 | Class* resolved_type = dex_cache->GetResolvedType(type_idx); |
| 136 | if (UNLIKELY(resolved_type == NULL)) { |
| 137 | const ClassLoader* class_loader = declaring_class->GetClassLoader(); |
| 138 | const DexFile& dex_file = FindDexFile(dex_cache); |
| 139 | resolved_type = ResolveType(dex_file, type_idx, dex_cache, class_loader); |
| 140 | } |
| 141 | return resolved_type; |
Brian Carlstrom | b63ec39 | 2011-08-27 17:38:27 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 144 | // Resolve a type with the given ID from the DexFile, storing the |
| 145 | // result in DexCache. The ClassLoader is used to search for the |
| 146 | // type, since it may be referenced from but not contained within |
| 147 | // the given DexFile. |
| 148 | Class* ResolveType(const DexFile& dex_file, |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 149 | uint16_t type_idx, |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 150 | DexCache* dex_cache, |
| 151 | const ClassLoader* class_loader); |
| 152 | |
| 153 | // Resolve a method with a given ID from the DexFile, storing the |
| 154 | // result in DexCache. The ClassLinker and ClassLoader are used as |
| 155 | // in ResolveType. What is unique is the method type argument which |
| 156 | // is used to determine if this method is a direct, static, or |
| 157 | // virtual method. |
| 158 | Method* ResolveMethod(const DexFile& dex_file, |
| 159 | uint32_t method_idx, |
| 160 | DexCache* dex_cache, |
| 161 | const ClassLoader* class_loader, |
Brian Carlstrom | 20cfffa | 2011-08-26 02:31:27 -0700 | [diff] [blame] | 162 | bool is_direct); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 163 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 164 | Method* ResolveMethod(uint32_t method_idx, const Method* referrer, bool is_direct) { |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 165 | Method* resolved_method = referrer->GetDexCacheResolvedMethods()->Get(method_idx); |
| 166 | if (UNLIKELY(resolved_method == 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_method = ResolveMethod(dex_file, method_idx, dex_cache, class_loader, is_direct); |
| 172 | } |
| 173 | return resolved_method; |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Brian Carlstrom | 845490b | 2011-09-19 15:56:53 -0700 | [diff] [blame] | 176 | Field* ResolveField(uint32_t field_idx, const Method* referrer, bool is_static) { |
Ian Rogers | caab8c4 | 2011-10-12 12:11:18 -0700 | [diff] [blame] | 177 | Field* resolved_field = referrer->GetDexCacheResolvedFields()->Get(field_idx); |
| 178 | if (UNLIKELY(resolved_field == NULL)) { |
| 179 | Class* declaring_class = referrer->GetDeclaringClass(); |
| 180 | DexCache* dex_cache = declaring_class->GetDexCache(); |
| 181 | const ClassLoader* class_loader = declaring_class->GetClassLoader(); |
| 182 | const DexFile& dex_file = FindDexFile(dex_cache); |
| 183 | resolved_field = ResolveField(dex_file, field_idx, dex_cache, class_loader, is_static); |
| 184 | } |
| 185 | return resolved_field; |
Brian Carlstrom | b9edb84 | 2011-08-28 16:31:06 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 188 | // Resolve a field with a given ID from the DexFile, storing the |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 189 | // result in DexCache. The ClassLinker and ClassLoader are used as |
| 190 | // in ResolveType. What is unique is the is_static argument which is |
| 191 | // used to determine if we are resolving a static or non-static |
| 192 | // field. |
| 193 | Field* ResolveField(const DexFile& dex_file, |
| 194 | uint32_t field_idx, |
| 195 | DexCache* dex_cache, |
| 196 | const ClassLoader* class_loader, |
| 197 | bool is_static); |
| 198 | |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 199 | // Get shorty from method index without resolution. Used to do handlerization. |
| 200 | const char* MethodShorty(uint32_t method_idx, Method* referrer); |
| 201 | |
Elliott Hughes | f4c21c9 | 2011-08-19 17:31:31 -0700 | [diff] [blame] | 202 | // Returns true on success, false if there's an exception pending. |
Brian Carlstrom | 25c3325 | 2011-09-18 15:58:35 -0700 | [diff] [blame] | 203 | // can_run_clinit=false allows the compiler to attempt to init a class, |
| 204 | // given the restriction that no <clinit> execution is possible. |
| 205 | bool EnsureInitialized(Class* c, bool can_run_clinit); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 206 | |
Elliott Hughes | 2a20cfd | 2011-09-23 19:30:41 -0700 | [diff] [blame] | 207 | // Initializes classes that have instances in the image but that have |
| 208 | // <clinit> methods so they could not be initialized by the compiler. |
| 209 | void RunRootClinits(); |
| 210 | |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 211 | void RegisterDexFile(const DexFile& dex_file); |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 212 | void RegisterDexFile(const DexFile& dex_file, SirtRef<DexCache>& dex_cache); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 213 | |
Brian Carlstrom | 8a48741 | 2011-08-29 20:08:52 -0700 | [diff] [blame] | 214 | const std::vector<const DexFile*>& GetBootClassPath() { |
| 215 | return boot_class_path_; |
| 216 | } |
| 217 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 218 | void VisitClasses(ClassVisitor* visitor, void* arg) const; |
| 219 | |
Elliott Hughes | 410c0c8 | 2011-09-01 17:58:25 -0700 | [diff] [blame] | 220 | void VisitRoots(Heap::RootVisitor* visitor, void* arg) const; |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 221 | |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 222 | const DexFile& FindDexFile(const DexCache* dex_cache) const; |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 223 | DexCache* FindDexCache(const DexFile& dex_file) const; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 224 | bool IsDexFileRegistered(const DexFile& dex_file) const; |
Brian Carlstrom | 1d9f52b | 2011-10-13 10:50:45 -0700 | [diff] [blame] | 225 | |
jeffhao | 262bf46 | 2011-10-20 18:36:32 -0700 | [diff] [blame] | 226 | // Generate an oat file from a dex file |
| 227 | const OatFile* GenerateOatFile(const std::string& filename); |
| 228 | |
Brian Carlstrom | 1d9f52b | 2011-10-13 10:50:45 -0700 | [diff] [blame] | 229 | // Find, possibily opening, an OatFile corresponding to a DexFile |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 230 | const OatFile* FindOatFileForDexFile(const DexFile& dex_file); |
| 231 | const OatFile* FindOatFileFromOatLocation(const std::string& location); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 232 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 233 | // TODO: replace this with multiple methods that allocate the correct managed type. |
Shih-wei Liao | 4417536 | 2011-08-28 16:59:17 -0700 | [diff] [blame] | 234 | template <class T> |
| 235 | ObjectArray<T>* AllocObjectArray(size_t length) { |
| 236 | return ObjectArray<T>::Alloc(GetClassRoot(kObjectArrayClass), length); |
| 237 | } |
| 238 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 239 | ObjectArray<Class>* AllocClassArray(size_t length) { |
| 240 | return ObjectArray<Class>::Alloc(GetClassRoot(kClassArrayClass), length); |
| 241 | } |
| 242 | |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 243 | ObjectArray<StackTraceElement>* AllocStackTraceElementArray(size_t length); |
| 244 | |
jeffhao | 98eacac | 2011-09-14 16:11:53 -0700 | [diff] [blame] | 245 | void VerifyClass(Class* klass); |
| 246 | |
Jesse Wilson | 95caa79 | 2011-10-12 18:14:17 -0400 | [diff] [blame] | 247 | Class* CreateProxyClass(String* name, ObjectArray<Class>* interfaces, ClassLoader* loader, |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 248 | ObjectArray<Method>* methods, ObjectArray<ObjectArray<Class> >* throws); |
| 249 | std::string GetDescriptorForProxy(const Class* proxy_class); |
Jesse Wilson | 95caa79 | 2011-10-12 18:14:17 -0400 | [diff] [blame] | 250 | |
Brian Carlstrom | 47d237a | 2011-10-18 15:08:33 -0700 | [diff] [blame] | 251 | pid_t GetClassesLockOwner(); // For SignalCatcher. |
| 252 | pid_t GetDexLockOwner(); // For SignalCatcher. |
Brian Carlstrom | 24a3c2e | 2011-10-17 18:07:52 -0700 | [diff] [blame] | 253 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 254 | private: |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame^] | 255 | explicit ClassLinker(InternTable*); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 256 | |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 257 | // Initialize class linker by bootstraping from dex files |
| 258 | void Init(const std::string& boot_class_path); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 259 | |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 260 | // Initialize class linker from one or more images. |
| 261 | void InitFromImage(); |
| 262 | OatFile* OpenOat(const Space* space); |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 263 | static void InitFromImageCallback(Object* obj, void* arg); |
Brian Carlstrom | c74255f | 2011-09-11 22:47:39 -0700 | [diff] [blame] | 264 | struct InitFromImageCallbackState; |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 265 | |
| 266 | void FinishInit(); |
| 267 | |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 268 | // For early bootstrapping by Init |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 269 | Class* AllocClass(Class* java_lang_Class, size_t class_size); |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 270 | |
| 271 | // Alloc* convenience functions to avoid needing to pass in Class* |
| 272 | // values that are known to the ClassLinker such as |
| 273 | // kObjectArrayClass and kJavaLangString etc. |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 274 | Class* AllocClass(size_t class_size); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 275 | DexCache* AllocDexCache(const DexFile& dex_file); |
Jesse Wilson | 35baaab | 2011-08-10 16:18:03 -0400 | [diff] [blame] | 276 | Field* AllocField(); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 277 | |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 278 | Method* AllocMethod(); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 279 | |
Brian Carlstrom | 9cc262e | 2011-08-28 12:45:30 -0700 | [diff] [blame] | 280 | CodeAndDirectMethods* AllocCodeAndDirectMethods(size_t length); |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 281 | InterfaceEntry* AllocInterfaceEntry(Class* interface); |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 282 | |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 283 | Class* CreatePrimitiveClass(const char* descriptor, Primitive::Type type) { |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 284 | return InitializePrimitiveClass(AllocClass(sizeof(Class)), descriptor, type); |
| 285 | } |
| 286 | Class* InitializePrimitiveClass(Class* primitive_class, |
| 287 | const char* descriptor, |
Brian Carlstrom | 6b4ef02 | 2011-10-23 14:59:04 -0700 | [diff] [blame] | 288 | Primitive::Type type); |
Brian Carlstrom | 5b8e4c8 | 2011-09-18 01:38:59 -0700 | [diff] [blame] | 289 | |
Brian Carlstrom | a331b3c | 2011-07-18 17:47:56 -0700 | [diff] [blame] | 290 | |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 291 | Class* CreateArrayClass(const std::string& descriptor, |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 292 | const ClassLoader* class_loader); |
Brian Carlstrom | a331b3c | 2011-07-18 17:47:56 -0700 | [diff] [blame] | 293 | |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 294 | void AppendToBootClassPath(const DexFile& dex_file); |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 295 | void AppendToBootClassPath(const DexFile& dex_file, SirtRef<DexCache>& dex_cache); |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 296 | |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 297 | void ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def, |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 298 | Class* c, std::map<uint32_t, Field*>& field_map); |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 299 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 300 | size_t SizeOfClass(const DexFile& dex_file, |
| 301 | const DexFile::ClassDef& dex_class_def); |
| 302 | |
Brian Carlstrom | f615a61 | 2011-07-23 12:50:34 -0700 | [diff] [blame] | 303 | void LoadClass(const DexFile& dex_file, |
| 304 | const DexFile::ClassDef& dex_class_def, |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 305 | SirtRef<Class>& klass, |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 306 | const ClassLoader* class_loader); |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 307 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 308 | void LoadField(const DexFile& dex_file, const ClassDataItemIterator& it, SirtRef<Class>& klass, |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 309 | SirtRef<Field>& dst); |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 310 | |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 311 | void LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& dex_method, |
| 312 | SirtRef<Class>& klass, SirtRef<Method>& dst); |
Brian Carlstrom | 934486c | 2011-07-12 23:42:50 -0700 | [diff] [blame] | 313 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 314 | // Inserts a class into the class table. Returns true if the class |
| 315 | // was inserted. |
Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 316 | bool InsertClass(const std::string& descriptor, Class* klass, bool image_class); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 317 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 318 | void RegisterDexFileLocked(const DexFile& dex_file, SirtRef<DexCache>& dex_cache); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 319 | bool IsDexFileRegisteredLocked(const DexFile& dex_file) const; |
| 320 | |
Brian Carlstrom | d1422f8 | 2011-09-28 11:37:09 -0700 | [diff] [blame] | 321 | bool InitializeClass(Class* klass, bool can_run_clinit); |
| 322 | bool WaitForInitializeClass(Class* klass, Thread* self, ObjectLock& lock); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 323 | bool ValidateSuperClassDescriptors(const Class* klass); |
Brian Carlstrom | d1422f8 | 2011-09-28 11:37:09 -0700 | [diff] [blame] | 324 | bool InitializeSuperClass(Class* klass, bool can_run_clinit); |
| 325 | void InitializeStaticFields(Class* klass); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 326 | |
| 327 | bool HasSameDescriptorClasses(const char* descriptor, |
| 328 | const Class* klass1, |
| 329 | const Class* klass2); |
| 330 | |
| 331 | bool HasSameMethodDescriptorClasses(const Method* descriptor, |
| 332 | const Class* klass1, |
| 333 | const Class* klass2); |
| 334 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 335 | bool LinkClass(SirtRef<Class>& klass); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 336 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 337 | bool LinkSuperClass(SirtRef<Class>& klass); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 338 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 339 | bool LoadSuperAndInterfaces(SirtRef<Class>& klass, const DexFile& dex_file); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 340 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 341 | bool LinkMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 342 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 343 | bool LinkVirtualMethods(SirtRef<Class>& klass); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 344 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 345 | bool LinkInterfaceMethods(SirtRef<Class>& klass, ObjectArray<Class>* interfaces); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 346 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 347 | bool LinkStaticFields(SirtRef<Class>& klass); |
| 348 | bool LinkInstanceFields(SirtRef<Class>& klass); |
| 349 | bool LinkFields(SirtRef<Class>& klass, bool is_static); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 350 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 351 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 352 | void CreateReferenceInstanceOffsets(SirtRef<Class>& klass); |
| 353 | void CreateReferenceStaticOffsets(SirtRef<Class>& klass); |
| 354 | void CreateReferenceOffsets(SirtRef<Class>& klass, bool is_static, |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 355 | uint32_t reference_offsets); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 356 | |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 357 | // For use by ImageWriter to find DexCaches for its roots |
| 358 | const std::vector<DexCache*>& GetDexCaches() { |
| 359 | return dex_caches_; |
| 360 | } |
| 361 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 362 | const OatFile* FindOpenedOatFileForDexFile(const DexFile& dex_file); |
| 363 | const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location); |
Brian Carlstrom | fad7143 | 2011-10-16 20:25:10 -0700 | [diff] [blame] | 364 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 365 | Method* CreateProxyConstructor(SirtRef<Class>& klass, Class* proxy_class); |
| 366 | Method* CreateProxyMethod(SirtRef<Class>& klass, SirtRef<Method>& prototype); |
Jesse Wilson | 95caa79 | 2011-10-12 18:14:17 -0400 | [diff] [blame] | 367 | |
Brian Carlstrom | 4a96b60 | 2011-07-26 16:40:23 -0700 | [diff] [blame] | 368 | std::vector<const DexFile*> boot_class_path_; |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 369 | |
Brian Carlstrom | 4a96b60 | 2011-07-26 16:40:23 -0700 | [diff] [blame] | 370 | std::vector<const DexFile*> dex_files_; |
Brian Carlstrom | 7e49dca | 2011-07-22 18:07:34 -0700 | [diff] [blame] | 371 | std::vector<DexCache*> dex_caches_; |
Brian Carlstrom | 47d237a | 2011-10-18 15:08:33 -0700 | [diff] [blame] | 372 | std::vector<const OatFile*> oat_files_; |
| 373 | // lock to protect concurrent access to dex_files_, dex_caches_, and oat_files_ |
| 374 | mutable Mutex dex_lock_; |
| 375 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 376 | |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 377 | // multimap from a string hash code of a class descriptor to |
Brian Carlstrom | 9cff8e1 | 2011-08-18 16:47:29 -0700 | [diff] [blame] | 378 | // Class* instances. Results should be compared for a matching |
| 379 | // Class::descriptor_ and Class::class_loader_. |
Brian Carlstrom | 47d237a | 2011-10-18 15:08:33 -0700 | [diff] [blame] | 380 | // Protected by classes_lock_ |
Brian Carlstrom | 9cff8e1 | 2011-08-18 16:47:29 -0700 | [diff] [blame] | 381 | typedef std::tr1::unordered_multimap<size_t, Class*> Table; |
Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 382 | Table image_classes_; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 383 | Table classes_; |
Brian Carlstrom | 47d237a | 2011-10-18 15:08:33 -0700 | [diff] [blame] | 384 | mutable Mutex classes_lock_; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 385 | |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 386 | // indexes into class_roots_. |
| 387 | // needs to be kept in sync with class_roots_descriptors_. |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 388 | enum ClassRoot { |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 389 | kJavaLangClass, |
| 390 | kJavaLangObject, |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 391 | kClassArrayClass, |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 392 | kObjectArrayClass, |
| 393 | kJavaLangString, |
Elliott Hughes | bf61ba3 | 2011-10-11 10:53:09 -0700 | [diff] [blame] | 394 | kJavaLangRefReference, |
Elliott Hughes | 8060925 | 2011-09-23 17:24:51 -0700 | [diff] [blame] | 395 | kJavaLangReflectConstructor, |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 396 | kJavaLangReflectField, |
| 397 | kJavaLangReflectMethod, |
Ian Rogers | 466bb25 | 2011-10-14 03:29:56 -0700 | [diff] [blame] | 398 | kJavaLangReflectProxy, |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 399 | kJavaLangClassLoader, |
| 400 | kDalvikSystemBaseDexClassLoader, |
| 401 | kDalvikSystemPathClassLoader, |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 402 | kJavaLangStackTraceElement, |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 403 | kPrimitiveBoolean, |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 404 | kPrimitiveByte, |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 405 | kPrimitiveChar, |
| 406 | kPrimitiveDouble, |
| 407 | kPrimitiveFloat, |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 408 | kPrimitiveInt, |
| 409 | kPrimitiveLong, |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 410 | kPrimitiveShort, |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 411 | kPrimitiveVoid, |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 412 | kBooleanArrayClass, |
| 413 | kByteArrayClass, |
| 414 | kCharArrayClass, |
| 415 | kDoubleArrayClass, |
| 416 | kFloatArrayClass, |
| 417 | kIntArrayClass, |
| 418 | kLongArrayClass, |
| 419 | kShortArrayClass, |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 420 | kJavaLangStackTraceElementArrayClass, |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 421 | kClassRootsMax, |
| 422 | }; |
| 423 | ObjectArray<Class>* class_roots_; |
Brian Carlstrom | 913af1b | 2011-07-23 21:41:13 -0700 | [diff] [blame] | 424 | |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 425 | Class* GetClassRoot(ClassRoot class_root) { |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 426 | DCHECK(class_roots_ != NULL); |
Brian Carlstrom | 74eb46a | 2011-08-02 20:10:14 -0700 | [diff] [blame] | 427 | Class* klass = class_roots_->Get(class_root); |
| 428 | DCHECK(klass != NULL); |
| 429 | return klass; |
| 430 | } |
| 431 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 432 | void SetClassRoot(ClassRoot class_root, Class* klass); |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 433 | |
Brian Carlstrom | 34f426c | 2011-10-04 12:58:02 -0700 | [diff] [blame] | 434 | ObjectArray<Class>* GetClassRoots() { |
| 435 | DCHECK(class_roots_ != NULL); |
| 436 | return class_roots_; |
| 437 | } |
| 438 | |
Elliott Hughes | 418d20f | 2011-09-22 14:00:39 -0700 | [diff] [blame] | 439 | static const char* class_roots_descriptors_[]; |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 440 | |
| 441 | const char* GetClassRootDescriptor(ClassRoot class_root) { |
| 442 | const char* descriptor = class_roots_descriptors_[class_root]; |
| 443 | CHECK(descriptor != NULL); |
| 444 | return descriptor; |
| 445 | } |
| 446 | |
Brian Carlstrom | 4b620ff | 2011-09-11 01:11:01 -0700 | [diff] [blame] | 447 | ObjectArray<InterfaceEntry>* array_iftable_; |
Carl Shapiro | 565f507 | 2011-07-10 13:39:43 -0700 | [diff] [blame] | 448 | |
Brian Carlstrom | 75cb3b4 | 2011-07-28 02:13:36 -0700 | [diff] [blame] | 449 | bool init_done_; |
| 450 | |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 451 | InternTable* intern_table_; |
| 452 | |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 453 | friend class CommonTest; |
Brian Carlstrom | 34f426c | 2011-10-04 12:58:02 -0700 | [diff] [blame] | 454 | friend class ImageWriter; // for GetClassRoots |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 455 | friend class ObjectTest; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 456 | FRIEND_TEST(ClassLinkerTest, ClassRootDescriptors); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 457 | FRIEND_TEST(DexCacheTest, Open); |
| 458 | FRIEND_TEST(ExceptionTest, FindExceptionHandler); |
| 459 | FRIEND_TEST(ObjectTest, AllocObjectArray); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 460 | DISALLOW_COPY_AND_ASSIGN(ClassLinker); |
| 461 | }; |
| 462 | |
| 463 | } // namespace art |
| 464 | |
| 465 | #endif // ART_SRC_CLASS_LINKER_H_ |