blob: 38c437b4068ca25b34ec1f3ba39d4388b53f14f0 [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"
Elliott Hughese5448b52012-01-18 16:44:06 -080027#include "gtest/gtest.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070028#include "jni.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070029#include "oat_file.h"
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080030#include "object_callbacks.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070031
32namespace art {
Ian Rogers1d54e732013-05-02 21:10:01 -070033namespace gc {
34namespace space {
35 class ImageSpace;
36} // namespace space
37} // namespace gc
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038namespace mirror {
Ian Rogers33e95662013-05-20 20:29:14 -070039 class ClassLoader;
40 class DexCache;
41 class DexCacheTest_Open_Test;
42 class IfTable;
43 template<class T> class ObjectArray;
44 class StackTraceElement;
45} // namespace mirror
Ian Rogers1d54e732013-05-02 21:10:01 -070046
Elliott Hughescf4c6c42011-09-01 15:16:42 -070047class InternTable;
Mathieu Chartierc528dba2013-11-26 12:00:11 -080048template<class T> class ObjectLock;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070049class ScopedObjectAccessAlreadyRunnable;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070050template<class T> class Handle;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070051
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080052typedef bool (ClassVisitor)(mirror::Class* c, void* arg);
Elliott Hughesa2155262011-11-16 16:26:58 -080053
Mathieu Chartier893263b2014-03-04 11:07:42 -080054enum VisitRootFlags : uint8_t;
55
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070056class ClassLinker {
57 public:
Jeff Hao88474b42013-10-23 16:24:40 -070058 // Interface method table size. Increasing this value reduces the chance of two interface methods
59 // colliding in the interface method table but increases the size of classes that implement
60 // (non-marker) interfaces.
61 static constexpr size_t kImtSize = 64;
62
Mathieu Chartier590fee92013-09-13 13:46:47 -070063 explicit ClassLinker(InternTable* intern_table);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070064 ~ClassLinker();
Carl Shapiro565f5072011-07-10 13:39:43 -070065
Mathieu Chartier590fee92013-09-13 13:46:47 -070066 // Initialize class linker by bootstraping from dex files
67 void InitFromCompiler(const std::vector<const DexFile*>& boot_class_path)
68 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
69
70 // Initialize class linker from one or more images.
71 void InitFromImage() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
72
Ian Rogersbe7149f2013-08-20 09:29:39 -070073 bool IsInBootClassPath(const char* descriptor);
74
Elliott Hughes64bf5a32011-09-20 14:43:12 -070075 // Finds a class by its descriptor, loading it if necessary.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070076 // If class_loader is null, searches boot_class_path_.
Ian Rogers98379392014-02-24 16:53:16 -080077 mirror::Class* FindClass(Thread* self, const char* descriptor,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070078 const Handle<mirror::ClassLoader>& class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -070079 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -070080
Ian Rogers98379392014-02-24 16:53:16 -080081 // Finds a class by its descriptor using the "system" class loader, ie by searching the
82 // boot_class_path_.
83 mirror::Class* FindSystemClass(Thread* self, const char* descriptor)
84 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
85
86 // Finds the array class given for the element class.
87 mirror::Class* FindArrayClass(Thread* self, mirror::Class* element_class)
Ian Rogersb726dcb2012-09-05 08:57:23 -070088 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -070089
Mathieu Chartier590fee92013-09-13 13:46:47 -070090 // Reutrns true if the class linker is initialized.
91 bool IsInitialized() const;
92
Brian Carlstromaded5f72011-10-07 17:15:04 -070093 // Define a new a class based on a ClassDef from a DexFile
Mathieu Chartierc528dba2013-11-26 12:00:11 -080094 mirror::Class* DefineClass(const char* descriptor,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070095 const Handle<mirror::ClassLoader>& class_loader,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080096 const DexFile& dex_file, const DexFile::ClassDef& dex_class_def)
Ian Rogersb726dcb2012-09-05 08:57:23 -070097 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64bf5a32011-09-20 14:43:12 -070098
99 // Finds a class by its descriptor, returning NULL if it isn't wasn't loaded
100 // by the given 'class_loader'.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800101 mirror::Class* LookupClass(const char* descriptor, const mirror::ClassLoader* class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700102 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
103 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700104
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800105 // Finds all the classes with the given descriptor, regardless of ClassLoader.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800106 void LookupClasses(const char* descriptor, std::vector<mirror::Class*>& classes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700107 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
108 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800109
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800110 mirror::Class* FindPrimitiveClass(char type) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700111
Brian Carlstromae826982011-11-09 01:33:42 -0800112 // General class unloading is not supported, this is used to prune
113 // unwanted classes during image writing.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800114 bool RemoveClass(const char* descriptor, const mirror::ClassLoader* class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700115 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
116 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromae826982011-11-09 01:33:42 -0800117
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700118 void DumpAllClasses(int flags)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700119 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
120 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700121
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700122 void DumpForSigQuit(std::ostream& os)
123 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
124 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -0700125
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700126 size_t NumLoadedClasses()
127 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
128 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughese27955c2011-08-26 15:21:24 -0700129
Brian Carlstromb63ec392011-08-27 17:38:27 -0700130 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstromaded5f72011-10-07 17:15:04 -0700131 // result in the DexCache. The referrer is used to identify the
132 // target DexCache and ClassLoader to use for resolution.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800133 mirror::String* ResolveString(uint32_t string_idx, mirror::ArtMethod* referrer)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800134 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700135
136 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700137 // result in the DexCache.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800138 mirror::String* ResolveString(const DexFile& dex_file, uint32_t string_idx,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700139 const Handle<mirror::DexCache>& dex_cache)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700140 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700141
Brian Carlstromb63ec392011-08-27 17:38:27 -0700142 // Resolve a Type with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700143 // result in the DexCache. The referrer is used to identity the
144 // target DexCache and ClassLoader to use for resolution.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800145 mirror::Class* ResolveType(const DexFile& dex_file, uint16_t type_idx, mirror::Class* referrer)
Mathieu Chartier590fee92013-09-13 13:46:47 -0700146 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700147
Brian Carlstromb63ec392011-08-27 17:38:27 -0700148 // Resolve a Type with the given index from the DexFile, storing the
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700149 // result in the DexCache. The referrer is used to identify the
Brian Carlstromb63ec392011-08-27 17:38:27 -0700150 // target DexCache and ClassLoader to use for resolution.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800151 mirror::Class* ResolveType(uint16_t type_idx, mirror::ArtMethod* referrer)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800152 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700153
Ian Rogersef7d42f2014-01-06 12:55:46 -0800154 mirror::Class* ResolveType(uint16_t type_idx, mirror::ArtField* referrer)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800155 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700156
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700157 // Resolve a type with the given ID from the DexFile, storing the
158 // result in DexCache. The ClassLoader is used to search for the
159 // type, since it may be referenced from but not contained within
160 // the given DexFile.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700161 mirror::Class* ResolveType(const DexFile& dex_file, uint16_t type_idx,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700162 const Handle<mirror::DexCache>& dex_cache,
163 const Handle<mirror::ClassLoader>& class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700164 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700165
166 // Resolve a method with a given ID from the DexFile, storing the
167 // result in DexCache. The ClassLinker and ClassLoader are used as
168 // in ResolveType. What is unique is the method type argument which
169 // is used to determine if this method is a direct, static, or
170 // virtual method.
Brian Carlstromea46f952013-07-30 01:26:50 -0700171 mirror::ArtMethod* ResolveMethod(const DexFile& dex_file,
172 uint32_t method_idx,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700173 const Handle<mirror::DexCache>& dex_cache,
174 const Handle<mirror::ClassLoader>& class_loader,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800175 mirror::ArtMethod* referrer,
Brian Carlstromea46f952013-07-30 01:26:50 -0700176 InvokeType type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700177 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700178
Ian Rogersef7d42f2014-01-06 12:55:46 -0800179 mirror::ArtMethod* ResolveMethod(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
Ian Rogersef7d42f2014-01-06 12:55:46 -0800183 mirror::ArtField* ResolveField(uint32_t field_idx, mirror::ArtMethod* referrer,
Brian Carlstromea46f952013-07-30 01:26:50 -0700184 bool is_static)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800185 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromb9edb842011-08-28 16:31:06 -0700186
Brian Carlstrom16192862011-09-12 17:50:06 -0700187 // Resolve a field with a given ID from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700188 // result in DexCache. The ClassLinker and ClassLoader are used as
189 // in ResolveType. What is unique is the is_static argument which is
190 // used to determine if we are resolving a static or non-static
191 // field.
Brian Carlstromea46f952013-07-30 01:26:50 -0700192 mirror::ArtField* ResolveField(const DexFile& dex_file,
193 uint32_t field_idx,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700194 const Handle<mirror::DexCache>& dex_cache,
195 const Handle<mirror::ClassLoader>& class_loader,
Brian Carlstromea46f952013-07-30 01:26:50 -0700196 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700197 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700198
Ian Rogersb067ac22011-12-13 18:05:09 -0800199 // Resolve a field with a given ID from the DexFile, storing the
200 // result in DexCache. The ClassLinker and ClassLoader are used as
201 // in ResolveType. No is_static argument is provided so that Java
202 // field resolution semantics are followed.
Brian Carlstromea46f952013-07-30 01:26:50 -0700203 mirror::ArtField* ResolveFieldJLS(const DexFile& dex_file,
204 uint32_t field_idx,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700205 const Handle<mirror::DexCache>& dex_cache,
206 const Handle<mirror::ClassLoader>& class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700207 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersb067ac22011-12-13 18:05:09 -0800208
Ian Rogersad25ac52011-10-04 19:13:33 -0700209 // Get shorty from method index without resolution. Used to do handlerization.
Brian Carlstromea46f952013-07-30 01:26:50 -0700210 const char* MethodShorty(uint32_t method_idx, mirror::ArtMethod* referrer, uint32_t* length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700211 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersad25ac52011-10-04 19:13:33 -0700212
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700213 // Returns true on success, false if there's an exception pending.
Brian Carlstrom25c33252011-09-18 15:58:35 -0700214 // can_run_clinit=false allows the compiler to attempt to init a class,
215 // given the restriction that no <clinit> execution is possible.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700216 bool EnsureInitialized(const Handle<mirror::Class>& c,
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800217 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 Chartiereb8167a2014-05-07 15:43:14 -0700227 void RegisterDexFile(const DexFile& dex_file, const 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 Chartier893263b2014-03-04 11:07:42 -0800247 void VisitRoots(RootCallback* callback, void* arg, VisitRootFlags flags)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700248 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_, dex_lock_);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700249
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800250 mirror::DexCache* FindDexCache(const DexFile& dex_file) const
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700251 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700252 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700253 bool IsDexFileRegistered(const DexFile& dex_file) const
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700254 LOCKS_EXCLUDED(dex_lock_) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -0700255 void FixupDexCaches(mirror::ArtMethod* resolution_method) const
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700256 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700257 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700258
jeffhao262bf462011-10-20 18:36:32 -0700259 // Generate an oat file from a dex file
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700260 bool GenerateOatFile(const char* dex_filename,
Brian Carlstromd601af82012-01-06 10:15:19 -0800261 int oat_fd,
Vladimir Marko60836d52014-01-16 15:53:38 +0000262 const char* oat_cache_filename,
Ian Rogers719d1a32014-03-06 12:13:39 -0800263 std::string* error_msg)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700264 LOCKS_EXCLUDED(Locks::mutator_lock_);
jeffhao262bf462011-10-20 18:36:32 -0700265
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700266 const OatFile* FindOatFileFromOatLocation(const std::string& location,
267 std::string* error_msg)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700268 LOCKS_EXCLUDED(dex_lock_);
269
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800270 // Finds the oat file for a dex location, generating the oat file if
271 // it is missing or out of date. Returns the DexFile from within the
272 // created oat file.
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700273 const DexFile* FindOrCreateOatFileForDexLocation(const char* dex_location,
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700274 uint32_t dex_location_checksum,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700275 const char* oat_location,
Andreas Gampe329d1882014-04-08 10:32:19 -0700276 std::vector<std::string>* error_msgs)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700277 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800278 // Find a DexFile within an OatFile given a DexFile location. Note
279 // that this returns null if the location checksum of the DexFile
280 // does not match the OatFile.
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700281 const DexFile* FindDexFileInOatFileFromDexLocation(const char* location,
Brian Carlstrom08cbf662013-12-10 16:52:57 -0800282 const uint32_t* const location_checksum,
Brian Carlstrom0e12bdc2014-05-14 17:44:28 -0700283 InstructionSet isa,
Andreas Gampe329d1882014-04-08 10:32:19 -0700284 std::vector<std::string>* error_msgs)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700285 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800286
jeffhaof6174e82012-01-31 16:14:17 -0800287
Brian Carlstrom28db0122012-10-18 16:20:41 -0700288 // Returns true if oat file contains the dex file with the given location and checksum.
Brian Carlstromafe25512012-06-27 17:02:58 -0700289 static bool VerifyOatFileChecksums(const OatFile* oat_file,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700290 const char* dex_location,
291 uint32_t dex_location_checksum,
Narayan Kamath52f84882014-05-02 10:10:39 +0100292 const InstructionSet instruction_set,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700293 std::string* error_msg);
Brian Carlstromafe25512012-06-27 17:02:58 -0700294
Elliott Hughes418d20f2011-09-22 14:00:39 -0700295 // TODO: replace this with multiple methods that allocate the correct managed type.
Shih-wei Liao44175362011-08-28 16:59:17 -0700296 template <class T>
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800297 mirror::ObjectArray<T>* AllocObjectArray(Thread* self, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700298 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700299
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800300 mirror::ObjectArray<mirror::Class>* AllocClassArray(Thread* self, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700301 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao98eacac2011-09-14 16:11:53 -0700302
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800303 mirror::ObjectArray<mirror::String>* AllocStringArray(Thread* self, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700304 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800305
Brian Carlstromea46f952013-07-30 01:26:50 -0700306 mirror::ObjectArray<mirror::ArtMethod>* AllocArtMethodArray(Thread* self, size_t length)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800307 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
308
309 mirror::IfTable* AllocIfTable(Thread* self, size_t ifcount)
310 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
311
Brian Carlstromea46f952013-07-30 01:26:50 -0700312 mirror::ObjectArray<mirror::ArtField>* AllocArtFieldArray(Thread* self, size_t length)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800313 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
314
315 mirror::ObjectArray<mirror::StackTraceElement>* AllocStackTraceElementArray(Thread* self,
316 size_t length)
317 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
318
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700319 void VerifyClass(const Handle<mirror::Class>& klass) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800320 bool VerifyClassUsingOatFile(const DexFile& dex_file, mirror::Class* klass,
321 mirror::Class::Status& oat_file_class_status)
322 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800323 void ResolveClassExceptionHandlerTypes(const DexFile& dex_file,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700324 const Handle<mirror::Class>& klass)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800325 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -0700326 void ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, mirror::ArtMethod* klass)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800327 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
328
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700329 mirror::Class* CreateProxyClass(ScopedObjectAccessAlreadyRunnable& soa, jstring name,
330 jobjectArray interfaces, jobject loader, jobjectArray methods,
331 jobjectArray throws)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800332 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800333 std::string GetDescriptorForProxy(mirror::Class* proxy_class)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800334 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800335 mirror::ArtMethod* FindMethodForProxy(mirror::Class* proxy_class,
336 mirror::ArtMethod* proxy_method)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700337 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700338 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jesse Wilson95caa792011-10-12 18:14:17 -0400339
Ian Rogers19846512012-02-24 11:42:47 -0800340 // Get the oat code for a method when its class isn't yet initialized
Ian Rogersef7d42f2014-01-06 12:55:46 -0800341 const void* GetQuickOatCodeFor(mirror::ArtMethod* method)
342 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
343 const void* GetPortableOatCodeFor(mirror::ArtMethod* method, bool* have_portable_code)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700344 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800345
Mathieu Chartiere35517a2012-10-30 18:49:55 -0700346 // Get the oat code for a method from a method index.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800347 const void* GetQuickOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx, uint32_t method_idx)
348 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
349 const void* GetPortableOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx, uint32_t method_idx)
Ian Rogers33e95662013-05-20 20:29:14 -0700350 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiere35517a2012-10-30 18:49:55 -0700351
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700352 pid_t GetClassesLockOwner(); // For SignalCatcher.
353 pid_t GetDexLockOwner(); // For SignalCatcher.
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -0700354
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700355 const void* GetPortableResolutionTrampoline() const {
356 return portable_resolution_trampoline_;
357 }
358
Andreas Gampe2da88232014-02-27 12:26:20 -0800359 const void* GetQuickGenericJniTrampoline() const {
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700360 return quick_generic_jni_trampoline_;
361 }
Andreas Gampe2da88232014-02-27 12:26:20 -0800362
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700363 const void* GetQuickResolutionTrampoline() const {
364 return quick_resolution_trampoline_;
365 }
366
Jeff Hao88474b42013-10-23 16:24:40 -0700367 const void* GetPortableImtConflictTrampoline() const {
368 return portable_imt_conflict_trampoline_;
369 }
370
371 const void* GetQuickImtConflictTrampoline() const {
372 return quick_imt_conflict_trampoline_;
373 }
374
Vladimir Marko8a630572014-04-09 18:45:35 +0100375 const void* GetQuickToInterpreterBridgeTrampoline() const {
376 return quick_to_interpreter_bridge_trampoline_;
377 }
378
Jeff Hao88474b42013-10-23 16:24:40 -0700379 InternTable* GetInternTable() const {
380 return intern_table_;
381 }
382
Ian Rogers848871b2013-08-05 10:56:33 -0700383 // Attempts to insert a class into a class table. Returns NULL if
384 // the class was inserted, otherwise returns an existing class with
385 // the same descriptor and ClassLoader.
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700386 mirror::Class* InsertClass(const char* descriptor, mirror::Class* klass, size_t hash)
Ian Rogers848871b2013-08-05 10:56:33 -0700387 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
388 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
389
Mathieu Chartier590fee92013-09-13 13:46:47 -0700390 // Special code to allocate an art method, use this instead of class->AllocObject.
391 mirror::ArtMethod* AllocArtMethod(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700392
Mathieu Chartier590fee92013-09-13 13:46:47 -0700393 private:
Ian Rogersef7d42f2014-01-06 12:55:46 -0800394 const OatFile::OatMethod GetOatMethodFor(mirror::ArtMethod* method)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700395 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
TDYa12785321912012-04-01 15:24:56 -0700396
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700397 OatFile& GetImageOatFile(gc::space::ImageSpace* space)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700398 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700399 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700400
Ian Rogers98379392014-02-24 16:53:16 -0800401 void FinishInit(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700402
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700403 // For early bootstrapping by Init
Ian Rogers6fac4472014-02-25 17:01:10 -0800404 mirror::Class* AllocClass(Thread* self, mirror::Class* java_lang_Class, uint32_t class_size)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700405 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700406
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800407 // Alloc* convenience functions to avoid needing to pass in mirror::Class*
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700408 // values that are known to the ClassLinker such as
409 // kObjectArrayClass and kJavaLangString etc.
Ian Rogers6fac4472014-02-25 17:01:10 -0800410 mirror::Class* AllocClass(Thread* self, uint32_t class_size)
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800411 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800412 mirror::DexCache* AllocDexCache(Thread* self, const DexFile& dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700413 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -0700414 mirror::ArtField* AllocArtField(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersbdb03912011-09-14 00:55:44 -0700415
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800416 mirror::Class* CreatePrimitiveClass(Thread* self, Primitive::Type type)
417 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
418 mirror::Class* InitializePrimitiveClass(mirror::Class* primitive_class, Primitive::Type type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700419 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700420
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700421
Ian Rogers98379392014-02-24 16:53:16 -0800422 mirror::Class* CreateArrayClass(Thread* self, const char* descriptor,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700423 const Handle<mirror::ClassLoader>& class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700424 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700425
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700426 void AppendToBootClassPath(const DexFile& dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700427 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700428 void AppendToBootClassPath(const DexFile& dex_file, const Handle<mirror::DexCache>& dex_cache)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700429 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700430
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700431 void ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Brian Carlstromea46f952013-07-30 01:26:50 -0700432 mirror::Class* c, SafeMap<uint32_t, mirror::ArtField*>& field_map)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700433 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700434
Ian Rogers6fac4472014-02-25 17:01:10 -0800435 uint32_t SizeOfClass(const DexFile& dex_file,
Brian Carlstrom4873d462011-08-21 15:23:39 -0700436 const DexFile::ClassDef& dex_class_def);
437
Brian Carlstromf615a612011-07-23 12:50:34 -0700438 void LoadClass(const DexFile& dex_file,
439 const DexFile::ClassDef& dex_class_def,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700440 const Handle<mirror::Class>& klass,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800441 mirror::ClassLoader* class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700442 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100443 void LoadClassMembers(const DexFile& dex_file,
444 const byte* class_data,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700445 const Handle<mirror::Class>& klass,
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100446 mirror::ClassLoader* class_loader,
447 const OatFile::OatClass* oat_class)
448 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700449
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800450 void LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700451 const Handle<mirror::Class>& klass, const Handle<mirror::ArtField>& dst)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800452 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700453
Brian Carlstromea46f952013-07-30 01:26:50 -0700454 mirror::ArtMethod* LoadMethod(Thread* self, const DexFile& dex_file,
455 const ClassDataItemIterator& dex_method,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700456 const Handle<mirror::Class>& klass)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800457 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom934486c2011-07-12 23:42:50 -0700458
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800459 void FixupStaticTrampolines(mirror::Class* klass) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800460
461 // Finds the associated oat class for a dex_file and descriptor
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100462 OatFile::OatClass GetOatClass(const DexFile& dex_file, uint16_t class_def_idx)
Ian Rogers33e95662013-05-20 20:29:14 -0700463 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800464
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700465 void RegisterDexFileLocked(const DexFile& dex_file, const Handle<mirror::DexCache>& dex_cache)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700466 EXCLUSIVE_LOCKS_REQUIRED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700467 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700468 bool IsDexFileRegisteredLocked(const DexFile& dex_file) const
469 SHARED_LOCKS_REQUIRED(dex_lock_, Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700470
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700471 bool InitializeClass(const Handle<mirror::Class>& klass, bool can_run_clinit,
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800472 bool can_init_parents)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700473 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700474 bool WaitForInitializeClass(const Handle<mirror::Class>& klass, Thread* self,
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800475 ObjectLock<mirror::Class>& lock);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700476 bool ValidateSuperClassDescriptors(const Handle<mirror::Class>& klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700477 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700478
Ian Rogers98379392014-02-24 16:53:16 -0800479 bool IsSameDescriptorInDifferentClassContexts(Thread* self, const char* descriptor,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700480 Handle<mirror::ClassLoader>& class_loader1,
481 Handle<mirror::ClassLoader>& class_loader2)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700482 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700483
Ian Rogers98379392014-02-24 16:53:16 -0800484 bool IsSameMethodSignatureInDifferentClassContexts(Thread* self, mirror::ArtMethod* method,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800485 mirror::Class* klass1,
486 mirror::Class* klass2)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700487 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700488
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700489 bool LinkClass(Thread* self, const Handle<mirror::Class>& klass,
490 const Handle<mirror::ObjectArray<mirror::Class> >& interfaces)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700491 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700492
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700493 bool LinkSuperClass(const Handle<mirror::Class>& klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700494 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700495
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700496 bool LoadSuperAndInterfaces(const Handle<mirror::Class>& klass, const DexFile& dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700497 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700498
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700499 bool LinkMethods(const Handle<mirror::Class>& klass,
500 const Handle<mirror::ObjectArray<mirror::Class> >& interfaces)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700501 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700502
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700503 bool LinkVirtualMethods(const Handle<mirror::Class>& klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700504 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700505
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700506 bool LinkInterfaceMethods(const Handle<mirror::Class>& klass,
507 const Handle<mirror::ObjectArray<mirror::Class> >& interfaces)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700508 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700509
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700510 bool LinkStaticFields(const Handle<mirror::Class>& klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700511 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700512 bool LinkInstanceFields(const Handle<mirror::Class>& klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700513 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700514 bool LinkFields(const Handle<mirror::Class>& klass, bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700515 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700516 void LinkCode(const Handle<mirror::ArtMethod>& method, const OatFile::OatClass* oat_class,
517 const DexFile& dex_file, uint32_t dex_method_index, uint32_t method_index)
518 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700519
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700520
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700521 void CreateReferenceInstanceOffsets(const Handle<mirror::Class>& klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700522 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700523 void CreateReferenceStaticOffsets(const Handle<mirror::Class>& klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700524 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700525 void CreateReferenceOffsets(const Handle<mirror::Class>& klass, bool is_static,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700526 uint32_t reference_offsets)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700527 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700528
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700529 // For use by ImageWriter to find DexCaches for its roots
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800530 const std::vector<mirror::DexCache*>& GetDexCaches() {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700531 return dex_caches_;
532 }
533
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700534 const OatFile* FindOpenedOatFileForDexFile(const DexFile& dex_file)
Ian Rogers33e95662013-05-20 20:29:14 -0700535 LOCKS_EXCLUDED(dex_lock_)
536 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700537 const OatFile* FindOpenedOatFileFromDexLocation(const char* dex_location,
Brian Carlstrom08cbf662013-12-10 16:52:57 -0800538 const uint32_t* const dex_location_checksum)
Ian Rogers719d1a32014-03-06 12:13:39 -0800539 LOCKS_EXCLUDED(dex_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700540 const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700541 LOCKS_EXCLUDED(dex_lock_);
542 const DexFile* FindDexFileInOatLocation(const char* dex_location,
Ian Rogerse3359f72013-06-11 15:14:11 -0700543 uint32_t dex_location_checksum,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700544 const char* oat_location,
545 std::string* error_msg)
546 LOCKS_EXCLUDED(dex_lock_);
Ian Rogerse3359f72013-06-11 15:14:11 -0700547
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700548 const DexFile* VerifyAndOpenDexFileFromOatFile(const std::string& oat_file_location,
549 const char* dex_location,
550 std::string* error_msg,
551 bool* open_failed)
552 LOCKS_EXCLUDED(dex_lock_);
Brian Carlstromfad71432011-10-16 20:25:10 -0700553
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700554 mirror::ArtMethod* CreateProxyConstructor(Thread* self, const Handle<mirror::Class>& klass,
Brian Carlstromea46f952013-07-30 01:26:50 -0700555 mirror::Class* proxy_class)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700556 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700557 mirror::ArtMethod* CreateProxyMethod(Thread* self, const Handle<mirror::Class>& klass,
558 const Handle<mirror::ArtMethod>& prototype)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700559 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jesse Wilson95caa792011-10-12 18:14:17 -0400560
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700561 std::vector<const DexFile*> boot_class_path_;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700562
Ian Rogers1bf8d4d2013-05-30 00:18:49 -0700563 mutable ReaderWriterMutex dex_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
Mathieu Chartier893263b2014-03-04 11:07:42 -0800564 std::vector<size_t> new_dex_cache_roots_ GUARDED_BY(dex_lock_);;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800565 std::vector<mirror::DexCache*> dex_caches_ GUARDED_BY(dex_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -0700566 std::vector<const OatFile*> oat_files_ GUARDED_BY(dex_lock_);
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700567
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700568
Brian Carlstromaded5f72011-10-07 17:15:04 -0700569 // multimap from a string hash code of a class descriptor to
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800570 // mirror::Class* instances. Results should be compared for a matching
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700571 // Class::descriptor_ and Class::class_loader_.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800572 typedef std::multimap<size_t, mirror::Class*> Table;
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700573 Table class_table_ GUARDED_BY(Locks::classlinker_classes_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800574 std::vector<std::pair<size_t, mirror::Class*> > new_class_roots_;
Elliott Hughesf8349362012-06-18 15:00:06 -0700575
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700576 // Do we need to search dex caches to find image classes?
577 bool dex_cache_image_class_lookup_required_;
578 // Number of times we've searched dex caches for a class. After a certain number of misses we move
579 // the classes into the class_table_ to avoid dex cache based searches.
580 AtomicInteger failed_dex_cache_class_lookups_;
581
582 mirror::Class* LookupClassFromTableLocked(const char* descriptor,
583 const mirror::ClassLoader* class_loader,
584 size_t hash)
585 SHARED_LOCKS_REQUIRED(Locks::classlinker_classes_lock_, Locks::mutator_lock_);
586
587 void MoveImageClassesToClassTable() LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
588 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
589 mirror::Class* LookupClassFromImage(const char* descriptor)
590 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700591
Brian Carlstroma663ea52011-08-19 23:33:41 -0700592 // indexes into class_roots_.
593 // needs to be kept in sync with class_roots_descriptors_.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700594 enum ClassRoot {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700595 kJavaLangClass,
596 kJavaLangObject,
Elliott Hughes418d20f2011-09-22 14:00:39 -0700597 kClassArrayClass,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700598 kObjectArrayClass,
599 kJavaLangString,
Mathieu Chartier66f19252012-09-18 08:57:04 -0700600 kJavaLangDexCache,
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700601 kJavaLangRefReference,
Brian Carlstromea46f952013-07-30 01:26:50 -0700602 kJavaLangReflectArtField,
603 kJavaLangReflectArtMethod,
Ian Rogers466bb252011-10-14 03:29:56 -0700604 kJavaLangReflectProxy,
Mathieu Chartier66f19252012-09-18 08:57:04 -0700605 kJavaLangStringArrayClass,
Brian Carlstromea46f952013-07-30 01:26:50 -0700606 kJavaLangReflectArtFieldArrayClass,
607 kJavaLangReflectArtMethodArrayClass,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700608 kJavaLangClassLoader,
Ian Rogers5167c972012-02-03 10:41:20 -0800609 kJavaLangThrowable,
jeffhao8cd6dda2012-02-22 10:15:34 -0800610 kJavaLangClassNotFoundException,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700611 kJavaLangStackTraceElement,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700612 kPrimitiveBoolean,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700613 kPrimitiveByte,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700614 kPrimitiveChar,
615 kPrimitiveDouble,
616 kPrimitiveFloat,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700617 kPrimitiveInt,
618 kPrimitiveLong,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700619 kPrimitiveShort,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700620 kPrimitiveVoid,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700621 kBooleanArrayClass,
622 kByteArrayClass,
623 kCharArrayClass,
624 kDoubleArrayClass,
625 kFloatArrayClass,
626 kIntArrayClass,
627 kLongArrayClass,
628 kShortArrayClass,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700629 kJavaLangStackTraceElementArrayClass,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700630 kClassRootsMax,
631 };
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800632 mirror::ObjectArray<mirror::Class>* class_roots_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700633
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800634 mirror::Class* GetClassRoot(ClassRoot class_root) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700635
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800636 void SetClassRoot(ClassRoot class_root, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700637 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700638
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800639 mirror::ObjectArray<mirror::Class>* GetClassRoots() {
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700640 DCHECK(class_roots_ != NULL);
641 return class_roots_;
642 }
643
Elliott Hughes418d20f2011-09-22 14:00:39 -0700644 static const char* class_roots_descriptors_[];
Brian Carlstroma663ea52011-08-19 23:33:41 -0700645
646 const char* GetClassRootDescriptor(ClassRoot class_root) {
647 const char* descriptor = class_roots_descriptors_[class_root];
648 CHECK(descriptor != NULL);
649 return descriptor;
650 }
651
Ian Rogers98379392014-02-24 16:53:16 -0800652 // The interface table used by all arrays.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800653 mirror::IfTable* array_iftable_;
Carl Shapiro565f5072011-07-10 13:39:43 -0700654
Ian Rogers98379392014-02-24 16:53:16 -0800655 // A cache of the last FindArrayClass results. The cache serves to avoid creating array class
656 // descriptors for the sake of performing FindClass.
657 static constexpr size_t kFindArrayCacheSize = 16;
658 mirror::Class* find_array_class_cache_[kFindArrayCacheSize];
659 size_t find_array_class_cache_next_victim_;
660
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700661 bool init_done_;
Mathieu Chartier893263b2014-03-04 11:07:42 -0800662 bool log_new_dex_caches_roots_ GUARDED_BY(dex_lock_);
663 bool log_new_class_table_roots_ GUARDED_BY(Locks::classlinker_classes_lock_);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700664
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700665 InternTable* intern_table_;
666
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700667 const void* portable_resolution_trampoline_;
668 const void* quick_resolution_trampoline_;
Jeff Hao88474b42013-10-23 16:24:40 -0700669 const void* portable_imt_conflict_trampoline_;
670 const void* quick_imt_conflict_trampoline_;
Andreas Gampe2da88232014-02-27 12:26:20 -0800671 const void* quick_generic_jni_trampoline_;
Vladimir Marko8a630572014-04-09 18:45:35 +0100672 const void* quick_to_interpreter_bridge_trampoline_;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700673
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700674 friend class ImageWriter; // for GetClassRoots
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800675 FRIEND_TEST(ClassLinkerTest, ClassRootDescriptors);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800676 FRIEND_TEST(mirror::DexCacheTest, Open);
Brian Carlstromae826982011-11-09 01:33:42 -0800677 FRIEND_TEST(ExceptionTest, FindExceptionHandler);
678 FRIEND_TEST(ObjectTest, AllocObjectArray);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700679 DISALLOW_COPY_AND_ASSIGN(ClassLinker);
680};
681
682} // namespace art
683
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700684#endif // ART_RUNTIME_CLASS_LINKER_H_