blob: 111dd6369e2785dd3b7210a1c25741fc4725bd8d [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
Fred Shih37f05ef2014-07-16 18:38:08 -070020#include <deque>
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080021#include <string>
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070022#include <utility>
23#include <vector>
24
Mathieu Chartierbad02672014-08-25 13:08:22 -070025#include "base/allocator.h"
Elliott Hughes76160052012-12-12 16:31:20 -080026#include "base/macros.h"
Elliott Hughes76b61672012-12-12 17:47:30 -080027#include "base/mutex.h"
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070028#include "dex_file.h"
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070029#include "gc_root.h"
Elliott Hughese5448b52012-01-18 16:44:06 -080030#include "gtest/gtest.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070031#include "jni.h"
Brian Carlstrom58ae9412011-10-04 00:56:06 -070032#include "oat_file.h"
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080033#include "object_callbacks.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070034
35namespace art {
Mingyao Yang98d1cc82014-05-15 17:02:16 -070036
Ian Rogers1d54e732013-05-02 21:10:01 -070037namespace gc {
38namespace space {
39 class ImageSpace;
40} // namespace space
41} // namespace gc
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042namespace mirror {
Ian Rogers33e95662013-05-20 20:29:14 -070043 class ClassLoader;
44 class DexCache;
45 class DexCacheTest_Open_Test;
46 class IfTable;
47 template<class T> class ObjectArray;
48 class StackTraceElement;
49} // namespace mirror
Ian Rogers1d54e732013-05-02 21:10:01 -070050
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070051template<class T> class Handle;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070052class InternTable;
Mathieu Chartierc528dba2013-11-26 12:00:11 -080053template<class T> class ObjectLock;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070054class ScopedObjectAccessAlreadyRunnable;
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070055template<class T> class Handle;
Elliott Hughescf4c6c42011-09-01 15:16:42 -070056
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080057typedef bool (ClassVisitor)(mirror::Class* c, void* arg);
Elliott Hughesa2155262011-11-16 16:26:58 -080058
Mathieu Chartier893263b2014-03-04 11:07:42 -080059enum VisitRootFlags : uint8_t;
60
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070061class ClassLinker {
62 public:
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
Alex Light64ad14d2014-08-19 14:23:13 -070066 // Initialize class linker by bootstraping from dex files.
67 void InitWithoutImage(const std::vector<const DexFile*>& boot_class_path)
Mathieu Chartier590fee92013-09-13 13:46:47 -070068 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
Elliott Hughes64bf5a32011-09-20 14:43:12 -070073 // Finds a class by its descriptor, loading it if necessary.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -070074 // If class_loader is null, searches boot_class_path_.
Ian Rogers98379392014-02-24 16:53:16 -080075 mirror::Class* FindClass(Thread* self, const char* descriptor,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070076 Handle<mirror::ClassLoader> class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -070077 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -070078
Mathieu Chartierab0ed822014-09-11 14:21:41 -070079 // Find a class in the path class loader, loading it if necessary.
80 mirror::Class* FindClassInPathClassLoader(ScopedObjectAccessAlreadyRunnable& soa,
81 Thread* self, const char* descriptor,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070082 Handle<mirror::ClassLoader> class_loader)
Mathieu Chartierab0ed822014-09-11 14:21:41 -070083 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
84
Ian Rogers98379392014-02-24 16:53:16 -080085 // Finds a class by its descriptor using the "system" class loader, ie by searching the
86 // boot_class_path_.
87 mirror::Class* FindSystemClass(Thread* self, const char* descriptor)
88 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
89
90 // Finds the array class given for the element class.
Mathieu Chartierb74cd292014-05-29 14:31:33 -070091 mirror::Class* FindArrayClass(Thread* self, mirror::Class** element_class)
Ian Rogersb726dcb2012-09-05 08:57:23 -070092 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -070093
Ian Rogers63557452014-06-04 16:57:15 -070094 // Returns true if the class linker is initialized.
Ian Rogers7b078e82014-09-10 14:44:24 -070095 bool IsInitialized() const {
96 return init_done_;
97 }
Mathieu Chartier590fee92013-09-13 13:46:47 -070098
Brian Carlstromaded5f72011-10-07 17:15:04 -070099 // Define a new a class based on a ClassDef from a DexFile
Ian Rogers7b078e82014-09-10 14:44:24 -0700100 mirror::Class* DefineClass(Thread* self, const char* descriptor,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700101 Handle<mirror::ClassLoader> class_loader,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800102 const DexFile& dex_file, const DexFile::ClassDef& dex_class_def)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700103 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes64bf5a32011-09-20 14:43:12 -0700104
105 // Finds a class by its descriptor, returning NULL if it isn't wasn't loaded
106 // by the given 'class_loader'.
Ian Rogers7b078e82014-09-10 14:44:24 -0700107 mirror::Class* LookupClass(Thread* self, const char* descriptor,
108 const mirror::ClassLoader* class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700109 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
110 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700111
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800112 // Finds all the classes with the given descriptor, regardless of ClassLoader.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800113 void LookupClasses(const char* descriptor, std::vector<mirror::Class*>& classes)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700114 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
115 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes6fa602d2011-12-02 17:54:25 -0800116
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800117 mirror::Class* FindPrimitiveClass(char type) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700118
Brian Carlstromae826982011-11-09 01:33:42 -0800119 // General class unloading is not supported, this is used to prune
120 // unwanted classes during image writing.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800121 bool RemoveClass(const char* descriptor, const mirror::ClassLoader* class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700122 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
123 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromae826982011-11-09 01:33:42 -0800124
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700125 void DumpAllClasses(int flags)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700126 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
127 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700128
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700129 void DumpForSigQuit(std::ostream& os)
Ian Rogers7b078e82014-09-10 14:44:24 -0700130 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_);
Elliott Hughescac6cc72011-11-03 20:31:21 -0700131
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700132 size_t NumLoadedClasses()
133 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
134 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughese27955c2011-08-26 15:21:24 -0700135
Brian Carlstromb63ec392011-08-27 17:38:27 -0700136 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstromaded5f72011-10-07 17:15:04 -0700137 // result in the DexCache. The referrer is used to identify the
138 // target DexCache and ClassLoader to use for resolution.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800139 mirror::String* ResolveString(uint32_t string_idx, mirror::ArtMethod* referrer)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800140 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700141
142 // Resolve a String with the given index from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700143 // result in the DexCache.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800144 mirror::String* ResolveString(const DexFile& dex_file, uint32_t string_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700145 Handle<mirror::DexCache> dex_cache)
Ian Rogersb726dcb2012-09-05 08:57:23 -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
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700149 // result in the DexCache. The referrer is used to identity the
150 // target DexCache and ClassLoader to use for resolution.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800151 mirror::Class* ResolveType(const DexFile& dex_file, uint16_t type_idx, mirror::Class* referrer)
Mathieu Chartier590fee92013-09-13 13:46:47 -0700152 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700153
Brian Carlstromb63ec392011-08-27 17:38:27 -0700154 // Resolve a Type with the given index from the DexFile, storing the
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700155 // result in the DexCache. The referrer is used to identify the
Brian Carlstromb63ec392011-08-27 17:38:27 -0700156 // target DexCache and ClassLoader to use for resolution.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800157 mirror::Class* ResolveType(uint16_t type_idx, mirror::ArtMethod* referrer)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800158 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700159
Ian Rogersef7d42f2014-01-06 12:55:46 -0800160 mirror::Class* ResolveType(uint16_t type_idx, mirror::ArtField* referrer)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800161 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromb63ec392011-08-27 17:38:27 -0700162
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700163 // Resolve a type with the given ID from the DexFile, storing the
164 // result in DexCache. The ClassLoader is used to search for the
165 // type, since it may be referenced from but not contained within
166 // the given DexFile.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700167 mirror::Class* ResolveType(const DexFile& dex_file, uint16_t type_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700168 Handle<mirror::DexCache> dex_cache,
169 Handle<mirror::ClassLoader> class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700170 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700171
172 // Resolve a method with a given ID from the DexFile, storing the
173 // result in DexCache. The ClassLinker and ClassLoader are used as
174 // in ResolveType. What is unique is the method type argument which
175 // is used to determine if this method is a direct, static, or
176 // virtual method.
Brian Carlstromea46f952013-07-30 01:26:50 -0700177 mirror::ArtMethod* ResolveMethod(const DexFile& dex_file,
178 uint32_t method_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700179 Handle<mirror::DexCache> dex_cache,
180 Handle<mirror::ClassLoader> class_loader,
181 Handle<mirror::ArtMethod> referrer,
Brian Carlstromea46f952013-07-30 01:26:50 -0700182 InvokeType type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700183 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700184
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700185 mirror::ArtMethod* GetResolvedMethod(uint32_t method_idx, mirror::ArtMethod* referrer,
186 InvokeType type)
187 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
188 mirror::ArtMethod* ResolveMethod(Thread* self, uint32_t method_idx, mirror::ArtMethod** referrer,
Brian Carlstromea46f952013-07-30 01:26:50 -0700189 InvokeType type)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800190 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom16192862011-09-12 17:50:06 -0700191
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700192 mirror::ArtField* GetResolvedField(uint32_t field_idx, mirror::Class* field_declaring_class)
193 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800194 mirror::ArtField* ResolveField(uint32_t field_idx, mirror::ArtMethod* referrer,
Brian Carlstromea46f952013-07-30 01:26:50 -0700195 bool is_static)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800196 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromb9edb842011-08-28 16:31:06 -0700197
Brian Carlstrom16192862011-09-12 17:50:06 -0700198 // Resolve a field with a given ID from the DexFile, storing the
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700199 // result in DexCache. The ClassLinker and ClassLoader are used as
200 // in ResolveType. What is unique is the is_static argument which is
201 // used to determine if we are resolving a static or non-static
202 // field.
Brian Carlstromea46f952013-07-30 01:26:50 -0700203 mirror::ArtField* ResolveField(const DexFile& dex_file,
204 uint32_t field_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700205 Handle<mirror::DexCache> dex_cache,
206 Handle<mirror::ClassLoader> class_loader,
Brian Carlstromea46f952013-07-30 01:26:50 -0700207 bool is_static)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700208 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700209
Ian Rogersb067ac22011-12-13 18:05:09 -0800210 // Resolve a field with a given ID from the DexFile, storing the
211 // result in DexCache. The ClassLinker and ClassLoader are used as
212 // in ResolveType. No is_static argument is provided so that Java
213 // field resolution semantics are followed.
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700214 mirror::ArtField* ResolveFieldJLS(const DexFile& dex_file, uint32_t field_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700215 Handle<mirror::DexCache> dex_cache,
216 Handle<mirror::ClassLoader> class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700217 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersb067ac22011-12-13 18:05:09 -0800218
Ian Rogersad25ac52011-10-04 19:13:33 -0700219 // Get shorty from method index without resolution. Used to do handlerization.
Brian Carlstromea46f952013-07-30 01:26:50 -0700220 const char* MethodShorty(uint32_t method_idx, mirror::ArtMethod* referrer, uint32_t* length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700221 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersad25ac52011-10-04 19:13:33 -0700222
Elliott Hughesf4c21c92011-08-19 17:31:31 -0700223 // Returns true on success, false if there's an exception pending.
Brian Carlstrom25c33252011-09-18 15:58:35 -0700224 // can_run_clinit=false allows the compiler to attempt to init a class,
225 // given the restriction that no <clinit> execution is possible.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700226 bool EnsureInitialized(Thread* self, Handle<mirror::Class> c, bool can_init_fields,
Ian Rogers7b078e82014-09-10 14:44:24 -0700227 bool can_init_parents)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700228 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700229
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700230 // Initializes classes that have instances in the image but that have
231 // <clinit> methods so they could not be initialized by the compiler.
Ian Rogersb726dcb2012-09-05 08:57:23 -0700232 void RunRootClinits() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700233
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700234 void RegisterDexFile(const DexFile& dex_file)
235 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700236 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700237 void RegisterDexFile(const DexFile& dex_file, Handle<mirror::DexCache> dex_cache)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700238 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700239 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700240
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700241 const OatFile* RegisterOatFile(const OatFile* oat_file)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700242 LOCKS_EXCLUDED(dex_lock_);
Brian Carlstrom866c8622012-01-06 16:35:13 -0800243
Brian Carlstrom8a487412011-08-29 20:08:52 -0700244 const std::vector<const DexFile*>& GetBootClassPath() {
245 return boot_class_path_;
246 }
247
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700248 void VisitClasses(ClassVisitor* visitor, void* arg)
Ian Rogersdbf3be02014-08-29 15:40:08 -0700249 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700250 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersdbf3be02014-08-29 15:40:08 -0700251
252 // Less efficient variant of VisitClasses that copies the class_table_ into secondary storage
253 // so that it can visit individual classes without holding the doesn't hold the
254 // Locks::classlinker_classes_lock_. As the Locks::classlinker_classes_lock_ isn't held this code
255 // can race with insertion and deletion of classes while the visitor is being called.
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700256 void VisitClassesWithoutClassesLock(ClassVisitor* visitor, void* arg)
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700257 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughesa2155262011-11-16 16:26:58 -0800258
Mathieu Chartier52e4b432014-06-10 11:22:31 -0700259 void VisitClassRoots(RootCallback* callback, void* arg, VisitRootFlags flags)
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700260 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
261 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier893263b2014-03-04 11:07:42 -0800262 void VisitRoots(RootCallback* callback, void* arg, VisitRootFlags flags)
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700263 LOCKS_EXCLUDED(dex_lock_)
264 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700265
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700266 mirror::DexCache* FindDexCache(const DexFile& dex_file)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700267 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700268 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700269 bool IsDexFileRegistered(const DexFile& dex_file)
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700270 LOCKS_EXCLUDED(dex_lock_) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700271 void FixupDexCaches(mirror::ArtMethod* resolution_method)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700272 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700273 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom1d9f52b2011-10-13 10:50:45 -0700274
jeffhao262bf462011-10-20 18:36:32 -0700275 // Generate an oat file from a dex file
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700276 bool GenerateOatFile(const char* dex_filename,
Brian Carlstromd601af82012-01-06 10:15:19 -0800277 int oat_fd,
Vladimir Marko60836d52014-01-16 15:53:38 +0000278 const char* oat_cache_filename,
Ian Rogers719d1a32014-03-06 12:13:39 -0800279 std::string* error_msg)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700280 LOCKS_EXCLUDED(Locks::mutator_lock_);
jeffhao262bf462011-10-20 18:36:32 -0700281
Andreas Gampe833a4852014-05-21 18:46:59 -0700282 // Find or create the oat file holding dex_location. Then load all corresponding dex files
283 // (if multidex) into the given vector.
284 bool OpenDexFilesFromOat(const char* dex_location, const char* oat_location,
285 std::vector<std::string>* error_msgs,
286 std::vector<const DexFile*>* dex_files)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700287 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
jeffhaof6174e82012-01-31 16:14:17 -0800288
Alex Light6e183f22014-07-18 14:57:04 -0700289 // Returns true if the given oat file has the same image checksum as the image it is paired with.
290 static bool VerifyOatImageChecksum(const OatFile* oat_file, const InstructionSet instruction_set);
291 // Returns true if the oat file checksums match with the image and the offsets are such that it
292 // could be loaded with it.
293 static bool VerifyOatChecksums(const OatFile* oat_file, const InstructionSet instruction_set,
294 std::string* error_msg);
Brian Carlstrom28db0122012-10-18 16:20:41 -0700295 // Returns true if oat file contains the dex file with the given location and checksum.
Alex Light6e183f22014-07-18 14:57:04 -0700296 static bool VerifyOatAndDexFileChecksums(const OatFile* oat_file,
297 const char* dex_location,
298 uint32_t dex_location_checksum,
299 InstructionSet instruction_set,
300 std::string* error_msg);
Brian Carlstromafe25512012-06-27 17:02:58 -0700301
Ian Rogersc0542af2014-09-03 16:16:56 -0700302 // Allocate an instance of a java.lang.Object.
303 mirror::Object* AllocObject(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
304
Elliott Hughes418d20f2011-09-22 14:00:39 -0700305 // TODO: replace this with multiple methods that allocate the correct managed type.
Shih-wei Liao44175362011-08-28 16:59:17 -0700306 template <class T>
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800307 mirror::ObjectArray<T>* AllocObjectArray(Thread* self, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700308 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700309
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800310 mirror::ObjectArray<mirror::Class>* AllocClassArray(Thread* self, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700311 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
jeffhao98eacac2011-09-14 16:11:53 -0700312
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800313 mirror::ObjectArray<mirror::String>* AllocStringArray(Thread* self, size_t length)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700314 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800315
Brian Carlstromea46f952013-07-30 01:26:50 -0700316 mirror::ObjectArray<mirror::ArtMethod>* AllocArtMethodArray(Thread* self, size_t length)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800317 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
318
319 mirror::IfTable* AllocIfTable(Thread* self, size_t ifcount)
320 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
321
Brian Carlstromea46f952013-07-30 01:26:50 -0700322 mirror::ObjectArray<mirror::ArtField>* AllocArtFieldArray(Thread* self, size_t length)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800323 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
324
325 mirror::ObjectArray<mirror::StackTraceElement>* AllocStackTraceElementArray(Thread* self,
326 size_t length)
327 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
328
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700329 void VerifyClass(Thread* self, Handle<mirror::Class> klass)
Ian Rogers7b078e82014-09-10 14:44:24 -0700330 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800331 bool VerifyClassUsingOatFile(const DexFile& dex_file, mirror::Class* klass,
332 mirror::Class::Status& oat_file_class_status)
333 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800334 void ResolveClassExceptionHandlerTypes(const DexFile& dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700335 Handle<mirror::Class> klass)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800336 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -0700337 void ResolveMethodExceptionHandlerTypes(const DexFile& dex_file, mirror::ArtMethod* klass)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800338 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
339
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -0700340 mirror::Class* CreateProxyClass(ScopedObjectAccessAlreadyRunnable& soa, jstring name,
341 jobjectArray interfaces, jobject loader, jobjectArray methods,
342 jobjectArray throws)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800343 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800344 std::string GetDescriptorForProxy(mirror::Class* proxy_class)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800345 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800346 mirror::ArtMethod* FindMethodForProxy(mirror::Class* proxy_class,
347 mirror::ArtMethod* proxy_method)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700348 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700349 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jesse Wilson95caa792011-10-12 18:14:17 -0400350
Ian Rogers19846512012-02-24 11:42:47 -0800351 // Get the oat code for a method when its class isn't yet initialized
Ian Rogersef7d42f2014-01-06 12:55:46 -0800352 const void* GetQuickOatCodeFor(mirror::ArtMethod* method)
353 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
354 const void* GetPortableOatCodeFor(mirror::ArtMethod* method, bool* have_portable_code)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700355 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800356
Mathieu Chartiere35517a2012-10-30 18:49:55 -0700357 // Get the oat code for a method from a method index.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800358 const void* GetQuickOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx, uint32_t method_idx)
359 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
360 const void* GetPortableOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx, uint32_t method_idx)
Ian Rogers33e95662013-05-20 20:29:14 -0700361 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartiere35517a2012-10-30 18:49:55 -0700362
Hiroshi Yamauchi9bdec882014-08-15 17:11:12 -0700363 // Get compiled code for a method, return null if no code
364 // exists. This is unlike Get..OatCodeFor which will return a bridge
365 // or interpreter entrypoint.
366 const void* GetOatMethodQuickCodeFor(mirror::ArtMethod* method)
367 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
368 const void* GetOatMethodPortableCodeFor(mirror::ArtMethod* method)
369 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
370
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700371 pid_t GetClassesLockOwner(); // For SignalCatcher.
372 pid_t GetDexLockOwner(); // For SignalCatcher.
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -0700373
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700374 const void* GetPortableResolutionTrampoline() const {
375 return portable_resolution_trampoline_;
376 }
377
Andreas Gampe2da88232014-02-27 12:26:20 -0800378 const void* GetQuickGenericJniTrampoline() const {
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700379 return quick_generic_jni_trampoline_;
380 }
Andreas Gampe2da88232014-02-27 12:26:20 -0800381
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700382 const void* GetQuickResolutionTrampoline() const {
383 return quick_resolution_trampoline_;
384 }
385
Jeff Hao88474b42013-10-23 16:24:40 -0700386 const void* GetPortableImtConflictTrampoline() const {
387 return portable_imt_conflict_trampoline_;
388 }
389
390 const void* GetQuickImtConflictTrampoline() const {
391 return quick_imt_conflict_trampoline_;
392 }
393
Vladimir Marko8a630572014-04-09 18:45:35 +0100394 const void* GetQuickToInterpreterBridgeTrampoline() const {
395 return quick_to_interpreter_bridge_trampoline_;
396 }
397
Jeff Hao88474b42013-10-23 16:24:40 -0700398 InternTable* GetInternTable() const {
399 return intern_table_;
400 }
401
Ian Rogers848871b2013-08-05 10:56:33 -0700402 // Attempts to insert a class into a class table. Returns NULL if
403 // the class was inserted, otherwise returns an existing class with
404 // the same descriptor and ClassLoader.
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700405 mirror::Class* InsertClass(const char* descriptor, mirror::Class* klass, size_t hash)
Ian Rogers848871b2013-08-05 10:56:33 -0700406 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
407 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
408
Mathieu Chartier590fee92013-09-13 13:46:47 -0700409 // Special code to allocate an art method, use this instead of class->AllocObject.
410 mirror::ArtMethod* AllocArtMethod(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700411
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700412 mirror::ObjectArray<mirror::Class>* GetClassRoots() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700413 mirror::ObjectArray<mirror::Class>* class_roots = class_roots_.Read();
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700414 DCHECK(class_roots != NULL);
415 return class_roots;
416 }
417
Mathieu Chartier590fee92013-09-13 13:46:47 -0700418 private:
Ian Rogers97b52f82014-08-14 11:34:07 -0700419 const OatFile::OatMethod FindOatMethodFor(mirror::ArtMethod* method, bool* found)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700420 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
TDYa12785321912012-04-01 15:24:56 -0700421
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700422 OatFile& GetImageOatFile(gc::space::ImageSpace* space)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700423 LOCKS_EXCLUDED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700424 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700425
Ian Rogers98379392014-02-24 16:53:16 -0800426 void FinishInit(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700427
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700428 // For early bootstrapping by Init
Ian Rogers6fac4472014-02-25 17:01:10 -0800429 mirror::Class* AllocClass(Thread* self, mirror::Class* java_lang_Class, uint32_t class_size)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700430 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700431
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800432 // Alloc* convenience functions to avoid needing to pass in mirror::Class*
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700433 // values that are known to the ClassLinker such as
434 // kObjectArrayClass and kJavaLangString etc.
Ian Rogers6fac4472014-02-25 17:01:10 -0800435 mirror::Class* AllocClass(Thread* self, uint32_t class_size)
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800436 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800437 mirror::DexCache* AllocDexCache(Thread* self, const DexFile& dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700438 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstromea46f952013-07-30 01:26:50 -0700439 mirror::ArtField* AllocArtField(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogersbdb03912011-09-14 00:55:44 -0700440
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800441 mirror::Class* CreatePrimitiveClass(Thread* self, Primitive::Type type)
442 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
443 mirror::Class* InitializePrimitiveClass(mirror::Class* primitive_class, Primitive::Type type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700444 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700445
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700446
Ian Rogers98379392014-02-24 16:53:16 -0800447 mirror::Class* CreateArrayClass(Thread* self, const char* descriptor,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700448 Handle<mirror::ClassLoader> class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700449 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma331b3c2011-07-18 17:47:56 -0700450
Ian Rogers7b078e82014-09-10 14:44:24 -0700451 void AppendToBootClassPath(Thread* self, const DexFile& dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700452 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700453 void AppendToBootClassPath(const DexFile& dex_file, Handle<mirror::DexCache> dex_cache)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700454 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700455
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700456 // Precomputes size needed for Class, in the case of a non-temporary class this size must be
457 // sufficient to hold all static fields.
458 uint32_t SizeOfClassWithoutEmbeddedTables(const DexFile& dex_file,
459 const DexFile::ClassDef& dex_class_def);
Brian Carlstrom4873d462011-08-21 15:23:39 -0700460
Ian Rogers7b078e82014-09-10 14:44:24 -0700461 void LoadClass(Thread* self, const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700462 Handle<mirror::Class> klass, mirror::ClassLoader* class_loader)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700463 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers7b078e82014-09-10 14:44:24 -0700464 void LoadClassMembers(Thread* self, const DexFile& dex_file, const byte* class_data,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700465 Handle<mirror::Class> klass, mirror::ClassLoader* class_loader,
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100466 const OatFile::OatClass* oat_class)
467 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700468
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800469 void LoadField(const DexFile& dex_file, const ClassDataItemIterator& it,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700470 Handle<mirror::Class> klass, Handle<mirror::ArtField> dst)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800471 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700472
Brian Carlstromea46f952013-07-30 01:26:50 -0700473 mirror::ArtMethod* LoadMethod(Thread* self, const DexFile& dex_file,
474 const ClassDataItemIterator& dex_method,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700475 Handle<mirror::Class> klass)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800476 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom934486c2011-07-12 23:42:50 -0700477
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800478 void FixupStaticTrampolines(mirror::Class* klass) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800479
Ian Rogers97b52f82014-08-14 11:34:07 -0700480 // Finds the associated oat class for a dex_file and descriptor. Returns an invalid OatClass on
481 // error and sets found to false.
482 OatFile::OatClass FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, bool* found)
Ian Rogers33e95662013-05-20 20:29:14 -0700483 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers19846512012-02-24 11:42:47 -0800484
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700485 void RegisterDexFileLocked(const DexFile& dex_file, Handle<mirror::DexCache> dex_cache)
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700486 EXCLUSIVE_LOCKS_REQUIRED(dex_lock_)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700487 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700488 bool IsDexFileRegisteredLocked(const DexFile& dex_file)
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700489 SHARED_LOCKS_REQUIRED(dex_lock_, Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700490
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700491 bool InitializeClass(Thread* self, Handle<mirror::Class> klass, bool can_run_clinit,
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800492 bool can_init_parents)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700493 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700494 bool WaitForInitializeClass(Handle<mirror::Class> klass, Thread* self,
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800495 ObjectLock<mirror::Class>& lock);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700496 bool ValidateSuperClassDescriptors(Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700497 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700498
Ian Rogers98379392014-02-24 16:53:16 -0800499 bool IsSameDescriptorInDifferentClassContexts(Thread* self, const char* descriptor,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700500 Handle<mirror::ClassLoader> class_loader1,
501 Handle<mirror::ClassLoader> class_loader2)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700502 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700503
Ian Rogers98379392014-02-24 16:53:16 -0800504 bool IsSameMethodSignatureInDifferentClassContexts(Thread* self, mirror::ArtMethod* method,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800505 mirror::Class* klass1,
506 mirror::Class* klass2)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700507 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700508
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700509 bool LinkClass(Thread* self, const char* descriptor, Handle<mirror::Class> klass,
510 Handle<mirror::ObjectArray<mirror::Class>> interfaces,
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700511 mirror::Class** new_class)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700512 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700513
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700514 bool LinkSuperClass(Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700515 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700516
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700517 bool LoadSuperAndInterfaces(Handle<mirror::Class> klass, const DexFile& dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700518 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700519
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700520 bool LinkMethods(Thread* self, Handle<mirror::Class> klass,
521 Handle<mirror::ObjectArray<mirror::Class>> interfaces)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700522 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700523
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700524 bool LinkVirtualMethods(Thread* self, Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700525 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700526
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700527 bool LinkInterfaceMethods(Handle<mirror::Class> klass,
528 Handle<mirror::ObjectArray<mirror::Class>> interfaces)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700529 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700530
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700531 bool LinkStaticFields(Thread* self, Handle<mirror::Class> klass, size_t* class_size)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700532 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700533 bool LinkInstanceFields(Thread* self, Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700534 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700535 bool LinkFields(Thread* self, Handle<mirror::Class> klass, bool is_static, size_t* class_size)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700536 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700537 void LinkCode(Handle<mirror::ArtMethod> method, const OatFile::OatClass* oat_class,
Dmitry Petrochenkof0972a42014-05-16 17:43:39 +0700538 const DexFile& dex_file, uint32_t dex_method_index, uint32_t method_index)
539 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700540 void CreateReferenceInstanceOffsets(Handle<mirror::Class> klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700541 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700542 void CreateReferenceOffsets(Handle<mirror::Class> klass, uint32_t reference_offsets)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700543 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700544
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700545 // For use by ImageWriter to find DexCaches for its roots
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700546 ReaderWriterMutex* DexLock()
547 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) LOCK_RETURNED(dex_lock_) {
548 return &dex_lock_;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700549 }
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700550 size_t GetDexCacheCount() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, dex_lock_) {
551 return dex_caches_.size();
552 }
553 mirror::DexCache* GetDexCache(size_t idx) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, dex_lock_);
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700554
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100555 const OatFile::OatDexFile* FindOpenedOatDexFileForDexFile(const DexFile& dex_file)
Ian Rogers33e95662013-05-20 20:29:14 -0700556 LOCKS_EXCLUDED(dex_lock_)
557 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe833a4852014-05-21 18:46:59 -0700558
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100559 // Find an opened oat dex file that contains dex_location. If oat_location is not nullptr,
560 // the file must have that location, else any oat location is accepted.
561 const OatFile::OatDexFile* FindOpenedOatDexFile(const char* oat_location,
562 const char* dex_location,
563 const uint32_t* dex_location_checksum)
Ian Rogers719d1a32014-03-06 12:13:39 -0800564 LOCKS_EXCLUDED(dex_lock_);
Alex Lighta59dd802014-07-02 16:28:08 -0700565
566 // Will open the oat file directly without relocating, even if we could/should do relocation.
567 const OatFile* FindOatFileFromOatLocation(const std::string& oat_location,
568 std::string* error_msg)
569 LOCKS_EXCLUDED(dex_lock_);
570
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700571 const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700572 LOCKS_EXCLUDED(dex_lock_);
Andreas Gampe833a4852014-05-21 18:46:59 -0700573
Alex Lighta59dd802014-07-02 16:28:08 -0700574 const OatFile* OpenOatFileFromDexLocation(const std::string& dex_location,
575 InstructionSet isa,
576 bool* already_opened,
577 bool* obsolete_file_cleanup_failed,
578 std::vector<std::string>* error_msg)
579 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
580
Alex Light9dcc4572014-08-14 14:16:26 -0700581 const OatFile* GetInterpretedOnlyOat(const std::string& oat_path,
582 InstructionSet isa,
583 std::string* error_msg);
584
Alex Lighta59dd802014-07-02 16:28:08 -0700585 const OatFile* PatchAndRetrieveOat(const std::string& input, const std::string& output,
586 const std::string& image_location, InstructionSet isa,
587 std::string* error_msg)
588 LOCKS_EXCLUDED(Locks::mutator_lock_);
589
590 bool CheckOatFile(const OatFile* oat_file, InstructionSet isa,
591 bool* checksum_verified, std::string* error_msg);
592 int32_t GetRequiredDelta(const OatFile* oat_file, InstructionSet isa);
593
Andreas Gampe833a4852014-05-21 18:46:59 -0700594 // Note: will not register the oat file.
595 const OatFile* FindOatFileInOatLocationForDexFile(const char* dex_location,
596 uint32_t dex_location_checksum,
597 const char* oat_location,
598 std::string* error_msg)
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700599 LOCKS_EXCLUDED(dex_lock_);
Ian Rogerse3359f72013-06-11 15:14:11 -0700600
Andreas Gampe833a4852014-05-21 18:46:59 -0700601 // Creates the oat file from the dex_location to the oat_location. Needs a file descriptor for
602 // the file to be written, which is assumed to be under a lock.
603 const OatFile* CreateOatFileForDexLocation(const char* dex_location,
604 int fd, const char* oat_location,
605 std::vector<std::string>* error_msgs)
606 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
607
608 // Finds an OatFile that contains a DexFile for the given a DexFile location.
609 //
610 // Note 1: this will not check open oat files, which are assumed to be stale when this is run.
611 // Note 2: Does not register the oat file. It is the caller's job to register if the file is to
612 // be kept.
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100613 const OatFile* FindOatFileContainingDexFileFromDexLocation(const char* dex_location,
614 const uint32_t* dex_location_checksum,
Andreas Gampe833a4852014-05-21 18:46:59 -0700615 InstructionSet isa,
Calin Juravlec54aea72014-07-16 14:45:03 +0100616 std::vector<std::string>* error_msgs,
617 bool* obsolete_file_cleanup_failed)
Andreas Gampe833a4852014-05-21 18:46:59 -0700618 LOCKS_EXCLUDED(dex_lock_, Locks::mutator_lock_);
619
Calin Juravle621962a2014-09-02 15:53:55 +0100620 // Verifies:
621 // - that the oat file contains the dex file (with a matching checksum, which may be null if the
622 // file was pre-opted)
623 // - the checksums of the oat file (against the image space)
624 // - the checksum of the dex file against dex_location_checksum
625 // - that the dex file can be opened
626 // Returns true iff all verification succeed.
627 //
628 // The dex_location is the dex location as stored in the oat file header.
629 // (see DexFile::GetDexCanonicalLocation for a description of location conventions)
Alex Lighta59dd802014-07-02 16:28:08 -0700630 bool VerifyOatWithDexFile(const OatFile* oat_file, const char* dex_location,
Calin Juravle621962a2014-09-02 15:53:55 +0100631 const uint32_t* dex_location_checksum,
Alex Lighta59dd802014-07-02 16:28:08 -0700632 std::string* error_msg);
Brian Carlstromfad71432011-10-16 20:25:10 -0700633
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700634 mirror::ArtMethod* CreateProxyConstructor(Thread* self, Handle<mirror::Class> klass,
Brian Carlstromea46f952013-07-30 01:26:50 -0700635 mirror::Class* proxy_class)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700636 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700637 mirror::ArtMethod* CreateProxyMethod(Thread* self, Handle<mirror::Class> klass,
638 Handle<mirror::ArtMethod> prototype)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700639 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Jesse Wilson95caa792011-10-12 18:14:17 -0400640
Andreas Gampe48498592014-09-10 19:48:05 -0700641 // Ensures that methods have the kAccPreverified bit set. We use the kAccPreverfied bit on the
642 // class access flags to determine whether this has been done before.
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700643 void EnsurePreverifiedMethods(Handle<mirror::Class> c)
Andreas Gampe48498592014-09-10 19:48:05 -0700644 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
645
Ian Rogersdbf3be02014-08-29 15:40:08 -0700646 mirror::Class* LookupClassFromTableLocked(const char* descriptor,
647 const mirror::ClassLoader* class_loader,
648 size_t hash)
649 SHARED_LOCKS_REQUIRED(Locks::classlinker_classes_lock_, Locks::mutator_lock_);
650
651 mirror::Class* UpdateClass(const char* descriptor, mirror::Class* klass, size_t hash)
652 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
653 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
654
655 void MoveImageClassesToClassTable() LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
656 LOCKS_EXCLUDED(Locks::classlinker_classes_lock_)
657 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
658 mirror::Class* LookupClassFromImage(const char* descriptor)
659 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
660
661 // EnsureResolved is called to make sure that a class in the class_table_ has been resolved
662 // before returning it to the caller. Its the responsibility of the thread that placed the class
663 // in the table to make it resolved. The thread doing resolution must notify on the class' lock
664 // when resolution has occurred. This happens in mirror::Class::SetStatus. As resolution may
665 // retire a class, the version of the class in the table is returned and this may differ from
666 // the class passed in.
667 mirror::Class* EnsureResolved(Thread* self, const char* descriptor, mirror::Class* klass)
668 WARN_UNUSED SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
669
670 void FixupTemporaryDeclaringClass(mirror::Class* temp_class, mirror::Class* new_class)
671 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
672
Brian Carlstrom4a96b602011-07-26 16:40:23 -0700673 std::vector<const DexFile*> boot_class_path_;
Brian Carlstrom578bbdc2011-07-21 14:07:47 -0700674
Ian Rogers1bf8d4d2013-05-30 00:18:49 -0700675 mutable ReaderWriterMutex dex_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700676 std::vector<size_t> new_dex_cache_roots_ GUARDED_BY(dex_lock_);
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700677 std::vector<GcRoot<mirror::DexCache>> dex_caches_ GUARDED_BY(dex_lock_);
Elliott Hughesf8349362012-06-18 15:00:06 -0700678 std::vector<const OatFile*> oat_files_ GUARDED_BY(dex_lock_);
Brian Carlstrom47d237a2011-10-18 15:08:33 -0700679
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700680
Brian Carlstromaded5f72011-10-07 17:15:04 -0700681 // multimap from a string hash code of a class descriptor to
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800682 // mirror::Class* instances. Results should be compared for a matching
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700683 // Class::descriptor_ and Class::class_loader_.
Mathieu Chartierbad02672014-08-25 13:08:22 -0700684 typedef AllocationTrackingMultiMap<size_t, GcRoot<mirror::Class>, kAllocatorTagClassTable> Table;
Hiroshi Yamauchia91a4bc2014-06-13 16:44:55 -0700685 // This contains strong roots. To enable concurrent root scanning of
686 // the class table, be careful to use a read barrier when accessing this.
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700687 Table class_table_ GUARDED_BY(Locks::classlinker_classes_lock_);
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700688 std::vector<std::pair<size_t, GcRoot<mirror::Class>>> new_class_roots_;
Elliott Hughesf8349362012-06-18 15:00:06 -0700689
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700690 // Do we need to search dex caches to find image classes?
691 bool dex_cache_image_class_lookup_required_;
692 // Number of times we've searched dex caches for a class. After a certain number of misses we move
693 // the classes into the class_table_ to avoid dex cache based searches.
Ian Rogers68b56852014-08-29 20:19:11 -0700694 Atomic<uint32_t> failed_dex_cache_class_lookups_;
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700695
Brian Carlstroma663ea52011-08-19 23:33:41 -0700696 // indexes into class_roots_.
697 // needs to be kept in sync with class_roots_descriptors_.
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700698 enum ClassRoot {
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700699 kJavaLangClass,
700 kJavaLangObject,
Elliott Hughes418d20f2011-09-22 14:00:39 -0700701 kClassArrayClass,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700702 kObjectArrayClass,
703 kJavaLangString,
Mathieu Chartier66f19252012-09-18 08:57:04 -0700704 kJavaLangDexCache,
Elliott Hughesbf61ba32011-10-11 10:53:09 -0700705 kJavaLangRefReference,
Brian Carlstromea46f952013-07-30 01:26:50 -0700706 kJavaLangReflectArtField,
707 kJavaLangReflectArtMethod,
Ian Rogers466bb252011-10-14 03:29:56 -0700708 kJavaLangReflectProxy,
Mathieu Chartier66f19252012-09-18 08:57:04 -0700709 kJavaLangStringArrayClass,
Brian Carlstromea46f952013-07-30 01:26:50 -0700710 kJavaLangReflectArtFieldArrayClass,
711 kJavaLangReflectArtMethodArrayClass,
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700712 kJavaLangClassLoader,
Ian Rogers5167c972012-02-03 10:41:20 -0800713 kJavaLangThrowable,
jeffhao8cd6dda2012-02-22 10:15:34 -0800714 kJavaLangClassNotFoundException,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700715 kJavaLangStackTraceElement,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700716 kPrimitiveBoolean,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700717 kPrimitiveByte,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700718 kPrimitiveChar,
719 kPrimitiveDouble,
720 kPrimitiveFloat,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700721 kPrimitiveInt,
722 kPrimitiveLong,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700723 kPrimitiveShort,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700724 kPrimitiveVoid,
Elliott Hughesd8ddfd52011-08-15 14:32:53 -0700725 kBooleanArrayClass,
726 kByteArrayClass,
727 kCharArrayClass,
728 kDoubleArrayClass,
729 kFloatArrayClass,
730 kIntArrayClass,
731 kLongArrayClass,
732 kShortArrayClass,
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700733 kJavaLangStackTraceElementArrayClass,
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700734 kClassRootsMax,
735 };
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700736 GcRoot<mirror::ObjectArray<mirror::Class>> class_roots_;
Brian Carlstrom913af1b2011-07-23 21:41:13 -0700737
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800738 mirror::Class* GetClassRoot(ClassRoot class_root) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstrom74eb46a2011-08-02 20:10:14 -0700739
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800740 void SetClassRoot(ClassRoot class_root, mirror::Class* klass)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700741 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700742
Elliott Hughes418d20f2011-09-22 14:00:39 -0700743 static const char* class_roots_descriptors_[];
Brian Carlstroma663ea52011-08-19 23:33:41 -0700744
745 const char* GetClassRootDescriptor(ClassRoot class_root) {
746 const char* descriptor = class_roots_descriptors_[class_root];
747 CHECK(descriptor != NULL);
748 return descriptor;
749 }
750
Ian Rogers98379392014-02-24 16:53:16 -0800751 // The interface table used by all arrays.
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700752 GcRoot<mirror::IfTable> array_iftable_;
Carl Shapiro565f5072011-07-10 13:39:43 -0700753
Ian Rogers98379392014-02-24 16:53:16 -0800754 // A cache of the last FindArrayClass results. The cache serves to avoid creating array class
755 // descriptors for the sake of performing FindClass.
756 static constexpr size_t kFindArrayCacheSize = 16;
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -0700757 GcRoot<mirror::Class> find_array_class_cache_[kFindArrayCacheSize];
Ian Rogers98379392014-02-24 16:53:16 -0800758 size_t find_array_class_cache_next_victim_;
759
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700760 bool init_done_;
Mathieu Chartier893263b2014-03-04 11:07:42 -0800761 bool log_new_dex_caches_roots_ GUARDED_BY(dex_lock_);
762 bool log_new_class_table_roots_ GUARDED_BY(Locks::classlinker_classes_lock_);
Brian Carlstrom75cb3b42011-07-28 02:13:36 -0700763
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700764 InternTable* intern_table_;
765
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700766 // Trampolines within the image the bounce to runtime entrypoints. Done so that there is a single
767 // patch point within the image. TODO: make these proper relocations.
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700768 const void* portable_resolution_trampoline_;
769 const void* quick_resolution_trampoline_;
Jeff Hao88474b42013-10-23 16:24:40 -0700770 const void* portable_imt_conflict_trampoline_;
771 const void* quick_imt_conflict_trampoline_;
Andreas Gampe2da88232014-02-27 12:26:20 -0800772 const void* quick_generic_jni_trampoline_;
Vladimir Marko8a630572014-04-09 18:45:35 +0100773 const void* quick_to_interpreter_bridge_trampoline_;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700774
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700775 friend class ImageWriter; // for GetClassRoots
Alex Lighta59dd802014-07-02 16:28:08 -0700776 friend class ImageDumper; // for FindOpenedOatFileFromOatLocation
777 friend class ElfPatcher; // for FindOpenedOatFileForDexFile & FindOpenedOatFileFromOatLocation
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +0100778 friend class NoDex2OatTest; // for FindOpenedOatFileForDexFile
Alex Light9dcc4572014-08-14 14:16:26 -0700779 friend class NoPatchoatTest; // for FindOpenedOatFileForDexFile
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800780 FRIEND_TEST(ClassLinkerTest, ClassRootDescriptors);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800781 FRIEND_TEST(mirror::DexCacheTest, Open);
Brian Carlstromae826982011-11-09 01:33:42 -0800782 FRIEND_TEST(ExceptionTest, FindExceptionHandler);
783 FRIEND_TEST(ObjectTest, AllocObjectArray);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700784 DISALLOW_COPY_AND_ASSIGN(ClassLinker);
785};
786
787} // namespace art
788
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700789#endif // ART_RUNTIME_CLASS_LINKER_H_