blob: 8d46812dae52c75d9bcc7c10a610f616f095d09a [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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
Mathieu Chartierc645f1d2014-03-06 18:11:53 -080017#include "method_verifier-inl.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Elliott Hughes1f359b02011-07-17 14:27:17 -070019#include <iostream>
20
Elliott Hughes07ed66b2012-12-12 18:34:25 -080021#include "base/logging.h"
Ian Rogers637c65b2013-05-31 11:46:00 -070022#include "base/mutex-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070023#include "class_linker.h"
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000024#include "compiler_callbacks.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070025#include "dex_file-inl.h"
Ian Rogersd0583802013-06-01 10:51:46 -070026#include "dex_instruction-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070027#include "dex_instruction_visitor.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070028#include "gc/accounting/card_table-inl.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080029#include "indenter.h"
Ian Rogers84fa0742011-10-25 18:13:30 -070030#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070031#include "leb128.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070032#include "mirror/art_field-inl.h"
33#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034#include "mirror/class.h"
35#include "mirror/class-inl.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070036#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/object-inl.h"
38#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080039#include "object_utils.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070040#include "register_line-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070041#include "runtime.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070042#include "scoped_thread_state_change.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070043#include "handle_scope-inl.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080044#include "verifier/dex_gc_map.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070045
46namespace art {
Ian Rogersd81871c2011-10-03 13:57:23 -070047namespace verifier {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070048
Ian Rogers2c8a8572011-10-24 17:11:36 -070049static const bool gDebugVerify = false;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -070050// TODO: Add a constant to method_verifier to turn on verbose logging?
Ian Rogers2c8a8572011-10-24 17:11:36 -070051
Ian Rogers7b3ddd22013-02-21 15:19:52 -080052void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InstructionFlags* flags,
Ian Rogersd81871c2011-10-03 13:57:23 -070053 uint32_t insns_size, uint16_t registers_size,
Ian Rogers776ac1f2012-04-13 23:36:36 -070054 MethodVerifier* verifier) {
Ian Rogersd81871c2011-10-03 13:57:23 -070055 DCHECK_GT(insns_size, 0U);
Ian Rogersd0fbd852013-09-24 18:17:04 -070056 register_lines_.reset(new RegisterLine*[insns_size]());
57 size_ = insns_size;
Ian Rogersd81871c2011-10-03 13:57:23 -070058 for (uint32_t i = 0; i < insns_size; i++) {
59 bool interesting = false;
60 switch (mode) {
61 case kTrackRegsAll:
62 interesting = flags[i].IsOpcode();
63 break;
Sameer Abu Asal02c42232013-04-30 12:09:45 -070064 case kTrackCompilerInterestPoints:
Brian Carlstrom02c8cc62013-07-18 15:54:44 -070065 interesting = flags[i].IsCompileTimeInfoPoint() || flags[i].IsBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -070066 break;
67 case kTrackRegsBranches:
68 interesting = flags[i].IsBranchTarget();
69 break;
70 default:
71 break;
72 }
73 if (interesting) {
Ian Rogersd0fbd852013-09-24 18:17:04 -070074 register_lines_[i] = RegisterLine::Create(registers_size, verifier);
75 }
76 }
77}
78
79PcToRegisterLineTable::~PcToRegisterLineTable() {
80 for (size_t i = 0; i < size_; i++) {
81 delete register_lines_[i];
82 if (kIsDebugBuild) {
83 register_lines_[i] = nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -070084 }
85 }
86}
87
Ian Rogersef7d42f2014-01-06 12:55:46 -080088MethodVerifier::FailureKind MethodVerifier::VerifyClass(mirror::Class* klass,
Ian Rogers8b2c0b92013-09-19 02:56:49 -070089 bool allow_soft_failures,
90 std::string* error) {
jeffhaobdb76512011-09-07 11:43:16 -070091 if (klass->IsVerified()) {
jeffhaof1e6b7c2012-06-05 18:33:30 -070092 return kNoFailure;
jeffhaobdb76512011-09-07 11:43:16 -070093 }
Jeff Hao2d7e5aa2013-12-13 17:39:59 -080094 bool early_failure = false;
95 std::string failure_message;
Mathieu Chartierf8322842014-05-16 10:59:25 -070096 const DexFile& dex_file = klass->GetDexFile();
97 const DexFile::ClassDef* class_def = klass->GetClassDef();
Jeff Hao2d7e5aa2013-12-13 17:39:59 -080098 mirror::Class* super = klass->GetSuperClass();
Mathieu Chartierf8322842014-05-16 10:59:25 -070099 if (super == NULL && "Ljava/lang/Object;" != klass->GetDescriptor()) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800100 early_failure = true;
101 failure_message = " that has no super class";
102 } else if (super != NULL && super->IsFinal()) {
103 early_failure = true;
104 failure_message = " that attempts to sub-class final class " + PrettyDescriptor(super);
105 } else if (class_def == NULL) {
106 early_failure = true;
107 failure_message = " that isn't present in dex file " + dex_file.GetLocation();
108 }
109 if (early_failure) {
110 *error = "Verifier rejected class " + PrettyDescriptor(klass) + failure_message;
111 if (Runtime::Current()->IsCompiler()) {
112 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000113 Runtime::Current()->GetCompilerCallbacks()->ClassRejected(ref);
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800114 }
jeffhaof1e6b7c2012-06-05 18:33:30 -0700115 return kHardFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700116 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700117 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierf8322842014-05-16 10:59:25 -0700118 Handle<mirror::DexCache> dex_cache(hs.NewHandle(klass->GetDexCache()));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700119 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(klass->GetClassLoader()));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700120 return VerifyClass(&dex_file, dex_cache, class_loader, class_def, allow_soft_failures, error);
Shih-wei Liao371814f2011-10-27 16:52:10 -0700121}
122
Ian Rogers365c1022012-06-22 15:05:28 -0700123MethodVerifier::FailureKind MethodVerifier::VerifyClass(const DexFile* dex_file,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700124 Handle<mirror::DexCache> dex_cache,
125 Handle<mirror::ClassLoader> class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700126 const DexFile::ClassDef* class_def,
127 bool allow_soft_failures,
128 std::string* error) {
129 DCHECK(class_def != nullptr);
130 const byte* class_data = dex_file->GetClassData(*class_def);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700131 if (class_data == NULL) {
132 // empty class, probably a marker interface
jeffhaof1e6b7c2012-06-05 18:33:30 -0700133 return kNoFailure;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700134 }
jeffhaof56197c2012-03-05 18:01:54 -0800135 ClassDataItemIterator it(*dex_file, class_data);
136 while (it.HasNextStaticField() || it.HasNextInstanceField()) {
137 it.Next();
138 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700139 size_t error_count = 0;
jeffhaof1e6b7c2012-06-05 18:33:30 -0700140 bool hard_fail = false;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700141 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhao9b0b1882012-10-01 16:51:22 -0700142 int64_t previous_direct_method_idx = -1;
jeffhaof56197c2012-03-05 18:01:54 -0800143 while (it.HasNextDirectMethod()) {
144 uint32_t method_idx = it.GetMemberIndex();
jeffhao9b0b1882012-10-01 16:51:22 -0700145 if (method_idx == previous_direct_method_idx) {
146 // smali can create dex files with two encoded_methods sharing the same method_idx
147 // http://code.google.com/p/smali/issues/detail?id=119
148 it.Next();
149 continue;
150 }
151 previous_direct_method_idx = method_idx;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700152 InvokeType type = it.GetMethodInvokeType(*class_def);
Brian Carlstromea46f952013-07-30 01:26:50 -0700153 mirror::ArtMethod* method =
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700154 linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader,
155 NullHandle<mirror::ArtMethod>(), type);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700156 if (method == NULL) {
157 DCHECK(Thread::Current()->IsExceptionPending());
158 // We couldn't resolve the method, but continue regardless.
159 Thread::Current()->ClearException();
160 }
Brian Carlstrom93c33962013-07-26 10:37:43 -0700161 MethodVerifier::FailureKind result = VerifyMethod(method_idx,
162 dex_file,
163 dex_cache,
164 class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700165 class_def,
Brian Carlstrom93c33962013-07-26 10:37:43 -0700166 it.GetMethodCodeItem(),
167 method,
168 it.GetMemberAccessFlags(),
Ian Rogers46960fe2014-05-23 10:43:43 -0700169 allow_soft_failures,
170 false);
jeffhaof1e6b7c2012-06-05 18:33:30 -0700171 if (result != kNoFailure) {
172 if (result == kHardFailure) {
173 hard_fail = true;
174 if (error_count > 0) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700175 *error += "\n";
jeffhaof1e6b7c2012-06-05 18:33:30 -0700176 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700177 *error = "Verifier rejected class ";
178 *error += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
179 *error += " due to bad method ";
180 *error += PrettyMethod(method_idx, *dex_file);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700181 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700182 ++error_count;
jeffhaof56197c2012-03-05 18:01:54 -0800183 }
184 it.Next();
185 }
jeffhao9b0b1882012-10-01 16:51:22 -0700186 int64_t previous_virtual_method_idx = -1;
jeffhaof56197c2012-03-05 18:01:54 -0800187 while (it.HasNextVirtualMethod()) {
188 uint32_t method_idx = it.GetMemberIndex();
jeffhao9b0b1882012-10-01 16:51:22 -0700189 if (method_idx == previous_virtual_method_idx) {
190 // smali can create dex files with two encoded_methods sharing the same method_idx
191 // http://code.google.com/p/smali/issues/detail?id=119
192 it.Next();
193 continue;
194 }
195 previous_virtual_method_idx = method_idx;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700196 InvokeType type = it.GetMethodInvokeType(*class_def);
Brian Carlstromea46f952013-07-30 01:26:50 -0700197 mirror::ArtMethod* method =
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700198 linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader,
199 NullHandle<mirror::ArtMethod>(), type);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700200 if (method == NULL) {
201 DCHECK(Thread::Current()->IsExceptionPending());
202 // We couldn't resolve the method, but continue regardless.
203 Thread::Current()->ClearException();
204 }
Brian Carlstrom93c33962013-07-26 10:37:43 -0700205 MethodVerifier::FailureKind result = VerifyMethod(method_idx,
206 dex_file,
207 dex_cache,
208 class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700209 class_def,
Brian Carlstrom93c33962013-07-26 10:37:43 -0700210 it.GetMethodCodeItem(),
211 method,
212 it.GetMemberAccessFlags(),
Ian Rogers46960fe2014-05-23 10:43:43 -0700213 allow_soft_failures,
214 false);
jeffhaof1e6b7c2012-06-05 18:33:30 -0700215 if (result != kNoFailure) {
216 if (result == kHardFailure) {
217 hard_fail = true;
218 if (error_count > 0) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700219 *error += "\n";
jeffhaof1e6b7c2012-06-05 18:33:30 -0700220 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700221 *error = "Verifier rejected class ";
222 *error += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
223 *error += " due to bad method ";
224 *error += PrettyMethod(method_idx, *dex_file);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700225 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700226 ++error_count;
jeffhaof56197c2012-03-05 18:01:54 -0800227 }
228 it.Next();
229 }
jeffhaof1e6b7c2012-06-05 18:33:30 -0700230 if (error_count == 0) {
231 return kNoFailure;
232 } else {
233 return hard_fail ? kHardFailure : kSoftFailure;
234 }
jeffhaof56197c2012-03-05 18:01:54 -0800235}
236
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800237MethodVerifier::FailureKind MethodVerifier::VerifyMethod(uint32_t method_idx,
238 const DexFile* dex_file,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700239 Handle<mirror::DexCache> dex_cache,
240 Handle<mirror::ClassLoader> class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700241 const DexFile::ClassDef* class_def,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800242 const DexFile::CodeItem* code_item,
Brian Carlstromea46f952013-07-30 01:26:50 -0700243 mirror::ArtMethod* method,
Jeff Haoee988952013-04-16 14:23:47 -0700244 uint32_t method_access_flags,
Ian Rogers46960fe2014-05-23 10:43:43 -0700245 bool allow_soft_failures,
246 bool need_precise_constants) {
Ian Rogersc8982582012-09-07 16:53:25 -0700247 MethodVerifier::FailureKind result = kNoFailure;
248 uint64_t start_ns = NanoTime();
249
Ian Rogers46960fe2014-05-23 10:43:43 -0700250 MethodVerifier verifier(dex_file, &dex_cache, &class_loader, class_def, code_item,
251 method_idx, method, method_access_flags, true, allow_soft_failures,
252 need_precise_constants);
253 if (verifier.Verify()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700254 // Verification completed, however failures may be pending that didn't cause the verification
255 // to hard fail.
Ian Rogers46960fe2014-05-23 10:43:43 -0700256 CHECK(!verifier.have_pending_hard_failure_);
257 if (verifier.failures_.size() != 0) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700258 if (VLOG_IS_ON(verifier)) {
Ian Rogers46960fe2014-05-23 10:43:43 -0700259 verifier.DumpFailures(VLOG_STREAM(verifier) << "Soft verification failures in "
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700260 << PrettyMethod(method_idx, *dex_file) << "\n");
261 }
Ian Rogersc8982582012-09-07 16:53:25 -0700262 result = kSoftFailure;
jeffhaof56197c2012-03-05 18:01:54 -0800263 }
264 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700265 // Bad method data.
Ian Rogers46960fe2014-05-23 10:43:43 -0700266 CHECK_NE(verifier.failures_.size(), 0U);
267 CHECK(verifier.have_pending_hard_failure_);
268 verifier.DumpFailures(LOG(INFO) << "Verification error in "
Elliott Hughesc073b072012-05-24 19:29:17 -0700269 << PrettyMethod(method_idx, *dex_file) << "\n");
jeffhaof56197c2012-03-05 18:01:54 -0800270 if (gDebugVerify) {
Ian Rogers46960fe2014-05-23 10:43:43 -0700271 std::cout << "\n" << verifier.info_messages_.str();
272 verifier.Dump(std::cout);
jeffhaof56197c2012-03-05 18:01:54 -0800273 }
Ian Rogersc8982582012-09-07 16:53:25 -0700274 result = kHardFailure;
jeffhaof56197c2012-03-05 18:01:54 -0800275 }
Ian Rogersc8982582012-09-07 16:53:25 -0700276 uint64_t duration_ns = NanoTime() - start_ns;
277 if (duration_ns > MsToNs(100)) {
278 LOG(WARNING) << "Verification of " << PrettyMethod(method_idx, *dex_file)
279 << " took " << PrettyDuration(duration_ns);
280 }
281 return result;
jeffhaof56197c2012-03-05 18:01:54 -0800282}
283
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800284void MethodVerifier::VerifyMethodAndDump(std::ostream& os, uint32_t dex_method_idx,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700285 const DexFile* dex_file,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700286 Handle<mirror::DexCache> dex_cache,
287 Handle<mirror::ClassLoader> class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700288 const DexFile::ClassDef* class_def,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800289 const DexFile::CodeItem* code_item,
Brian Carlstromea46f952013-07-30 01:26:50 -0700290 mirror::ArtMethod* method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800291 uint32_t method_access_flags) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700292 MethodVerifier verifier(dex_file, &dex_cache, &class_loader, class_def, code_item,
Ian Rogers46960fe2014-05-23 10:43:43 -0700293 dex_method_idx, method, method_access_flags, true, true, true);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700294 verifier.Verify();
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800295 verifier.DumpFailures(os);
296 os << verifier.info_messages_.str();
297 verifier.Dump(os);
298}
299
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700300MethodVerifier::MethodVerifier(const DexFile* dex_file, Handle<mirror::DexCache>* dex_cache,
301 Handle<mirror::ClassLoader>* class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700302 const DexFile::ClassDef* class_def,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700303 const DexFile::CodeItem* code_item, uint32_t dex_method_idx,
304 mirror::ArtMethod* method, uint32_t method_access_flags,
Ian Rogers46960fe2014-05-23 10:43:43 -0700305 bool can_load_classes, bool allow_soft_failures,
306 bool need_precise_constants)
Elliott Hughes80537bb2013-01-04 16:37:26 -0800307 : reg_types_(can_load_classes),
308 work_insn_idx_(-1),
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800309 dex_method_idx_(dex_method_idx),
Ian Rogers637c65b2013-05-31 11:46:00 -0700310 mirror_method_(method),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700311 method_access_flags_(method_access_flags),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700312 return_type_(nullptr),
jeffhaof56197c2012-03-05 18:01:54 -0800313 dex_file_(dex_file),
314 dex_cache_(dex_cache),
315 class_loader_(class_loader),
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700316 class_def_(class_def),
jeffhaof56197c2012-03-05 18:01:54 -0800317 code_item_(code_item),
Ian Rogers637c65b2013-05-31 11:46:00 -0700318 declaring_class_(NULL),
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700319 interesting_dex_pc_(-1),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700320 monitor_enter_dex_pcs_(nullptr),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700321 have_pending_hard_failure_(false),
jeffhaofaf459e2012-08-31 15:32:47 -0700322 have_pending_runtime_throw_failure_(false),
jeffhaof56197c2012-03-05 18:01:54 -0800323 new_instance_count_(0),
Elliott Hughes80537bb2013-01-04 16:37:26 -0800324 monitor_enter_count_(0),
Jeff Haoee988952013-04-16 14:23:47 -0700325 can_load_classes_(can_load_classes),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200326 allow_soft_failures_(allow_soft_failures),
Ian Rogers46960fe2014-05-23 10:43:43 -0700327 need_precise_constants_(need_precise_constants),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200328 has_check_casts_(false),
329 has_virtual_or_interface_invokes_(false) {
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800330 Runtime::Current()->AddMethodVerifier(this);
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700331 DCHECK(class_def != nullptr);
jeffhaof56197c2012-03-05 18:01:54 -0800332}
333
Mathieu Chartier590fee92013-09-13 13:46:47 -0700334MethodVerifier::~MethodVerifier() {
Mathieu Chartierc528dba2013-11-26 12:00:11 -0800335 Runtime::Current()->RemoveMethodVerifier(this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700336 STLDeleteElements(&failure_messages_);
337}
338
Brian Carlstromea46f952013-07-30 01:26:50 -0700339void MethodVerifier::FindLocksAtDexPc(mirror::ArtMethod* m, uint32_t dex_pc,
Ian Rogers46960fe2014-05-23 10:43:43 -0700340 std::vector<uint32_t>* monitor_enter_dex_pcs) {
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700341 MethodHelper mh(m);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700342 StackHandleScope<2> hs(Thread::Current());
343 Handle<mirror::DexCache> dex_cache(hs.NewHandle(mh.GetDexCache()));
344 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(mh.GetClassLoader()));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700345 MethodVerifier verifier(&mh.GetDexFile(), &dex_cache, &class_loader, &mh.GetClassDef(),
346 mh.GetCodeItem(), m->GetDexMethodIndex(), m, m->GetAccessFlags(), false,
Ian Rogers46960fe2014-05-23 10:43:43 -0700347 true, false);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700348 verifier.interesting_dex_pc_ = dex_pc;
Ian Rogers46960fe2014-05-23 10:43:43 -0700349 verifier.monitor_enter_dex_pcs_ = monitor_enter_dex_pcs;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700350 verifier.FindLocksAtDexPc();
351}
352
353void MethodVerifier::FindLocksAtDexPc() {
354 CHECK(monitor_enter_dex_pcs_ != NULL);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700355 CHECK(code_item_ != NULL); // This only makes sense for methods with code.
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700356
357 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
358 // verification. In practice, the phase we want relies on data structures set up by all the
359 // earlier passes, so we just run the full method verification and bail out early when we've
360 // got what we wanted.
361 Verify();
362}
363
Brian Carlstromea46f952013-07-30 01:26:50 -0700364mirror::ArtField* MethodVerifier::FindAccessedFieldAtDexPc(mirror::ArtMethod* m,
Ian Rogers46960fe2014-05-23 10:43:43 -0700365 uint32_t dex_pc) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200366 MethodHelper mh(m);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700367 StackHandleScope<2> hs(Thread::Current());
368 Handle<mirror::DexCache> dex_cache(hs.NewHandle(mh.GetDexCache()));
369 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(mh.GetClassLoader()));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700370 MethodVerifier verifier(&mh.GetDexFile(), &dex_cache, &class_loader, &mh.GetClassDef(),
Ian Rogers9bc54402014-04-17 16:40:01 -0700371 mh.GetCodeItem(), m->GetDexMethodIndex(), m, m->GetAccessFlags(), true,
Ian Rogers46960fe2014-05-23 10:43:43 -0700372 true, false);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200373 return verifier.FindAccessedFieldAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200374}
375
Brian Carlstromea46f952013-07-30 01:26:50 -0700376mirror::ArtField* MethodVerifier::FindAccessedFieldAtDexPc(uint32_t dex_pc) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700377 CHECK(code_item_ != NULL); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200378
379 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
380 // verification. In practice, the phase we want relies on data structures set up by all the
381 // earlier passes, so we just run the full method verification and bail out early when we've
382 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200383 bool success = Verify();
384 if (!success) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700385 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200386 }
387 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
388 if (register_line == NULL) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700389 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200390 }
391 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
392 return GetQuickFieldAccess(inst, register_line);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200393}
394
Brian Carlstromea46f952013-07-30 01:26:50 -0700395mirror::ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(mirror::ArtMethod* m,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700396 uint32_t dex_pc) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200397 MethodHelper mh(m);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700398 StackHandleScope<2> hs(Thread::Current());
399 Handle<mirror::DexCache> dex_cache(hs.NewHandle(mh.GetDexCache()));
400 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(mh.GetClassLoader()));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700401 MethodVerifier verifier(&mh.GetDexFile(), &dex_cache, &class_loader, &mh.GetClassDef(),
Andreas Gampe63981562014-04-17 12:28:43 -0700402 mh.GetCodeItem(), m->GetDexMethodIndex(), m, m->GetAccessFlags(), true,
Ian Rogers46960fe2014-05-23 10:43:43 -0700403 true, false);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200404 return verifier.FindInvokedMethodAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200405}
406
Brian Carlstromea46f952013-07-30 01:26:50 -0700407mirror::ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(uint32_t dex_pc) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700408 CHECK(code_item_ != NULL); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200409
410 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
411 // verification. In practice, the phase we want relies on data structures set up by all the
412 // earlier passes, so we just run the full method verification and bail out early when we've
413 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200414 bool success = Verify();
415 if (!success) {
416 return NULL;
417 }
418 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
419 if (register_line == NULL) {
420 return NULL;
421 }
422 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
423 const bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
424 return GetQuickInvokedMethod(inst, register_line, is_range);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200425}
426
Ian Rogersad0b3a32012-04-16 14:50:24 -0700427bool MethodVerifier::Verify() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700428 // If there aren't any instructions, make sure that's expected, then exit successfully.
429 if (code_item_ == NULL) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700430 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) {
jeffhaod5347e02012-03-22 17:25:05 -0700431 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "zero-length code in concrete non-native method";
jeffhaobdb76512011-09-07 11:43:16 -0700432 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -0700433 } else {
434 return true;
jeffhaobdb76512011-09-07 11:43:16 -0700435 }
jeffhaobdb76512011-09-07 11:43:16 -0700436 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700437 // Sanity-check the register counts. ins + locals = registers, so make sure that ins <= registers.
438 if (code_item_->ins_size_ > code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700439 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad register counts (ins=" << code_item_->ins_size_
440 << " regs=" << code_item_->registers_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700441 return false;
jeffhaobdb76512011-09-07 11:43:16 -0700442 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700443 // Allocate and initialize an array to hold instruction data.
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800444 insn_flags_.reset(new InstructionFlags[code_item_->insns_size_in_code_units_]());
Ian Rogersd81871c2011-10-03 13:57:23 -0700445 // Run through the instructions and see if the width checks out.
446 bool result = ComputeWidthsAndCountOps();
447 // Flag instructions guarded by a "try" block and check exception handlers.
448 result = result && ScanTryCatchBlocks();
449 // Perform static instruction verification.
450 result = result && VerifyInstructions();
Ian Rogersad0b3a32012-04-16 14:50:24 -0700451 // Perform code-flow analysis and return.
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000452 result = result && VerifyCodeFlow();
453 // Compute information for compiler.
454 if (result && Runtime::Current()->IsCompiler()) {
455 result = Runtime::Current()->GetCompilerCallbacks()->MethodVerified(this);
456 }
457 return result;
jeffhaoba5ebb92011-08-25 17:24:37 -0700458}
459
Ian Rogers776ac1f2012-04-13 23:36:36 -0700460std::ostream& MethodVerifier::Fail(VerifyError error) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700461 switch (error) {
462 case VERIFY_ERROR_NO_CLASS:
463 case VERIFY_ERROR_NO_FIELD:
464 case VERIFY_ERROR_NO_METHOD:
465 case VERIFY_ERROR_ACCESS_CLASS:
466 case VERIFY_ERROR_ACCESS_FIELD:
467 case VERIFY_ERROR_ACCESS_METHOD:
Ian Rogers08f753d2012-08-24 14:35:25 -0700468 case VERIFY_ERROR_INSTANTIATION:
469 case VERIFY_ERROR_CLASS_CHANGE:
Elliott Hughes4993bbc2013-01-10 15:41:25 -0800470 if (Runtime::Current()->IsCompiler() || !can_load_classes_) {
jeffhaofaf459e2012-08-31 15:32:47 -0700471 // If we're optimistically running verification at compile time, turn NO_xxx, ACCESS_xxx,
472 // class change and instantiation errors into soft verification errors so that we re-verify
473 // at runtime. We may fail to find or to agree on access because of not yet available class
474 // loaders, or class loaders that will differ at runtime. In these cases, we don't want to
475 // affect the soundness of the code being compiled. Instead, the generated code runs "slow
476 // paths" that dynamically perform the verification and cause the behavior to be that akin
477 // to an interpreter.
478 error = VERIFY_ERROR_BAD_CLASS_SOFT;
479 } else {
Jeff Haoa3faaf42013-09-03 19:07:00 -0700480 // If we fail again at runtime, mark that this instruction would throw and force this
481 // method to be executed using the interpreter with checks.
jeffhaofaf459e2012-08-31 15:32:47 -0700482 have_pending_runtime_throw_failure_ = true;
483 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700484 break;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700485 // Indication that verification should be retried at runtime.
486 case VERIFY_ERROR_BAD_CLASS_SOFT:
Jeff Haoee988952013-04-16 14:23:47 -0700487 if (!allow_soft_failures_) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700488 have_pending_hard_failure_ = true;
489 }
490 break;
jeffhaod5347e02012-03-22 17:25:05 -0700491 // Hard verification failures at compile time will still fail at runtime, so the class is
492 // marked as rejected to prevent it from being compiled.
Ian Rogersad0b3a32012-04-16 14:50:24 -0700493 case VERIFY_ERROR_BAD_CLASS_HARD: {
494 if (Runtime::Current()->IsCompiler()) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700495 ClassReference ref(dex_file_, dex_file_->GetIndexForClassDef(*class_def_));
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000496 Runtime::Current()->GetCompilerCallbacks()->ClassRejected(ref);
jeffhaod1224c72012-02-29 13:43:08 -0800497 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700498 have_pending_hard_failure_ = true;
499 break;
Ian Rogers47a05882012-02-03 12:23:33 -0800500 }
501 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700502 failures_.push_back(error);
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800503 std::string location(StringPrintf("%s: [0x%X]", PrettyMethod(dex_method_idx_, *dex_file_).c_str(),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700504 work_insn_idx_));
505 std::ostringstream* failure_message = new std::ostringstream(location);
506 failure_messages_.push_back(failure_message);
507 return *failure_message;
508}
509
Ian Rogers576ca0c2014-06-06 15:58:22 -0700510std::ostream& MethodVerifier::LogVerifyInfo() {
511 return info_messages_ << "VFY: " << PrettyMethod(dex_method_idx_, *dex_file_)
512 << '[' << reinterpret_cast<void*>(work_insn_idx_) << "] : ";
513}
514
Ian Rogersad0b3a32012-04-16 14:50:24 -0700515void MethodVerifier::PrependToLastFailMessage(std::string prepend) {
516 size_t failure_num = failure_messages_.size();
517 DCHECK_NE(failure_num, 0U);
518 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
519 prepend += last_fail_message->str();
520 failure_messages_[failure_num - 1] = new std::ostringstream(prepend);
521 delete last_fail_message;
522}
523
524void MethodVerifier::AppendToLastFailMessage(std::string append) {
525 size_t failure_num = failure_messages_.size();
526 DCHECK_NE(failure_num, 0U);
527 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
528 (*last_fail_message) << append;
Ian Rogers47a05882012-02-03 12:23:33 -0800529}
530
Ian Rogers776ac1f2012-04-13 23:36:36 -0700531bool MethodVerifier::ComputeWidthsAndCountOps() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700532 const uint16_t* insns = code_item_->insns_;
533 size_t insns_size = code_item_->insns_size_in_code_units_;
534 const Instruction* inst = Instruction::At(insns);
jeffhaobdb76512011-09-07 11:43:16 -0700535 size_t new_instance_count = 0;
536 size_t monitor_enter_count = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -0700537 size_t dex_pc = 0;
jeffhaobdb76512011-09-07 11:43:16 -0700538
Ian Rogersd81871c2011-10-03 13:57:23 -0700539 while (dex_pc < insns_size) {
jeffhaobdb76512011-09-07 11:43:16 -0700540 Instruction::Code opcode = inst->Opcode();
Ian Rogersa9a82542013-10-04 11:17:26 -0700541 switch (opcode) {
542 case Instruction::APUT_OBJECT:
543 case Instruction::CHECK_CAST:
544 has_check_casts_ = true;
545 break;
546 case Instruction::INVOKE_VIRTUAL:
547 case Instruction::INVOKE_VIRTUAL_RANGE:
548 case Instruction::INVOKE_INTERFACE:
549 case Instruction::INVOKE_INTERFACE_RANGE:
550 has_virtual_or_interface_invokes_ = true;
551 break;
552 case Instruction::MONITOR_ENTER:
553 monitor_enter_count++;
554 break;
555 case Instruction::NEW_INSTANCE:
556 new_instance_count++;
557 break;
558 default:
559 break;
jeffhaobdb76512011-09-07 11:43:16 -0700560 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700561 size_t inst_size = inst->SizeInCodeUnits();
562 insn_flags_[dex_pc].SetLengthInCodeUnits(inst_size);
563 dex_pc += inst_size;
jeffhaobdb76512011-09-07 11:43:16 -0700564 inst = inst->Next();
565 }
566
Ian Rogersd81871c2011-10-03 13:57:23 -0700567 if (dex_pc != insns_size) {
jeffhaod5347e02012-03-22 17:25:05 -0700568 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "code did not end where expected ("
569 << dex_pc << " vs. " << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700570 return false;
571 }
572
Ian Rogersd81871c2011-10-03 13:57:23 -0700573 new_instance_count_ = new_instance_count;
574 monitor_enter_count_ = monitor_enter_count;
jeffhaobdb76512011-09-07 11:43:16 -0700575 return true;
576}
577
Ian Rogers776ac1f2012-04-13 23:36:36 -0700578bool MethodVerifier::ScanTryCatchBlocks() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700579 uint32_t tries_size = code_item_->tries_size_;
jeffhaobdb76512011-09-07 11:43:16 -0700580 if (tries_size == 0) {
581 return true;
582 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700583 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Ian Rogers0571d352011-11-03 19:51:38 -0700584 const DexFile::TryItem* tries = DexFile::GetTryItems(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -0700585
586 for (uint32_t idx = 0; idx < tries_size; idx++) {
587 const DexFile::TryItem* try_item = &tries[idx];
588 uint32_t start = try_item->start_addr_;
589 uint32_t end = start + try_item->insn_count_;
jeffhaobdb76512011-09-07 11:43:16 -0700590 if ((start >= end) || (start >= insns_size) || (end > insns_size)) {
jeffhaod5347e02012-03-22 17:25:05 -0700591 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad exception entry: startAddr=" << start
592 << " endAddr=" << end << " (size=" << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700593 return false;
594 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700595 if (!insn_flags_[start].IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -0700596 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
597 << "'try' block starts inside an instruction (" << start << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700598 return false;
599 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700600 for (uint32_t dex_pc = start; dex_pc < end;
601 dex_pc += insn_flags_[dex_pc].GetLengthInCodeUnits()) {
602 insn_flags_[dex_pc].SetInTry();
jeffhaobdb76512011-09-07 11:43:16 -0700603 }
604 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800605 // Iterate over each of the handlers to verify target addresses.
Ian Rogers0571d352011-11-03 19:51:38 -0700606 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -0700607 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
Ian Rogers28ad40d2011-10-27 15:19:26 -0700608 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhaobdb76512011-09-07 11:43:16 -0700609 for (uint32_t idx = 0; idx < handlers_size; idx++) {
Ian Rogers0571d352011-11-03 19:51:38 -0700610 CatchHandlerIterator iterator(handlers_ptr);
611 for (; iterator.HasNext(); iterator.Next()) {
612 uint32_t dex_pc= iterator.GetHandlerAddress();
Ian Rogersd81871c2011-10-03 13:57:23 -0700613 if (!insn_flags_[dex_pc].IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -0700614 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
615 << "exception handler starts at bad address (" << dex_pc << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700616 return false;
617 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700618 insn_flags_[dex_pc].SetBranchTarget();
Ian Rogers28ad40d2011-10-27 15:19:26 -0700619 // Ensure exception types are resolved so that they don't need resolution to be delivered,
620 // unresolved exception types will be ignored by exception delivery
Ian Rogers0571d352011-11-03 19:51:38 -0700621 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800622 mirror::Class* exception_type = linker->ResolveType(*dex_file_,
623 iterator.GetHandlerTypeIndex(),
Mathieu Chartier590fee92013-09-13 13:46:47 -0700624 *dex_cache_, *class_loader_);
Ian Rogers28ad40d2011-10-27 15:19:26 -0700625 if (exception_type == NULL) {
626 DCHECK(Thread::Current()->IsExceptionPending());
627 Thread::Current()->ClearException();
628 }
629 }
jeffhaobdb76512011-09-07 11:43:16 -0700630 }
Ian Rogers0571d352011-11-03 19:51:38 -0700631 handlers_ptr = iterator.EndDataPointer();
jeffhaobdb76512011-09-07 11:43:16 -0700632 }
jeffhaobdb76512011-09-07 11:43:16 -0700633 return true;
634}
635
Ian Rogers776ac1f2012-04-13 23:36:36 -0700636bool MethodVerifier::VerifyInstructions() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700637 const Instruction* inst = Instruction::At(code_item_->insns_);
jeffhaoba5ebb92011-08-25 17:24:37 -0700638
Ian Rogers0c7abda2012-09-19 13:33:42 -0700639 /* Flag the start of the method as a branch target, and a GC point due to stack overflow errors */
Ian Rogersd81871c2011-10-03 13:57:23 -0700640 insn_flags_[0].SetBranchTarget();
Sameer Abu Asal02c42232013-04-30 12:09:45 -0700641 insn_flags_[0].SetCompileTimeInfoPoint();
Ian Rogersd81871c2011-10-03 13:57:23 -0700642
643 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700644 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700645 if (!VerifyInstruction(inst, dex_pc)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700646 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -0700647 return false;
648 }
649 /* Flag instructions that are garbage collection points */
Sameer Abu Asal02c42232013-04-30 12:09:45 -0700650 // All invoke points are marked as "Throw" points already.
651 // We are relying on this to also count all the invokes as interesting.
Ian Rogersb8c78592013-07-25 23:52:52 +0000652 if (inst->IsBranch() || inst->IsSwitch() || inst->IsThrow()) {
Sameer Abu Asal02c42232013-04-30 12:09:45 -0700653 insn_flags_[dex_pc].SetCompileTimeInfoPoint();
Ian Rogersb8c78592013-07-25 23:52:52 +0000654 } else if (inst->IsReturn()) {
655 insn_flags_[dex_pc].SetCompileTimeInfoPointAndReturn();
Ian Rogersd81871c2011-10-03 13:57:23 -0700656 }
657 dex_pc += inst->SizeInCodeUnits();
658 inst = inst->Next();
659 }
660 return true;
661}
662
Ian Rogers776ac1f2012-04-13 23:36:36 -0700663bool MethodVerifier::VerifyInstruction(const Instruction* inst, uint32_t code_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700664 bool result = true;
665 switch (inst->GetVerifyTypeArgumentA()) {
666 case Instruction::kVerifyRegA:
Ian Rogers29a26482014-05-02 15:27:29 -0700667 result = result && CheckRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -0700668 break;
669 case Instruction::kVerifyRegAWide:
Ian Rogers29a26482014-05-02 15:27:29 -0700670 result = result && CheckWideRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -0700671 break;
672 }
673 switch (inst->GetVerifyTypeArgumentB()) {
674 case Instruction::kVerifyRegB:
Ian Rogers29a26482014-05-02 15:27:29 -0700675 result = result && CheckRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700676 break;
677 case Instruction::kVerifyRegBField:
Ian Rogers29a26482014-05-02 15:27:29 -0700678 result = result && CheckFieldIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700679 break;
680 case Instruction::kVerifyRegBMethod:
Ian Rogers29a26482014-05-02 15:27:29 -0700681 result = result && CheckMethodIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700682 break;
683 case Instruction::kVerifyRegBNewInstance:
Ian Rogers29a26482014-05-02 15:27:29 -0700684 result = result && CheckNewInstance(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700685 break;
686 case Instruction::kVerifyRegBString:
Ian Rogers29a26482014-05-02 15:27:29 -0700687 result = result && CheckStringIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700688 break;
689 case Instruction::kVerifyRegBType:
Ian Rogers29a26482014-05-02 15:27:29 -0700690 result = result && CheckTypeIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700691 break;
692 case Instruction::kVerifyRegBWide:
Ian Rogers29a26482014-05-02 15:27:29 -0700693 result = result && CheckWideRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700694 break;
695 }
696 switch (inst->GetVerifyTypeArgumentC()) {
697 case Instruction::kVerifyRegC:
Ian Rogers29a26482014-05-02 15:27:29 -0700698 result = result && CheckRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700699 break;
700 case Instruction::kVerifyRegCField:
Ian Rogers29a26482014-05-02 15:27:29 -0700701 result = result && CheckFieldIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700702 break;
703 case Instruction::kVerifyRegCNewArray:
Ian Rogers29a26482014-05-02 15:27:29 -0700704 result = result && CheckNewArray(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700705 break;
706 case Instruction::kVerifyRegCType:
Ian Rogers29a26482014-05-02 15:27:29 -0700707 result = result && CheckTypeIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700708 break;
709 case Instruction::kVerifyRegCWide:
Ian Rogers29a26482014-05-02 15:27:29 -0700710 result = result && CheckWideRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700711 break;
712 }
713 switch (inst->GetVerifyExtraFlags()) {
714 case Instruction::kVerifyArrayData:
715 result = result && CheckArrayData(code_offset);
716 break;
717 case Instruction::kVerifyBranchTarget:
718 result = result && CheckBranchTarget(code_offset);
719 break;
720 case Instruction::kVerifySwitchTargets:
721 result = result && CheckSwitchTargets(code_offset);
722 break;
Ian Rogers29a26482014-05-02 15:27:29 -0700723 case Instruction::kVerifyVarArg: {
724 uint32_t args[Instruction::kMaxVarArgRegs];
725 inst->GetVarArgs(args);
726 result = result && CheckVarArgRegs(inst->VRegA(), args);
Ian Rogersd81871c2011-10-03 13:57:23 -0700727 break;
Ian Rogers29a26482014-05-02 15:27:29 -0700728 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700729 case Instruction::kVerifyVarArgRange:
Ian Rogers29a26482014-05-02 15:27:29 -0700730 result = result && CheckVarArgRangeRegs(inst->VRegA(), inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700731 break;
732 case Instruction::kVerifyError:
jeffhaod5347e02012-03-22 17:25:05 -0700733 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected opcode " << inst->Name();
Ian Rogersd81871c2011-10-03 13:57:23 -0700734 result = false;
735 break;
736 }
737 return result;
738}
739
Ian Rogers776ac1f2012-04-13 23:36:36 -0700740bool MethodVerifier::CheckRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700741 if (idx >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700742 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register index out of range (" << idx << " >= "
743 << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700744 return false;
745 }
746 return true;
747}
748
Ian Rogers776ac1f2012-04-13 23:36:36 -0700749bool MethodVerifier::CheckWideRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700750 if (idx + 1 >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700751 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "wide register index out of range (" << idx
752 << "+1 >= " << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700753 return false;
754 }
755 return true;
756}
757
Ian Rogers776ac1f2012-04-13 23:36:36 -0700758bool MethodVerifier::CheckFieldIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700759 if (idx >= dex_file_->GetHeader().field_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700760 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad field index " << idx << " (max "
761 << dex_file_->GetHeader().field_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700762 return false;
763 }
764 return true;
765}
766
Ian Rogers776ac1f2012-04-13 23:36:36 -0700767bool MethodVerifier::CheckMethodIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700768 if (idx >= dex_file_->GetHeader().method_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700769 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad method index " << idx << " (max "
770 << dex_file_->GetHeader().method_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700771 return false;
772 }
773 return true;
774}
775
Ian Rogers776ac1f2012-04-13 23:36:36 -0700776bool MethodVerifier::CheckNewInstance(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700777 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700778 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
779 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700780 return false;
781 }
782 // We don't need the actual class, just a pointer to the class name.
Ian Rogers0571d352011-11-03 19:51:38 -0700783 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -0700784 if (descriptor[0] != 'L') {
jeffhaod5347e02012-03-22 17:25:05 -0700785 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "can't call new-instance on type '" << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -0700786 return false;
787 }
788 return true;
789}
790
Ian Rogers776ac1f2012-04-13 23:36:36 -0700791bool MethodVerifier::CheckStringIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700792 if (idx >= dex_file_->GetHeader().string_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700793 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad string index " << idx << " (max "
794 << dex_file_->GetHeader().string_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700795 return false;
796 }
797 return true;
798}
799
Ian Rogers776ac1f2012-04-13 23:36:36 -0700800bool MethodVerifier::CheckTypeIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700801 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700802 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
803 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700804 return false;
805 }
806 return true;
807}
808
Ian Rogers776ac1f2012-04-13 23:36:36 -0700809bool MethodVerifier::CheckNewArray(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700810 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700811 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
812 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700813 return false;
814 }
815 int bracket_count = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700816 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -0700817 const char* cp = descriptor;
818 while (*cp++ == '[') {
819 bracket_count++;
820 }
821 if (bracket_count == 0) {
822 /* The given class must be an array type. */
Brian Carlstrom93c33962013-07-26 10:37:43 -0700823 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
824 << "can't new-array class '" << descriptor << "' (not an array)";
Ian Rogersd81871c2011-10-03 13:57:23 -0700825 return false;
826 } else if (bracket_count > 255) {
827 /* It is illegal to create an array of more than 255 dimensions. */
Brian Carlstrom93c33962013-07-26 10:37:43 -0700828 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
829 << "can't new-array class '" << descriptor << "' (exceeds limit)";
Ian Rogersd81871c2011-10-03 13:57:23 -0700830 return false;
831 }
832 return true;
833}
834
Ian Rogers776ac1f2012-04-13 23:36:36 -0700835bool MethodVerifier::CheckArrayData(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700836 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
837 const uint16_t* insns = code_item_->insns_ + cur_offset;
838 const uint16_t* array_data;
839 int32_t array_data_offset;
840
841 DCHECK_LT(cur_offset, insn_count);
842 /* make sure the start of the array data table is in range */
843 array_data_offset = insns[1] | (((int32_t) insns[2]) << 16);
844 if ((int32_t) cur_offset + array_data_offset < 0 ||
845 cur_offset + array_data_offset + 2 >= insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -0700846 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -0700847 << ", data offset " << array_data_offset
848 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -0700849 return false;
850 }
851 /* offset to array data table is a relative branch-style offset */
852 array_data = insns + array_data_offset;
853 /* make sure the table is 32-bit aligned */
Ian Rogersef7d42f2014-01-06 12:55:46 -0800854 if ((reinterpret_cast<uintptr_t>(array_data) & 0x03) != 0) {
jeffhaod5347e02012-03-22 17:25:05 -0700855 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned array data table: at " << cur_offset
856 << ", data offset " << array_data_offset;
Ian Rogersd81871c2011-10-03 13:57:23 -0700857 return false;
858 }
859 uint32_t value_width = array_data[1];
Elliott Hughes398f64b2012-03-26 18:05:48 -0700860 uint32_t value_count = *reinterpret_cast<const uint32_t*>(&array_data[2]);
Ian Rogersd81871c2011-10-03 13:57:23 -0700861 uint32_t table_size = 4 + (value_width * value_count + 1) / 2;
862 /* make sure the end of the switch is in range */
863 if (cur_offset + array_data_offset + table_size > insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -0700864 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data end: at " << cur_offset
865 << ", data offset " << array_data_offset << ", end "
866 << cur_offset + array_data_offset + table_size
867 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -0700868 return false;
869 }
870 return true;
871}
872
Ian Rogers776ac1f2012-04-13 23:36:36 -0700873bool MethodVerifier::CheckBranchTarget(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700874 int32_t offset;
875 bool isConditional, selfOkay;
876 if (!GetBranchOffset(cur_offset, &offset, &isConditional, &selfOkay)) {
877 return false;
878 }
879 if (!selfOkay && offset == 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -0700880 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch offset of zero not allowed at"
881 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -0700882 return false;
883 }
Elliott Hughes81ff3182012-03-23 20:35:56 -0700884 // Check for 32-bit overflow. This isn't strictly necessary if we can depend on the runtime
885 // to have identical "wrap-around" behavior, but it's unwise to depend on that.
Ian Rogersd81871c2011-10-03 13:57:23 -0700886 if (((int64_t) cur_offset + (int64_t) offset) != (int64_t) (cur_offset + offset)) {
Brian Carlstrom93c33962013-07-26 10:37:43 -0700887 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch target overflow "
888 << reinterpret_cast<void*>(cur_offset) << " +" << offset;
Ian Rogersd81871c2011-10-03 13:57:23 -0700889 return false;
890 }
891 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
892 int32_t abs_offset = cur_offset + offset;
Brian Carlstrom93c33962013-07-26 10:37:43 -0700893 if (abs_offset < 0 ||
894 (uint32_t) abs_offset >= insn_count ||
895 !insn_flags_[abs_offset].IsOpcode()) {
jeffhaod5347e02012-03-22 17:25:05 -0700896 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid branch target " << offset << " (-> "
Elliott Hughes398f64b2012-03-26 18:05:48 -0700897 << reinterpret_cast<void*>(abs_offset) << ") at "
898 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -0700899 return false;
900 }
901 insn_flags_[abs_offset].SetBranchTarget();
902 return true;
903}
904
Ian Rogers776ac1f2012-04-13 23:36:36 -0700905bool MethodVerifier::GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
Ian Rogersd81871c2011-10-03 13:57:23 -0700906 bool* selfOkay) {
907 const uint16_t* insns = code_item_->insns_ + cur_offset;
908 *pConditional = false;
909 *selfOkay = false;
jeffhaoba5ebb92011-08-25 17:24:37 -0700910 switch (*insns & 0xff) {
911 case Instruction::GOTO:
912 *pOffset = ((int16_t) *insns) >> 8;
jeffhaoba5ebb92011-08-25 17:24:37 -0700913 break;
914 case Instruction::GOTO_32:
915 *pOffset = insns[1] | (((uint32_t) insns[2]) << 16);
jeffhaoba5ebb92011-08-25 17:24:37 -0700916 *selfOkay = true;
917 break;
918 case Instruction::GOTO_16:
919 *pOffset = (int16_t) insns[1];
jeffhaoba5ebb92011-08-25 17:24:37 -0700920 break;
921 case Instruction::IF_EQ:
922 case Instruction::IF_NE:
923 case Instruction::IF_LT:
924 case Instruction::IF_GE:
925 case Instruction::IF_GT:
926 case Instruction::IF_LE:
927 case Instruction::IF_EQZ:
928 case Instruction::IF_NEZ:
929 case Instruction::IF_LTZ:
930 case Instruction::IF_GEZ:
931 case Instruction::IF_GTZ:
932 case Instruction::IF_LEZ:
933 *pOffset = (int16_t) insns[1];
934 *pConditional = true;
jeffhaoba5ebb92011-08-25 17:24:37 -0700935 break;
936 default:
937 return false;
938 break;
939 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700940 return true;
941}
942
Ian Rogers776ac1f2012-04-13 23:36:36 -0700943bool MethodVerifier::CheckSwitchTargets(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700944 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700945 DCHECK_LT(cur_offset, insn_count);
Ian Rogersd81871c2011-10-03 13:57:23 -0700946 const uint16_t* insns = code_item_->insns_ + cur_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -0700947 /* make sure the start of the switch is in range */
Ian Rogersd81871c2011-10-03 13:57:23 -0700948 int32_t switch_offset = insns[1] | ((int32_t) insns[2]) << 16;
949 if ((int32_t) cur_offset + switch_offset < 0 || cur_offset + switch_offset + 2 >= insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -0700950 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -0700951 << ", switch offset " << switch_offset
952 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -0700953 return false;
954 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700955 /* offset to switch table is a relative branch-style offset */
Ian Rogersd81871c2011-10-03 13:57:23 -0700956 const uint16_t* switch_insns = insns + switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -0700957 /* make sure the table is 32-bit aligned */
Ian Rogersef7d42f2014-01-06 12:55:46 -0800958 if ((reinterpret_cast<uintptr_t>(switch_insns) & 0x03) != 0) {
jeffhaod5347e02012-03-22 17:25:05 -0700959 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned switch table: at " << cur_offset
960 << ", switch offset " << switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -0700961 return false;
962 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700963 uint32_t switch_count = switch_insns[1];
964 int32_t keys_offset, targets_offset;
965 uint16_t expected_signature;
jeffhaoba5ebb92011-08-25 17:24:37 -0700966 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
967 /* 0=sig, 1=count, 2/3=firstKey */
968 targets_offset = 4;
969 keys_offset = -1;
970 expected_signature = Instruction::kPackedSwitchSignature;
971 } else {
972 /* 0=sig, 1=count, 2..count*2 = keys */
973 keys_offset = 2;
974 targets_offset = 2 + 2 * switch_count;
975 expected_signature = Instruction::kSparseSwitchSignature;
976 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700977 uint32_t table_size = targets_offset + switch_count * 2;
jeffhaoba5ebb92011-08-25 17:24:37 -0700978 if (switch_insns[0] != expected_signature) {
Brian Carlstrom93c33962013-07-26 10:37:43 -0700979 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
980 << StringPrintf("wrong signature for switch table (%x, wanted %x)",
981 switch_insns[0], expected_signature);
jeffhaoba5ebb92011-08-25 17:24:37 -0700982 return false;
983 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700984 /* make sure the end of the switch is in range */
985 if (cur_offset + switch_offset + table_size > (uint32_t) insn_count) {
Brian Carlstrom93c33962013-07-26 10:37:43 -0700986 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch end: at " << cur_offset
987 << ", switch offset " << switch_offset
988 << ", end " << (cur_offset + switch_offset + table_size)
jeffhaod5347e02012-03-22 17:25:05 -0700989 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -0700990 return false;
991 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700992 /* for a sparse switch, verify the keys are in ascending order */
993 if (keys_offset > 0 && switch_count > 1) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700994 int32_t last_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
995 for (uint32_t targ = 1; targ < switch_count; targ++) {
jeffhaoba5ebb92011-08-25 17:24:37 -0700996 int32_t key = (int32_t) switch_insns[keys_offset + targ * 2] |
997 (int32_t) (switch_insns[keys_offset + targ * 2 + 1] << 16);
998 if (key <= last_key) {
jeffhaod5347e02012-03-22 17:25:05 -0700999 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid packed switch: last key=" << last_key
1000 << ", this=" << key;
jeffhaoba5ebb92011-08-25 17:24:37 -07001001 return false;
1002 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001003 last_key = key;
1004 }
1005 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001006 /* verify each switch target */
Ian Rogersd81871c2011-10-03 13:57:23 -07001007 for (uint32_t targ = 0; targ < switch_count; targ++) {
1008 int32_t offset = (int32_t) switch_insns[targets_offset + targ * 2] |
1009 (int32_t) (switch_insns[targets_offset + targ * 2 + 1] << 16);
1010 int32_t abs_offset = cur_offset + offset;
Brian Carlstrom93c33962013-07-26 10:37:43 -07001011 if (abs_offset < 0 ||
1012 abs_offset >= (int32_t) insn_count ||
1013 !insn_flags_[abs_offset].IsOpcode()) {
1014 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch target " << offset
1015 << " (-> " << reinterpret_cast<void*>(abs_offset) << ") at "
1016 << reinterpret_cast<void*>(cur_offset)
1017 << "[" << targ << "]";
jeffhaoba5ebb92011-08-25 17:24:37 -07001018 return false;
1019 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001020 insn_flags_[abs_offset].SetBranchTarget();
1021 }
1022 return true;
1023}
1024
Ian Rogers776ac1f2012-04-13 23:36:36 -07001025bool MethodVerifier::CheckVarArgRegs(uint32_t vA, uint32_t arg[]) {
Ian Rogers29a26482014-05-02 15:27:29 -07001026 if (vA > Instruction::kMaxVarArgRegs) {
jeffhaod5347e02012-03-22 17:25:05 -07001027 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << vA << ") in non-range invoke)";
Ian Rogersd81871c2011-10-03 13:57:23 -07001028 return false;
1029 }
1030 uint16_t registers_size = code_item_->registers_size_;
1031 for (uint32_t idx = 0; idx < vA; idx++) {
jeffhao457cc512012-02-02 16:55:13 -08001032 if (arg[idx] >= registers_size) {
jeffhaod5347e02012-03-22 17:25:05 -07001033 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index (" << arg[idx]
1034 << ") in non-range invoke (>= " << registers_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001035 return false;
1036 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001037 }
1038
1039 return true;
1040}
1041
Ian Rogers776ac1f2012-04-13 23:36:36 -07001042bool MethodVerifier::CheckVarArgRangeRegs(uint32_t vA, uint32_t vC) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001043 uint16_t registers_size = code_item_->registers_size_;
1044 // vA/vC are unsigned 8-bit/16-bit quantities for /range instructions, so there's no risk of
1045 // integer overflow when adding them here.
1046 if (vA + vC > registers_size) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001047 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index " << vA << "+" << vC
1048 << " in range invoke (> " << registers_size << ")";
jeffhaoba5ebb92011-08-25 17:24:37 -07001049 return false;
1050 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001051 return true;
1052}
1053
Ian Rogers776ac1f2012-04-13 23:36:36 -07001054bool MethodVerifier::VerifyCodeFlow() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001055 uint16_t registers_size = code_item_->registers_size_;
1056 uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaobdb76512011-09-07 11:43:16 -07001057
Ian Rogersd81871c2011-10-03 13:57:23 -07001058 if (registers_size * insns_size > 4*1024*1024) {
buzbee4922ef92012-02-24 14:32:20 -08001059 LOG(WARNING) << "warning: method is huge (regs=" << registers_size
1060 << " insns_size=" << insns_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001061 }
1062 /* Create and initialize table holding register status */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001063 reg_table_.Init(kTrackCompilerInterestPoints,
1064 insn_flags_.get(),
1065 insns_size,
1066 registers_size,
1067 this);
Sameer Abu Asal02c42232013-04-30 12:09:45 -07001068
jeffhaobdb76512011-09-07 11:43:16 -07001069
Ian Rogersd0fbd852013-09-24 18:17:04 -07001070 work_line_.reset(RegisterLine::Create(registers_size, this));
1071 saved_line_.reset(RegisterLine::Create(registers_size, this));
jeffhaobdb76512011-09-07 11:43:16 -07001072
Ian Rogersd81871c2011-10-03 13:57:23 -07001073 /* Initialize register types of method arguments. */
1074 if (!SetTypesFromSignature()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001075 DCHECK_NE(failures_.size(), 0U);
1076 std::string prepend("Bad signature in ");
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001077 prepend += PrettyMethod(dex_method_idx_, *dex_file_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001078 PrependToLastFailMessage(prepend);
Ian Rogersd81871c2011-10-03 13:57:23 -07001079 return false;
1080 }
1081 /* Perform code flow verification. */
1082 if (!CodeFlowVerifyMethod()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001083 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001084 return false;
jeffhaobdb76512011-09-07 11:43:16 -07001085 }
jeffhaobdb76512011-09-07 11:43:16 -07001086 return true;
1087}
1088
Ian Rogersad0b3a32012-04-16 14:50:24 -07001089std::ostream& MethodVerifier::DumpFailures(std::ostream& os) {
1090 DCHECK_EQ(failures_.size(), failure_messages_.size());
Jeff Hao4137f482013-11-22 11:44:57 -08001091 for (size_t i = 0; i < failures_.size(); ++i) {
1092 os << failure_messages_[i]->str() << "\n";
Ian Rogersad0b3a32012-04-16 14:50:24 -07001093 }
1094 return os;
1095}
1096
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001097extern "C" void MethodVerifierGdbDump(MethodVerifier* v)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001098 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001099 v->Dump(std::cerr);
1100}
1101
Ian Rogers776ac1f2012-04-13 23:36:36 -07001102void MethodVerifier::Dump(std::ostream& os) {
jeffhaof56197c2012-03-05 18:01:54 -08001103 if (code_item_ == NULL) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001104 os << "Native method\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001105 return;
jeffhaobdb76512011-09-07 11:43:16 -07001106 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001107 {
1108 os << "Register Types:\n";
1109 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1110 std::ostream indent_os(&indent_filter);
1111 reg_types_.Dump(indent_os);
1112 }
Ian Rogersb4903572012-10-11 11:52:56 -07001113 os << "Dumping instructions and register lines:\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001114 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1115 std::ostream indent_os(&indent_filter);
Ian Rogersd81871c2011-10-03 13:57:23 -07001116 const Instruction* inst = Instruction::At(code_item_->insns_);
1117 for (size_t dex_pc = 0; dex_pc < code_item_->insns_size_in_code_units_;
1118 dex_pc += insn_flags_[dex_pc].GetLengthInCodeUnits()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001119 RegisterLine* reg_line = reg_table_.GetLine(dex_pc);
1120 if (reg_line != NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001121 indent_os << reg_line->Dump() << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07001122 }
Ian Rogers7b3ddd22013-02-21 15:19:52 -08001123 indent_os << StringPrintf("0x%04zx", dex_pc) << ": " << insn_flags_[dex_pc].ToString() << " ";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001124 const bool kDumpHexOfInstruction = false;
1125 if (kDumpHexOfInstruction) {
1126 indent_os << inst->DumpHex(5) << " ";
1127 }
1128 indent_os << inst->DumpString(dex_file_) << "\n";
jeffhaoba5ebb92011-08-25 17:24:37 -07001129 inst = inst->Next();
1130 }
jeffhaobdb76512011-09-07 11:43:16 -07001131}
1132
Ian Rogersd81871c2011-10-03 13:57:23 -07001133static bool IsPrimitiveDescriptor(char descriptor) {
1134 switch (descriptor) {
jeffhaobdb76512011-09-07 11:43:16 -07001135 case 'I':
1136 case 'C':
1137 case 'S':
1138 case 'B':
1139 case 'Z':
jeffhaobdb76512011-09-07 11:43:16 -07001140 case 'F':
1141 case 'D':
1142 case 'J':
Ian Rogersd81871c2011-10-03 13:57:23 -07001143 return true;
jeffhaobdb76512011-09-07 11:43:16 -07001144 default:
1145 return false;
1146 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001147}
1148
Ian Rogers776ac1f2012-04-13 23:36:36 -07001149bool MethodVerifier::SetTypesFromSignature() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001150 RegisterLine* reg_line = reg_table_.GetLine(0);
1151 int arg_start = code_item_->registers_size_ - code_item_->ins_size_;
1152 size_t expected_args = code_item_->ins_size_; /* long/double count as two */
jeffhaobdb76512011-09-07 11:43:16 -07001153
Ian Rogersd81871c2011-10-03 13:57:23 -07001154 DCHECK_GE(arg_start, 0); /* should have been verified earlier */
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001155 // Include the "this" pointer.
Ian Rogersd81871c2011-10-03 13:57:23 -07001156 size_t cur_arg = 0;
Ian Rogersad0b3a32012-04-16 14:50:24 -07001157 if (!IsStatic()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001158 // If this is a constructor for a class other than java.lang.Object, mark the first ("this")
1159 // argument as uninitialized. This restricts field access until the superclass constructor is
1160 // called.
Ian Rogersad0b3a32012-04-16 14:50:24 -07001161 const RegType& declaring_class = GetDeclaringClass();
1162 if (IsConstructor() && !declaring_class.IsJavaLangObject()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001163 reg_line->SetRegisterType(arg_start + cur_arg,
1164 reg_types_.UninitializedThisArgument(declaring_class));
1165 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001166 reg_line->SetRegisterType(arg_start + cur_arg, declaring_class);
jeffhaobdb76512011-09-07 11:43:16 -07001167 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001168 cur_arg++;
jeffhaobdb76512011-09-07 11:43:16 -07001169 }
1170
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001171 const DexFile::ProtoId& proto_id =
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001172 dex_file_->GetMethodPrototype(dex_file_->GetMethodId(dex_method_idx_));
Ian Rogers0571d352011-11-03 19:51:38 -07001173 DexFileParameterIterator iterator(*dex_file_, proto_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07001174
1175 for (; iterator.HasNext(); iterator.Next()) {
1176 const char* descriptor = iterator.GetDescriptor();
1177 if (descriptor == NULL) {
1178 LOG(FATAL) << "Null descriptor";
1179 }
1180 if (cur_arg >= expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07001181 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1182 << " args, found more (" << descriptor << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001183 return false;
1184 }
1185 switch (descriptor[0]) {
1186 case 'L':
1187 case '[':
1188 // We assume that reference arguments are initialized. The only way it could be otherwise
1189 // (assuming the caller was verified) is if the current method is <init>, but in that case
1190 // it's effectively considered initialized the instant we reach here (in the sense that we
1191 // can return without doing anything or call virtual methods).
1192 {
Sebastien Hertz2ed76f92014-04-22 17:11:08 +02001193 const RegType& reg_type = ResolveClassAndCheckAccess(iterator.GetTypeIdx());
1194 if (!reg_type.IsNonZeroReferenceTypes()) {
1195 DCHECK(HasFailures());
1196 return false;
1197 }
Ian Rogers84fa0742011-10-25 18:13:30 -07001198 reg_line->SetRegisterType(arg_start + cur_arg, reg_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001199 }
1200 break;
1201 case 'Z':
1202 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Boolean());
1203 break;
1204 case 'C':
1205 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Char());
1206 break;
1207 case 'B':
1208 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Byte());
1209 break;
1210 case 'I':
1211 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Integer());
1212 break;
1213 case 'S':
1214 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Short());
1215 break;
1216 case 'F':
1217 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Float());
1218 break;
1219 case 'J':
1220 case 'D': {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001221 const RegType& lo_half = descriptor[0] == 'J' ? reg_types_.LongLo() : reg_types_.DoubleLo();
1222 const RegType& hi_half = descriptor[0] == 'J' ? reg_types_.LongHi() : reg_types_.DoubleHi();
1223 reg_line->SetRegisterTypeWide(arg_start + cur_arg, lo_half, hi_half);
Ian Rogersd81871c2011-10-03 13:57:23 -07001224 cur_arg++;
1225 break;
1226 }
1227 default:
Brian Carlstrom93c33962013-07-26 10:37:43 -07001228 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected signature type char '"
1229 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001230 return false;
1231 }
1232 cur_arg++;
1233 }
1234 if (cur_arg != expected_args) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001235 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1236 << " arguments, found " << cur_arg;
Ian Rogersd81871c2011-10-03 13:57:23 -07001237 return false;
1238 }
1239 const char* descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
1240 // Validate return type. We don't do the type lookup; just want to make sure that it has the right
1241 // format. Only major difference from the method argument format is that 'V' is supported.
1242 bool result;
1243 if (IsPrimitiveDescriptor(descriptor[0]) || descriptor[0] == 'V') {
1244 result = descriptor[1] == '\0';
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001245 } else if (descriptor[0] == '[') { // single/multi-dimensional array of object/primitive
Ian Rogersd81871c2011-10-03 13:57:23 -07001246 size_t i = 0;
1247 do {
1248 i++;
1249 } while (descriptor[i] == '['); // process leading [
1250 if (descriptor[i] == 'L') { // object array
1251 do {
1252 i++; // find closing ;
1253 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1254 result = descriptor[i] == ';';
1255 } else { // primitive array
1256 result = IsPrimitiveDescriptor(descriptor[i]) && descriptor[i + 1] == '\0';
1257 }
1258 } else if (descriptor[0] == 'L') {
1259 // could be more thorough here, but shouldn't be required
1260 size_t i = 0;
1261 do {
1262 i++;
1263 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1264 result = descriptor[i] == ';';
1265 } else {
1266 result = false;
1267 }
1268 if (!result) {
jeffhaod5347e02012-03-22 17:25:05 -07001269 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected char in return type descriptor '"
1270 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001271 }
1272 return result;
jeffhaobdb76512011-09-07 11:43:16 -07001273}
1274
Ian Rogers776ac1f2012-04-13 23:36:36 -07001275bool MethodVerifier::CodeFlowVerifyMethod() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001276 const uint16_t* insns = code_item_->insns_;
1277 const uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaoba5ebb92011-08-25 17:24:37 -07001278
jeffhaobdb76512011-09-07 11:43:16 -07001279 /* Begin by marking the first instruction as "changed". */
Ian Rogersd81871c2011-10-03 13:57:23 -07001280 insn_flags_[0].SetChanged();
1281 uint32_t start_guess = 0;
jeffhaoba5ebb92011-08-25 17:24:37 -07001282
jeffhaobdb76512011-09-07 11:43:16 -07001283 /* Continue until no instructions are marked "changed". */
1284 while (true) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001285 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1286 uint32_t insn_idx = start_guess;
1287 for (; insn_idx < insns_size; insn_idx++) {
1288 if (insn_flags_[insn_idx].IsChanged())
jeffhaobdb76512011-09-07 11:43:16 -07001289 break;
1290 }
jeffhaobdb76512011-09-07 11:43:16 -07001291 if (insn_idx == insns_size) {
1292 if (start_guess != 0) {
1293 /* try again, starting from the top */
1294 start_guess = 0;
1295 continue;
1296 } else {
1297 /* all flags are clear */
1298 break;
1299 }
1300 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001301 // We carry the working set of registers from instruction to instruction. If this address can
1302 // be the target of a branch (or throw) instruction, or if we're skipping around chasing
1303 // "changed" flags, we need to load the set of registers from the table.
1304 // Because we always prefer to continue on to the next instruction, we should never have a
1305 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1306 // target.
1307 work_insn_idx_ = insn_idx;
1308 if (insn_flags_[insn_idx].IsBranchTarget()) {
1309 work_line_->CopyFromLine(reg_table_.GetLine(insn_idx));
jeffhaobdb76512011-09-07 11:43:16 -07001310 } else {
1311#ifndef NDEBUG
1312 /*
1313 * Sanity check: retrieve the stored register line (assuming
1314 * a full table) and make sure it actually matches.
1315 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001316 RegisterLine* register_line = reg_table_.GetLine(insn_idx);
1317 if (register_line != NULL) {
1318 if (work_line_->CompareLine(register_line) != 0) {
1319 Dump(std::cout);
1320 std::cout << info_messages_.str();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001321 LOG(FATAL) << "work_line diverged in " << PrettyMethod(dex_method_idx_, *dex_file_)
Elliott Hughesc073b072012-05-24 19:29:17 -07001322 << "@" << reinterpret_cast<void*>(work_insn_idx_) << "\n"
1323 << " work_line=" << *work_line_ << "\n"
Elliott Hughes398f64b2012-03-26 18:05:48 -07001324 << " expected=" << *register_line;
Ian Rogersd81871c2011-10-03 13:57:23 -07001325 }
jeffhaobdb76512011-09-07 11:43:16 -07001326 }
1327#endif
1328 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001329 if (!CodeFlowVerifyInstruction(&start_guess)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001330 std::string prepend(PrettyMethod(dex_method_idx_, *dex_file_));
Ian Rogersad0b3a32012-04-16 14:50:24 -07001331 prepend += " failed to verify: ";
1332 PrependToLastFailMessage(prepend);
jeffhaoba5ebb92011-08-25 17:24:37 -07001333 return false;
1334 }
jeffhaobdb76512011-09-07 11:43:16 -07001335 /* Clear "changed" and mark as visited. */
Ian Rogersd81871c2011-10-03 13:57:23 -07001336 insn_flags_[insn_idx].SetVisited();
1337 insn_flags_[insn_idx].ClearChanged();
jeffhaobdb76512011-09-07 11:43:16 -07001338 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001339
Ian Rogers1c849e52012-06-28 14:00:33 -07001340 if (gDebugVerify) {
jeffhaobdb76512011-09-07 11:43:16 -07001341 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001342 * Scan for dead code. There's nothing "evil" about dead code
jeffhaobdb76512011-09-07 11:43:16 -07001343 * (besides the wasted space), but it indicates a flaw somewhere
1344 * down the line, possibly in the verifier.
1345 *
1346 * If we've substituted "always throw" instructions into the stream,
1347 * we are almost certainly going to have some dead code.
1348 */
1349 int dead_start = -1;
Ian Rogersd81871c2011-10-03 13:57:23 -07001350 uint32_t insn_idx = 0;
1351 for (; insn_idx < insns_size; insn_idx += insn_flags_[insn_idx].GetLengthInCodeUnits()) {
jeffhaobdb76512011-09-07 11:43:16 -07001352 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001353 * Switch-statement data doesn't get "visited" by scanner. It
jeffhaobdb76512011-09-07 11:43:16 -07001354 * may or may not be preceded by a padding NOP (for alignment).
1355 */
1356 if (insns[insn_idx] == Instruction::kPackedSwitchSignature ||
1357 insns[insn_idx] == Instruction::kSparseSwitchSignature ||
1358 insns[insn_idx] == Instruction::kArrayDataSignature ||
Elliott Hughes380aaa72012-07-09 14:33:15 -07001359 (insns[insn_idx] == Instruction::NOP && (insn_idx + 1 < insns_size) &&
jeffhaobdb76512011-09-07 11:43:16 -07001360 (insns[insn_idx + 1] == Instruction::kPackedSwitchSignature ||
1361 insns[insn_idx + 1] == Instruction::kSparseSwitchSignature ||
1362 insns[insn_idx + 1] == Instruction::kArrayDataSignature))) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001363 insn_flags_[insn_idx].SetVisited();
jeffhaobdb76512011-09-07 11:43:16 -07001364 }
1365
Ian Rogersd81871c2011-10-03 13:57:23 -07001366 if (!insn_flags_[insn_idx].IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001367 if (dead_start < 0)
1368 dead_start = insn_idx;
1369 } else if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001370 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1371 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaobdb76512011-09-07 11:43:16 -07001372 dead_start = -1;
1373 }
1374 }
1375 if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001376 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1377 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaoba5ebb92011-08-25 17:24:37 -07001378 }
Ian Rogersc9e463c2013-06-05 16:52:26 -07001379 // To dump the state of the verify after a method, do something like:
1380 // if (PrettyMethod(dex_method_idx_, *dex_file_) ==
1381 // "boolean java.lang.String.equals(java.lang.Object)") {
1382 // LOG(INFO) << info_messages_.str();
1383 // }
jeffhaoba5ebb92011-08-25 17:24:37 -07001384 }
jeffhaobdb76512011-09-07 11:43:16 -07001385 return true;
1386}
1387
Ian Rogers776ac1f2012-04-13 23:36:36 -07001388bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001389 // If we're doing FindLocksAtDexPc, check whether we're at the dex pc we care about.
1390 // We want the state _before_ the instruction, for the case where the dex pc we're
1391 // interested in is itself a monitor-enter instruction (which is a likely place
1392 // for a thread to be suspended).
1393 if (monitor_enter_dex_pcs_ != NULL && work_insn_idx_ == interesting_dex_pc_) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001394 monitor_enter_dex_pcs_->clear(); // The new work line is more accurate than the previous one.
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001395 for (size_t i = 0; i < work_line_->GetMonitorEnterCount(); ++i) {
1396 monitor_enter_dex_pcs_->push_back(work_line_->GetMonitorEnterDexPc(i));
1397 }
1398 }
1399
jeffhaobdb76512011-09-07 11:43:16 -07001400 /*
1401 * Once we finish decoding the instruction, we need to figure out where
jeffhaod1f0fde2011-09-08 17:25:33 -07001402 * we can go from here. There are three possible ways to transfer
jeffhaobdb76512011-09-07 11:43:16 -07001403 * control to another statement:
1404 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001405 * (1) Continue to the next instruction. Applies to all but
jeffhaobdb76512011-09-07 11:43:16 -07001406 * unconditional branches, method returns, and exception throws.
jeffhaod1f0fde2011-09-08 17:25:33 -07001407 * (2) Branch to one or more possible locations. Applies to branches
jeffhaobdb76512011-09-07 11:43:16 -07001408 * and switch statements.
jeffhaod1f0fde2011-09-08 17:25:33 -07001409 * (3) Exception handlers. Applies to any instruction that can
jeffhaobdb76512011-09-07 11:43:16 -07001410 * throw an exception that is handled by an encompassing "try"
1411 * block.
1412 *
1413 * We can also return, in which case there is no successor instruction
1414 * from this point.
1415 *
Elliott Hughesadb8c672012-03-06 16:49:32 -08001416 * The behavior can be determined from the opcode flags.
jeffhaobdb76512011-09-07 11:43:16 -07001417 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001418 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
1419 const Instruction* inst = Instruction::At(insns);
Ian Rogersa75a0132012-09-28 11:41:42 -07001420 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
jeffhaobdb76512011-09-07 11:43:16 -07001421
jeffhaobdb76512011-09-07 11:43:16 -07001422 int32_t branch_target = 0;
jeffhaobdb76512011-09-07 11:43:16 -07001423 bool just_set_result = false;
Ian Rogers2c8a8572011-10-24 17:11:36 -07001424 if (gDebugVerify) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001425 // Generate processing back trace to debug verifier
Elliott Hughesc073b072012-05-24 19:29:17 -07001426 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << "\n"
1427 << *work_line_.get() << "\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001428 }
jeffhaobdb76512011-09-07 11:43:16 -07001429
1430 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001431 * Make a copy of the previous register state. If the instruction
jeffhaobdb76512011-09-07 11:43:16 -07001432 * can throw an exception, we will copy/merge this into the "catch"
1433 * address rather than work_line, because we don't want the result
1434 * from the "successful" code path (e.g. a check-cast that "improves"
1435 * a type) to be visible to the exception handler.
1436 */
Ian Rogers776ac1f2012-04-13 23:36:36 -07001437 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001438 saved_line_->CopyFromLine(work_line_.get());
jeffhaobdb76512011-09-07 11:43:16 -07001439 } else {
1440#ifndef NDEBUG
Ian Rogersd81871c2011-10-03 13:57:23 -07001441 saved_line_->FillWithGarbage();
jeffhaobdb76512011-09-07 11:43:16 -07001442#endif
1443 }
1444
Dragos Sbirlea980d16b2013-06-04 15:01:40 -07001445
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001446 // We need to ensure the work line is consistent while performing validation. When we spot a
1447 // peephole pattern we compute a new line for either the fallthrough instruction or the
1448 // branch target.
Ian Rogers700a4022014-05-19 16:49:03 -07001449 std::unique_ptr<RegisterLine> branch_line;
1450 std::unique_ptr<RegisterLine> fallthrough_line;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001451
Sebastien Hertz5243e912013-05-21 10:55:07 +02001452 switch (inst->Opcode()) {
jeffhaobdb76512011-09-07 11:43:16 -07001453 case Instruction::NOP:
1454 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001455 * A "pure" NOP has no effect on anything. Data tables start with
jeffhaobdb76512011-09-07 11:43:16 -07001456 * a signature that looks like a NOP; if we see one of these in
1457 * the course of executing code then we have a problem.
1458 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001459 if (inst->VRegA_10x() != 0) {
jeffhaod5347e02012-03-22 17:25:05 -07001460 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "encountered data table in instruction stream";
jeffhaobdb76512011-09-07 11:43:16 -07001461 }
1462 break;
1463
1464 case Instruction::MOVE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001465 work_line_->CopyRegister1(inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr);
1466 break;
jeffhaobdb76512011-09-07 11:43:16 -07001467 case Instruction::MOVE_FROM16:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001468 work_line_->CopyRegister1(inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategory1nr);
1469 break;
jeffhaobdb76512011-09-07 11:43:16 -07001470 case Instruction::MOVE_16:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001471 work_line_->CopyRegister1(inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategory1nr);
jeffhaobdb76512011-09-07 11:43:16 -07001472 break;
1473 case Instruction::MOVE_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001474 work_line_->CopyRegister2(inst->VRegA_12x(), inst->VRegB_12x());
1475 break;
jeffhaobdb76512011-09-07 11:43:16 -07001476 case Instruction::MOVE_WIDE_FROM16:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001477 work_line_->CopyRegister2(inst->VRegA_22x(), inst->VRegB_22x());
1478 break;
jeffhaobdb76512011-09-07 11:43:16 -07001479 case Instruction::MOVE_WIDE_16:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001480 work_line_->CopyRegister2(inst->VRegA_32x(), inst->VRegB_32x());
jeffhaobdb76512011-09-07 11:43:16 -07001481 break;
1482 case Instruction::MOVE_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001483 work_line_->CopyRegister1(inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef);
1484 break;
jeffhaobdb76512011-09-07 11:43:16 -07001485 case Instruction::MOVE_OBJECT_FROM16:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001486 work_line_->CopyRegister1(inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategoryRef);
1487 break;
jeffhaobdb76512011-09-07 11:43:16 -07001488 case Instruction::MOVE_OBJECT_16:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001489 work_line_->CopyRegister1(inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategoryRef);
jeffhaobdb76512011-09-07 11:43:16 -07001490 break;
1491
1492 /*
1493 * The move-result instructions copy data out of a "pseudo-register"
jeffhaod1f0fde2011-09-08 17:25:33 -07001494 * with the results from the last method invocation. In practice we
jeffhaobdb76512011-09-07 11:43:16 -07001495 * might want to hold the result in an actual CPU register, so the
1496 * Dalvik spec requires that these only appear immediately after an
1497 * invoke or filled-new-array.
1498 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001499 * These calls invalidate the "result" register. (This is now
jeffhaobdb76512011-09-07 11:43:16 -07001500 * redundant with the reset done below, but it can make the debug info
1501 * easier to read in some cases.)
1502 */
1503 case Instruction::MOVE_RESULT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001504 work_line_->CopyResultRegister1(inst->VRegA_11x(), false);
jeffhaobdb76512011-09-07 11:43:16 -07001505 break;
1506 case Instruction::MOVE_RESULT_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001507 work_line_->CopyResultRegister2(inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07001508 break;
1509 case Instruction::MOVE_RESULT_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001510 work_line_->CopyResultRegister1(inst->VRegA_11x(), true);
jeffhaobdb76512011-09-07 11:43:16 -07001511 break;
1512
Ian Rogersd81871c2011-10-03 13:57:23 -07001513 case Instruction::MOVE_EXCEPTION: {
jeffhaobdb76512011-09-07 11:43:16 -07001514 /*
jeffhao60f83e32012-02-13 17:16:30 -08001515 * This statement can only appear as the first instruction in an exception handler. We verify
1516 * that as part of extracting the exception type from the catch block list.
jeffhaobdb76512011-09-07 11:43:16 -07001517 */
Ian Rogers28ad40d2011-10-27 15:19:26 -07001518 const RegType& res_type = GetCaughtExceptionType();
Sebastien Hertz5243e912013-05-21 10:55:07 +02001519 work_line_->SetRegisterType(inst->VRegA_11x(), res_type);
jeffhaobdb76512011-09-07 11:43:16 -07001520 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001521 }
jeffhaobdb76512011-09-07 11:43:16 -07001522 case Instruction::RETURN_VOID:
Ian Rogersad0b3a32012-04-16 14:50:24 -07001523 if (!IsConstructor() || work_line_->CheckConstructorReturn()) {
1524 if (!GetMethodReturnType().IsConflict()) {
jeffhaod5347e02012-03-22 17:25:05 -07001525 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07001526 }
jeffhaobdb76512011-09-07 11:43:16 -07001527 }
1528 break;
1529 case Instruction::RETURN:
Ian Rogersad0b3a32012-04-16 14:50:24 -07001530 if (!IsConstructor() || work_line_->CheckConstructorReturn()) {
jeffhaobdb76512011-09-07 11:43:16 -07001531 /* check the method signature */
Ian Rogersd81871c2011-10-03 13:57:23 -07001532 const RegType& return_type = GetMethodReturnType();
1533 if (!return_type.IsCategory1Types()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001534 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected non-category 1 return type "
1535 << return_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07001536 } else {
1537 // Compilers may generate synthetic functions that write byte values into boolean fields.
1538 // Also, it may use integer values for boolean, byte, short, and character return types.
Sebastien Hertz5243e912013-05-21 10:55:07 +02001539 const uint32_t vregA = inst->VRegA_11x();
1540 const RegType& src_type = work_line_->GetRegisterType(vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07001541 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) ||
1542 ((return_type.IsBoolean() || return_type.IsByte() ||
1543 return_type.IsShort() || return_type.IsChar()) &&
1544 src_type.IsInteger()));
1545 /* check the register contents */
Ian Rogersad0b3a32012-04-16 14:50:24 -07001546 bool success =
Sebastien Hertz5243e912013-05-21 10:55:07 +02001547 work_line_->VerifyRegisterType(vregA, use_src ? src_type : return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001548 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001549 AppendToLastFailMessage(StringPrintf(" return-1nr on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07001550 }
jeffhaobdb76512011-09-07 11:43:16 -07001551 }
1552 }
1553 break;
1554 case Instruction::RETURN_WIDE:
Ian Rogersad0b3a32012-04-16 14:50:24 -07001555 if (!IsConstructor() || work_line_->CheckConstructorReturn()) {
jeffhaobdb76512011-09-07 11:43:16 -07001556 /* check the method signature */
Ian Rogersd81871c2011-10-03 13:57:23 -07001557 const RegType& return_type = GetMethodReturnType();
1558 if (!return_type.IsCategory2Types()) {
jeffhaod5347e02012-03-22 17:25:05 -07001559 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-wide not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07001560 } else {
1561 /* check the register contents */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001562 const uint32_t vregA = inst->VRegA_11x();
1563 bool success = work_line_->VerifyRegisterType(vregA, return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001564 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001565 AppendToLastFailMessage(StringPrintf(" return-wide on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07001566 }
jeffhaobdb76512011-09-07 11:43:16 -07001567 }
1568 }
1569 break;
1570 case Instruction::RETURN_OBJECT:
Ian Rogersad0b3a32012-04-16 14:50:24 -07001571 if (!IsConstructor() || work_line_->CheckConstructorReturn()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001572 const RegType& return_type = GetMethodReturnType();
1573 if (!return_type.IsReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001574 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07001575 } else {
1576 /* return_type is the *expected* return type, not register value */
1577 DCHECK(!return_type.IsZero());
1578 DCHECK(!return_type.IsUninitializedReference());
Sebastien Hertz5243e912013-05-21 10:55:07 +02001579 const uint32_t vregA = inst->VRegA_11x();
1580 const RegType& reg_type = work_line_->GetRegisterType(vregA);
Ian Rogers9074b992011-10-26 17:41:55 -07001581 // Disallow returning uninitialized values and verify that the reference in vAA is an
1582 // instance of the "return_type"
1583 if (reg_type.IsUninitializedTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001584 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "returning uninitialized object '"
1585 << reg_type << "'";
Ian Rogers9074b992011-10-26 17:41:55 -07001586 } else if (!return_type.IsAssignableFrom(reg_type)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07001587 if (reg_type.IsUnresolvedTypes() || return_type.IsUnresolvedTypes()) {
1588 Fail(VERIFY_ERROR_NO_CLASS) << " can't resolve returned type '" << return_type
1589 << "' or '" << reg_type << "'";
1590 } else {
1591 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning '" << reg_type
1592 << "', but expected from declaration '" << return_type << "'";
1593 }
jeffhaobdb76512011-09-07 11:43:16 -07001594 }
1595 }
1596 }
1597 break;
1598
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001599 /* could be boolean, int, float, or a null reference */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001600 case Instruction::CONST_4: {
1601 int32_t val = static_cast<int32_t>(inst->VRegB_11n() << 28) >> 28;
Sebastien Hertz849600b2013-12-20 10:28:08 +01001602 work_line_->SetRegisterType(inst->VRegA_11n(),
Ian Rogers46960fe2014-05-23 10:43:43 -07001603 DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001604 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02001605 }
1606 case Instruction::CONST_16: {
1607 int16_t val = static_cast<int16_t>(inst->VRegB_21s());
Sebastien Hertz849600b2013-12-20 10:28:08 +01001608 work_line_->SetRegisterType(inst->VRegA_21s(),
Ian Rogers46960fe2014-05-23 10:43:43 -07001609 DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001610 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02001611 }
Sebastien Hertz849600b2013-12-20 10:28:08 +01001612 case Instruction::CONST: {
1613 int32_t val = inst->VRegB_31i();
Sebastien Hertz5243e912013-05-21 10:55:07 +02001614 work_line_->SetRegisterType(inst->VRegA_31i(),
Ian Rogers46960fe2014-05-23 10:43:43 -07001615 DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07001616 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01001617 }
1618 case Instruction::CONST_HIGH16: {
1619 int32_t val = static_cast<int32_t>(inst->VRegB_21h() << 16);
Sebastien Hertz5243e912013-05-21 10:55:07 +02001620 work_line_->SetRegisterType(inst->VRegA_21h(),
Ian Rogers46960fe2014-05-23 10:43:43 -07001621 DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07001622 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01001623 }
jeffhaobdb76512011-09-07 11:43:16 -07001624 /* could be long or double; resolved upon use */
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001625 case Instruction::CONST_WIDE_16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001626 int64_t val = static_cast<int16_t>(inst->VRegB_21s());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001627 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
1628 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Sebastien Hertz5243e912013-05-21 10:55:07 +02001629 work_line_->SetRegisterTypeWide(inst->VRegA_21s(), lo, hi);
jeffhaobdb76512011-09-07 11:43:16 -07001630 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001631 }
1632 case Instruction::CONST_WIDE_32: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001633 int64_t val = static_cast<int32_t>(inst->VRegB_31i());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001634 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
1635 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Sebastien Hertz5243e912013-05-21 10:55:07 +02001636 work_line_->SetRegisterTypeWide(inst->VRegA_31i(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001637 break;
1638 }
1639 case Instruction::CONST_WIDE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001640 int64_t val = inst->VRegB_51l();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001641 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
1642 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Sebastien Hertz5243e912013-05-21 10:55:07 +02001643 work_line_->SetRegisterTypeWide(inst->VRegA_51l(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001644 break;
1645 }
1646 case Instruction::CONST_WIDE_HIGH16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001647 int64_t val = static_cast<uint64_t>(inst->VRegB_21h()) << 48;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001648 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
1649 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Sebastien Hertz5243e912013-05-21 10:55:07 +02001650 work_line_->SetRegisterTypeWide(inst->VRegA_21h(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001651 break;
1652 }
jeffhaobdb76512011-09-07 11:43:16 -07001653 case Instruction::CONST_STRING:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001654 work_line_->SetRegisterType(inst->VRegA_21c(), reg_types_.JavaLangString());
1655 break;
jeffhaobdb76512011-09-07 11:43:16 -07001656 case Instruction::CONST_STRING_JUMBO:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001657 work_line_->SetRegisterType(inst->VRegA_31c(), reg_types_.JavaLangString());
jeffhaobdb76512011-09-07 11:43:16 -07001658 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001659 case Instruction::CONST_CLASS: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07001660 // Get type from instruction if unresolved then we need an access check
1661 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Sebastien Hertz5243e912013-05-21 10:55:07 +02001662 const RegType& res_type = ResolveClassAndCheckAccess(inst->VRegB_21c());
Ian Rogersad0b3a32012-04-16 14:50:24 -07001663 // Register holds class, ie its type is class, on error it will hold Conflict.
Sebastien Hertz5243e912013-05-21 10:55:07 +02001664 work_line_->SetRegisterType(inst->VRegA_21c(),
Ian Rogersb4903572012-10-11 11:52:56 -07001665 res_type.IsConflict() ? res_type
1666 : reg_types_.JavaLangClass(true));
jeffhaobdb76512011-09-07 11:43:16 -07001667 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001668 }
jeffhaobdb76512011-09-07 11:43:16 -07001669 case Instruction::MONITOR_ENTER:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001670 work_line_->PushMonitor(inst->VRegA_11x(), work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07001671 break;
1672 case Instruction::MONITOR_EXIT:
1673 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001674 * monitor-exit instructions are odd. They can throw exceptions,
jeffhaobdb76512011-09-07 11:43:16 -07001675 * but when they do they act as if they succeeded and the PC is
jeffhaod1f0fde2011-09-08 17:25:33 -07001676 * pointing to the following instruction. (This behavior goes back
jeffhaobdb76512011-09-07 11:43:16 -07001677 * to the need to handle asynchronous exceptions, a now-deprecated
1678 * feature that Dalvik doesn't support.)
1679 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001680 * In practice we don't need to worry about this. The only
jeffhaobdb76512011-09-07 11:43:16 -07001681 * exceptions that can be thrown from monitor-exit are for a
jeffhaod1f0fde2011-09-08 17:25:33 -07001682 * null reference and -exit without a matching -enter. If the
jeffhaobdb76512011-09-07 11:43:16 -07001683 * structured locking checks are working, the former would have
1684 * failed on the -enter instruction, and the latter is impossible.
1685 *
1686 * This is fortunate, because issue 3221411 prevents us from
1687 * chasing the "can throw" path when monitor verification is
jeffhaod1f0fde2011-09-08 17:25:33 -07001688 * enabled. If we can fully verify the locking we can ignore
jeffhaobdb76512011-09-07 11:43:16 -07001689 * some catch blocks (which will show up as "dead" code when
1690 * we skip them here); if we can't, then the code path could be
1691 * "live" so we still need to check it.
1692 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001693 opcode_flags &= ~Instruction::kThrow;
Sebastien Hertz5243e912013-05-21 10:55:07 +02001694 work_line_->PopMonitor(inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07001695 break;
1696
Ian Rogers28ad40d2011-10-27 15:19:26 -07001697 case Instruction::CHECK_CAST:
Ian Rogersd81871c2011-10-03 13:57:23 -07001698 case Instruction::INSTANCE_OF: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07001699 /*
1700 * If this instruction succeeds, we will "downcast" register vA to the type in vB. (This
1701 * could be a "upcast" -- not expected, so we don't try to address it.)
1702 *
1703 * If it fails, an exception is thrown, which we deal with later by ignoring the update to
Elliott Hughesadb8c672012-03-06 16:49:32 -08001704 * dec_insn.vA when branching to a handler.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001705 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001706 const bool is_checkcast = (inst->Opcode() == Instruction::CHECK_CAST);
1707 const uint32_t type_idx = (is_checkcast) ? inst->VRegB_21c() : inst->VRegC_22c();
1708 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001709 if (res_type.IsConflict()) {
1710 DCHECK_NE(failures_.size(), 0U);
1711 if (!is_checkcast) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001712 work_line_->SetRegisterType(inst->VRegA_22c(), reg_types_.Boolean());
Ian Rogersad0b3a32012-04-16 14:50:24 -07001713 }
1714 break; // bad class
Ian Rogers9f1ab122011-12-12 08:52:43 -08001715 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07001716 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Sebastien Hertz5243e912013-05-21 10:55:07 +02001717 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c();
1718 const RegType& orig_type = work_line_->GetRegisterType(orig_type_reg);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001719 if (!res_type.IsNonZeroReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001720 if (is_checkcast) {
1721 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on unexpected class " << res_type;
1722 } else {
1723 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on unexpected class " << res_type;
1724 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07001725 } else if (!orig_type.IsReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001726 if (is_checkcast) {
1727 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on non-reference in v" << orig_type_reg;
1728 } else {
1729 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on non-reference in v" << orig_type_reg;
1730 }
jeffhao2a8a90e2011-09-26 14:25:31 -07001731 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07001732 if (is_checkcast) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001733 work_line_->SetRegisterType(inst->VRegA_21c(), res_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001734 } else {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001735 work_line_->SetRegisterType(inst->VRegA_22c(), reg_types_.Boolean());
jeffhaobdb76512011-09-07 11:43:16 -07001736 }
jeffhaobdb76512011-09-07 11:43:16 -07001737 }
jeffhao2a8a90e2011-09-26 14:25:31 -07001738 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001739 }
1740 case Instruction::ARRAY_LENGTH: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001741 const RegType& res_type = work_line_->GetRegisterType(inst->VRegB_12x());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001742 if (res_type.IsReferenceTypes()) {
Ian Rogers89310de2012-02-01 13:47:30 -08001743 if (!res_type.IsArrayTypes() && !res_type.IsZero()) { // ie not an array or null
jeffhaod5347e02012-03-22 17:25:05 -07001744 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07001745 } else {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001746 work_line_->SetRegisterType(inst->VRegA_12x(), reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07001747 }
1748 }
1749 break;
1750 }
1751 case Instruction::NEW_INSTANCE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001752 const RegType& res_type = ResolveClassAndCheckAccess(inst->VRegB_21c());
Ian Rogersad0b3a32012-04-16 14:50:24 -07001753 if (res_type.IsConflict()) {
1754 DCHECK_NE(failures_.size(), 0U);
1755 break; // bad class
jeffhao8cd6dda2012-02-22 10:15:34 -08001756 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07001757 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
1758 // can't create an instance of an interface or abstract class */
1759 if (!res_type.IsInstantiableTypes()) {
1760 Fail(VERIFY_ERROR_INSTANTIATION)
1761 << "new-instance on primitive, interface or abstract class" << res_type;
Ian Rogers08f753d2012-08-24 14:35:25 -07001762 // Soft failure so carry on to set register type.
Ian Rogersd81871c2011-10-03 13:57:23 -07001763 }
Ian Rogers08f753d2012-08-24 14:35:25 -07001764 const RegType& uninit_type = reg_types_.Uninitialized(res_type, work_insn_idx_);
1765 // Any registers holding previous allocations from this address that have not yet been
1766 // initialized must be marked invalid.
1767 work_line_->MarkUninitRefsAsInvalid(uninit_type);
1768 // add the new uninitialized reference to the register state
Sebastien Hertz5243e912013-05-21 10:55:07 +02001769 work_line_->SetRegisterType(inst->VRegA_21c(), uninit_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001770 break;
1771 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08001772 case Instruction::NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001773 VerifyNewArray(inst, false, false);
jeffhaobdb76512011-09-07 11:43:16 -07001774 break;
1775 case Instruction::FILLED_NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001776 VerifyNewArray(inst, true, false);
Ian Rogers0c4a5062012-02-03 15:18:59 -08001777 just_set_result = true; // Filled new array sets result register
jeffhaobdb76512011-09-07 11:43:16 -07001778 break;
Ian Rogers0c4a5062012-02-03 15:18:59 -08001779 case Instruction::FILLED_NEW_ARRAY_RANGE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001780 VerifyNewArray(inst, true, true);
Ian Rogers0c4a5062012-02-03 15:18:59 -08001781 just_set_result = true; // Filled new array range sets result register
1782 break;
jeffhaobdb76512011-09-07 11:43:16 -07001783 case Instruction::CMPL_FLOAT:
1784 case Instruction::CMPG_FLOAT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001785 if (!work_line_->VerifyRegisterType(inst->VRegB_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08001786 break;
1787 }
Sebastien Hertz5243e912013-05-21 10:55:07 +02001788 if (!work_line_->VerifyRegisterType(inst->VRegC_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08001789 break;
1790 }
Sebastien Hertz5243e912013-05-21 10:55:07 +02001791 work_line_->SetRegisterType(inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07001792 break;
1793 case Instruction::CMPL_DOUBLE:
1794 case Instruction::CMPG_DOUBLE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001795 if (!work_line_->VerifyRegisterTypeWide(inst->VRegB_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001796 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08001797 break;
1798 }
Sebastien Hertz5243e912013-05-21 10:55:07 +02001799 if (!work_line_->VerifyRegisterTypeWide(inst->VRegC_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001800 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08001801 break;
1802 }
Sebastien Hertz5243e912013-05-21 10:55:07 +02001803 work_line_->SetRegisterType(inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07001804 break;
1805 case Instruction::CMP_LONG:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001806 if (!work_line_->VerifyRegisterTypeWide(inst->VRegB_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001807 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08001808 break;
1809 }
Sebastien Hertz5243e912013-05-21 10:55:07 +02001810 if (!work_line_->VerifyRegisterTypeWide(inst->VRegC_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001811 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08001812 break;
1813 }
Sebastien Hertz5243e912013-05-21 10:55:07 +02001814 work_line_->SetRegisterType(inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07001815 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001816 case Instruction::THROW: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001817 const RegType& res_type = work_line_->GetRegisterType(inst->VRegA_11x());
Ian Rogersb4903572012-10-11 11:52:56 -07001818 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(res_type)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07001819 Fail(res_type.IsUnresolvedTypes() ? VERIFY_ERROR_NO_CLASS : VERIFY_ERROR_BAD_CLASS_SOFT)
1820 << "thrown class " << res_type << " not instanceof Throwable";
jeffhaobdb76512011-09-07 11:43:16 -07001821 }
1822 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001823 }
jeffhaobdb76512011-09-07 11:43:16 -07001824 case Instruction::GOTO:
1825 case Instruction::GOTO_16:
1826 case Instruction::GOTO_32:
1827 /* no effect on or use of registers */
1828 break;
1829
1830 case Instruction::PACKED_SWITCH:
1831 case Instruction::SPARSE_SWITCH:
1832 /* verify that vAA is an integer, or can be converted to one */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001833 work_line_->VerifyRegisterType(inst->VRegA_31t(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07001834 break;
1835
Ian Rogersd81871c2011-10-03 13:57:23 -07001836 case Instruction::FILL_ARRAY_DATA: {
1837 /* Similar to the verification done for APUT */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001838 const RegType& array_type = work_line_->GetRegisterType(inst->VRegA_31t());
Ian Rogers89310de2012-02-01 13:47:30 -08001839 /* array_type can be null if the reg type is Zero */
1840 if (!array_type.IsZero()) {
jeffhao457cc512012-02-02 16:55:13 -08001841 if (!array_type.IsArrayTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001842 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with array type "
1843 << array_type;
Ian Rogers89310de2012-02-01 13:47:30 -08001844 } else {
Mathieu Chartier590fee92013-09-13 13:46:47 -07001845 const RegType& component_type = reg_types_.GetComponentType(array_type,
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07001846 class_loader_->Get());
Ian Rogersad0b3a32012-04-16 14:50:24 -07001847 DCHECK(!component_type.IsConflict());
jeffhao457cc512012-02-02 16:55:13 -08001848 if (component_type.IsNonZeroReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001849 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with component type "
1850 << component_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07001851 } else {
jeffhao457cc512012-02-02 16:55:13 -08001852 // Now verify if the element width in the table matches the element width declared in
1853 // the array
1854 const uint16_t* array_data = insns + (insns[1] | (((int32_t) insns[2]) << 16));
1855 if (array_data[0] != Instruction::kArrayDataSignature) {
jeffhaod5347e02012-03-22 17:25:05 -07001856 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid magic for array-data";
jeffhao457cc512012-02-02 16:55:13 -08001857 } else {
1858 size_t elem_width = Primitive::ComponentSize(component_type.GetPrimitiveType());
1859 // Since we don't compress the data in Dex, expect to see equal width of data stored
1860 // in the table and expected from the array class.
1861 if (array_data[1] != elem_width) {
jeffhaod5347e02012-03-22 17:25:05 -07001862 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-data size mismatch (" << array_data[1]
1863 << " vs " << elem_width << ")";
jeffhao457cc512012-02-02 16:55:13 -08001864 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001865 }
1866 }
jeffhaobdb76512011-09-07 11:43:16 -07001867 }
1868 }
1869 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001870 }
jeffhaobdb76512011-09-07 11:43:16 -07001871 case Instruction::IF_EQ:
Ian Rogersd81871c2011-10-03 13:57:23 -07001872 case Instruction::IF_NE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001873 const RegType& reg_type1 = work_line_->GetRegisterType(inst->VRegA_22t());
1874 const RegType& reg_type2 = work_line_->GetRegisterType(inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07001875 bool mismatch = false;
1876 if (reg_type1.IsZero()) { // zero then integral or reference expected
1877 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes();
1878 } else if (reg_type1.IsReferenceTypes()) { // both references?
1879 mismatch = !reg_type2.IsReferenceTypes();
1880 } else { // both integral?
1881 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes();
1882 }
1883 if (mismatch) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001884 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to if-eq/if-ne (" << reg_type1 << ","
1885 << reg_type2 << ") must both be references or integral";
jeffhaobdb76512011-09-07 11:43:16 -07001886 }
1887 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001888 }
jeffhaobdb76512011-09-07 11:43:16 -07001889 case Instruction::IF_LT:
1890 case Instruction::IF_GE:
1891 case Instruction::IF_GT:
Ian Rogersd81871c2011-10-03 13:57:23 -07001892 case Instruction::IF_LE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001893 const RegType& reg_type1 = work_line_->GetRegisterType(inst->VRegA_22t());
1894 const RegType& reg_type2 = work_line_->GetRegisterType(inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07001895 if (!reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001896 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to 'if' (" << reg_type1 << ","
1897 << reg_type2 << ") must be integral";
jeffhaobdb76512011-09-07 11:43:16 -07001898 }
1899 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001900 }
jeffhaobdb76512011-09-07 11:43:16 -07001901 case Instruction::IF_EQZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07001902 case Instruction::IF_NEZ: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001903 const RegType& reg_type = work_line_->GetRegisterType(inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07001904 if (!reg_type.IsReferenceTypes() && !reg_type.IsIntegralTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001905 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
1906 << " unexpected as arg to if-eqz/if-nez";
Ian Rogersd81871c2011-10-03 13:57:23 -07001907 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001908
1909 // Find previous instruction - its existence is a precondition to peephole optimization.
Ian Rogers9b360392013-06-06 14:45:07 -07001910 uint32_t instance_of_idx = 0;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001911 if (0 != work_insn_idx_) {
Ian Rogers9b360392013-06-06 14:45:07 -07001912 instance_of_idx = work_insn_idx_ - 1;
Brian Carlstromdf629502013-07-17 22:39:56 -07001913 while (0 != instance_of_idx && !insn_flags_[instance_of_idx].IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07001914 instance_of_idx--;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001915 }
Ian Rogers9b360392013-06-06 14:45:07 -07001916 CHECK(insn_flags_[instance_of_idx].IsOpcode());
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001917 } else {
1918 break;
1919 }
1920
Ian Rogers9b360392013-06-06 14:45:07 -07001921 const Instruction* instance_of_inst = Instruction::At(code_item_->insns_ + instance_of_idx);
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001922
1923 /* Check for peep-hole pattern of:
1924 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07001925 * instance-of vX, vY, T;
1926 * ifXXX vX, label ;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001927 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07001928 * label:
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001929 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07001930 * and sharpen the type of vY to be type T.
1931 * Note, this pattern can't be if:
1932 * - if there are other branches to this branch,
1933 * - when vX == vY.
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001934 */
Ian Rogersfae370a2013-06-05 08:33:27 -07001935 if (!CurrentInsnFlags()->IsBranchTarget() &&
Ian Rogers9b360392013-06-06 14:45:07 -07001936 (Instruction::INSTANCE_OF == instance_of_inst->Opcode()) &&
1937 (inst->VRegA_21t() == instance_of_inst->VRegA_22c()) &&
1938 (instance_of_inst->VRegA_22c() != instance_of_inst->VRegB_22c())) {
Ian Rogersfae370a2013-06-05 08:33:27 -07001939 // Check that the we are not attempting conversion to interface types,
1940 // which is not done because of the multiple inheritance implications.
Jeff Haoc642ec82013-09-04 16:11:55 -07001941 // Also don't change the type if it would result in an upcast.
1942 const RegType& orig_type = work_line_->GetRegisterType(instance_of_inst->VRegB_22c());
Ian Rogers9b360392013-06-06 14:45:07 -07001943 const RegType& cast_type = ResolveClassAndCheckAccess(instance_of_inst->VRegC_22c());
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001944
Jeff Haoa3faaf42013-09-03 19:07:00 -07001945 if (!cast_type.IsUnresolvedTypes() && !orig_type.IsUnresolvedTypes() &&
1946 !cast_type.GetClass()->IsInterface() && !cast_type.IsAssignableFrom(orig_type)) {
Ian Rogersd0fbd852013-09-24 18:17:04 -07001947 RegisterLine* update_line = RegisterLine::Create(code_item_->registers_size_, this);
Ian Rogersfae370a2013-06-05 08:33:27 -07001948 if (inst->Opcode() == Instruction::IF_EQZ) {
Ian Rogers9b360392013-06-06 14:45:07 -07001949 fallthrough_line.reset(update_line);
Ian Rogersfae370a2013-06-05 08:33:27 -07001950 } else {
Ian Rogers9b360392013-06-06 14:45:07 -07001951 branch_line.reset(update_line);
1952 }
1953 update_line->CopyFromLine(work_line_.get());
1954 update_line->SetRegisterType(instance_of_inst->VRegB_22c(), cast_type);
1955 if (!insn_flags_[instance_of_idx].IsBranchTarget() && 0 != instance_of_idx) {
1956 // See if instance-of was preceded by a move-object operation, common due to the small
1957 // register encoding space of instance-of, and propagate type information to the source
1958 // of the move-object.
1959 uint32_t move_idx = instance_of_idx - 1;
Brian Carlstromdf629502013-07-17 22:39:56 -07001960 while (0 != move_idx && !insn_flags_[move_idx].IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07001961 move_idx--;
1962 }
1963 CHECK(insn_flags_[move_idx].IsOpcode());
1964 const Instruction* move_inst = Instruction::At(code_item_->insns_ + move_idx);
1965 switch (move_inst->Opcode()) {
1966 case Instruction::MOVE_OBJECT:
1967 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) {
1968 update_line->SetRegisterType(move_inst->VRegB_12x(), cast_type);
1969 }
1970 break;
1971 case Instruction::MOVE_OBJECT_FROM16:
1972 if (move_inst->VRegA_22x() == instance_of_inst->VRegB_22c()) {
1973 update_line->SetRegisterType(move_inst->VRegB_22x(), cast_type);
1974 }
1975 break;
1976 case Instruction::MOVE_OBJECT_16:
1977 if (move_inst->VRegA_32x() == instance_of_inst->VRegB_22c()) {
1978 update_line->SetRegisterType(move_inst->VRegB_32x(), cast_type);
1979 }
1980 break;
1981 default:
1982 break;
1983 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001984 }
1985 }
1986 }
1987
jeffhaobdb76512011-09-07 11:43:16 -07001988 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001989 }
jeffhaobdb76512011-09-07 11:43:16 -07001990 case Instruction::IF_LTZ:
1991 case Instruction::IF_GEZ:
1992 case Instruction::IF_GTZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07001993 case Instruction::IF_LEZ: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001994 const RegType& reg_type = work_line_->GetRegisterType(inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07001995 if (!reg_type.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001996 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
1997 << " unexpected as arg to if-ltz/if-gez/if-gtz/if-lez";
Ian Rogersd81871c2011-10-03 13:57:23 -07001998 }
jeffhaobdb76512011-09-07 11:43:16 -07001999 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002000 }
jeffhaobdb76512011-09-07 11:43:16 -07002001 case Instruction::AGET_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002002 VerifyAGet(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002003 break;
jeffhaobdb76512011-09-07 11:43:16 -07002004 case Instruction::AGET_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002005 VerifyAGet(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002006 break;
jeffhaobdb76512011-09-07 11:43:16 -07002007 case Instruction::AGET_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002008 VerifyAGet(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002009 break;
jeffhaobdb76512011-09-07 11:43:16 -07002010 case Instruction::AGET_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002011 VerifyAGet(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002012 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002013 case Instruction::AGET:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002014 VerifyAGet(inst, reg_types_.Integer(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002015 break;
jeffhaobdb76512011-09-07 11:43:16 -07002016 case Instruction::AGET_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002017 VerifyAGet(inst, reg_types_.LongLo(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002018 break;
2019 case Instruction::AGET_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002020 VerifyAGet(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002021 break;
2022
Ian Rogersd81871c2011-10-03 13:57:23 -07002023 case Instruction::APUT_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002024 VerifyAPut(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002025 break;
2026 case Instruction::APUT_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002027 VerifyAPut(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002028 break;
2029 case Instruction::APUT_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002030 VerifyAPut(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002031 break;
2032 case Instruction::APUT_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002033 VerifyAPut(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002034 break;
2035 case Instruction::APUT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002036 VerifyAPut(inst, reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002037 break;
2038 case Instruction::APUT_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002039 VerifyAPut(inst, reg_types_.LongLo(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002040 break;
2041 case Instruction::APUT_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002042 VerifyAPut(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002043 break;
2044
jeffhaobdb76512011-09-07 11:43:16 -07002045 case Instruction::IGET_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002046 VerifyISGet(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002047 break;
jeffhaobdb76512011-09-07 11:43:16 -07002048 case Instruction::IGET_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002049 VerifyISGet(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002050 break;
jeffhaobdb76512011-09-07 11:43:16 -07002051 case Instruction::IGET_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002052 VerifyISGet(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002053 break;
jeffhaobdb76512011-09-07 11:43:16 -07002054 case Instruction::IGET_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002055 VerifyISGet(inst, reg_types_.Short(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002056 break;
2057 case Instruction::IGET:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002058 VerifyISGet(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002059 break;
2060 case Instruction::IGET_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002061 VerifyISGet(inst, reg_types_.LongLo(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002062 break;
2063 case Instruction::IGET_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002064 VerifyISGet(inst, reg_types_.JavaLangObject(false), false, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002065 break;
jeffhaobdb76512011-09-07 11:43:16 -07002066
Ian Rogersd81871c2011-10-03 13:57:23 -07002067 case Instruction::IPUT_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002068 VerifyISPut(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002069 break;
2070 case Instruction::IPUT_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002071 VerifyISPut(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002072 break;
2073 case Instruction::IPUT_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002074 VerifyISPut(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002075 break;
2076 case Instruction::IPUT_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002077 VerifyISPut(inst, reg_types_.Short(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002078 break;
2079 case Instruction::IPUT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002080 VerifyISPut(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002081 break;
2082 case Instruction::IPUT_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002083 VerifyISPut(inst, reg_types_.LongLo(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002084 break;
jeffhaobdb76512011-09-07 11:43:16 -07002085 case Instruction::IPUT_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002086 VerifyISPut(inst, reg_types_.JavaLangObject(false), false, false);
jeffhaobdb76512011-09-07 11:43:16 -07002087 break;
2088
jeffhaobdb76512011-09-07 11:43:16 -07002089 case Instruction::SGET_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002090 VerifyISGet(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002091 break;
jeffhaobdb76512011-09-07 11:43:16 -07002092 case Instruction::SGET_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002093 VerifyISGet(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002094 break;
jeffhaobdb76512011-09-07 11:43:16 -07002095 case Instruction::SGET_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002096 VerifyISGet(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002097 break;
jeffhaobdb76512011-09-07 11:43:16 -07002098 case Instruction::SGET_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002099 VerifyISGet(inst, reg_types_.Short(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002100 break;
2101 case Instruction::SGET:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002102 VerifyISGet(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002103 break;
2104 case Instruction::SGET_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002105 VerifyISGet(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002106 break;
2107 case Instruction::SGET_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002108 VerifyISGet(inst, reg_types_.JavaLangObject(false), false, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002109 break;
2110
2111 case Instruction::SPUT_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002112 VerifyISPut(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002113 break;
2114 case Instruction::SPUT_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002115 VerifyISPut(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002116 break;
2117 case Instruction::SPUT_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002118 VerifyISPut(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002119 break;
2120 case Instruction::SPUT_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002121 VerifyISPut(inst, reg_types_.Short(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002122 break;
2123 case Instruction::SPUT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002124 VerifyISPut(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002125 break;
2126 case Instruction::SPUT_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002127 VerifyISPut(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002128 break;
2129 case Instruction::SPUT_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002130 VerifyISPut(inst, reg_types_.JavaLangObject(false), false, true);
jeffhaobdb76512011-09-07 11:43:16 -07002131 break;
2132
2133 case Instruction::INVOKE_VIRTUAL:
2134 case Instruction::INVOKE_VIRTUAL_RANGE:
2135 case Instruction::INVOKE_SUPER:
Ian Rogersd81871c2011-10-03 13:57:23 -07002136 case Instruction::INVOKE_SUPER_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002137 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE ||
2138 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
2139 bool is_super = (inst->Opcode() == Instruction::INVOKE_SUPER ||
2140 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
Brian Carlstromea46f952013-07-30 01:26:50 -07002141 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_VIRTUAL,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002142 is_range, is_super);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002143 const RegType* return_type = nullptr;
2144 if (called_method != nullptr) {
2145 MethodHelper mh(called_method);
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08002146 mirror::Class* return_type_class = mh.GetReturnType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002147 if (return_type_class != nullptr) {
2148 return_type = &reg_types_.FromClass(mh.GetReturnTypeDescriptor(), return_type_class,
2149 return_type_class->CannotBeAssignedFromOtherTypes());
2150 } else {
2151 Thread* self = Thread::Current();
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08002152 DCHECK(!can_load_classes_ || self->IsExceptionPending());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002153 self->ClearException();
2154 }
2155 }
2156 if (return_type == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002157 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002158 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2159 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002160 const char* descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002161 return_type = &reg_types_.FromDescriptor(class_loader_->Get(), descriptor, false);
jeffhaobdb76512011-09-07 11:43:16 -07002162 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002163 if (!return_type->IsLowHalf()) {
2164 work_line_->SetResultRegisterType(*return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002165 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002166 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002167 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002168 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07002169 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002170 }
jeffhaobdb76512011-09-07 11:43:16 -07002171 case Instruction::INVOKE_DIRECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002172 case Instruction::INVOKE_DIRECT_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002173 bool is_range = (inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE);
Brian Carlstromea46f952013-07-30 01:26:50 -07002174 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002175 is_range, false);
Ian Rogers46685432012-06-03 22:26:43 -07002176 const char* return_type_descriptor;
2177 bool is_constructor;
2178 if (called_method == NULL) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002179 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers46685432012-06-03 22:26:43 -07002180 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002181 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0;
Ian Rogers46685432012-06-03 22:26:43 -07002182 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
2183 return_type_descriptor = dex_file_->StringByTypeIdx(return_type_idx);
2184 } else {
2185 is_constructor = called_method->IsConstructor();
2186 return_type_descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
2187 }
2188 if (is_constructor) {
jeffhaobdb76512011-09-07 11:43:16 -07002189 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002190 * Some additional checks when calling a constructor. We know from the invocation arg check
2191 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2192 * that to require that called_method->klass is the same as this->klass or this->super,
2193 * allowing the latter only if the "this" argument is the same as the "this" argument to
2194 * this method (which implies that we're in a constructor ourselves).
jeffhaobdb76512011-09-07 11:43:16 -07002195 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002196 const RegType& this_type = work_line_->GetInvocationThis(inst, is_range);
jeffhaob57e9522012-04-26 18:08:21 -07002197 if (this_type.IsConflict()) // failure.
2198 break;
jeffhaobdb76512011-09-07 11:43:16 -07002199
jeffhaob57e9522012-04-26 18:08:21 -07002200 /* no null refs allowed (?) */
2201 if (this_type.IsZero()) {
2202 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unable to initialize null ref";
2203 break;
jeffhao2a8a90e2011-09-26 14:25:31 -07002204 }
jeffhaob57e9522012-04-26 18:08:21 -07002205
2206 /* must be in same class or in superclass */
Ian Rogers46685432012-06-03 22:26:43 -07002207 // const RegType& this_super_klass = this_type.GetSuperClass(&reg_types_);
2208 // TODO: re-enable constructor type verification
2209 // if (this_super_klass.IsConflict()) {
jeffhaob57e9522012-04-26 18:08:21 -07002210 // Unknown super class, fail so we re-check at runtime.
Ian Rogers46685432012-06-03 22:26:43 -07002211 // Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "super class unknown for '" << this_type << "'";
2212 // break;
2213 // }
jeffhaob57e9522012-04-26 18:08:21 -07002214
2215 /* arg must be an uninitialized reference */
2216 if (!this_type.IsUninitializedTypes()) {
2217 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Expected initialization on uninitialized reference "
2218 << this_type;
2219 break;
2220 }
2221
2222 /*
2223 * Replace the uninitialized reference with an initialized one. We need to do this for all
2224 * registers that have the same object instance in them, not just the "this" register.
2225 */
2226 work_line_->MarkRefsAsInitialized(this_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002227 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002228 const RegType& return_type = reg_types_.FromDescriptor(class_loader_->Get(),
Mathieu Chartier590fee92013-09-13 13:46:47 -07002229 return_type_descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002230 if (!return_type.IsLowHalf()) {
2231 work_line_->SetResultRegisterType(return_type);
2232 } else {
2233 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
2234 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002235 just_set_result = true;
2236 break;
2237 }
2238 case Instruction::INVOKE_STATIC:
2239 case Instruction::INVOKE_STATIC_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002240 bool is_range = (inst->Opcode() == Instruction::INVOKE_STATIC_RANGE);
Brian Carlstromea46f952013-07-30 01:26:50 -07002241 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst,
Brian Carlstrom93c33962013-07-26 10:37:43 -07002242 METHOD_STATIC,
2243 is_range,
2244 false);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002245 const char* descriptor;
2246 if (called_method == NULL) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002247 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002248 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2249 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002250 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002251 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002252 descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002253 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002254 const RegType& return_type = reg_types_.FromDescriptor(class_loader_->Get(), descriptor,
Mathieu Chartier590fee92013-09-13 13:46:47 -07002255 false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002256 if (!return_type.IsLowHalf()) {
2257 work_line_->SetResultRegisterType(return_type);
2258 } else {
2259 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
2260 }
jeffhaobdb76512011-09-07 11:43:16 -07002261 just_set_result = true;
2262 }
2263 break;
jeffhaobdb76512011-09-07 11:43:16 -07002264 case Instruction::INVOKE_INTERFACE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002265 case Instruction::INVOKE_INTERFACE_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002266 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE);
Brian Carlstromea46f952013-07-30 01:26:50 -07002267 mirror::ArtMethod* abs_method = VerifyInvocationArgs(inst,
Brian Carlstrom93c33962013-07-26 10:37:43 -07002268 METHOD_INTERFACE,
2269 is_range,
2270 false);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002271 if (abs_method != NULL) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002272 mirror::Class* called_interface = abs_method->GetDeclaringClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002273 if (!called_interface->IsInterface() && !called_interface->IsObjectClass()) {
2274 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected interface class in invoke-interface '"
2275 << PrettyMethod(abs_method) << "'";
2276 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07002277 }
Ian Rogers0d604842012-04-16 14:50:24 -07002278 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002279 /* Get the type of the "this" arg, which should either be a sub-interface of called
2280 * interface or Object (see comments in RegType::JoinClass).
2281 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002282 const RegType& this_type = work_line_->GetInvocationThis(inst, is_range);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002283 if (this_type.IsZero()) {
2284 /* null pointer always passes (and always fails at runtime) */
2285 } else {
2286 if (this_type.IsUninitializedTypes()) {
2287 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface call on uninitialized object "
2288 << this_type;
2289 break;
2290 }
2291 // In the past we have tried to assert that "called_interface" is assignable
2292 // from "this_type.GetClass()", however, as we do an imprecise Join
2293 // (RegType::JoinClass) we don't have full information on what interfaces are
2294 // implemented by "this_type". For example, two classes may implement the same
2295 // interfaces and have a common parent that doesn't implement the interface. The
2296 // join will set "this_type" to the parent class and a test that this implements
2297 // the interface will incorrectly fail.
2298 }
2299 /*
2300 * We don't have an object instance, so we can't find the concrete method. However, all of
2301 * the type information is in the abstract method, so we're good.
2302 */
2303 const char* descriptor;
2304 if (abs_method == NULL) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002305 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002306 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2307 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
2308 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
2309 } else {
2310 descriptor = MethodHelper(abs_method).GetReturnTypeDescriptor();
2311 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002312 const RegType& return_type = reg_types_.FromDescriptor(class_loader_->Get(), descriptor,
Mathieu Chartier590fee92013-09-13 13:46:47 -07002313 false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002314 if (!return_type.IsLowHalf()) {
2315 work_line_->SetResultRegisterType(return_type);
2316 } else {
2317 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
2318 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002319 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07002320 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002321 }
jeffhaobdb76512011-09-07 11:43:16 -07002322 case Instruction::NEG_INT:
2323 case Instruction::NOT_INT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002324 work_line_->CheckUnaryOp(inst, reg_types_.Integer(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002325 break;
2326 case Instruction::NEG_LONG:
2327 case Instruction::NOT_LONG:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002328 work_line_->CheckUnaryOpWide(inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002329 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002330 break;
2331 case Instruction::NEG_FLOAT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002332 work_line_->CheckUnaryOp(inst, reg_types_.Float(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002333 break;
2334 case Instruction::NEG_DOUBLE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002335 work_line_->CheckUnaryOpWide(inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002336 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002337 break;
2338 case Instruction::INT_TO_LONG:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002339 work_line_->CheckUnaryOpToWide(inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002340 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002341 break;
2342 case Instruction::INT_TO_FLOAT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002343 work_line_->CheckUnaryOp(inst, reg_types_.Float(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002344 break;
2345 case Instruction::INT_TO_DOUBLE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002346 work_line_->CheckUnaryOpToWide(inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002347 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002348 break;
2349 case Instruction::LONG_TO_INT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002350 work_line_->CheckUnaryOpFromWide(inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002351 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002352 break;
2353 case Instruction::LONG_TO_FLOAT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002354 work_line_->CheckUnaryOpFromWide(inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002355 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002356 break;
2357 case Instruction::LONG_TO_DOUBLE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002358 work_line_->CheckUnaryOpWide(inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002359 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002360 break;
2361 case Instruction::FLOAT_TO_INT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002362 work_line_->CheckUnaryOp(inst, reg_types_.Integer(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002363 break;
2364 case Instruction::FLOAT_TO_LONG:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002365 work_line_->CheckUnaryOpToWide(inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002366 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002367 break;
2368 case Instruction::FLOAT_TO_DOUBLE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002369 work_line_->CheckUnaryOpToWide(inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002370 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002371 break;
2372 case Instruction::DOUBLE_TO_INT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002373 work_line_->CheckUnaryOpFromWide(inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002374 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002375 break;
2376 case Instruction::DOUBLE_TO_LONG:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002377 work_line_->CheckUnaryOpWide(inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002378 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002379 break;
2380 case Instruction::DOUBLE_TO_FLOAT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002381 work_line_->CheckUnaryOpFromWide(inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002382 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002383 break;
2384 case Instruction::INT_TO_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002385 work_line_->CheckUnaryOp(inst, reg_types_.Byte(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002386 break;
2387 case Instruction::INT_TO_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002388 work_line_->CheckUnaryOp(inst, reg_types_.Char(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002389 break;
2390 case Instruction::INT_TO_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002391 work_line_->CheckUnaryOp(inst, reg_types_.Short(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002392 break;
2393
2394 case Instruction::ADD_INT:
2395 case Instruction::SUB_INT:
2396 case Instruction::MUL_INT:
2397 case Instruction::REM_INT:
2398 case Instruction::DIV_INT:
2399 case Instruction::SHL_INT:
2400 case Instruction::SHR_INT:
2401 case Instruction::USHR_INT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002402 work_line_->CheckBinaryOp(inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002403 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002404 break;
2405 case Instruction::AND_INT:
2406 case Instruction::OR_INT:
2407 case Instruction::XOR_INT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002408 work_line_->CheckBinaryOp(inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002409 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002410 break;
2411 case Instruction::ADD_LONG:
2412 case Instruction::SUB_LONG:
2413 case Instruction::MUL_LONG:
2414 case Instruction::DIV_LONG:
2415 case Instruction::REM_LONG:
2416 case Instruction::AND_LONG:
2417 case Instruction::OR_LONG:
2418 case Instruction::XOR_LONG:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002419 work_line_->CheckBinaryOpWide(inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002420 reg_types_.LongLo(), reg_types_.LongHi(),
2421 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002422 break;
2423 case Instruction::SHL_LONG:
2424 case Instruction::SHR_LONG:
2425 case Instruction::USHR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002426 /* shift distance is Int, making these different from other binary operations */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002427 work_line_->CheckBinaryOpWideShift(inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002428 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002429 break;
2430 case Instruction::ADD_FLOAT:
2431 case Instruction::SUB_FLOAT:
2432 case Instruction::MUL_FLOAT:
2433 case Instruction::DIV_FLOAT:
2434 case Instruction::REM_FLOAT:
Brian Carlstrom93c33962013-07-26 10:37:43 -07002435 work_line_->CheckBinaryOp(inst,
2436 reg_types_.Float(),
2437 reg_types_.Float(),
2438 reg_types_.Float(),
2439 false);
jeffhaobdb76512011-09-07 11:43:16 -07002440 break;
2441 case Instruction::ADD_DOUBLE:
2442 case Instruction::SUB_DOUBLE:
2443 case Instruction::MUL_DOUBLE:
2444 case Instruction::DIV_DOUBLE:
2445 case Instruction::REM_DOUBLE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002446 work_line_->CheckBinaryOpWide(inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002447 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
2448 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002449 break;
2450 case Instruction::ADD_INT_2ADDR:
2451 case Instruction::SUB_INT_2ADDR:
2452 case Instruction::MUL_INT_2ADDR:
2453 case Instruction::REM_INT_2ADDR:
2454 case Instruction::SHL_INT_2ADDR:
2455 case Instruction::SHR_INT_2ADDR:
2456 case Instruction::USHR_INT_2ADDR:
Brian Carlstrom93c33962013-07-26 10:37:43 -07002457 work_line_->CheckBinaryOp2addr(inst,
2458 reg_types_.Integer(),
2459 reg_types_.Integer(),
2460 reg_types_.Integer(),
2461 false);
jeffhaobdb76512011-09-07 11:43:16 -07002462 break;
2463 case Instruction::AND_INT_2ADDR:
2464 case Instruction::OR_INT_2ADDR:
2465 case Instruction::XOR_INT_2ADDR:
Brian Carlstrom93c33962013-07-26 10:37:43 -07002466 work_line_->CheckBinaryOp2addr(inst,
2467 reg_types_.Integer(),
2468 reg_types_.Integer(),
2469 reg_types_.Integer(),
2470 true);
jeffhaobdb76512011-09-07 11:43:16 -07002471 break;
2472 case Instruction::DIV_INT_2ADDR:
Brian Carlstrom93c33962013-07-26 10:37:43 -07002473 work_line_->CheckBinaryOp2addr(inst,
2474 reg_types_.Integer(),
2475 reg_types_.Integer(),
2476 reg_types_.Integer(),
2477 false);
jeffhaobdb76512011-09-07 11:43:16 -07002478 break;
2479 case Instruction::ADD_LONG_2ADDR:
2480 case Instruction::SUB_LONG_2ADDR:
2481 case Instruction::MUL_LONG_2ADDR:
2482 case Instruction::DIV_LONG_2ADDR:
2483 case Instruction::REM_LONG_2ADDR:
2484 case Instruction::AND_LONG_2ADDR:
2485 case Instruction::OR_LONG_2ADDR:
2486 case Instruction::XOR_LONG_2ADDR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002487 work_line_->CheckBinaryOp2addrWide(inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002488 reg_types_.LongLo(), reg_types_.LongHi(),
2489 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002490 break;
2491 case Instruction::SHL_LONG_2ADDR:
2492 case Instruction::SHR_LONG_2ADDR:
2493 case Instruction::USHR_LONG_2ADDR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002494 work_line_->CheckBinaryOp2addrWideShift(inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002495 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002496 break;
2497 case Instruction::ADD_FLOAT_2ADDR:
2498 case Instruction::SUB_FLOAT_2ADDR:
2499 case Instruction::MUL_FLOAT_2ADDR:
2500 case Instruction::DIV_FLOAT_2ADDR:
2501 case Instruction::REM_FLOAT_2ADDR:
Brian Carlstrom93c33962013-07-26 10:37:43 -07002502 work_line_->CheckBinaryOp2addr(inst,
2503 reg_types_.Float(),
2504 reg_types_.Float(),
2505 reg_types_.Float(),
2506 false);
jeffhaobdb76512011-09-07 11:43:16 -07002507 break;
2508 case Instruction::ADD_DOUBLE_2ADDR:
2509 case Instruction::SUB_DOUBLE_2ADDR:
2510 case Instruction::MUL_DOUBLE_2ADDR:
2511 case Instruction::DIV_DOUBLE_2ADDR:
2512 case Instruction::REM_DOUBLE_2ADDR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002513 work_line_->CheckBinaryOp2addrWide(inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002514 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
2515 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002516 break;
2517 case Instruction::ADD_INT_LIT16:
2518 case Instruction::RSUB_INT:
2519 case Instruction::MUL_INT_LIT16:
2520 case Instruction::DIV_INT_LIT16:
2521 case Instruction::REM_INT_LIT16:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002522 work_line_->CheckLiteralOp(inst, reg_types_.Integer(), reg_types_.Integer(), false, true);
jeffhaobdb76512011-09-07 11:43:16 -07002523 break;
2524 case Instruction::AND_INT_LIT16:
2525 case Instruction::OR_INT_LIT16:
2526 case Instruction::XOR_INT_LIT16:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002527 work_line_->CheckLiteralOp(inst, reg_types_.Integer(), reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002528 break;
2529 case Instruction::ADD_INT_LIT8:
2530 case Instruction::RSUB_INT_LIT8:
2531 case Instruction::MUL_INT_LIT8:
2532 case Instruction::DIV_INT_LIT8:
2533 case Instruction::REM_INT_LIT8:
2534 case Instruction::SHL_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07002535 case Instruction::SHR_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07002536 case Instruction::USHR_INT_LIT8:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002537 work_line_->CheckLiteralOp(inst, reg_types_.Integer(), reg_types_.Integer(), false, false);
jeffhaobdb76512011-09-07 11:43:16 -07002538 break;
2539 case Instruction::AND_INT_LIT8:
2540 case Instruction::OR_INT_LIT8:
2541 case Instruction::XOR_INT_LIT8:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002542 work_line_->CheckLiteralOp(inst, reg_types_.Integer(), reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002543 break;
2544
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002545 // Special instructions.
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02002546 case Instruction::RETURN_VOID_BARRIER:
Ian Rogers9fc16eb2013-07-31 14:49:16 -07002547 if (!IsConstructor() || IsStatic()) {
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02002548 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-barrier not expected";
2549 }
2550 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002551 // Note: the following instructions encode offsets derived from class linking.
2552 // As such they use Class*/Field*/AbstractMethod* as these offsets only have
2553 // meaning if the class linking and resolution were successful.
2554 case Instruction::IGET_QUICK:
2555 VerifyIGetQuick(inst, reg_types_.Integer(), true);
2556 break;
2557 case Instruction::IGET_WIDE_QUICK:
2558 VerifyIGetQuick(inst, reg_types_.LongLo(), true);
2559 break;
2560 case Instruction::IGET_OBJECT_QUICK:
2561 VerifyIGetQuick(inst, reg_types_.JavaLangObject(false), false);
2562 break;
2563 case Instruction::IPUT_QUICK:
2564 VerifyIPutQuick(inst, reg_types_.Integer(), true);
2565 break;
2566 case Instruction::IPUT_WIDE_QUICK:
2567 VerifyIPutQuick(inst, reg_types_.LongLo(), true);
2568 break;
2569 case Instruction::IPUT_OBJECT_QUICK:
2570 VerifyIPutQuick(inst, reg_types_.JavaLangObject(false), false);
2571 break;
2572 case Instruction::INVOKE_VIRTUAL_QUICK:
2573 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
2574 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Brian Carlstromea46f952013-07-30 01:26:50 -07002575 mirror::ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002576 if (called_method != NULL) {
2577 const char* descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002578 const RegType& return_type = reg_types_.FromDescriptor(class_loader_->Get(), descriptor,
Mathieu Chartier590fee92013-09-13 13:46:47 -07002579 false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002580 if (!return_type.IsLowHalf()) {
2581 work_line_->SetResultRegisterType(return_type);
2582 } else {
2583 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
2584 }
2585 just_set_result = true;
2586 }
2587 break;
2588 }
2589
Ian Rogersd81871c2011-10-03 13:57:23 -07002590 /* These should never appear during verification. */
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002591 case Instruction::UNUSED_3E:
2592 case Instruction::UNUSED_3F:
2593 case Instruction::UNUSED_40:
2594 case Instruction::UNUSED_41:
2595 case Instruction::UNUSED_42:
2596 case Instruction::UNUSED_43:
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002597 case Instruction::UNUSED_79:
2598 case Instruction::UNUSED_7A:
2599 case Instruction::UNUSED_EB:
2600 case Instruction::UNUSED_EC:
jeffhao9a4f0032012-08-30 16:17:40 -07002601 case Instruction::UNUSED_ED:
jeffhaobdb76512011-09-07 11:43:16 -07002602 case Instruction::UNUSED_EE:
2603 case Instruction::UNUSED_EF:
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002604 case Instruction::UNUSED_F0:
2605 case Instruction::UNUSED_F1:
jeffhaobdb76512011-09-07 11:43:16 -07002606 case Instruction::UNUSED_F2:
2607 case Instruction::UNUSED_F3:
2608 case Instruction::UNUSED_F4:
2609 case Instruction::UNUSED_F5:
2610 case Instruction::UNUSED_F6:
2611 case Instruction::UNUSED_F7:
2612 case Instruction::UNUSED_F8:
2613 case Instruction::UNUSED_F9:
2614 case Instruction::UNUSED_FA:
2615 case Instruction::UNUSED_FB:
jeffhaobdb76512011-09-07 11:43:16 -07002616 case Instruction::UNUSED_FC:
jeffhaobdb76512011-09-07 11:43:16 -07002617 case Instruction::UNUSED_FD:
jeffhaobdb76512011-09-07 11:43:16 -07002618 case Instruction::UNUSED_FE:
jeffhaobdb76512011-09-07 11:43:16 -07002619 case Instruction::UNUSED_FF:
jeffhaod5347e02012-03-22 17:25:05 -07002620 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Unexpected opcode " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07002621 break;
2622
2623 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002624 * DO NOT add a "default" clause here. Without it the compiler will
jeffhaobdb76512011-09-07 11:43:16 -07002625 * complain if an instruction is missing (which is desirable).
2626 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002627 } // end - switch (dec_insn.opcode)
jeffhaobdb76512011-09-07 11:43:16 -07002628
Ian Rogersad0b3a32012-04-16 14:50:24 -07002629 if (have_pending_hard_failure_) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002630 if (Runtime::Current()->IsCompiler()) {
jeffhaob57e9522012-04-26 18:08:21 -07002631 /* When compiling, check that the last failure is a hard failure */
Ian Rogersad0b3a32012-04-16 14:50:24 -07002632 CHECK_EQ(failures_[failures_.size() - 1], VERIFY_ERROR_BAD_CLASS_HARD);
Ian Rogerse1758fe2012-04-19 11:31:15 -07002633 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002634 /* immediate failure, reject class */
2635 info_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_);
2636 return false;
jeffhaofaf459e2012-08-31 15:32:47 -07002637 } else if (have_pending_runtime_throw_failure_) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07002638 /* checking interpreter will throw, mark following code as unreachable */
jeffhaofaf459e2012-08-31 15:32:47 -07002639 opcode_flags = Instruction::kThrow;
jeffhaobdb76512011-09-07 11:43:16 -07002640 }
jeffhaobdb76512011-09-07 11:43:16 -07002641 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002642 * If we didn't just set the result register, clear it out. This ensures that you can only use
2643 * "move-result" immediately after the result is set. (We could check this statically, but it's
2644 * not expensive and it makes our debugging output cleaner.)
jeffhaobdb76512011-09-07 11:43:16 -07002645 */
2646 if (!just_set_result) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002647 work_line_->SetResultTypeToUnknown();
jeffhaobdb76512011-09-07 11:43:16 -07002648 }
2649
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002650
jeffhaobdb76512011-09-07 11:43:16 -07002651
2652 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002653 * Handle "branch". Tag the branch target.
jeffhaobdb76512011-09-07 11:43:16 -07002654 *
2655 * NOTE: instructions like Instruction::EQZ provide information about the
jeffhaod1f0fde2011-09-08 17:25:33 -07002656 * state of the register when the branch is taken or not taken. For example,
jeffhaobdb76512011-09-07 11:43:16 -07002657 * somebody could get a reference field, check it for zero, and if the
2658 * branch is taken immediately store that register in a boolean field
jeffhaod1f0fde2011-09-08 17:25:33 -07002659 * since the value is known to be zero. We do not currently account for
jeffhaobdb76512011-09-07 11:43:16 -07002660 * that, and will reject the code.
2661 *
2662 * TODO: avoid re-fetching the branch target
2663 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002664 if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07002665 bool isConditional, selfOkay;
Ian Rogersd81871c2011-10-03 13:57:23 -07002666 if (!GetBranchOffset(work_insn_idx_, &branch_target, &isConditional, &selfOkay)) {
jeffhaobdb76512011-09-07 11:43:16 -07002667 /* should never happen after static verification */
jeffhaod5347e02012-03-22 17:25:05 -07002668 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad branch";
jeffhaobdb76512011-09-07 11:43:16 -07002669 return false;
2670 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08002671 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0);
jeffhaod5347e02012-03-22 17:25:05 -07002672 if (!CheckNotMoveException(code_item_->insns_, work_insn_idx_ + branch_target)) {
jeffhaobdb76512011-09-07 11:43:16 -07002673 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002674 }
jeffhaobdb76512011-09-07 11:43:16 -07002675 /* update branch target, set "changed" if appropriate */
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002676 if (NULL != branch_line.get()) {
2677 if (!UpdateRegisters(work_insn_idx_ + branch_target, branch_line.get())) {
2678 return false;
2679 }
2680 } else {
2681 if (!UpdateRegisters(work_insn_idx_ + branch_target, work_line_.get())) {
2682 return false;
2683 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002684 }
jeffhaobdb76512011-09-07 11:43:16 -07002685 }
2686
2687 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002688 * Handle "switch". Tag all possible branch targets.
jeffhaobdb76512011-09-07 11:43:16 -07002689 *
2690 * We've already verified that the table is structurally sound, so we
2691 * just need to walk through and tag the targets.
2692 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002693 if ((opcode_flags & Instruction::kSwitch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07002694 int offset_to_switch = insns[1] | (((int32_t) insns[2]) << 16);
2695 const uint16_t* switch_insns = insns + offset_to_switch;
2696 int switch_count = switch_insns[1];
2697 int offset_to_targets, targ;
2698
2699 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
2700 /* 0 = sig, 1 = count, 2/3 = first key */
2701 offset_to_targets = 4;
2702 } else {
2703 /* 0 = sig, 1 = count, 2..count * 2 = keys */
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07002704 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH);
jeffhaobdb76512011-09-07 11:43:16 -07002705 offset_to_targets = 2 + 2 * switch_count;
2706 }
2707
2708 /* verify each switch target */
2709 for (targ = 0; targ < switch_count; targ++) {
2710 int offset;
2711 uint32_t abs_offset;
2712
2713 /* offsets are 32-bit, and only partly endian-swapped */
2714 offset = switch_insns[offset_to_targets + targ * 2] |
2715 (((int32_t) switch_insns[offset_to_targets + targ * 2 + 1]) << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07002716 abs_offset = work_insn_idx_ + offset;
2717 DCHECK_LT(abs_offset, code_item_->insns_size_in_code_units_);
jeffhaod5347e02012-03-22 17:25:05 -07002718 if (!CheckNotMoveException(code_item_->insns_, abs_offset)) {
jeffhaobdb76512011-09-07 11:43:16 -07002719 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002720 }
2721 if (!UpdateRegisters(abs_offset, work_line_.get()))
jeffhaobdb76512011-09-07 11:43:16 -07002722 return false;
2723 }
2724 }
2725
2726 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002727 * Handle instructions that can throw and that are sitting in a "try" block. (If they're not in a
2728 * "try" block when they throw, control transfers out of the method.)
jeffhaobdb76512011-09-07 11:43:16 -07002729 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002730 if ((opcode_flags & Instruction::kThrow) != 0 && insn_flags_[work_insn_idx_].IsInTry()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002731 bool within_catch_all = false;
Ian Rogers0571d352011-11-03 19:51:38 -07002732 CatchHandlerIterator iterator(*code_item_, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07002733
Ian Rogers0571d352011-11-03 19:51:38 -07002734 for (; iterator.HasNext(); iterator.Next()) {
2735 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002736 within_catch_all = true;
2737 }
jeffhaobdb76512011-09-07 11:43:16 -07002738 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002739 * Merge registers into the "catch" block. We want to use the "savedRegs" rather than
2740 * "work_regs", because at runtime the exception will be thrown before the instruction
2741 * modifies any registers.
jeffhaobdb76512011-09-07 11:43:16 -07002742 */
Ian Rogers0571d352011-11-03 19:51:38 -07002743 if (!UpdateRegisters(iterator.GetHandlerAddress(), saved_line_.get())) {
jeffhaobdb76512011-09-07 11:43:16 -07002744 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002745 }
jeffhaobdb76512011-09-07 11:43:16 -07002746 }
2747
2748 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002749 * If the monitor stack depth is nonzero, there must be a "catch all" handler for this
2750 * instruction. This does apply to monitor-exit because of async exception handling.
jeffhaobdb76512011-09-07 11:43:16 -07002751 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002752 if (work_line_->MonitorStackDepth() > 0 && !within_catch_all) {
jeffhaobdb76512011-09-07 11:43:16 -07002753 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002754 * The state in work_line reflects the post-execution state. If the current instruction is a
2755 * monitor-enter and the monitor stack was empty, we don't need a catch-all (if it throws,
jeffhaobdb76512011-09-07 11:43:16 -07002756 * it will do so before grabbing the lock).
2757 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002758 if (inst->Opcode() != Instruction::MONITOR_ENTER || work_line_->MonitorStackDepth() != 1) {
jeffhaod5347e02012-03-22 17:25:05 -07002759 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
Ian Rogersd81871c2011-10-03 13:57:23 -07002760 << "expected to be within a catch-all for an instruction where a monitor is held";
jeffhaobdb76512011-09-07 11:43:16 -07002761 return false;
2762 }
2763 }
2764 }
2765
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002766 /* Handle "continue". Tag the next consecutive instruction.
2767 * Note: Keep the code handling "continue" case below the "branch" and "switch" cases,
2768 * because it changes work_line_ when performing peephole optimization
2769 * and this change should not be used in those cases.
2770 */
Ian Rogers6d376ae2013-07-23 15:12:40 -07002771 if ((opcode_flags & Instruction::kContinue) != 0) {
2772 uint32_t next_insn_idx = work_insn_idx_ + CurrentInsnFlags()->GetLengthInCodeUnits();
2773 if (next_insn_idx >= code_item_->insns_size_in_code_units_) {
2774 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Execution can walk off end of code area";
2775 return false;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002776 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07002777 // The only way to get to a move-exception instruction is to get thrown there. Make sure the
2778 // next instruction isn't one.
2779 if (!CheckNotMoveException(code_item_->insns_, next_insn_idx)) {
2780 return false;
2781 }
2782 if (NULL != fallthrough_line.get()) {
2783 // Make workline consistent with fallthrough computed from peephole optimization.
2784 work_line_->CopyFromLine(fallthrough_line.get());
2785 }
Ian Rogersb8c78592013-07-25 23:52:52 +00002786 if (insn_flags_[next_insn_idx].IsReturn()) {
2787 // For returns we only care about the operand to the return, all other registers are dead.
2788 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn_idx);
2789 Instruction::Code opcode = ret_inst->Opcode();
2790 if ((opcode == Instruction::RETURN_VOID) || (opcode == Instruction::RETURN_VOID_BARRIER)) {
2791 work_line_->MarkAllRegistersAsConflicts();
2792 } else {
2793 if (opcode == Instruction::RETURN_WIDE) {
2794 work_line_->MarkAllRegistersAsConflictsExceptWide(ret_inst->VRegA_11x());
2795 } else {
2796 work_line_->MarkAllRegistersAsConflictsExcept(ret_inst->VRegA_11x());
2797 }
2798 }
2799 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07002800 RegisterLine* next_line = reg_table_.GetLine(next_insn_idx);
2801 if (next_line != NULL) {
2802 // Merge registers into what we have for the next instruction,
2803 // and set the "changed" flag if needed.
2804 if (!UpdateRegisters(next_insn_idx, work_line_.get())) {
2805 return false;
2806 }
2807 } else {
2808 /*
2809 * We're not recording register data for the next instruction, so we don't know what the
2810 * prior state was. We have to assume that something has changed and re-evaluate it.
2811 */
2812 insn_flags_[next_insn_idx].SetChanged();
2813 }
2814 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002815
jeffhaod1f0fde2011-09-08 17:25:33 -07002816 /* If we're returning from the method, make sure monitor stack is empty. */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002817 if ((opcode_flags & Instruction::kReturn) != 0) {
Elliott Hughesb25c3f62012-03-26 16:35:06 -07002818 if (!work_line_->VerifyMonitorStackEmpty()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002819 return false;
2820 }
jeffhaobdb76512011-09-07 11:43:16 -07002821 }
2822
2823 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002824 * Update start_guess. Advance to the next instruction of that's
2825 * possible, otherwise use the branch target if one was found. If
jeffhaobdb76512011-09-07 11:43:16 -07002826 * neither of those exists we're in a return or throw; leave start_guess
2827 * alone and let the caller sort it out.
2828 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002829 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002830 *start_guess = work_insn_idx_ + insn_flags_[work_insn_idx_].GetLengthInCodeUnits();
Elliott Hughesadb8c672012-03-06 16:49:32 -08002831 } else if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07002832 /* we're still okay if branch_target is zero */
Ian Rogersd81871c2011-10-03 13:57:23 -07002833 *start_guess = work_insn_idx_ + branch_target;
jeffhaobdb76512011-09-07 11:43:16 -07002834 }
2835
Ian Rogersd81871c2011-10-03 13:57:23 -07002836 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
2837 DCHECK(insn_flags_[*start_guess].IsOpcode());
jeffhaobdb76512011-09-07 11:43:16 -07002838
2839 return true;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002840} // NOLINT(readability/fn_size)
jeffhaobdb76512011-09-07 11:43:16 -07002841
Ian Rogers776ac1f2012-04-13 23:36:36 -07002842const RegType& MethodVerifier::ResolveClassAndCheckAccess(uint32_t class_idx) {
Ian Rogers0571d352011-11-03 19:51:38 -07002843 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002844 const RegType& referrer = GetDeclaringClass();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002845 mirror::Class* klass = (*dex_cache_)->GetResolvedType(class_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002846 const RegType& result =
Ian Rogers04f94f42013-06-10 15:09:26 -07002847 klass != NULL ? reg_types_.FromClass(descriptor, klass,
2848 klass->CannotBeAssignedFromOtherTypes())
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07002849 : reg_types_.FromDescriptor(class_loader_->Get(), descriptor, false);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002850 if (result.IsConflict()) {
2851 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "accessing broken descriptor '" << descriptor
2852 << "' in " << referrer;
2853 return result;
2854 }
Ian Rogerse1758fe2012-04-19 11:31:15 -07002855 if (klass == NULL && !result.IsUnresolvedTypes()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002856 (*dex_cache_)->SetResolvedType(class_idx, result.GetClass());
Ian Rogerse1758fe2012-04-19 11:31:15 -07002857 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002858 // Check if access is allowed. Unresolved types use xxxWithAccessCheck to
Jeff Haob24b4a72013-07-31 13:47:31 -07002859 // check at runtime if access is allowed and so pass here. If result is
2860 // primitive, skip the access check.
2861 if (result.IsNonZeroReferenceTypes() && !result.IsUnresolvedTypes() &&
2862 !referrer.IsUnresolvedTypes() && !referrer.CanAccess(result)) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002863 Fail(VERIFY_ERROR_ACCESS_CLASS) << "illegal class access: '"
Ian Rogersad0b3a32012-04-16 14:50:24 -07002864 << referrer << "' -> '" << result << "'";
Ian Rogers28ad40d2011-10-27 15:19:26 -07002865 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002866 return result;
Ian Rogersd81871c2011-10-03 13:57:23 -07002867}
2868
Ian Rogers776ac1f2012-04-13 23:36:36 -07002869const RegType& MethodVerifier::GetCaughtExceptionType() {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002870 const RegType* common_super = NULL;
Ian Rogersd81871c2011-10-03 13:57:23 -07002871 if (code_item_->tries_size_ != 0) {
Ian Rogers0571d352011-11-03 19:51:38 -07002872 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
Ian Rogersd81871c2011-10-03 13:57:23 -07002873 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2874 for (uint32_t i = 0; i < handlers_size; i++) {
Ian Rogers0571d352011-11-03 19:51:38 -07002875 CatchHandlerIterator iterator(handlers_ptr);
2876 for (; iterator.HasNext(); iterator.Next()) {
2877 if (iterator.GetHandlerAddress() == (uint32_t) work_insn_idx_) {
2878 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) {
Ian Rogersb4903572012-10-11 11:52:56 -07002879 common_super = &reg_types_.JavaLangThrowable(false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002880 } else {
Ian Rogers0571d352011-11-03 19:51:38 -07002881 const RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex());
Jeff Haob878f212014-04-24 16:25:36 -07002882 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(exception)) {
Jeff Haoc26a56c2013-11-04 12:00:47 -08002883 if (exception.IsUnresolvedTypes()) {
2884 // We don't know enough about the type. Fail here and let runtime handle it.
2885 Fail(VERIFY_ERROR_NO_CLASS) << "unresolved exception class " << exception;
2886 return exception;
2887 } else {
2888 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unexpected non-exception class " << exception;
2889 return reg_types_.Conflict();
2890 }
Jeff Haob878f212014-04-24 16:25:36 -07002891 } else if (common_super == nullptr) {
2892 common_super = &exception;
Ian Rogers28ad40d2011-10-27 15:19:26 -07002893 } else if (common_super->Equals(exception)) {
Ian Rogersc4762272012-02-01 15:55:55 -08002894 // odd case, but nothing to do
Ian Rogersd81871c2011-10-03 13:57:23 -07002895 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002896 common_super = &common_super->Merge(exception, &reg_types_);
Ian Rogersb4903572012-10-11 11:52:56 -07002897 CHECK(reg_types_.JavaLangThrowable(false).IsAssignableFrom(*common_super));
Ian Rogersd81871c2011-10-03 13:57:23 -07002898 }
2899 }
2900 }
2901 }
Ian Rogers0571d352011-11-03 19:51:38 -07002902 handlers_ptr = iterator.EndDataPointer();
Ian Rogersd81871c2011-10-03 13:57:23 -07002903 }
2904 }
2905 if (common_super == NULL) {
2906 /* no catch blocks, or no catches with classes we can find */
jeffhaod5347e02012-03-22 17:25:05 -07002907 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unable to find exception handler";
Ian Rogersad0b3a32012-04-16 14:50:24 -07002908 return reg_types_.Conflict();
Ian Rogersd81871c2011-10-03 13:57:23 -07002909 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002910 return *common_super;
Ian Rogersd81871c2011-10-03 13:57:23 -07002911}
2912
Brian Carlstromea46f952013-07-30 01:26:50 -07002913mirror::ArtMethod* MethodVerifier::ResolveMethodAndCheckAccess(uint32_t dex_method_idx,
Ian Rogersd91d6d62013-09-25 20:26:14 -07002914 MethodType method_type) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002915 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx);
Ian Rogers90040192011-12-16 08:54:29 -08002916 const RegType& klass_type = ResolveClassAndCheckAccess(method_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002917 if (klass_type.IsConflict()) {
2918 std::string append(" in attempt to access method ");
2919 append += dex_file_->GetMethodName(method_id);
2920 AppendToLastFailMessage(append);
Ian Rogers90040192011-12-16 08:54:29 -08002921 return NULL;
2922 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002923 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers90040192011-12-16 08:54:29 -08002924 return NULL; // Can't resolve Class so no more to do here
2925 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002926 mirror::Class* klass = klass_type.GetClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002927 const RegType& referrer = GetDeclaringClass();
Mathieu Chartier590fee92013-09-13 13:46:47 -07002928 mirror::ArtMethod* res_method = (*dex_cache_)->GetResolvedMethod(dex_method_idx);
Ian Rogersd81871c2011-10-03 13:57:23 -07002929 if (res_method == NULL) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002930 const char* name = dex_file_->GetMethodName(method_id);
Ian Rogersd91d6d62013-09-25 20:26:14 -07002931 const Signature signature = dex_file_->GetMethodSignature(method_id);
jeffhao8cd6dda2012-02-22 10:15:34 -08002932
2933 if (method_type == METHOD_DIRECT || method_type == METHOD_STATIC) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002934 res_method = klass->FindDirectMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08002935 } else if (method_type == METHOD_INTERFACE) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002936 res_method = klass->FindInterfaceMethod(name, signature);
2937 } else {
2938 res_method = klass->FindVirtualMethod(name, signature);
2939 }
2940 if (res_method != NULL) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07002941 (*dex_cache_)->SetResolvedMethod(dex_method_idx, res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07002942 } else {
jeffhao8cd6dda2012-02-22 10:15:34 -08002943 // If a virtual or interface method wasn't found with the expected type, look in
2944 // the direct methods. This can happen when the wrong invoke type is used or when
2945 // a class has changed, and will be flagged as an error in later checks.
2946 if (method_type == METHOD_INTERFACE || method_type == METHOD_VIRTUAL) {
2947 res_method = klass->FindDirectMethod(name, signature);
2948 }
2949 if (res_method == NULL) {
2950 Fail(VERIFY_ERROR_NO_METHOD) << "couldn't find method "
2951 << PrettyDescriptor(klass) << "." << name
2952 << " " << signature;
2953 return NULL;
2954 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002955 }
2956 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002957 // Make sure calls to constructors are "direct". There are additional restrictions but we don't
2958 // enforce them here.
2959 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) {
jeffhaod5347e02012-03-22 17:25:05 -07002960 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting non-direct call to constructor "
2961 << PrettyMethod(res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07002962 return NULL;
2963 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002964 // Disallow any calls to class initializers.
2965 if (MethodHelper(res_method).IsClassInitializer()) {
jeffhaod5347e02012-03-22 17:25:05 -07002966 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting call to class initializer "
2967 << PrettyMethod(res_method);
jeffhao8cd6dda2012-02-22 10:15:34 -08002968 return NULL;
2969 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002970 // Check if access is allowed.
Ian Rogersad0b3a32012-04-16 14:50:24 -07002971 if (!referrer.CanAccessMember(res_method->GetDeclaringClass(), res_method->GetAccessFlags())) {
jeffhao8cd6dda2012-02-22 10:15:34 -08002972 Fail(VERIFY_ERROR_ACCESS_METHOD) << "illegal method access (call " << PrettyMethod(res_method)
Ian Rogersad0b3a32012-04-16 14:50:24 -07002973 << " from " << referrer << ")";
jeffhaob57e9522012-04-26 18:08:21 -07002974 return res_method;
jeffhao8cd6dda2012-02-22 10:15:34 -08002975 }
jeffhaode0d9c92012-02-27 13:58:13 -08002976 // Check that invoke-virtual and invoke-super are not used on private methods of the same class.
2977 if (res_method->IsPrivate() && method_type == METHOD_VIRTUAL) {
jeffhaod5347e02012-03-22 17:25:05 -07002978 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-super/virtual can't be used on private method "
2979 << PrettyMethod(res_method);
jeffhaode0d9c92012-02-27 13:58:13 -08002980 return NULL;
2981 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002982 // Check that interface methods match interface classes.
2983 if (klass->IsInterface() && method_type != METHOD_INTERFACE) {
2984 Fail(VERIFY_ERROR_CLASS_CHANGE) << "non-interface method " << PrettyMethod(res_method)
2985 << " is in an interface class " << PrettyClass(klass);
2986 return NULL;
2987 } else if (!klass->IsInterface() && method_type == METHOD_INTERFACE) {
2988 Fail(VERIFY_ERROR_CLASS_CHANGE) << "interface method " << PrettyMethod(res_method)
2989 << " is in a non-interface class " << PrettyClass(klass);
2990 return NULL;
2991 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002992 // See if the method type implied by the invoke instruction matches the access flags for the
2993 // target method.
2994 if ((method_type == METHOD_DIRECT && !res_method->IsDirect()) ||
2995 (method_type == METHOD_STATIC && !res_method->IsStatic()) ||
2996 ((method_type == METHOD_VIRTUAL || method_type == METHOD_INTERFACE) && res_method->IsDirect())
2997 ) {
Ian Rogers2fc14272012-08-30 10:56:57 -07002998 Fail(VERIFY_ERROR_CLASS_CHANGE) << "invoke type (" << method_type << ") does not match method "
2999 " type of " << PrettyMethod(res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07003000 return NULL;
3001 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003002 return res_method;
3003}
3004
Brian Carlstromea46f952013-07-30 01:26:50 -07003005mirror::ArtMethod* MethodVerifier::VerifyInvocationArgs(const Instruction* inst,
Sebastien Hertz5243e912013-05-21 10:55:07 +02003006 MethodType method_type,
3007 bool is_range,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003008 bool is_super) {
jeffhao8cd6dda2012-02-22 10:15:34 -08003009 // Resolve the method. This could be an abstract or concrete method depending on what sort of call
3010 // we're making.
Sebastien Hertz5243e912013-05-21 10:55:07 +02003011 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Brian Carlstromea46f952013-07-30 01:26:50 -07003012 mirror::ArtMethod* res_method = ResolveMethodAndCheckAccess(method_idx, method_type);
jeffhao8cd6dda2012-02-22 10:15:34 -08003013 if (res_method == NULL) { // error or class is unresolved
3014 return NULL;
3015 }
3016
Ian Rogersd81871c2011-10-03 13:57:23 -07003017 // If we're using invoke-super(method), make sure that the executing method's class' superclass
3018 // has a vtable entry for the target method.
3019 if (is_super) {
3020 DCHECK(method_type == METHOD_VIRTUAL);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003021 const RegType& super = GetDeclaringClass().GetSuperClass(&reg_types_);
Ian Rogers529781d2012-07-23 17:24:29 -07003022 if (super.IsUnresolvedTypes()) {
jeffhao4d8df822012-04-24 17:09:36 -07003023 Fail(VERIFY_ERROR_NO_METHOD) << "unknown super class in invoke-super from "
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003024 << PrettyMethod(dex_method_idx_, *dex_file_)
jeffhao4d8df822012-04-24 17:09:36 -07003025 << " to super " << PrettyMethod(res_method);
3026 return NULL;
3027 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003028 mirror::Class* super_klass = super.GetClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003029 if (res_method->GetMethodIndex() >= super_klass->GetVTable()->GetLength()) {
jeffhao4d8df822012-04-24 17:09:36 -07003030 MethodHelper mh(res_method);
3031 Fail(VERIFY_ERROR_NO_METHOD) << "invalid invoke-super from "
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003032 << PrettyMethod(dex_method_idx_, *dex_file_)
jeffhao4d8df822012-04-24 17:09:36 -07003033 << " to super " << super
3034 << "." << mh.GetName()
3035 << mh.GetSignature();
Ian Rogersd81871c2011-10-03 13:57:23 -07003036 return NULL;
3037 }
3038 }
3039 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003040 // match the call to the signature. Also, we might be calling through an abstract method
Ian Rogersd81871c2011-10-03 13:57:23 -07003041 // definition (which doesn't have register count values).
Sebastien Hertz5243e912013-05-21 10:55:07 +02003042 const size_t expected_args = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
Ian Rogersd81871c2011-10-03 13:57:23 -07003043 /* caught by static verifier */
3044 DCHECK(is_range || expected_args <= 5);
3045 if (expected_args > code_item_->outs_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07003046 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
Ian Rogersd81871c2011-10-03 13:57:23 -07003047 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
3048 return NULL;
3049 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003050
jeffhaobdb76512011-09-07 11:43:16 -07003051 /*
Ian Rogersad0b3a32012-04-16 14:50:24 -07003052 * Check the "this" argument, which must be an instance of the class that declared the method.
3053 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
3054 * rigorous check here (which is okay since we have to do it at runtime).
jeffhaobdb76512011-09-07 11:43:16 -07003055 */
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003056 size_t actual_args = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -07003057 if (!res_method->IsStatic()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003058 const RegType& actual_arg_type = work_line_->GetInvocationThis(inst, is_range);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003059 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
Ian Rogersd81871c2011-10-03 13:57:23 -07003060 return NULL;
3061 }
3062 if (actual_arg_type.IsUninitializedReference() && !res_method->IsConstructor()) {
jeffhaod5347e02012-03-22 17:25:05 -07003063 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
Ian Rogersd81871c2011-10-03 13:57:23 -07003064 return NULL;
3065 }
3066 if (method_type != METHOD_INTERFACE && !actual_arg_type.IsZero()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003067 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers04f94f42013-06-10 15:09:26 -07003068 const RegType& res_method_class =
Mathieu Chartierf8322842014-05-16 10:59:25 -07003069 reg_types_.FromClass(klass->GetDescriptor().c_str(), klass,
Ian Rogers04f94f42013-06-10 15:09:26 -07003070 klass->CannotBeAssignedFromOtherTypes());
Ian Rogers9074b992011-10-26 17:41:55 -07003071 if (!res_method_class.IsAssignableFrom(actual_arg_type)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07003072 Fail(actual_arg_type.IsUnresolvedTypes() ? VERIFY_ERROR_NO_CLASS:
3073 VERIFY_ERROR_BAD_CLASS_SOFT) << "'this' argument '" << actual_arg_type
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003074 << "' not instance of '" << res_method_class << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07003075 return NULL;
3076 }
3077 }
3078 actual_args++;
3079 }
3080 /*
3081 * Process the target method's signature. This signature may or may not
3082 * have been verified, so we can't assume it's properly formed.
3083 */
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003084 MethodHelper mh(res_method);
3085 const DexFile::TypeList* params = mh.GetParameterTypeList();
3086 size_t params_size = params == NULL ? 0 : params->Size();
Sebastien Hertz5243e912013-05-21 10:55:07 +02003087 uint32_t arg[5];
3088 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07003089 inst->GetVarArgs(arg);
Sebastien Hertz5243e912013-05-21 10:55:07 +02003090 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003091 for (size_t param_index = 0; param_index < params_size; param_index++) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003092 if (actual_args >= expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07003093 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invalid call to '" << PrettyMethod(res_method)
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003094 << "'. Expected " << expected_args << " arguments, processing argument " << actual_args
3095 << " (where longs/doubles count twice).";
Ian Rogersd81871c2011-10-03 13:57:23 -07003096 return NULL;
3097 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003098 const char* descriptor =
3099 mh.GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);
3100 if (descriptor == NULL) {
jeffhaod5347e02012-03-22 17:25:05 -07003101 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003102 << " missing signature component";
3103 return NULL;
Ian Rogersd81871c2011-10-03 13:57:23 -07003104 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003105 const RegType& reg_type = reg_types_.FromDescriptor(class_loader_->Get(), descriptor, false);
Sebastien Hertz5243e912013-05-21 10:55:07 +02003106 uint32_t get_reg = is_range ? inst->VRegC_3rc() + actual_args : arg[actual_args];
Jeff Haoa6b22c52013-10-04 14:33:22 -07003107 if (reg_type.IsIntegralTypes()) {
3108 const RegType& src_type = work_line_->GetRegisterType(get_reg);
3109 if (!src_type.IsIntegralTypes()) {
3110 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << get_reg << " has type " << src_type
3111 << " but expected " << reg_type;
3112 return res_method;
3113 }
3114 } else if (!work_line_->VerifyRegisterType(get_reg, reg_type)) {
jeffhaob57e9522012-04-26 18:08:21 -07003115 return res_method;
Ian Rogersd81871c2011-10-03 13:57:23 -07003116 }
3117 actual_args = reg_type.IsLongOrDoubleTypes() ? actual_args + 2 : actual_args + 1;
3118 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003119 if (actual_args != expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07003120 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003121 << " expected " << expected_args << " arguments, found " << actual_args;
Ian Rogersd81871c2011-10-03 13:57:23 -07003122 return NULL;
3123 } else {
3124 return res_method;
3125 }
3126}
3127
Brian Carlstromea46f952013-07-30 01:26:50 -07003128mirror::ArtMethod* MethodVerifier::GetQuickInvokedMethod(const Instruction* inst,
Mathieu Chartier590fee92013-09-13 13:46:47 -07003129 RegisterLine* reg_line, bool is_range) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003130 DCHECK(inst->Opcode() == Instruction::INVOKE_VIRTUAL_QUICK ||
3131 inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
3132 const RegType& actual_arg_type = reg_line->GetInvocationThis(inst, is_range);
Ian Rogers9bc54402014-04-17 16:40:01 -07003133 if (!actual_arg_type.HasClass()) {
3134 VLOG(verifier) << "Failed to get mirror::Class* from '" << actual_arg_type << "'";
Andreas Gampe63981562014-04-17 12:28:43 -07003135 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003136 }
Ian Rogersa4cf1df2014-05-07 19:47:17 -07003137 mirror::ObjectArray<mirror::ArtMethod>* vtable = nullptr;
3138 mirror::Class* klass = actual_arg_type.GetClass();
3139 if (klass->IsInterface()) {
3140 // Derive Object.class from Class.class.getSuperclass().
3141 mirror::Class* object_klass = klass->GetClass()->GetSuperClass();
3142 CHECK(object_klass->IsObjectClass());
3143 vtable = object_klass->GetVTable();
3144 } else {
3145 vtable = klass->GetVTable();
3146 }
3147 CHECK(vtable != nullptr) << PrettyDescriptor(klass);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003148 uint16_t vtable_index = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersa4cf1df2014-05-07 19:47:17 -07003149 CHECK_LT(static_cast<int32_t>(vtable_index), vtable->GetLength()) << PrettyDescriptor(klass);
Brian Carlstromea46f952013-07-30 01:26:50 -07003150 mirror::ArtMethod* res_method = vtable->Get(vtable_index);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003151 CHECK(!Thread::Current()->IsExceptionPending());
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003152 return res_method;
3153}
3154
Brian Carlstromea46f952013-07-30 01:26:50 -07003155mirror::ArtMethod* MethodVerifier::VerifyInvokeVirtualQuickArgs(const Instruction* inst,
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003156 bool is_range) {
3157 DCHECK(Runtime::Current()->IsStarted());
Brian Carlstromea46f952013-07-30 01:26:50 -07003158 mirror::ArtMethod* res_method = GetQuickInvokedMethod(inst, work_line_.get(),
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003159 is_range);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003160 if (res_method == NULL) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003161 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer method from " << inst->Name();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003162 return NULL;
3163 }
3164 CHECK(!res_method->IsDirect() && !res_method->IsStatic());
3165
3166 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
3167 // match the call to the signature. Also, we might be calling through an abstract method
3168 // definition (which doesn't have register count values).
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003169 const RegType& actual_arg_type = work_line_->GetInvocationThis(inst, is_range);
3170 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
3171 return NULL;
3172 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003173 const size_t expected_args = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
3174 /* caught by static verifier */
3175 DCHECK(is_range || expected_args <= 5);
3176 if (expected_args > code_item_->outs_size_) {
3177 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
3178 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
3179 return NULL;
3180 }
3181
3182 /*
3183 * Check the "this" argument, which must be an instance of the class that declared the method.
3184 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
3185 * rigorous check here (which is okay since we have to do it at runtime).
3186 */
3187 if (actual_arg_type.IsUninitializedReference() && !res_method->IsConstructor()) {
3188 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
3189 return NULL;
3190 }
3191 if (!actual_arg_type.IsZero()) {
3192 mirror::Class* klass = res_method->GetDeclaringClass();
3193 const RegType& res_method_class =
Mathieu Chartierf8322842014-05-16 10:59:25 -07003194 reg_types_.FromClass(klass->GetDescriptor().c_str(), klass,
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003195 klass->CannotBeAssignedFromOtherTypes());
3196 if (!res_method_class.IsAssignableFrom(actual_arg_type)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07003197 Fail(actual_arg_type.IsUnresolvedTypes() ? VERIFY_ERROR_NO_CLASS :
3198 VERIFY_ERROR_BAD_CLASS_SOFT) << "'this' argument '" << actual_arg_type
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003199 << "' not instance of '" << res_method_class << "'";
3200 return NULL;
3201 }
3202 }
3203 /*
3204 * Process the target method's signature. This signature may or may not
3205 * have been verified, so we can't assume it's properly formed.
3206 */
3207 MethodHelper mh(res_method);
3208 const DexFile::TypeList* params = mh.GetParameterTypeList();
3209 size_t params_size = params == NULL ? 0 : params->Size();
3210 uint32_t arg[5];
3211 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07003212 inst->GetVarArgs(arg);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003213 }
3214 size_t actual_args = 1;
3215 for (size_t param_index = 0; param_index < params_size; param_index++) {
3216 if (actual_args >= expected_args) {
3217 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invalid call to '" << PrettyMethod(res_method)
Brian Carlstrom93c33962013-07-26 10:37:43 -07003218 << "'. Expected " << expected_args
3219 << " arguments, processing argument " << actual_args
3220 << " (where longs/doubles count twice).";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003221 return NULL;
3222 }
3223 const char* descriptor =
3224 mh.GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);
3225 if (descriptor == NULL) {
3226 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003227 << " missing signature component";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003228 return NULL;
3229 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003230 const RegType& reg_type = reg_types_.FromDescriptor(class_loader_->Get(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003231 uint32_t get_reg = is_range ? inst->VRegC_3rc() + actual_args : arg[actual_args];
3232 if (!work_line_->VerifyRegisterType(get_reg, reg_type)) {
3233 return res_method;
3234 }
3235 actual_args = reg_type.IsLongOrDoubleTypes() ? actual_args + 2 : actual_args + 1;
3236 }
3237 if (actual_args != expected_args) {
3238 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
3239 << " expected " << expected_args << " arguments, found " << actual_args;
3240 return NULL;
3241 } else {
3242 return res_method;
3243 }
3244}
3245
Ian Rogers62342ec2013-06-11 10:26:37 -07003246void MethodVerifier::VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003247 uint32_t type_idx;
3248 if (!is_filled) {
3249 DCHECK_EQ(inst->Opcode(), Instruction::NEW_ARRAY);
3250 type_idx = inst->VRegC_22c();
3251 } else if (!is_range) {
3252 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY);
3253 type_idx = inst->VRegB_35c();
3254 } else {
3255 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY_RANGE);
3256 type_idx = inst->VRegB_3rc();
3257 }
3258 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003259 if (res_type.IsConflict()) { // bad class
3260 DCHECK_NE(failures_.size(), 0U);
Ian Rogers0c4a5062012-02-03 15:18:59 -08003261 } else {
3262 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
3263 if (!res_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003264 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "new-array on non-array class " << res_type;
Ian Rogers0c4a5062012-02-03 15:18:59 -08003265 } else if (!is_filled) {
3266 /* make sure "size" register is valid type */
Sebastien Hertz5243e912013-05-21 10:55:07 +02003267 work_line_->VerifyRegisterType(inst->VRegB_22c(), reg_types_.Integer());
Ian Rogers0c4a5062012-02-03 15:18:59 -08003268 /* set register type to array class */
Ian Rogers62342ec2013-06-11 10:26:37 -07003269 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
3270 work_line_->SetRegisterType(inst->VRegA_22c(), precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08003271 } else {
3272 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
3273 // the list and fail. It's legal, if silly, for arg_count to be zero.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003274 const RegType& expected_type = reg_types_.GetComponentType(res_type, class_loader_->Get());
Sebastien Hertz5243e912013-05-21 10:55:07 +02003275 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
3276 uint32_t arg[5];
3277 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07003278 inst->GetVarArgs(arg);
Sebastien Hertz5243e912013-05-21 10:55:07 +02003279 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08003280 for (size_t ui = 0; ui < arg_count; ui++) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003281 uint32_t get_reg = is_range ? inst->VRegC_3rc() + ui : arg[ui];
Ian Rogers0c4a5062012-02-03 15:18:59 -08003282 if (!work_line_->VerifyRegisterType(get_reg, expected_type)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003283 work_line_->SetResultRegisterType(reg_types_.Conflict());
Ian Rogers0c4a5062012-02-03 15:18:59 -08003284 return;
3285 }
3286 }
3287 // filled-array result goes into "result" register
Ian Rogers62342ec2013-06-11 10:26:37 -07003288 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
3289 work_line_->SetResultRegisterType(precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08003290 }
3291 }
3292}
3293
Sebastien Hertz5243e912013-05-21 10:55:07 +02003294void MethodVerifier::VerifyAGet(const Instruction* inst,
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003295 const RegType& insn_type, bool is_primitive) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003296 const RegType& index_type = work_line_->GetRegisterType(inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07003297 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003298 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07003299 } else {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003300 const RegType& array_type = work_line_->GetRegisterType(inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08003301 if (array_type.IsZero()) {
3302 // Null array class; this code path will fail at runtime. Infer a merge-able type from the
3303 // instruction type. TODO: have a proper notion of bottom here.
3304 if (!is_primitive || insn_type.IsCategory1Types()) {
3305 // Reference or category 1
Sebastien Hertz5243e912013-05-21 10:55:07 +02003306 work_line_->SetRegisterType(inst->VRegA_23x(), reg_types_.Zero());
Ian Rogersd81871c2011-10-03 13:57:23 -07003307 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08003308 // Category 2
Sebastien Hertz5243e912013-05-21 10:55:07 +02003309 work_line_->SetRegisterTypeWide(inst->VRegA_23x(), reg_types_.FromCat2ConstLo(0, false),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003310 reg_types_.FromCat2ConstHi(0, false));
Ian Rogers89310de2012-02-01 13:47:30 -08003311 }
jeffhaofc3144e2012-02-01 17:21:15 -08003312 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003313 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aget";
Ian Rogers89310de2012-02-01 13:47:30 -08003314 } else {
3315 /* verify the class */
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003316 const RegType& component_type = reg_types_.GetComponentType(array_type, class_loader_->Get());
jeffhaofc3144e2012-02-01 17:21:15 -08003317 if (!component_type.IsReferenceTypes() && !is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07003318 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08003319 << " source for aget-object";
3320 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07003321 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08003322 << " source for category 1 aget";
3323 } else if (is_primitive && !insn_type.Equals(component_type) &&
3324 !((insn_type.IsInteger() && component_type.IsFloat()) ||
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003325 (insn_type.IsLong() && component_type.IsDouble()))) {
3326 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array type " << array_type
3327 << " incompatible with aget of type " << insn_type;
Ian Rogers89310de2012-02-01 13:47:30 -08003328 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003329 // Use knowledge of the field type which is stronger than the type inferred from the
3330 // instruction, which can't differentiate object types and ints from floats, longs from
3331 // doubles.
3332 if (!component_type.IsLowHalf()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003333 work_line_->SetRegisterType(inst->VRegA_23x(), component_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003334 } else {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003335 work_line_->SetRegisterTypeWide(inst->VRegA_23x(), component_type,
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003336 component_type.HighHalf(&reg_types_));
3337 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003338 }
3339 }
3340 }
3341}
3342
Jeff Haofe1f7c82013-08-01 14:50:24 -07003343void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
3344 const uint32_t vregA) {
3345 // Primitive assignability rules are weaker than regular assignability rules.
3346 bool instruction_compatible;
3347 bool value_compatible;
3348 const RegType& value_type = work_line_->GetRegisterType(vregA);
3349 if (target_type.IsIntegralTypes()) {
Jeff Haoa4647482013-08-06 15:35:47 -07003350 instruction_compatible = target_type.Equals(insn_type);
Jeff Haofe1f7c82013-08-01 14:50:24 -07003351 value_compatible = value_type.IsIntegralTypes();
3352 } else if (target_type.IsFloat()) {
3353 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int
3354 value_compatible = value_type.IsFloatTypes();
3355 } else if (target_type.IsLong()) {
3356 instruction_compatible = insn_type.IsLong();
3357 value_compatible = value_type.IsLongTypes();
3358 } else if (target_type.IsDouble()) {
3359 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long
3360 value_compatible = value_type.IsDoubleTypes();
3361 } else {
3362 instruction_compatible = false; // reference with primitive store
3363 value_compatible = false; // unused
3364 }
3365 if (!instruction_compatible) {
3366 // This is a global failure rather than a class change failure as the instructions and
3367 // the descriptors for the type should have been consistent within the same file at
3368 // compile time.
3369 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
3370 << "' but expected type '" << target_type << "'";
3371 return;
3372 }
3373 if (!value_compatible) {
3374 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
3375 << " of type " << value_type << " but expected " << target_type << " for put";
3376 return;
3377 }
3378}
3379
Sebastien Hertz5243e912013-05-21 10:55:07 +02003380void MethodVerifier::VerifyAPut(const Instruction* inst,
Sebastien Hertz757b3042014-03-28 14:34:28 +01003381 const RegType& insn_type, bool is_primitive) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003382 const RegType& index_type = work_line_->GetRegisterType(inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07003383 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003384 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07003385 } else {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003386 const RegType& array_type = work_line_->GetRegisterType(inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08003387 if (array_type.IsZero()) {
3388 // Null array type; this code path will fail at runtime. Infer a merge-able type from the
3389 // instruction type.
jeffhaofc3144e2012-02-01 17:21:15 -08003390 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003391 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aput";
Ian Rogers89310de2012-02-01 13:47:30 -08003392 } else {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003393 const RegType& component_type = reg_types_.GetComponentType(array_type, class_loader_->Get());
Jeff Haofe1f7c82013-08-01 14:50:24 -07003394 const uint32_t vregA = inst->VRegA_23x();
Jeff Haob24b4a72013-07-31 13:47:31 -07003395 if (is_primitive) {
Jeff Haofe1f7c82013-08-01 14:50:24 -07003396 VerifyPrimitivePut(component_type, insn_type, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07003397 } else {
Jeff Haob24b4a72013-07-31 13:47:31 -07003398 if (!component_type.IsReferenceTypes()) {
3399 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
3400 << " source for aput-object";
3401 } else {
3402 // The instruction agrees with the type of array, confirm the value to be stored does too
3403 // Note: we use the instruction type (rather than the component type) for aput-object as
3404 // incompatible classes will be caught at runtime as an array store exception
Jeff Haofe1f7c82013-08-01 14:50:24 -07003405 work_line_->VerifyRegisterType(vregA, insn_type);
Jeff Haob24b4a72013-07-31 13:47:31 -07003406 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003407 }
3408 }
3409 }
3410}
3411
Brian Carlstromea46f952013-07-30 01:26:50 -07003412mirror::ArtField* MethodVerifier::GetStaticField(int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08003413 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3414 // Check access to class
3415 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003416 if (klass_type.IsConflict()) { // bad class
Ian Rogersad0b3a32012-04-16 14:50:24 -07003417 AppendToLastFailMessage(StringPrintf(" in attempt to access static field %d (%s) in %s",
3418 field_idx, dex_file_->GetFieldName(field_id),
3419 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers90040192011-12-16 08:54:29 -08003420 return NULL;
3421 }
Elliott Hughesb25c3f62012-03-26 16:35:06 -07003422 if (klass_type.IsUnresolvedTypes()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003423 return NULL; // Can't resolve Class so no more to do here, will do checking at runtime.
Ian Rogers90040192011-12-16 08:54:29 -08003424 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07003425 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
3426 mirror::ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, *dex_cache_,
3427 *class_loader_);
Ian Rogersd81871c2011-10-03 13:57:23 -07003428 if (field == NULL) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07003429 VLOG(verifier) << "Unable to resolve static field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07003430 << dex_file_->GetFieldName(field_id) << ") in "
3431 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07003432 DCHECK(Thread::Current()->IsExceptionPending());
3433 Thread::Current()->ClearException();
3434 return NULL;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003435 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
3436 field->GetAccessFlags())) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003437 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access static field " << PrettyField(field)
Ian Rogersad0b3a32012-04-16 14:50:24 -07003438 << " from " << GetDeclaringClass();
Ian Rogersd81871c2011-10-03 13:57:23 -07003439 return NULL;
3440 } else if (!field->IsStatic()) {
3441 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field) << " to be static";
3442 return NULL;
Ian Rogersd81871c2011-10-03 13:57:23 -07003443 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07003444 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07003445}
3446
Brian Carlstromea46f952013-07-30 01:26:50 -07003447mirror::ArtField* MethodVerifier::GetInstanceField(const RegType& obj_type, int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08003448 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3449 // Check access to class
3450 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003451 if (klass_type.IsConflict()) {
3452 AppendToLastFailMessage(StringPrintf(" in attempt to access instance field %d (%s) in %s",
3453 field_idx, dex_file_->GetFieldName(field_id),
3454 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers90040192011-12-16 08:54:29 -08003455 return NULL;
3456 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003457 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers90040192011-12-16 08:54:29 -08003458 return NULL; // Can't resolve Class so no more to do here
3459 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07003460 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
3461 mirror::ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, *dex_cache_,
3462 *class_loader_);
Ian Rogersd81871c2011-10-03 13:57:23 -07003463 if (field == NULL) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07003464 VLOG(verifier) << "Unable to resolve instance field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07003465 << dex_file_->GetFieldName(field_id) << ") in "
3466 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07003467 DCHECK(Thread::Current()->IsExceptionPending());
3468 Thread::Current()->ClearException();
3469 return NULL;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003470 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
3471 field->GetAccessFlags())) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003472 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access instance field " << PrettyField(field)
Ian Rogersad0b3a32012-04-16 14:50:24 -07003473 << " from " << GetDeclaringClass();
Ian Rogersd81871c2011-10-03 13:57:23 -07003474 return NULL;
3475 } else if (field->IsStatic()) {
3476 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field)
3477 << " to not be static";
3478 return NULL;
3479 } else if (obj_type.IsZero()) {
3480 // Cannot infer and check type, however, access will cause null pointer exception
3481 return field;
Ian Rogerse1758fe2012-04-19 11:31:15 -07003482 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003483 mirror::Class* klass = field->GetDeclaringClass();
Ian Rogers637c65b2013-05-31 11:46:00 -07003484 const RegType& field_klass =
3485 reg_types_.FromClass(dex_file_->GetFieldDeclaringClassDescriptor(field_id),
Ian Rogers04f94f42013-06-10 15:09:26 -07003486 klass, klass->CannotBeAssignedFromOtherTypes());
Ian Rogersad0b3a32012-04-16 14:50:24 -07003487 if (obj_type.IsUninitializedTypes() &&
3488 (!IsConstructor() || GetDeclaringClass().Equals(obj_type) ||
3489 !field_klass.Equals(GetDeclaringClass()))) {
3490 // Field accesses through uninitialized references are only allowable for constructors where
3491 // the field is declared in this class
3492 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access instance field " << PrettyField(field)
Brian Carlstrom93c33962013-07-26 10:37:43 -07003493 << " of a not fully initialized object within the context"
3494 << " of " << PrettyMethod(dex_method_idx_, *dex_file_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003495 return NULL;
3496 } else if (!field_klass.IsAssignableFrom(obj_type)) {
3497 // Trying to access C1.field1 using reference of type C2, which is neither C1 or a sub-class
3498 // of C1. For resolution to occur the declared class of the field must be compatible with
3499 // obj_type, we've discovered this wasn't so, so report the field didn't exist.
3500 Fail(VERIFY_ERROR_NO_FIELD) << "cannot access instance field " << PrettyField(field)
3501 << " from object of type " << obj_type;
3502 return NULL;
3503 } else {
3504 return field;
3505 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003506 }
3507}
3508
Sebastien Hertz5243e912013-05-21 10:55:07 +02003509void MethodVerifier::VerifyISGet(const Instruction* inst, const RegType& insn_type,
3510 bool is_primitive, bool is_static) {
3511 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
Brian Carlstromea46f952013-07-30 01:26:50 -07003512 mirror::ArtField* field;
Ian Rogersb94a27b2011-10-26 00:33:41 -07003513 if (is_static) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07003514 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07003515 } else {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003516 const RegType& object_type = work_line_->GetRegisterType(inst->VRegB_22c());
Ian Rogersf4028cc2011-11-02 14:56:39 -07003517 field = GetInstanceField(object_type, field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07003518 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003519 const RegType* field_type = nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003520 if (field != NULL) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003521 FieldHelper fh(field);
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003522 mirror::Class* field_type_class = fh.GetType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003523 if (field_type_class != nullptr) {
3524 field_type = &reg_types_.FromClass(fh.GetTypeDescriptor(), field_type_class,
3525 field_type_class->CannotBeAssignedFromOtherTypes());
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003526 } else {
3527 Thread* self = Thread::Current();
3528 DCHECK(!can_load_classes_ || self->IsExceptionPending());
3529 self->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003530 }
Ian Rogers0d604842012-04-16 14:50:24 -07003531 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003532 if (field_type == nullptr) {
3533 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3534 const char* descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003535 field_type = &reg_types_.FromDescriptor(class_loader_->Get(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003536 }
Sebastien Hertz757b3042014-03-28 14:34:28 +01003537 DCHECK(field_type != nullptr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02003538 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003539 if (is_primitive) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003540 if (field_type->Equals(insn_type) ||
3541 (field_type->IsFloat() && insn_type.IsInteger()) ||
3542 (field_type->IsDouble() && insn_type.IsLong())) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003543 // expected that read is of the correct primitive type or that int reads are reading
3544 // floats or long reads are reading doubles
3545 } else {
3546 // This is a global failure rather than a class change failure as the instructions and
3547 // the descriptors for the type should have been consistent within the same file at
3548 // compile time
3549 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
3550 << " to be of type '" << insn_type
Sebastien Hertz757b3042014-03-28 14:34:28 +01003551 << "' but found type '" << *field_type << "' in get";
Ian Rogersad0b3a32012-04-16 14:50:24 -07003552 return;
3553 }
3554 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003555 if (!insn_type.IsAssignableFrom(*field_type)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003556 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
3557 << " to be compatible with type '" << insn_type
Sebastien Hertz757b3042014-03-28 14:34:28 +01003558 << "' but found type '" << *field_type
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003559 << "' in Get-object";
Sebastien Hertz5243e912013-05-21 10:55:07 +02003560 work_line_->SetRegisterType(vregA, reg_types_.Conflict());
Ian Rogersad0b3a32012-04-16 14:50:24 -07003561 return;
3562 }
3563 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003564 if (!field_type->IsLowHalf()) {
3565 work_line_->SetRegisterType(vregA, *field_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003566 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003567 work_line_->SetRegisterTypeWide(vregA, *field_type, field_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003568 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003569}
3570
Sebastien Hertz5243e912013-05-21 10:55:07 +02003571void MethodVerifier::VerifyISPut(const Instruction* inst, const RegType& insn_type,
3572 bool is_primitive, bool is_static) {
3573 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
Brian Carlstromea46f952013-07-30 01:26:50 -07003574 mirror::ArtField* field;
Ian Rogersb94a27b2011-10-26 00:33:41 -07003575 if (is_static) {
Ian Rogers55d249f2011-11-02 16:48:09 -07003576 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07003577 } else {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003578 const RegType& object_type = work_line_->GetRegisterType(inst->VRegB_22c());
Ian Rogers55d249f2011-11-02 16:48:09 -07003579 field = GetInstanceField(object_type, field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07003580 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003581 const RegType* field_type = nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003582 if (field != NULL) {
3583 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
3584 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << PrettyField(field)
3585 << " from other class " << GetDeclaringClass();
3586 return;
3587 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003588 FieldHelper fh(field);
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003589 mirror::Class* field_type_class = fh.GetType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003590 if (field_type_class != nullptr) {
3591 field_type = &reg_types_.FromClass(fh.GetTypeDescriptor(), field_type_class,
3592 field_type_class->CannotBeAssignedFromOtherTypes());
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003593 } else {
3594 Thread* self = Thread::Current();
3595 DCHECK(!can_load_classes_ || self->IsExceptionPending());
3596 self->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003597 }
3598 }
3599 if (field_type == nullptr) {
3600 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3601 const char* descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003602 field_type = &reg_types_.FromDescriptor(class_loader_->Get(), descriptor, false);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003603 }
Sebastien Hertz757b3042014-03-28 14:34:28 +01003604 DCHECK(field_type != nullptr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02003605 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003606 if (is_primitive) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003607 VerifyPrimitivePut(*field_type, insn_type, vregA);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003608 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003609 if (!insn_type.IsAssignableFrom(*field_type)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003610 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
3611 << " to be compatible with type '" << insn_type
Sebastien Hertz757b3042014-03-28 14:34:28 +01003612 << "' but found type '" << *field_type
Ian Rogersad0b3a32012-04-16 14:50:24 -07003613 << "' in put-object";
3614 return;
3615 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003616 work_line_->VerifyRegisterType(vregA, *field_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07003617 }
3618}
3619
Brian Carlstromea46f952013-07-30 01:26:50 -07003620mirror::ArtField* MethodVerifier::GetQuickFieldAccess(const Instruction* inst,
Ian Rogers98379392014-02-24 16:53:16 -08003621 RegisterLine* reg_line) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003622 DCHECK(inst->Opcode() == Instruction::IGET_QUICK ||
3623 inst->Opcode() == Instruction::IGET_WIDE_QUICK ||
3624 inst->Opcode() == Instruction::IGET_OBJECT_QUICK ||
3625 inst->Opcode() == Instruction::IPUT_QUICK ||
3626 inst->Opcode() == Instruction::IPUT_WIDE_QUICK ||
3627 inst->Opcode() == Instruction::IPUT_OBJECT_QUICK);
3628 const RegType& object_type = reg_line->GetRegisterType(inst->VRegB_22c());
Ian Rogers9bc54402014-04-17 16:40:01 -07003629 if (!object_type.HasClass()) {
3630 VLOG(verifier) << "Failed to get mirror::Class* from '" << object_type << "'";
3631 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003632 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003633 uint32_t field_offset = static_cast<uint32_t>(inst->VRegC_22c());
Sebastien Hertz479fc1e2014-04-04 17:51:34 +02003634 mirror::ArtField* f = mirror::ArtField::FindInstanceFieldWithOffset(object_type.GetClass(),
3635 field_offset);
3636 if (f == nullptr) {
3637 VLOG(verifier) << "Failed to find instance field at offset '" << field_offset
3638 << "' from '" << PrettyDescriptor(object_type.GetClass()) << "'";
3639 }
3640 return f;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003641}
3642
3643void MethodVerifier::VerifyIGetQuick(const Instruction* inst, const RegType& insn_type,
3644 bool is_primitive) {
3645 DCHECK(Runtime::Current()->IsStarted());
Brian Carlstromea46f952013-07-30 01:26:50 -07003646 mirror::ArtField* field = GetQuickFieldAccess(inst, work_line_.get());
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003647 if (field == NULL) {
3648 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field from " << inst->Name();
3649 return;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003650 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003651 FieldHelper fh(field);
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003652 mirror::Class* field_type_class = fh.GetType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003653 const RegType* field_type;
3654 if (field_type_class != nullptr) {
3655 field_type = &reg_types_.FromClass(fh.GetTypeDescriptor(), field_type_class,
3656 field_type_class->CannotBeAssignedFromOtherTypes());
3657 } else {
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003658 Thread* self = Thread::Current();
3659 DCHECK(!can_load_classes_ || self->IsExceptionPending());
3660 self->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003661 field_type = &reg_types_.FromDescriptor(field->GetDeclaringClass()->GetClassLoader(),
3662 fh.GetTypeDescriptor(), false);
3663 }
Sebastien Hertz757b3042014-03-28 14:34:28 +01003664 DCHECK(field_type != nullptr);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003665 const uint32_t vregA = inst->VRegA_22c();
3666 if (is_primitive) {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003667 if (field_type->Equals(insn_type) ||
3668 (field_type->IsFloat() && insn_type.IsIntegralTypes()) ||
3669 (field_type->IsDouble() && insn_type.IsLongTypes())) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003670 // expected that read is of the correct primitive type or that int reads are reading
3671 // floats or long reads are reading doubles
3672 } else {
3673 // This is a global failure rather than a class change failure as the instructions and
3674 // the descriptors for the type should have been consistent within the same file at
3675 // compile time
3676 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003677 << " to be of type '" << insn_type
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003678 << "' but found type '" << *field_type << "' in Get";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003679 return;
3680 }
3681 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003682 if (!insn_type.IsAssignableFrom(*field_type)) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003683 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003684 << " to be compatible with type '" << insn_type
Sebastien Hertz757b3042014-03-28 14:34:28 +01003685 << "' but found type '" << *field_type
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003686 << "' in get-object";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003687 work_line_->SetRegisterType(vregA, reg_types_.Conflict());
3688 return;
3689 }
3690 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003691 if (!field_type->IsLowHalf()) {
3692 work_line_->SetRegisterType(vregA, *field_type);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003693 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003694 work_line_->SetRegisterTypeWide(vregA, *field_type, field_type->HighHalf(&reg_types_));
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003695 }
3696}
3697
3698void MethodVerifier::VerifyIPutQuick(const Instruction* inst, const RegType& insn_type,
3699 bool is_primitive) {
3700 DCHECK(Runtime::Current()->IsStarted());
Brian Carlstromea46f952013-07-30 01:26:50 -07003701 mirror::ArtField* field = GetQuickFieldAccess(inst, work_line_.get());
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003702 if (field == NULL) {
3703 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field from " << inst->Name();
3704 return;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003705 }
3706 const char* descriptor = FieldHelper(field).GetTypeDescriptor();
3707 mirror::ClassLoader* loader = field->GetDeclaringClass()->GetClassLoader();
3708 const RegType& field_type = reg_types_.FromDescriptor(loader, descriptor, false);
3709 if (field != NULL) {
3710 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
3711 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << PrettyField(field)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003712 << " from other class " << GetDeclaringClass();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003713 return;
3714 }
3715 }
3716 const uint32_t vregA = inst->VRegA_22c();
3717 if (is_primitive) {
3718 // Primitive field assignability rules are weaker than regular assignability rules
3719 bool instruction_compatible;
3720 bool value_compatible;
3721 const RegType& value_type = work_line_->GetRegisterType(vregA);
3722 if (field_type.IsIntegralTypes()) {
3723 instruction_compatible = insn_type.IsIntegralTypes();
3724 value_compatible = value_type.IsIntegralTypes();
3725 } else if (field_type.IsFloat()) {
3726 instruction_compatible = insn_type.IsInteger(); // no [is]put-float, so expect [is]put-int
3727 value_compatible = value_type.IsFloatTypes();
3728 } else if (field_type.IsLong()) {
3729 instruction_compatible = insn_type.IsLong();
3730 value_compatible = value_type.IsLongTypes();
3731 } else if (field_type.IsDouble()) {
3732 instruction_compatible = insn_type.IsLong(); // no [is]put-double, so expect [is]put-long
3733 value_compatible = value_type.IsDoubleTypes();
3734 } else {
3735 instruction_compatible = false; // reference field with primitive store
3736 value_compatible = false; // unused
3737 }
3738 if (!instruction_compatible) {
3739 // This is a global failure rather than a class change failure as the instructions and
3740 // the descriptors for the type should have been consistent within the same file at
3741 // compile time
3742 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003743 << " to be of type '" << insn_type
3744 << "' but found type '" << field_type
3745 << "' in put";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003746 return;
3747 }
3748 if (!value_compatible) {
3749 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
3750 << " of type " << value_type
3751 << " but expected " << field_type
3752 << " for store to " << PrettyField(field) << " in put";
3753 return;
3754 }
3755 } else {
3756 if (!insn_type.IsAssignableFrom(field_type)) {
3757 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003758 << " to be compatible with type '" << insn_type
3759 << "' but found type '" << field_type
3760 << "' in put-object";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003761 return;
3762 }
3763 work_line_->VerifyRegisterType(vregA, field_type);
3764 }
3765}
3766
Ian Rogers776ac1f2012-04-13 23:36:36 -07003767bool MethodVerifier::CheckNotMoveException(const uint16_t* insns, int insn_idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003768 if ((insns[insn_idx] & 0xff) == Instruction::MOVE_EXCEPTION) {
jeffhaod5347e02012-03-22 17:25:05 -07003769 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-exception";
Ian Rogersd81871c2011-10-03 13:57:23 -07003770 return false;
3771 }
3772 return true;
3773}
3774
Ian Rogers776ac1f2012-04-13 23:36:36 -07003775bool MethodVerifier::UpdateRegisters(uint32_t next_insn, const RegisterLine* merge_line) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003776 bool changed = true;
3777 RegisterLine* target_line = reg_table_.GetLine(next_insn);
3778 if (!insn_flags_[next_insn].IsVisitedOrChanged()) {
jeffhaobdb76512011-09-07 11:43:16 -07003779 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003780 * We haven't processed this instruction before, and we haven't touched the registers here, so
3781 * there's nothing to "merge". Copy the registers over and mark it as changed. (This is the
3782 * only way a register can transition out of "unknown", so this is not just an optimization.)
jeffhaobdb76512011-09-07 11:43:16 -07003783 */
Ian Rogersb8c78592013-07-25 23:52:52 +00003784 if (!insn_flags_[next_insn].IsReturn()) {
3785 target_line->CopyFromLine(merge_line);
3786 } else {
Jeff Haob24b4a72013-07-31 13:47:31 -07003787 // Verify that the monitor stack is empty on return.
3788 if (!merge_line->VerifyMonitorStackEmpty()) {
3789 return false;
3790 }
Ian Rogersb8c78592013-07-25 23:52:52 +00003791 // For returns we only care about the operand to the return, all other registers are dead.
3792 // Initialize them as conflicts so they don't add to GC and deoptimization information.
3793 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn);
3794 Instruction::Code opcode = ret_inst->Opcode();
3795 if ((opcode == Instruction::RETURN_VOID) || (opcode == Instruction::RETURN_VOID_BARRIER)) {
3796 target_line->MarkAllRegistersAsConflicts();
3797 } else {
3798 target_line->CopyFromLine(merge_line);
3799 if (opcode == Instruction::RETURN_WIDE) {
3800 target_line->MarkAllRegistersAsConflictsExceptWide(ret_inst->VRegA_11x());
3801 } else {
3802 target_line->MarkAllRegistersAsConflictsExcept(ret_inst->VRegA_11x());
3803 }
3804 }
3805 }
jeffhaobdb76512011-09-07 11:43:16 -07003806 } else {
Ian Rogers700a4022014-05-19 16:49:03 -07003807 std::unique_ptr<RegisterLine> copy(gDebugVerify ?
Ian Rogersd0fbd852013-09-24 18:17:04 -07003808 RegisterLine::Create(target_line->NumRegs(), this) :
Brian Carlstrom93c33962013-07-26 10:37:43 -07003809 NULL);
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003810 if (gDebugVerify) {
3811 copy->CopyFromLine(target_line);
3812 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003813 changed = target_line->MergeRegisters(merge_line);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003814 if (have_pending_hard_failure_) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003815 return false;
jeffhaobdb76512011-09-07 11:43:16 -07003816 }
Ian Rogers2c8a8572011-10-24 17:11:36 -07003817 if (gDebugVerify && changed) {
Elliott Hughes398f64b2012-03-26 18:05:48 -07003818 LogVerifyInfo() << "Merging at [" << reinterpret_cast<void*>(work_insn_idx_) << "]"
Elliott Hughesc073b072012-05-24 19:29:17 -07003819 << " to [" << reinterpret_cast<void*>(next_insn) << "]: " << "\n"
3820 << *copy.get() << " MERGE\n"
3821 << *merge_line << " ==\n"
3822 << *target_line << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07003823 }
3824 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003825 if (changed) {
3826 insn_flags_[next_insn].SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07003827 }
3828 return true;
3829}
3830
Ian Rogers7b3ddd22013-02-21 15:19:52 -08003831InstructionFlags* MethodVerifier::CurrentInsnFlags() {
Ian Rogers776ac1f2012-04-13 23:36:36 -07003832 return &insn_flags_[work_insn_idx_];
3833}
3834
Ian Rogersad0b3a32012-04-16 14:50:24 -07003835const RegType& MethodVerifier::GetMethodReturnType() {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003836 if (return_type_ == nullptr) {
3837 if (mirror_method_ != NULL) {
3838 MethodHelper mh(mirror_method_);
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003839 mirror::Class* return_type_class = mh.GetReturnType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003840 if (return_type_class != nullptr) {
Mathieu Chartier590fee92013-09-13 13:46:47 -07003841 return_type_ = &reg_types_.FromClass(mh.GetReturnTypeDescriptor(), return_type_class,
3842 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003843 } else {
3844 Thread* self = Thread::Current();
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003845 DCHECK(!can_load_classes_ || self->IsExceptionPending());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003846 self->ClearException();
3847 }
3848 }
3849 if (return_type_ == nullptr) {
3850 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
3851 const DexFile::ProtoId& proto_id = dex_file_->GetMethodPrototype(method_id);
3852 uint16_t return_type_idx = proto_id.return_type_idx_;
3853 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003854 return_type_ = &reg_types_.FromDescriptor(class_loader_->Get(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003855 }
3856 }
3857 return *return_type_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003858}
3859
3860const RegType& MethodVerifier::GetDeclaringClass() {
Ian Rogers637c65b2013-05-31 11:46:00 -07003861 if (declaring_class_ == NULL) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003862 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
Brian Carlstrom93c33962013-07-26 10:37:43 -07003863 const char* descriptor
3864 = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
Ian Rogers637c65b2013-05-31 11:46:00 -07003865 if (mirror_method_ != NULL) {
3866 mirror::Class* klass = mirror_method_->GetDeclaringClass();
Ian Rogers04f94f42013-06-10 15:09:26 -07003867 declaring_class_ = &reg_types_.FromClass(descriptor, klass,
3868 klass->CannotBeAssignedFromOtherTypes());
Ian Rogers637c65b2013-05-31 11:46:00 -07003869 } else {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -07003870 declaring_class_ = &reg_types_.FromDescriptor(class_loader_->Get(), descriptor, false);
Ian Rogers637c65b2013-05-31 11:46:00 -07003871 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003872 }
Ian Rogers637c65b2013-05-31 11:46:00 -07003873 return *declaring_class_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003874}
3875
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003876std::vector<int32_t> MethodVerifier::DescribeVRegs(uint32_t dex_pc) {
3877 RegisterLine* line = reg_table_.GetLine(dex_pc);
Sebastien Hertzaa0c00c2014-03-14 17:58:54 +01003878 DCHECK(line != nullptr) << "No register line at DEX pc " << StringPrintf("0x%x", dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003879 std::vector<int32_t> result;
3880 for (size_t i = 0; i < line->NumRegs(); ++i) {
3881 const RegType& type = line->GetRegisterType(i);
3882 if (type.IsConstant()) {
3883 result.push_back(type.IsPreciseConstant() ? kConstant : kImpreciseConstant);
3884 result.push_back(type.ConstantValue());
3885 } else if (type.IsConstantLo()) {
3886 result.push_back(type.IsPreciseConstantLo() ? kConstant : kImpreciseConstant);
3887 result.push_back(type.ConstantValueLo());
3888 } else if (type.IsConstantHi()) {
3889 result.push_back(type.IsPreciseConstantHi() ? kConstant : kImpreciseConstant);
3890 result.push_back(type.ConstantValueHi());
3891 } else if (type.IsIntegralTypes()) {
3892 result.push_back(kIntVReg);
3893 result.push_back(0);
3894 } else if (type.IsFloat()) {
3895 result.push_back(kFloatVReg);
3896 result.push_back(0);
3897 } else if (type.IsLong()) {
3898 result.push_back(kLongLoVReg);
3899 result.push_back(0);
3900 result.push_back(kLongHiVReg);
3901 result.push_back(0);
3902 ++i;
3903 } else if (type.IsDouble()) {
3904 result.push_back(kDoubleLoVReg);
3905 result.push_back(0);
3906 result.push_back(kDoubleHiVReg);
3907 result.push_back(0);
3908 ++i;
3909 } else if (type.IsUndefined() || type.IsConflict() || type.IsHighHalf()) {
3910 result.push_back(kUndefined);
3911 result.push_back(0);
3912 } else {
Ian Rogers7b3ddd22013-02-21 15:19:52 -08003913 CHECK(type.IsNonZeroReferenceTypes());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003914 result.push_back(kReferenceVReg);
3915 result.push_back(0);
3916 }
3917 }
3918 return result;
3919}
3920
Sebastien Hertz849600b2013-12-20 10:28:08 +01003921const RegType& MethodVerifier::DetermineCat1Constant(int32_t value, bool precise) {
3922 if (precise) {
3923 // Precise constant type.
3924 return reg_types_.FromCat1Const(value, true);
3925 } else {
3926 // Imprecise constant type.
3927 if (value < -32768) {
3928 return reg_types_.IntConstant();
3929 } else if (value < -128) {
3930 return reg_types_.ShortConstant();
3931 } else if (value < 0) {
3932 return reg_types_.ByteConstant();
3933 } else if (value == 0) {
3934 return reg_types_.Zero();
3935 } else if (value == 1) {
3936 return reg_types_.One();
3937 } else if (value < 128) {
3938 return reg_types_.PosByteConstant();
3939 } else if (value < 32768) {
3940 return reg_types_.PosShortConstant();
3941 } else if (value < 65536) {
3942 return reg_types_.CharConstant();
3943 } else {
3944 return reg_types_.IntConstant();
3945 }
3946 }
3947}
3948
Elliott Hughes0a1038b2012-06-14 16:24:17 -07003949void MethodVerifier::Init() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08003950 art::verifier::RegTypeCache::Init();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003951}
3952
Elliott Hughes0a1038b2012-06-14 16:24:17 -07003953void MethodVerifier::Shutdown() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08003954 verifier::RegTypeCache::ShutDown();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003955}
jeffhaod1224c72012-02-29 13:43:08 -08003956
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08003957void MethodVerifier::VisitRoots(RootCallback* callback, void* arg) {
3958 reg_types_.VisitRoots(callback, arg);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08003959}
3960
Ian Rogersd81871c2011-10-03 13:57:23 -07003961} // namespace verifier
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003962} // namespace art