blob: 5694149373eb933a3db2d8f326c129ee06124ab5 [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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_CLASS_LINKER_H_
18#define ART_RUNTIME_CLASS_LINKER_H_
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070019
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080020#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070021#include <utility>
22#include <vector>
23
Elliott Hughes76160052012-12-12 16:31:20 -080024#include "base/macros.h"
Elliott Hughes76b61672012-12-12 17:47:30 -080025#include "base/mutex.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070026#include "dex_file.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070027#include "gc_root.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080028#include "gtest/gtest.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070029#include "jni.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070030#include "oat_file.h"
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080031#include "object_callbacks.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070032
33namespace art {
Mingyao Yang98d1cc82014-05-15 17:02:16 -070034
Ian Rogers1d54e732013-05-02 21:10:01 -070035namespace gc {
36namespace space {
37 class ImageSpace;
38} // namespace space
39} // namespace gc
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040namespace mirror {
Ian Rogers33e95662013-05-20 20:29:14 -070041 class ClassLoader;
42 class DexCache;
43 class DexCacheTest_Open_Test;
44 class IfTable;
45 template<class T> class ObjectArray;
46 class StackTraceElement;
47} // namespace mirror
Ian Rogers1d54e732013-05-02 21:10:01 -070048
Elliott Hughescf4c6c42011-09-01 15:16:42 -070049class InternTable;
Mathieu Chartierc528dba2013-11-26 12:00:11 -080050template<class T> class ObjectLock;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070051class ScopedObjectAccessAlreadyRunnable;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070052template<class T> class Handle;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070053
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080054typedef bool (ClassVisitor)(mirror::Class* c, void* arg);
Elliott Hughesa2155262011-11-16 16:26:58 -080055
Mathieu Chartier893263b2014-03-04 11:07:42 -080056enum VisitRootFlags : uint8_t;
57
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070058class ClassLinker {
59 public:
Mathieu Chartier590fee92013-09-13 13:46:47 -070060 explicit ClassLinker(InternTable* intern_table);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070061 ~ClassLinker();
Carl Shapiro565f5072011-07-10 13:39:43 -070062
Mathieu Chartier590fee92013-09-13 13:46:47 -070063 // Initialize class linker by bootstraping from dex files
64 void InitFromCompiler(const std::vector<const DexFile*>& boot_class_path)
65 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
66
67 // Initialize class linker from one or more images.
68 void InitFromImage() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
69
Ian Rogersbe7149f2013-08-20 09:29:39 -070070 bool IsInBootClassPath(const char* descriptor);
71
Elliott Hughes64bf5a32011-09-20 14:43:12 -070072 // Finds a class by its descriptor, loading it if necessary.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070073 // If class_loader is null, searches boot_class_path_.
Ian Rogers98379392014-02-24 16:53:16 -080074 mirror::Class* FindClass(Thread* self, const char* descriptor,
Mathieu Chartier0cd81352014-05-22 16:48:55 -070075 Handle<mirror::ClassLoader> class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -070076 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -070077
Ian Rogers98379392014-02-24 16:53:16 -080078 // Finds a class by its descriptor using the "system" class loader, ie by searching the
79 // boot_class_path_.
80 mirror::Class* FindSystemClass(Thread* self, const char* descriptor)
81 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
82
83 // Finds the array class given for the element class.
Mathieu Chartierb74cd292014-05-29 14:31:33 -070084 mirror::Class* FindArrayClass(Thread* self, mirror::Class** element_class)
Ian Rogersb726dcb2012-09-05 08:57:23 -070085 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -070086
Mathieu Chartier590fee92013-09-13 13:46:47 -070087 // Reutrns true if the class linker is initialized.
88 bool IsInitialized() const;
89
Brian Carlstromaded5f72011-10-07 17:15:04 -070090 // Define a new a class based on a ClassDef from a DexFile
Mathieu Chartierc528dba2013-11-26 12:00:11 -080091 mirror::Class* DefineClass(const char* descriptor,
Mathieu Chartier0cd81352014-05-22 16:48:55 -070092 Handle<mirror::ClassLoader> class_loader,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080093 const DexFile& dex_file, const DexFile::ClassDef& dex_class_def)
Ian Rogersb726dcb2012-09-05 08:57:23 -070094 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64bf5a32011-09-20 14:43:12 -070095
96 // Finds a class by its descriptor, returning NULL if it isn't wasn't loaded
97 // by the given 'class_loader'.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080098 mirror::Class* LookupClass(const char* descriptor, const mirror::ClassLoader* class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -070099 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
100 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700101
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800102 // Finds all the classes with the given descriptor, regardless of ClassLoader.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800103 void LookupClasses(const char* descriptor, std::vector<mirror::Class*>& classes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700104 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
105 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800106
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800107 mirror::Class* FindPrimitiveClass(char type) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700108
Brian Carlstromae826982011-11-09 01:33:42 -0800109 // General class unloading is not supported, this is used to prune
110 // unwanted classes during image writing.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800111 bool RemoveClass(const char* descriptor, const mirror::ClassLoader* class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700112 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
113 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromae826982011-11-09 01:33:42 -0800114
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700115 void DumpAllClasses(int flags)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700116 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
117 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700118
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700119 void DumpForSigQuit(std::ostream& os)
120 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
121 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -0700122
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700123 size_t NumLoadedClasses()
124 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
125 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughese27955c2011-08-26 15:21:24 -0700126
Brian Carlstromb63ec392011-08-27 17:38:27 -0700127 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstromaded5f72011-10-07 17:15:04 -0700128 // result in the DexCache. The referrer is used to identify the
129 // target DexCache and ClassLoader to use for resolution.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800130 mirror::String* ResolveString(uint32_t string_idx, mirror::ArtMethod* referrer)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800131 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700132
133 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700134 // result in the DexCache.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800135 mirror::String* ResolveString(const DexFile& dex_file, uint32_t string_idx,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700136 Handle<mirror::DexCache> dex_cache)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700137 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700138
Brian Carlstromb63ec392011-08-27 17:38:27 -0700139 // Resolve a Type with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700140 // result in the DexCache. The referrer is used to identity the
141 // target DexCache and ClassLoader to use for resolution.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800142 mirror::Class* ResolveType(const DexFile& dex_file, uint16_t type_idx, mirror::Class* referrer)
Mathieu Chartier590fee92013-09-13 13:46:47 -0700143 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700144
Brian Carlstromb63ec392011-08-27 17:38:27 -0700145 // Resolve a Type with the given index from the DexFile, storing the
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700146 // result in the DexCache. The referrer is used to identify the
Brian Carlstromb63ec392011-08-27 17:38:27 -0700147 // target DexCache and ClassLoader to use for resolution.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800148 mirror::Class* ResolveType(uint16_t type_idx, mirror::ArtMethod* referrer)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800149 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700150
Ian Rogersef7d42f2014-01-06 12:55:46 -0800151 mirror::Class* ResolveType(uint16_t type_idx, mirror::ArtField* referrer)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800152 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700153
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700154 // Resolve a type with the given ID from the DexFile, storing the
155 // result in DexCache. The ClassLoader is used to search for the
156 // type, since it may be referenced from but not contained within
157 // the given DexFile.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700158 mirror::Class* ResolveType(const DexFile& dex_file, uint16_t type_idx,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700159 Handle<mirror::DexCache> dex_cache,
160 Handle<mirror::ClassLoader> class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700161 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700162
163 // Resolve a method with a given ID from the DexFile, storing the
164 // result in DexCache. The ClassLinker and ClassLoader are used as
165 // in ResolveType. What is unique is the method type argument which
166 // is used to determine if this method is a direct, static, or
167 // virtual method.
Brian Carlstromea46f952013-07-30 01:26:50 -0700168 mirror::ArtMethod* ResolveMethod(const DexFile& dex_file,
169 uint32_t method_idx,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700170 Handle<mirror::DexCache> dex_cache,
171 Handle<mirror::ClassLoader> class_loader,
172 Handle<mirror::ArtMethod> referrer,
Brian Carlstromea46f952013-07-30 01:26:50 -0700173 InvokeType type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700174 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700175
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700176 mirror::ArtMethod* GetResolvedMethod(uint32_t method_idx, mirror::ArtMethod* referrer,
177 InvokeType type)
178 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
179 mirror::ArtMethod* ResolveMethod(Thread* self, uint32_t method_idx, mirror::ArtMethod** referrer,
Brian Carlstromea46f952013-07-30 01:26:50 -0700180 InvokeType type)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800181 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom16192862011-09-12 17:50:06 -0700182
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700183 mirror::ArtField* GetResolvedField(uint32_t field_idx, mirror::Class* field_declaring_class)
184 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800185 mirror::ArtField* ResolveField(uint32_t field_idx, mirror::ArtMethod* referrer,
Brian Carlstromea46f952013-07-30 01:26:50 -0700186 bool is_static)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800187 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromb9edb842011-08-28 16:31:06 -0700188
Brian Carlstrom16192862011-09-12 17:50:06 -0700189 // Resolve a field with a given ID from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700190 // result in DexCache. The ClassLinker and ClassLoader are used as
191 // in ResolveType. What is unique is the is_static argument which is
192 // used to determine if we are resolving a static or non-static
193 // field.
Brian Carlstromea46f952013-07-30 01:26:50 -0700194 mirror::ArtField* ResolveField(const DexFile& dex_file,
195 uint32_t field_idx,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700196 Handle<mirror::DexCache> dex_cache,
197 Handle<mirror::ClassLoader> class_loader,
Brian Carlstromea46f952013-07-30 01:26:50 -0700198 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700199 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700200
Ian Rogersb067ac22011-12-13 18:05:09 -0800201 // Resolve a field with a given ID from the DexFile, storing the
202 // result in DexCache. The ClassLinker and ClassLoader are used as
203 // in ResolveType. No is_static argument is provided so that Java
204 // field resolution semantics are followed.
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700205 mirror::ArtField* ResolveFieldJLS(const DexFile& dex_file, uint32_t field_idx,
206 Handle<mirror::DexCache> dex_cache,
207 Handle<mirror::ClassLoader> class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700208 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersb067ac22011-12-13 18:05:09 -0800209
Ian Rogersad25ac52011-10-04 19:13:33 -0700210 // Get shorty from method index without resolution. Used to do handlerization.
Brian Carlstromea46f952013-07-30 01:26:50 -0700211 const char* MethodShorty(uint32_t method_idx, mirror::ArtMethod* referrer, uint32_t* length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersad25ac52011-10-04 19:13:33 -0700213
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700214 // Returns true on success, false if there's an exception pending.
Brian Carlstrom25c33252011-09-18 15:58:35 -0700215 // can_run_clinit=false allows the compiler to attempt to init a class,
216 // given the restriction that no <clinit> execution is possible.
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700217 bool EnsureInitialized(Handle<mirror::Class> c, bool can_init_fields, bool can_init_parents)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700218 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700219
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700220 // Initializes classes that have instances in the image but that have
221 // <clinit> methods so they could not be initialized by the compiler.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700222 void RunRootClinits() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700223
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700224 void RegisterDexFile(const DexFile& dex_file)
225 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700226 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700227 void RegisterDexFile(const DexFile& dex_file, Handle<mirror::DexCache> dex_cache)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700228 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700229 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700230
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700231 const OatFile* RegisterOatFile(const OatFile* oat_file)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700232 LOCKS_EXCLUDED(dex_lock_);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800233
Brian Carlstrom8a487412011-08-29 20:08:52 -0700234 const std::vector<const DexFile*>& GetBootClassPath() {
235 return boot_class_path_;
236 }
237
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700238 void VisitClasses(ClassVisitor* visitor, void* arg)
239 LOCKS_EXCLUDED(dex_lock_)
240 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700241 // Less efficient variant of VisitClasses that doesn't hold the classlinker_classes_lock_
242 // when calling the visitor.
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700243 void VisitClassesWithoutClassesLock(ClassVisitor* visitor, void* arg)
244 LOCKS_EXCLUDED(dex_lock_)
245 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -0800246
Mathieu Chartier52e4b432014-06-10 11:22:31 -0700247 void VisitClassRoots(RootCallback* callback, void* arg, VisitRootFlags flags)
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700248 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
249 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800250 void VisitRoots(RootCallback* callback, void* arg, VisitRootFlags flags)
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700251 LOCKS_EXCLUDED(dex_lock_)
252 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700253
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700254 mirror::DexCache* FindDexCache(const DexFile& dex_file)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700255 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700256 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700257 bool IsDexFileRegistered(const DexFile& dex_file)
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700258 LOCKS_EXCLUDED(dex_lock_) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700259 void FixupDexCaches(mirror::ArtMethod* resolution_method)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700260 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700261 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700262
jeffhao262bf462011-10-20 18:36:32 -0700263 // Generate an oat file from a dex file
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700264 bool GenerateOatFile(const char* dex_filename,
Brian Carlstromd601af82012-01-06 10:15:19 -0800265 int oat_fd,
Vladimir Marko60836d52014-01-16 15:53:38 +0000266 const char* oat_cache_filename,
Ian Rogers719d1a32014-03-06 12:13:39 -0800267 std::string* error_msg)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700268 LOCKS_EXCLUDED(Locks::mutator_lock_);
jeffhao262bf462011-10-20 18:36:32 -0700269
Andreas Gampe833a4852014-05-21 18:46:59 -0700270 // Find or create the oat file holding dex_location. Then load all corresponding dex files
271 // (if multidex) into the given vector.
272 bool OpenDexFilesFromOat(const char* dex_location, const char* oat_location,
273 std::vector<std::string>* error_msgs,
274 std::vector<const DexFile*>* dex_files)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700275 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
jeffhaof6174e82012-01-31 16:14:17 -0800276
Alex Light6e183f22014-07-18 14:57:04 -0700277 // Returns true if the given oat file has the same image checksum as the image it is paired with.
278 static bool VerifyOatImageChecksum(const OatFile* oat_file, const InstructionSet instruction_set);
279 // Returns true if the oat file checksums match with the image and the offsets are such that it
280 // could be loaded with it.
281 static bool VerifyOatChecksums(const OatFile* oat_file, const InstructionSet instruction_set,
282 std::string* error_msg);
Brian Carlstrom28db0122012-10-18 16:20:41 -0700283 // Returns true if oat file contains the dex file with the given location and checksum.
Alex Light6e183f22014-07-18 14:57:04 -0700284 static bool VerifyOatAndDexFileChecksums(const OatFile* oat_file,
285 const char* dex_location,
286 uint32_t dex_location_checksum,
287 InstructionSet instruction_set,
288 std::string* error_msg);
Brian Carlstromafe25512012-06-27 17:02:58 -0700289
Elliott Hughes418d20f2011-09-22 14:00:39 -0700290 // TODO: replace this with multiple methods that allocate the correct managed type.
Shih-wei Liao44175362011-08-28 16:59:17 -0700291 template <class T>
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800292 mirror::ObjectArray<T>* AllocObjectArray(Thread* self, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700293 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700294
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800295 mirror::ObjectArray<mirror::Class>* AllocClassArray(Thread* self, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700296 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao98eacac2011-09-14 16:11:53 -0700297
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800298 mirror::ObjectArray<mirror::String>* AllocStringArray(Thread* self, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700299 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800300
Brian Carlstromea46f952013-07-30 01:26:50 -0700301 mirror::ObjectArray<mirror::ArtMethod>* AllocArtMethodArray(Thread* self, size_t length)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800302 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
303
304 mirror::IfTable* AllocIfTable(Thread* self, size_t ifcount)
305 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
306
Brian Carlstromea46f952013-07-30 01:26:50 -0700307 mirror::ObjectArray<mirror::ArtField>* AllocArtFieldArray(Thread* self, size_t length)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800308 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
309
310 mirror::ObjectArray<mirror::StackTraceElement>* AllocStackTraceElementArray(Thread* self,
311 size_t length)
312 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
313
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700314 void VerifyClass(Handle<mirror::Class> klass) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800315 bool VerifyClassUsingOatFile(const DexFile& dex_file, mirror::Class* klass,
316 mirror::Class::Status& oat_file_class_status)
317 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800318 void ResolveClassExceptionHandlerTypes(const DexFile& dex_file,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700319 Handle<mirror::Class> klass)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800320 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -0700321 void ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, mirror::ArtMethod* klass)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800322 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
323
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700324 mirror::Class* CreateProxyClass(ScopedObjectAccessAlreadyRunnable& soa, jstring name,
325 jobjectArray interfaces, jobject loader, jobjectArray methods,
326 jobjectArray throws)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800327 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800328 std::string GetDescriptorForProxy(mirror::Class* proxy_class)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800329 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800330 mirror::ArtMethod* FindMethodForProxy(mirror::Class* proxy_class,
331 mirror::ArtMethod* proxy_method)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700332 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jesse Wilson95caa792011-10-12 18:14:17 -0400334
Ian Rogers19846512012-02-24 11:42:47 -0800335 // Get the oat code for a method when its class isn't yet initialized
Ian Rogersef7d42f2014-01-06 12:55:46 -0800336 const void* GetQuickOatCodeFor(mirror::ArtMethod* method)
337 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
338 const void* GetPortableOatCodeFor(mirror::ArtMethod* method, bool* have_portable_code)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700339 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800340
Mathieu Chartiere35517a2012-10-30 18:49:55 -0700341 // Get the oat code for a method from a method index.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800342 const void* GetQuickOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx, uint32_t method_idx)
343 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
344 const void* GetPortableOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx, uint32_t method_idx)
Ian Rogers33e95662013-05-20 20:29:14 -0700345 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiere35517a2012-10-30 18:49:55 -0700346
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700347 // Get compiled code for a method, return null if no code
348 // exists. This is unlike Get..OatCodeFor which will return a bridge
349 // or interpreter entrypoint.
350 const void* GetOatMethodQuickCodeFor(mirror::ArtMethod* method)
351 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
352 const void* GetOatMethodPortableCodeFor(mirror::ArtMethod* method)
353 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
354
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700355 pid_t GetClassesLockOwner(); // For SignalCatcher.
356 pid_t GetDexLockOwner(); // For SignalCatcher.
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -0700357
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700358 const void* GetPortableResolutionTrampoline() const {
359 return portable_resolution_trampoline_;
360 }
361
Andreas Gampe2da88232014-02-27 12:26:20 -0800362 const void* GetQuickGenericJniTrampoline() const {
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700363 return quick_generic_jni_trampoline_;
364 }
Andreas Gampe2da88232014-02-27 12:26:20 -0800365
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700366 const void* GetQuickResolutionTrampoline() const {
367 return quick_resolution_trampoline_;
368 }
369
Jeff Hao88474b42013-10-23 16:24:40 -0700370 const void* GetPortableImtConflictTrampoline() const {
371 return portable_imt_conflict_trampoline_;
372 }
373
374 const void* GetQuickImtConflictTrampoline() const {
375 return quick_imt_conflict_trampoline_;
376 }
377
Vladimir Marko8a630572014-04-09 18:45:35 +0100378 const void* GetQuickToInterpreterBridgeTrampoline() const {
379 return quick_to_interpreter_bridge_trampoline_;
380 }
381
Jeff Hao88474b42013-10-23 16:24:40 -0700382 InternTable* GetInternTable() const {
383 return intern_table_;
384 }
385
Ian Rogers848871b2013-08-05 10:56:33 -0700386 // Attempts to insert a class into a class table. Returns NULL if
387 // the class was inserted, otherwise returns an existing class with
388 // the same descriptor and ClassLoader.
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700389 mirror::Class* InsertClass(const char* descriptor, mirror::Class* klass, size_t hash)
Ian Rogers848871b2013-08-05 10:56:33 -0700390 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
391 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
392
Mathieu Chartier590fee92013-09-13 13:46:47 -0700393 // Special code to allocate an art method, use this instead of class->AllocObject.
394 mirror::ArtMethod* AllocArtMethod(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700395
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700396 mirror::ObjectArray<mirror::Class>* GetClassRoots() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700397 mirror::ObjectArray<mirror::Class>* class_roots = class_roots_.Read();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700398 DCHECK(class_roots != NULL);
399 return class_roots;
400 }
401
Mathieu Chartier590fee92013-09-13 13:46:47 -0700402 private:
Ian Rogers97b52f82014-08-14 11:34:07 -0700403 const OatFile::OatMethod FindOatMethodFor(mirror::ArtMethod* method, bool* found)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700404 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
TDYa12785321912012-04-01 15:24:56 -0700405
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700406 OatFile& GetImageOatFile(gc::space::ImageSpace* space)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700407 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700408 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700409
Ian Rogers98379392014-02-24 16:53:16 -0800410 void FinishInit(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700411
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700412 // For early bootstrapping by Init
Ian Rogers6fac4472014-02-25 17:01:10 -0800413 mirror::Class* AllocClass(Thread* self, mirror::Class* java_lang_Class, uint32_t class_size)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700414 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700415
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800416 // Alloc* convenience functions to avoid needing to pass in mirror::Class*
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700417 // values that are known to the ClassLinker such as
418 // kObjectArrayClass and kJavaLangString etc.
Ian Rogers6fac4472014-02-25 17:01:10 -0800419 mirror::Class* AllocClass(Thread* self, uint32_t class_size)
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800420 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800421 mirror::DexCache* AllocDexCache(Thread* self, const DexFile& dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700422 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -0700423 mirror::ArtField* AllocArtField(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersbdb03912011-09-14 00:55:44 -0700424
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800425 mirror::Class* CreatePrimitiveClass(Thread* self, Primitive::Type type)
426 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
427 mirror::Class* InitializePrimitiveClass(mirror::Class* primitive_class, Primitive::Type type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700428 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700429
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700430
Ian Rogers98379392014-02-24 16:53:16 -0800431 mirror::Class* CreateArrayClass(Thread* self, const char* descriptor,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700432 Handle<mirror::ClassLoader> class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700433 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700434
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700435 void AppendToBootClassPath(const DexFile& dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700436 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700437 void AppendToBootClassPath(const DexFile& dex_file, Handle<mirror::DexCache> dex_cache)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700439
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700440 void ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Brian Carlstromea46f952013-07-30 01:26:50 -0700441 mirror::Class* c, SafeMap<uint32_t, mirror::ArtField*>& field_map)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700442 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700443
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700444 // Precomputes size needed for Class, in the case of a non-temporary class this size must be
445 // sufficient to hold all static fields.
446 uint32_t SizeOfClassWithoutEmbeddedTables(const DexFile& dex_file,
447 const DexFile::ClassDef& dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -0700448
Brian Carlstromf615a612011-07-23 12:50:34 -0700449 void LoadClass(const DexFile& dex_file,
450 const DexFile::ClassDef& dex_class_def,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700451 Handle<mirror::Class> klass,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800452 mirror::ClassLoader* class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700453 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100454 void LoadClassMembers(const DexFile& dex_file,
455 const byte* class_data,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700456 Handle<mirror::Class> klass,
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100457 mirror::ClassLoader* class_loader,
458 const OatFile::OatClass* oat_class)
459 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700460
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800461 void LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700462 Handle<mirror::Class> klass, Handle<mirror::ArtField> dst)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800463 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700464
Brian Carlstromea46f952013-07-30 01:26:50 -0700465 mirror::ArtMethod* LoadMethod(Thread* self, const DexFile& dex_file,
466 const ClassDataItemIterator& dex_method,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700467 Handle<mirror::Class> klass)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800468 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom934486c2011-07-12 23:42:50 -0700469
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800470 void FixupStaticTrampolines(mirror::Class* klass) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800471
Ian Rogers97b52f82014-08-14 11:34:07 -0700472 // Finds the associated oat class for a dex_file and descriptor. Returns an invalid OatClass on
473 // error and sets found to false.
474 OatFile::OatClass FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, bool* found)
Ian Rogers33e95662013-05-20 20:29:14 -0700475 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800476
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700477 void RegisterDexFileLocked(const DexFile& dex_file, Handle<mirror::DexCache> dex_cache)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700478 EXCLUSIVE_LOCKS_REQUIRED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700479 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700480 bool IsDexFileRegisteredLocked(const DexFile& dex_file)
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700481 SHARED_LOCKS_REQUIRED(dex_lock_, Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700482
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700483 bool InitializeClass(Handle<mirror::Class> klass, bool can_run_clinit,
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800484 bool can_init_parents)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700485 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700486 bool WaitForInitializeClass(Handle<mirror::Class> klass, Thread* self,
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800487 ObjectLock<mirror::Class>& lock);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700488 bool ValidateSuperClassDescriptors(Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700489 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700490
Ian Rogers98379392014-02-24 16:53:16 -0800491 bool IsSameDescriptorInDifferentClassContexts(Thread* self, const char* descriptor,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700492 Handle<mirror::ClassLoader> class_loader1,
493 Handle<mirror::ClassLoader> class_loader2)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700494 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700495
Ian Rogers98379392014-02-24 16:53:16 -0800496 bool IsSameMethodSignatureInDifferentClassContexts(Thread* self, mirror::ArtMethod* method,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800497 mirror::Class* klass1,
498 mirror::Class* klass2)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700499 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700500
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700501 bool LinkClass(Thread* self, const char* descriptor, Handle<mirror::Class> klass,
502 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
503 mirror::Class** new_class)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700504 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700505
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700506 bool LinkSuperClass(Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700507 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700508
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700509 bool LoadSuperAndInterfaces(Handle<mirror::Class> klass, const DexFile& dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700510 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700511
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700512 bool LinkMethods(Thread* self, Handle<mirror::Class> klass,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700513 Handle<mirror::ObjectArray<mirror::Class>> interfaces)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700514 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700515
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700516 bool LinkVirtualMethods(Thread* self, Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700517 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700518
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700519 bool LinkInterfaceMethods(Handle<mirror::Class> klass,
520 Handle<mirror::ObjectArray<mirror::Class>> interfaces)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700521 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700522
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700523 bool LinkStaticFields(Handle<mirror::Class> klass, size_t* class_size)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700524 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700525 bool LinkInstanceFields(Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700526 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700527 bool LinkFields(Handle<mirror::Class> klass, bool is_static, size_t* class_size)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700528 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700529 void LinkCode(Handle<mirror::ArtMethod> method, const OatFile::OatClass* oat_class,
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700530 const DexFile& dex_file, uint32_t dex_method_index, uint32_t method_index)
531 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700532
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700533 void CreateReferenceInstanceOffsets(Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700534 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700535 void CreateReferenceStaticOffsets(Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700536 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700537 void CreateReferenceOffsets(Handle<mirror::Class> klass, bool is_static,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700538 uint32_t reference_offsets)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700539 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700540
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700541 // For use by ImageWriter to find DexCaches for its roots
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700542 ReaderWriterMutex* DexLock()
543 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) LOCK_RETURNED(dex_lock_) {
544 return &dex_lock_;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700545 }
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700546 size_t GetDexCacheCount() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, dex_lock_) {
547 return dex_caches_.size();
548 }
549 mirror::DexCache* GetDexCache(size_t idx) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700550
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700551 const OatFile* FindOpenedOatFileForDexFile(const DexFile& dex_file)
Ian Rogers33e95662013-05-20 20:29:14 -0700552 LOCKS_EXCLUDED(dex_lock_)
553 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe833a4852014-05-21 18:46:59 -0700554
555 // Find an opened oat file that contains dex_location. If oat_location is not nullptr, the file
556 // must have that location, else any oat location is accepted.
557 const OatFile* FindOpenedOatFile(const char* oat_location, const char* dex_location,
558 const uint32_t* const dex_location_checksum)
Ian Rogers719d1a32014-03-06 12:13:39 -0800559 LOCKS_EXCLUDED(dex_lock_);
Alex Lighta59dd802014-07-02 16:28:08 -0700560
561 // Will open the oat file directly without relocating, even if we could/should do relocation.
562 const OatFile* FindOatFileFromOatLocation(const std::string& oat_location,
563 std::string* error_msg)
564 LOCKS_EXCLUDED(dex_lock_);
565
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700566 const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700567 LOCKS_EXCLUDED(dex_lock_);
Andreas Gampe833a4852014-05-21 18:46:59 -0700568
Alex Lighta59dd802014-07-02 16:28:08 -0700569 const OatFile* OpenOatFileFromDexLocation(const std::string& dex_location,
570 InstructionSet isa,
571 bool* already_opened,
572 bool* obsolete_file_cleanup_failed,
573 std::vector<std::string>* error_msg)
574 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
575
Alex Light9dcc4572014-08-14 14:16:26 -0700576 const OatFile* GetInterpretedOnlyOat(const std::string& oat_path,
577 InstructionSet isa,
578 std::string* error_msg);
579
Alex Lighta59dd802014-07-02 16:28:08 -0700580 const OatFile* PatchAndRetrieveOat(const std::string& input, const std::string& output,
581 const std::string& image_location, InstructionSet isa,
582 std::string* error_msg)
583 LOCKS_EXCLUDED(Locks::mutator_lock_);
584
585 bool CheckOatFile(const OatFile* oat_file, InstructionSet isa,
586 bool* checksum_verified, std::string* error_msg);
587 int32_t GetRequiredDelta(const OatFile* oat_file, InstructionSet isa);
588
Andreas Gampe833a4852014-05-21 18:46:59 -0700589 // Note: will not register the oat file.
590 const OatFile* FindOatFileInOatLocationForDexFile(const char* dex_location,
591 uint32_t dex_location_checksum,
592 const char* oat_location,
593 std::string* error_msg)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700594 LOCKS_EXCLUDED(dex_lock_);
Ian Rogerse3359f72013-06-11 15:14:11 -0700595
Andreas Gampe833a4852014-05-21 18:46:59 -0700596 // Creates the oat file from the dex_location to the oat_location. Needs a file descriptor for
597 // the file to be written, which is assumed to be under a lock.
598 const OatFile* CreateOatFileForDexLocation(const char* dex_location,
599 int fd, const char* oat_location,
600 std::vector<std::string>* error_msgs)
601 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
602
603 // Finds an OatFile that contains a DexFile for the given a DexFile location.
604 //
605 // Note 1: this will not check open oat files, which are assumed to be stale when this is run.
606 // Note 2: Does not register the oat file. It is the caller's job to register if the file is to
607 // be kept.
608 const OatFile* FindOatFileContainingDexFileFromDexLocation(const char* location,
609 const uint32_t* const location_checksum,
610 InstructionSet isa,
Calin Juravlec54aea72014-07-16 14:45:03 +0100611 std::vector<std::string>* error_msgs,
612 bool* obsolete_file_cleanup_failed)
Andreas Gampe833a4852014-05-21 18:46:59 -0700613 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
614
Alex Lighta59dd802014-07-02 16:28:08 -0700615 // verify an oat file with the given dex file. Will return false when the dex file could not be
616 // verified. Will return true otherwise.
617 bool VerifyOatWithDexFile(const OatFile* oat_file, const char* dex_location,
618 std::string* error_msg);
Brian Carlstromfad71432011-10-16 20:25:10 -0700619
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700620 mirror::ArtMethod* CreateProxyConstructor(Thread* self, Handle<mirror::Class> klass,
Brian Carlstromea46f952013-07-30 01:26:50 -0700621 mirror::Class* proxy_class)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700622 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700623 mirror::ArtMethod* CreateProxyMethod(Thread* self, Handle<mirror::Class> klass,
624 Handle<mirror::ArtMethod> prototype)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700625 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jesse Wilson95caa792011-10-12 18:14:17 -0400626
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700627 std::vector<const DexFile*> boot_class_path_;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700628
Ian Rogers1bf8d4d2013-05-30 00:18:49 -0700629 mutable ReaderWriterMutex dex_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
Mathieu Chartier893263b2014-03-04 11:07:42 -0800630 std::vector<size_t> new_dex_cache_roots_ GUARDED_BY(dex_lock_);;
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700631 std::vector<GcRoot<mirror::DexCache>> dex_caches_ GUARDED_BY(dex_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -0700632 std::vector<const OatFile*> oat_files_ GUARDED_BY(dex_lock_);
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700633
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700634
Brian Carlstromaded5f72011-10-07 17:15:04 -0700635 // multimap from a string hash code of a class descriptor to
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800636 // mirror::Class* instances. Results should be compared for a matching
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700637 // Class::descriptor_ and Class::class_loader_.
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700638 typedef std::multimap<size_t, GcRoot<mirror::Class>> Table;
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700639 // This contains strong roots. To enable concurrent root scanning of
640 // the class table, be careful to use a read barrier when accessing this.
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700641 Table class_table_ GUARDED_BY(Locks::classlinker_classes_lock_);
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700642 std::vector<std::pair<size_t, GcRoot<mirror::Class>>> new_class_roots_;
Elliott Hughesf8349362012-06-18 15:00:06 -0700643
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700644 // Do we need to search dex caches to find image classes?
645 bool dex_cache_image_class_lookup_required_;
646 // Number of times we've searched dex caches for a class. After a certain number of misses we move
647 // the classes into the class_table_ to avoid dex cache based searches.
648 AtomicInteger failed_dex_cache_class_lookups_;
649
650 mirror::Class* LookupClassFromTableLocked(const char* descriptor,
651 const mirror::ClassLoader* class_loader,
652 size_t hash)
653 SHARED_LOCKS_REQUIRED(Locks::classlinker_classes_lock_, Locks::mutator_lock_);
654
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700655 mirror::Class* UpdateClass(const char* descriptor, mirror::Class* klass, size_t hash)
656 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
657 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
658
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700659 void MoveImageClassesToClassTable() LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
660 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
661 mirror::Class* LookupClassFromImage(const char* descriptor)
662 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700663
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700664 // EnsureResolved is called to make sure that a class in the class_table_ has been resolved
665 // before returning it to the caller. Its the responsibility of the thread that placed the class
666 // in the table to make it resolved. The thread doing resolution must notify on the class' lock
667 // when resolution has occurred. This happens in mirror::Class::SetStatus. As resolution may
668 // retire a class, the version of the class in the table is returned and this may differ from
669 // the class passed in.
670 mirror::Class* EnsureResolved(Thread* self, const char* descriptor, mirror::Class* klass)
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -0700671 WARN_UNUSED SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700672
673 void FixupTemporaryDeclaringClass(mirror::Class* temp_class, mirror::Class* new_class)
674 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
675
Brian Carlstroma663ea52011-08-19 23:33:41 -0700676 // indexes into class_roots_.
677 // needs to be kept in sync with class_roots_descriptors_.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700678 enum ClassRoot {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700679 kJavaLangClass,
680 kJavaLangObject,
Elliott Hughes418d20f2011-09-22 14:00:39 -0700681 kClassArrayClass,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700682 kObjectArrayClass,
683 kJavaLangString,
Mathieu Chartier66f19252012-09-18 08:57:04 -0700684 kJavaLangDexCache,
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700685 kJavaLangRefReference,
Brian Carlstromea46f952013-07-30 01:26:50 -0700686 kJavaLangReflectArtField,
687 kJavaLangReflectArtMethod,
Ian Rogers466bb252011-10-14 03:29:56 -0700688 kJavaLangReflectProxy,
Mathieu Chartier66f19252012-09-18 08:57:04 -0700689 kJavaLangStringArrayClass,
Brian Carlstromea46f952013-07-30 01:26:50 -0700690 kJavaLangReflectArtFieldArrayClass,
691 kJavaLangReflectArtMethodArrayClass,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700692 kJavaLangClassLoader,
Ian Rogers5167c972012-02-03 10:41:20 -0800693 kJavaLangThrowable,
jeffhao8cd6dda2012-02-22 10:15:34 -0800694 kJavaLangClassNotFoundException,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700695 kJavaLangStackTraceElement,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700696 kPrimitiveBoolean,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700697 kPrimitiveByte,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700698 kPrimitiveChar,
699 kPrimitiveDouble,
700 kPrimitiveFloat,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700701 kPrimitiveInt,
702 kPrimitiveLong,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700703 kPrimitiveShort,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700704 kPrimitiveVoid,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700705 kBooleanArrayClass,
706 kByteArrayClass,
707 kCharArrayClass,
708 kDoubleArrayClass,
709 kFloatArrayClass,
710 kIntArrayClass,
711 kLongArrayClass,
712 kShortArrayClass,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700713 kJavaLangStackTraceElementArrayClass,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700714 kClassRootsMax,
715 };
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700716 GcRoot<mirror::ObjectArray<mirror::Class>> class_roots_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700717
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800718 mirror::Class* GetClassRoot(ClassRoot class_root) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700719
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800720 void SetClassRoot(ClassRoot class_root, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700721 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700722
Elliott Hughes418d20f2011-09-22 14:00:39 -0700723 static const char* class_roots_descriptors_[];
Brian Carlstroma663ea52011-08-19 23:33:41 -0700724
725 const char* GetClassRootDescriptor(ClassRoot class_root) {
726 const char* descriptor = class_roots_descriptors_[class_root];
727 CHECK(descriptor != NULL);
728 return descriptor;
729 }
730
Ian Rogers98379392014-02-24 16:53:16 -0800731 // The interface table used by all arrays.
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700732 GcRoot<mirror::IfTable> array_iftable_;
Carl Shapiro565f5072011-07-10 13:39:43 -0700733
Ian Rogers98379392014-02-24 16:53:16 -0800734 // A cache of the last FindArrayClass results. The cache serves to avoid creating array class
735 // descriptors for the sake of performing FindClass.
736 static constexpr size_t kFindArrayCacheSize = 16;
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700737 GcRoot<mirror::Class> find_array_class_cache_[kFindArrayCacheSize];
Ian Rogers98379392014-02-24 16:53:16 -0800738 size_t find_array_class_cache_next_victim_;
739
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700740 bool init_done_;
Mathieu Chartier893263b2014-03-04 11:07:42 -0800741 bool log_new_dex_caches_roots_ GUARDED_BY(dex_lock_);
742 bool log_new_class_table_roots_ GUARDED_BY(Locks::classlinker_classes_lock_);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700743
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700744 InternTable* intern_table_;
745
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700746 // Trampolines within the image the bounce to runtime entrypoints. Done so that there is a single
747 // patch point within the image. TODO: make these proper relocations.
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700748 const void* portable_resolution_trampoline_;
749 const void* quick_resolution_trampoline_;
Jeff Hao88474b42013-10-23 16:24:40 -0700750 const void* portable_imt_conflict_trampoline_;
751 const void* quick_imt_conflict_trampoline_;
Andreas Gampe2da88232014-02-27 12:26:20 -0800752 const void* quick_generic_jni_trampoline_;
Vladimir Marko8a630572014-04-09 18:45:35 +0100753 const void* quick_to_interpreter_bridge_trampoline_;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700754
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700755 friend class ImageWriter; // for GetClassRoots
Alex Lighta59dd802014-07-02 16:28:08 -0700756 friend class ImageDumper; // for FindOpenedOatFileFromOatLocation
757 friend class ElfPatcher; // for FindOpenedOatFileForDexFile & FindOpenedOatFileFromOatLocation
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +0100758 friend class NoDex2OatTest; // for FindOpenedOatFileForDexFile
Alex Light9dcc4572014-08-14 14:16:26 -0700759 friend class NoPatchoatTest; // for FindOpenedOatFileForDexFile
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800760 FRIEND_TEST(ClassLinkerTest, ClassRootDescriptors);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800761 FRIEND_TEST(mirror::DexCacheTest, Open);
Brian Carlstromae826982011-11-09 01:33:42 -0800762 FRIEND_TEST(ExceptionTest, FindExceptionHandler);
763 FRIEND_TEST(ObjectTest, AllocObjectArray);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700764 DISALLOW_COPY_AND_ASSIGN(ClassLinker);
765};
766
767} // namespace art
768
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700769#endif // ART_RUNTIME_CLASS_LINKER_H_