blob: 475fe8be8755012b074eed3e5b269695fb691eb7 [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
Mathieu Chartierc7853442015-03-27 14:35:38 -070021#include "art_field-inl.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080022#include "base/logging.h"
Ian Rogers637c65b2013-05-31 11:46:00 -070023#include "base/mutex-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070024#include "class_linker.h"
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000025#include "compiler_callbacks.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070026#include "dex_file-inl.h"
Ian Rogersd0583802013-06-01 10:51:46 -070027#include "dex_instruction-inl.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080028#include "dex_instruction_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070029#include "dex_instruction_visitor.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070030#include "gc/accounting/card_table-inl.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080031#include "indenter.h"
Ian Rogers84fa0742011-10-25 18:13:30 -070032#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070033#include "leb128.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070034#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class.h"
36#include "mirror/class-inl.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070037#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038#include "mirror/object-inl.h"
39#include "mirror/object_array-inl.h"
Ian Rogers7b078e82014-09-10 14:44:24 -070040#include "reg_type-inl.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070041#include "register_line-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070042#include "runtime.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070043#include "scoped_thread_state_change.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070044#include "handle_scope-inl.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080045#include "verifier/dex_gc_map.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070046
47namespace art {
Ian Rogersd81871c2011-10-03 13:57:23 -070048namespace verifier {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070049
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070050static constexpr bool kTimeVerifyMethod = !kIsDebugBuild;
Ian Rogersebbdd872014-07-07 23:53:08 -070051static constexpr bool gDebugVerify = false;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -070052// TODO: Add a constant to method_verifier to turn on verbose logging?
Ian Rogers2c8a8572011-10-24 17:11:36 -070053
Ian Rogers7b3ddd22013-02-21 15:19:52 -080054void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InstructionFlags* flags,
Ian Rogersd81871c2011-10-03 13:57:23 -070055 uint32_t insns_size, uint16_t registers_size,
Ian Rogers776ac1f2012-04-13 23:36:36 -070056 MethodVerifier* verifier) {
Ian Rogersd81871c2011-10-03 13:57:23 -070057 DCHECK_GT(insns_size, 0U);
Ian Rogersd0fbd852013-09-24 18:17:04 -070058 register_lines_.reset(new RegisterLine*[insns_size]());
59 size_ = insns_size;
Ian Rogersd81871c2011-10-03 13:57:23 -070060 for (uint32_t i = 0; i < insns_size; i++) {
61 bool interesting = false;
62 switch (mode) {
63 case kTrackRegsAll:
64 interesting = flags[i].IsOpcode();
65 break;
Sameer Abu Asal02c42232013-04-30 12:09:45 -070066 case kTrackCompilerInterestPoints:
Brian Carlstrom02c8cc62013-07-18 15:54:44 -070067 interesting = flags[i].IsCompileTimeInfoPoint() || flags[i].IsBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -070068 break;
69 case kTrackRegsBranches:
70 interesting = flags[i].IsBranchTarget();
71 break;
72 default:
73 break;
74 }
75 if (interesting) {
Ian Rogersd0fbd852013-09-24 18:17:04 -070076 register_lines_[i] = RegisterLine::Create(registers_size, verifier);
77 }
78 }
79}
80
81PcToRegisterLineTable::~PcToRegisterLineTable() {
82 for (size_t i = 0; i < size_; i++) {
83 delete register_lines_[i];
84 if (kIsDebugBuild) {
85 register_lines_[i] = nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -070086 }
87 }
88}
89
Andreas Gampe7c038102014-10-27 20:08:46 -070090// Note: returns true on failure.
91ALWAYS_INLINE static inline bool FailOrAbort(MethodVerifier* verifier, bool condition,
92 const char* error_msg, uint32_t work_insn_idx) {
93 if (kIsDebugBuild) {
94 // In a debug build, abort if the error condition is wrong.
95 DCHECK(condition) << error_msg << work_insn_idx;
96 } else {
97 // In a non-debug build, just fail the class.
98 if (!condition) {
99 verifier->Fail(VERIFY_ERROR_BAD_CLASS_HARD) << error_msg << work_insn_idx;
100 return true;
101 }
102 }
103
104 return false;
105}
106
Stephen Kyle7e541c92014-12-17 17:10:02 +0000107static void SafelyMarkAllRegistersAsConflicts(MethodVerifier* verifier, RegisterLine* reg_line) {
108 if (verifier->IsConstructor()) {
109 // Before we mark all regs as conflicts, check that we don't have an uninitialized this.
110 reg_line->CheckConstructorReturn(verifier);
111 }
112 reg_line->MarkAllRegistersAsConflicts(verifier);
113}
114
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800115MethodVerifier::FailureKind MethodVerifier::VerifyMethod(
116 mirror::ArtMethod* method, bool allow_soft_failures, std::string* error ATTRIBUTE_UNUSED) {
117 Thread* self = Thread::Current();
118 StackHandleScope<3> hs(self);
119 mirror::Class* klass = method->GetDeclaringClass();
120 auto h_dex_cache(hs.NewHandle(klass->GetDexCache()));
121 auto h_class_loader(hs.NewHandle(klass->GetClassLoader()));
122 auto h_method = hs.NewHandle(method);
123 return VerifyMethod(self, method->GetDexMethodIndex(), method->GetDexFile(), h_dex_cache,
124 h_class_loader, klass->GetClassDef(), method->GetCodeItem(), h_method,
125 method->GetAccessFlags(), allow_soft_failures, false);
126}
127
128
Ian Rogers7b078e82014-09-10 14:44:24 -0700129MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
130 mirror::Class* klass,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700131 bool allow_soft_failures,
132 std::string* error) {
jeffhaobdb76512011-09-07 11:43:16 -0700133 if (klass->IsVerified()) {
jeffhaof1e6b7c2012-06-05 18:33:30 -0700134 return kNoFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700135 }
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800136 bool early_failure = false;
137 std::string failure_message;
Mathieu Chartierf8322842014-05-16 10:59:25 -0700138 const DexFile& dex_file = klass->GetDexFile();
139 const DexFile::ClassDef* class_def = klass->GetClassDef();
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800140 mirror::Class* super = klass->GetSuperClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -0700141 std::string temp;
Ian Rogers7b078e82014-09-10 14:44:24 -0700142 if (super == nullptr && strcmp("Ljava/lang/Object;", klass->GetDescriptor(&temp)) != 0) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800143 early_failure = true;
144 failure_message = " that has no super class";
Ian Rogers7b078e82014-09-10 14:44:24 -0700145 } else if (super != nullptr && super->IsFinal()) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800146 early_failure = true;
147 failure_message = " that attempts to sub-class final class " + PrettyDescriptor(super);
Ian Rogers7b078e82014-09-10 14:44:24 -0700148 } else if (class_def == nullptr) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800149 early_failure = true;
150 failure_message = " that isn't present in dex file " + dex_file.GetLocation();
151 }
152 if (early_failure) {
153 *error = "Verifier rejected class " + PrettyDescriptor(klass) + failure_message;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800154 if (Runtime::Current()->IsAotCompiler()) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800155 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000156 Runtime::Current()->GetCompilerCallbacks()->ClassRejected(ref);
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800157 }
jeffhaof1e6b7c2012-06-05 18:33:30 -0700158 return kHardFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700159 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700160 StackHandleScope<2> hs(self);
Mathieu Chartierf8322842014-05-16 10:59:25 -0700161 Handle<mirror::DexCache> dex_cache(hs.NewHandle(klass->GetDexCache()));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700162 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(klass->GetClassLoader()));
Ian Rogers7b078e82014-09-10 14:44:24 -0700163 return VerifyClass(self, &dex_file, dex_cache, class_loader, class_def, allow_soft_failures, error);
Shih-wei Liao371814f2011-10-27 16:52:10 -0700164}
165
Ian Rogers7b078e82014-09-10 14:44:24 -0700166MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
167 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700168 Handle<mirror::DexCache> dex_cache,
169 Handle<mirror::ClassLoader> class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700170 const DexFile::ClassDef* class_def,
171 bool allow_soft_failures,
172 std::string* error) {
173 DCHECK(class_def != nullptr);
Ian Rogers13735952014-10-08 12:43:28 -0700174 const uint8_t* class_data = dex_file->GetClassData(*class_def);
Ian Rogers7b078e82014-09-10 14:44:24 -0700175 if (class_data == nullptr) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700176 // empty class, probably a marker interface
jeffhaof1e6b7c2012-06-05 18:33:30 -0700177 return kNoFailure;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700178 }
jeffhaof56197c2012-03-05 18:01:54 -0800179 ClassDataItemIterator it(*dex_file, class_data);
180 while (it.HasNextStaticField() || it.HasNextInstanceField()) {
181 it.Next();
182 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700183 size_t error_count = 0;
jeffhaof1e6b7c2012-06-05 18:33:30 -0700184 bool hard_fail = false;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700185 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhao9b0b1882012-10-01 16:51:22 -0700186 int64_t previous_direct_method_idx = -1;
jeffhaof56197c2012-03-05 18:01:54 -0800187 while (it.HasNextDirectMethod()) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700188 self->AllowThreadSuspension();
jeffhaof56197c2012-03-05 18:01:54 -0800189 uint32_t method_idx = it.GetMemberIndex();
jeffhao9b0b1882012-10-01 16:51:22 -0700190 if (method_idx == previous_direct_method_idx) {
191 // smali can create dex files with two encoded_methods sharing the same method_idx
192 // http://code.google.com/p/smali/issues/detail?id=119
193 it.Next();
194 continue;
195 }
196 previous_direct_method_idx = method_idx;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700197 InvokeType type = it.GetMethodInvokeType(*class_def);
Brian Carlstromea46f952013-07-30 01:26:50 -0700198 mirror::ArtMethod* method =
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700199 linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader,
200 NullHandle<mirror::ArtMethod>(), type);
Ian Rogers7b078e82014-09-10 14:44:24 -0700201 if (method == nullptr) {
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700202 DCHECK(self->IsExceptionPending());
Ian Rogersad0b3a32012-04-16 14:50:24 -0700203 // We couldn't resolve the method, but continue regardless.
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700204 self->ClearException();
Ian Rogersad0b3a32012-04-16 14:50:24 -0700205 }
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700206 StackHandleScope<1> hs(self);
207 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
Ian Rogers7b078e82014-09-10 14:44:24 -0700208 MethodVerifier::FailureKind result = VerifyMethod(self,
209 method_idx,
Brian Carlstrom93c33962013-07-26 10:37:43 -0700210 dex_file,
211 dex_cache,
212 class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700213 class_def,
Brian Carlstrom93c33962013-07-26 10:37:43 -0700214 it.GetMethodCodeItem(),
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700215 h_method,
Andreas Gampe51829322014-08-25 15:05:04 -0700216 it.GetMethodAccessFlags(),
Ian Rogers46960fe2014-05-23 10:43:43 -0700217 allow_soft_failures,
218 false);
jeffhaof1e6b7c2012-06-05 18:33:30 -0700219 if (result != kNoFailure) {
220 if (result == kHardFailure) {
221 hard_fail = true;
222 if (error_count > 0) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700223 *error += "\n";
jeffhaof1e6b7c2012-06-05 18:33:30 -0700224 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700225 *error = "Verifier rejected class ";
226 *error += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
227 *error += " due to bad method ";
228 *error += PrettyMethod(method_idx, *dex_file);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700229 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700230 ++error_count;
jeffhaof56197c2012-03-05 18:01:54 -0800231 }
232 it.Next();
233 }
jeffhao9b0b1882012-10-01 16:51:22 -0700234 int64_t previous_virtual_method_idx = -1;
jeffhaof56197c2012-03-05 18:01:54 -0800235 while (it.HasNextVirtualMethod()) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700236 self->AllowThreadSuspension();
jeffhaof56197c2012-03-05 18:01:54 -0800237 uint32_t method_idx = it.GetMemberIndex();
jeffhao9b0b1882012-10-01 16:51:22 -0700238 if (method_idx == previous_virtual_method_idx) {
239 // smali can create dex files with two encoded_methods sharing the same method_idx
240 // http://code.google.com/p/smali/issues/detail?id=119
241 it.Next();
242 continue;
243 }
244 previous_virtual_method_idx = method_idx;
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700245 InvokeType type = it.GetMethodInvokeType(*class_def);
Brian Carlstromea46f952013-07-30 01:26:50 -0700246 mirror::ArtMethod* method =
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700247 linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader,
248 NullHandle<mirror::ArtMethod>(), type);
Ian Rogers7b078e82014-09-10 14:44:24 -0700249 if (method == nullptr) {
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700250 DCHECK(self->IsExceptionPending());
Ian Rogersad0b3a32012-04-16 14:50:24 -0700251 // We couldn't resolve the method, but continue regardless.
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700252 self->ClearException();
Ian Rogersad0b3a32012-04-16 14:50:24 -0700253 }
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700254 StackHandleScope<1> hs(self);
255 Handle<mirror::ArtMethod> h_method(hs.NewHandle(method));
Ian Rogers7b078e82014-09-10 14:44:24 -0700256 MethodVerifier::FailureKind result = VerifyMethod(self,
257 method_idx,
Brian Carlstrom93c33962013-07-26 10:37:43 -0700258 dex_file,
259 dex_cache,
260 class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700261 class_def,
Brian Carlstrom93c33962013-07-26 10:37:43 -0700262 it.GetMethodCodeItem(),
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700263 h_method,
Andreas Gampe51829322014-08-25 15:05:04 -0700264 it.GetMethodAccessFlags(),
Ian Rogers46960fe2014-05-23 10:43:43 -0700265 allow_soft_failures,
266 false);
jeffhaof1e6b7c2012-06-05 18:33:30 -0700267 if (result != kNoFailure) {
268 if (result == kHardFailure) {
269 hard_fail = true;
270 if (error_count > 0) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700271 *error += "\n";
jeffhaof1e6b7c2012-06-05 18:33:30 -0700272 }
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700273 *error = "Verifier rejected class ";
274 *error += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
275 *error += " due to bad method ";
276 *error += PrettyMethod(method_idx, *dex_file);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700277 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700278 ++error_count;
jeffhaof56197c2012-03-05 18:01:54 -0800279 }
280 it.Next();
281 }
jeffhaof1e6b7c2012-06-05 18:33:30 -0700282 if (error_count == 0) {
283 return kNoFailure;
284 } else {
285 return hard_fail ? kHardFailure : kSoftFailure;
286 }
jeffhaof56197c2012-03-05 18:01:54 -0800287}
288
Ian Rogers7b078e82014-09-10 14:44:24 -0700289MethodVerifier::FailureKind MethodVerifier::VerifyMethod(Thread* self, uint32_t method_idx,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800290 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700291 Handle<mirror::DexCache> dex_cache,
292 Handle<mirror::ClassLoader> class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700293 const DexFile::ClassDef* class_def,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800294 const DexFile::CodeItem* code_item,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700295 Handle<mirror::ArtMethod> method,
Jeff Haoee988952013-04-16 14:23:47 -0700296 uint32_t method_access_flags,
Ian Rogers46960fe2014-05-23 10:43:43 -0700297 bool allow_soft_failures,
298 bool need_precise_constants) {
Ian Rogersc8982582012-09-07 16:53:25 -0700299 MethodVerifier::FailureKind result = kNoFailure;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700300 uint64_t start_ns = kTimeVerifyMethod ? NanoTime() : 0;
Ian Rogersc8982582012-09-07 16:53:25 -0700301
Ian Rogers7b078e82014-09-10 14:44:24 -0700302 MethodVerifier verifier(self, dex_file, dex_cache, class_loader, class_def, code_item,
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700303 method_idx, method, method_access_flags, true, allow_soft_failures,
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800304 need_precise_constants, true);
Ian Rogers46960fe2014-05-23 10:43:43 -0700305 if (verifier.Verify()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700306 // Verification completed, however failures may be pending that didn't cause the verification
307 // to hard fail.
Ian Rogers46960fe2014-05-23 10:43:43 -0700308 CHECK(!verifier.have_pending_hard_failure_);
309 if (verifier.failures_.size() != 0) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700310 if (VLOG_IS_ON(verifier)) {
Ian Rogers46960fe2014-05-23 10:43:43 -0700311 verifier.DumpFailures(VLOG_STREAM(verifier) << "Soft verification failures in "
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700312 << PrettyMethod(method_idx, *dex_file) << "\n");
313 }
Ian Rogersc8982582012-09-07 16:53:25 -0700314 result = kSoftFailure;
jeffhaof56197c2012-03-05 18:01:54 -0800315 }
316 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700317 // Bad method data.
Ian Rogers46960fe2014-05-23 10:43:43 -0700318 CHECK_NE(verifier.failures_.size(), 0U);
319 CHECK(verifier.have_pending_hard_failure_);
320 verifier.DumpFailures(LOG(INFO) << "Verification error in "
Elliott Hughesc073b072012-05-24 19:29:17 -0700321 << PrettyMethod(method_idx, *dex_file) << "\n");
jeffhaof56197c2012-03-05 18:01:54 -0800322 if (gDebugVerify) {
Ian Rogers46960fe2014-05-23 10:43:43 -0700323 std::cout << "\n" << verifier.info_messages_.str();
324 verifier.Dump(std::cout);
jeffhaof56197c2012-03-05 18:01:54 -0800325 }
Ian Rogersc8982582012-09-07 16:53:25 -0700326 result = kHardFailure;
jeffhaof56197c2012-03-05 18:01:54 -0800327 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700328 if (kTimeVerifyMethod) {
329 uint64_t duration_ns = NanoTime() - start_ns;
330 if (duration_ns > MsToNs(100)) {
331 LOG(WARNING) << "Verification of " << PrettyMethod(method_idx, *dex_file)
332 << " took " << PrettyDuration(duration_ns);
333 }
Ian Rogersc8982582012-09-07 16:53:25 -0700334 }
335 return result;
jeffhaof56197c2012-03-05 18:01:54 -0800336}
337
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700338MethodVerifier* MethodVerifier::VerifyMethodAndDump(Thread* self, std::ostream& os, uint32_t dex_method_idx,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700339 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700340 Handle<mirror::DexCache> dex_cache,
341 Handle<mirror::ClassLoader> class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700342 const DexFile::ClassDef* class_def,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800343 const DexFile::CodeItem* code_item,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700344 Handle<mirror::ArtMethod> method,
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800345 uint32_t method_access_flags) {
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700346 MethodVerifier* verifier = new MethodVerifier(self, dex_file, dex_cache, class_loader,
347 class_def, code_item, dex_method_idx, method,
348 method_access_flags, true, true, true, true);
349 verifier->Verify();
350 verifier->DumpFailures(os);
351 os << verifier->info_messages_.str();
Andreas Gampe5cbcde22014-09-16 14:59:49 -0700352 // Only dump and return if no hard failures. Otherwise the verifier may be not fully initialized
353 // and querying any info is dangerous/can abort.
354 if (verifier->have_pending_hard_failure_) {
355 delete verifier;
356 return nullptr;
357 } else {
358 verifier->Dump(os);
359 return verifier;
360 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800361}
362
Ian Rogers7b078e82014-09-10 14:44:24 -0700363MethodVerifier::MethodVerifier(Thread* self,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700364 const DexFile* dex_file, Handle<mirror::DexCache> dex_cache,
365 Handle<mirror::ClassLoader> class_loader,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700366 const DexFile::ClassDef* class_def,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700367 const DexFile::CodeItem* code_item, uint32_t dex_method_idx,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700368 Handle<mirror::ArtMethod> method, uint32_t method_access_flags,
Ian Rogers46960fe2014-05-23 10:43:43 -0700369 bool can_load_classes, bool allow_soft_failures,
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800370 bool need_precise_constants, bool verify_to_dump,
371 bool allow_thread_suspension)
Ian Rogers7b078e82014-09-10 14:44:24 -0700372 : self_(self),
373 reg_types_(can_load_classes),
Elliott Hughes80537bb2013-01-04 16:37:26 -0800374 work_insn_idx_(-1),
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800375 dex_method_idx_(dex_method_idx),
Ian Rogers637c65b2013-05-31 11:46:00 -0700376 mirror_method_(method),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700377 method_access_flags_(method_access_flags),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700378 return_type_(nullptr),
jeffhaof56197c2012-03-05 18:01:54 -0800379 dex_file_(dex_file),
380 dex_cache_(dex_cache),
381 class_loader_(class_loader),
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700382 class_def_(class_def),
jeffhaof56197c2012-03-05 18:01:54 -0800383 code_item_(code_item),
Ian Rogers7b078e82014-09-10 14:44:24 -0700384 declaring_class_(nullptr),
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700385 interesting_dex_pc_(-1),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700386 monitor_enter_dex_pcs_(nullptr),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700387 have_pending_hard_failure_(false),
jeffhaofaf459e2012-08-31 15:32:47 -0700388 have_pending_runtime_throw_failure_(false),
jeffhaof56197c2012-03-05 18:01:54 -0800389 new_instance_count_(0),
Elliott Hughes80537bb2013-01-04 16:37:26 -0800390 monitor_enter_count_(0),
Jeff Haoee988952013-04-16 14:23:47 -0700391 can_load_classes_(can_load_classes),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200392 allow_soft_failures_(allow_soft_failures),
Ian Rogers46960fe2014-05-23 10:43:43 -0700393 need_precise_constants_(need_precise_constants),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200394 has_check_casts_(false),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700395 has_virtual_or_interface_invokes_(false),
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800396 verify_to_dump_(verify_to_dump),
397 allow_thread_suspension_(allow_thread_suspension) {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700398 self->PushVerifier(this);
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700399 DCHECK(class_def != nullptr);
jeffhaof56197c2012-03-05 18:01:54 -0800400}
401
Mathieu Chartier590fee92013-09-13 13:46:47 -0700402MethodVerifier::~MethodVerifier() {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700403 Thread::Current()->PopVerifier(this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700404 STLDeleteElements(&failure_messages_);
405}
406
Brian Carlstromea46f952013-07-30 01:26:50 -0700407void MethodVerifier::FindLocksAtDexPc(mirror::ArtMethod* m, uint32_t dex_pc,
Ian Rogers46960fe2014-05-23 10:43:43 -0700408 std::vector<uint32_t>* monitor_enter_dex_pcs) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700409 Thread* self = Thread::Current();
410 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700411 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
412 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700413 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -0700414 MethodVerifier verifier(self, m->GetDexFile(), dex_cache, class_loader, &m->GetClassDef(),
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700415 m->GetCodeItem(), m->GetDexMethodIndex(), method, m->GetAccessFlags(),
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800416 false, true, false, false);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700417 verifier.interesting_dex_pc_ = dex_pc;
Ian Rogers46960fe2014-05-23 10:43:43 -0700418 verifier.monitor_enter_dex_pcs_ = monitor_enter_dex_pcs;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700419 verifier.FindLocksAtDexPc();
420}
421
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700422static bool HasMonitorEnterInstructions(const DexFile::CodeItem* const code_item) {
423 const Instruction* inst = Instruction::At(code_item->insns_);
424
425 uint32_t insns_size = code_item->insns_size_in_code_units_;
426 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
427 if (inst->Opcode() == Instruction::MONITOR_ENTER) {
428 return true;
429 }
430
431 dex_pc += inst->SizeInCodeUnits();
432 inst = inst->Next();
433 }
434
435 return false;
436}
437
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700438void MethodVerifier::FindLocksAtDexPc() {
Ian Rogers7b078e82014-09-10 14:44:24 -0700439 CHECK(monitor_enter_dex_pcs_ != nullptr);
440 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700441
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700442 // Quick check whether there are any monitor_enter instructions at all.
443 if (!HasMonitorEnterInstructions(code_item_)) {
444 return;
445 }
446
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700447 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
448 // verification. In practice, the phase we want relies on data structures set up by all the
449 // earlier passes, so we just run the full method verification and bail out early when we've
450 // got what we wanted.
451 Verify();
452}
453
Mathieu Chartierc7853442015-03-27 14:35:38 -0700454ArtField* MethodVerifier::FindAccessedFieldAtDexPc(mirror::ArtMethod* m,
Ian Rogers46960fe2014-05-23 10:43:43 -0700455 uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700456 Thread* self = Thread::Current();
457 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700458 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
459 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700460 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -0700461 MethodVerifier verifier(self, m->GetDexFile(), dex_cache, class_loader, &m->GetClassDef(),
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700462 m->GetCodeItem(), m->GetDexMethodIndex(), method, m->GetAccessFlags(),
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800463 true, true, false, true);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200464 return verifier.FindAccessedFieldAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200465}
466
Mathieu Chartierc7853442015-03-27 14:35:38 -0700467ArtField* MethodVerifier::FindAccessedFieldAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700468 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200469
470 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
471 // verification. In practice, the phase we want relies on data structures set up by all the
472 // earlier passes, so we just run the full method verification and bail out early when we've
473 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200474 bool success = Verify();
475 if (!success) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700476 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200477 }
478 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700479 if (register_line == nullptr) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700480 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200481 }
482 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
483 return GetQuickFieldAccess(inst, register_line);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200484}
485
Brian Carlstromea46f952013-07-30 01:26:50 -0700486mirror::ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(mirror::ArtMethod* m,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700487 uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700488 Thread* self = Thread::Current();
489 StackHandleScope<3> hs(self);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700490 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
491 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700492 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
Ian Rogers7b078e82014-09-10 14:44:24 -0700493 MethodVerifier verifier(self, m->GetDexFile(), dex_cache, class_loader, &m->GetClassDef(),
Hiroshi Yamauchidc376172014-08-22 11:13:12 -0700494 m->GetCodeItem(), m->GetDexMethodIndex(), method, m->GetAccessFlags(),
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800495 true, true, false, true);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200496 return verifier.FindInvokedMethodAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200497}
498
Brian Carlstromea46f952013-07-30 01:26:50 -0700499mirror::ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700500 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200501
502 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
503 // verification. In practice, the phase we want relies on data structures set up by all the
504 // earlier passes, so we just run the full method verification and bail out early when we've
505 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200506 bool success = Verify();
507 if (!success) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700508 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200509 }
510 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700511 if (register_line == nullptr) {
512 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200513 }
514 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
515 const bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Mathieu Chartier091d2382015-03-06 10:59:06 -0800516 return GetQuickInvokedMethod(inst, register_line, is_range, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200517}
518
Jeff Hao848f70a2014-01-15 13:49:50 -0800519SafeMap<uint32_t, std::set<uint32_t>> MethodVerifier::FindStringInitMap(mirror::ArtMethod* m) {
520 Thread* self = Thread::Current();
521 StackHandleScope<3> hs(self);
522 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
523 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
524 Handle<mirror::ArtMethod> method(hs.NewHandle(m));
525 MethodVerifier verifier(self, m->GetDexFile(), dex_cache, class_loader, &m->GetClassDef(),
526 m->GetCodeItem(), m->GetDexMethodIndex(), method, m->GetAccessFlags(),
527 true, true, false, true);
528 return verifier.FindStringInitMap();
529}
530
531SafeMap<uint32_t, std::set<uint32_t>>& MethodVerifier::FindStringInitMap() {
532 Verify();
533 return GetStringInitPcRegMap();
534}
535
Ian Rogersad0b3a32012-04-16 14:50:24 -0700536bool MethodVerifier::Verify() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700537 // If there aren't any instructions, make sure that's expected, then exit successfully.
Ian Rogers7b078e82014-09-10 14:44:24 -0700538 if (code_item_ == nullptr) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700539 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) {
jeffhaod5347e02012-03-22 17:25:05 -0700540 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "zero-length code in concrete non-native method";
jeffhaobdb76512011-09-07 11:43:16 -0700541 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -0700542 } else {
543 return true;
jeffhaobdb76512011-09-07 11:43:16 -0700544 }
jeffhaobdb76512011-09-07 11:43:16 -0700545 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700546 // Sanity-check the register counts. ins + locals = registers, so make sure that ins <= registers.
547 if (code_item_->ins_size_ > code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700548 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad register counts (ins=" << code_item_->ins_size_
549 << " regs=" << code_item_->registers_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700550 return false;
jeffhaobdb76512011-09-07 11:43:16 -0700551 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700552 // Allocate and initialize an array to hold instruction data.
Ian Rogers7b3ddd22013-02-21 15:19:52 -0800553 insn_flags_.reset(new InstructionFlags[code_item_->insns_size_in_code_units_]());
Ian Rogersd81871c2011-10-03 13:57:23 -0700554 // Run through the instructions and see if the width checks out.
555 bool result = ComputeWidthsAndCountOps();
556 // Flag instructions guarded by a "try" block and check exception handlers.
557 result = result && ScanTryCatchBlocks();
558 // Perform static instruction verification.
559 result = result && VerifyInstructions();
Ian Rogersad0b3a32012-04-16 14:50:24 -0700560 // Perform code-flow analysis and return.
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000561 result = result && VerifyCodeFlow();
562 // Compute information for compiler.
563 if (result && Runtime::Current()->IsCompiler()) {
564 result = Runtime::Current()->GetCompilerCallbacks()->MethodVerified(this);
565 }
566 return result;
jeffhaoba5ebb92011-08-25 17:24:37 -0700567}
568
Ian Rogers776ac1f2012-04-13 23:36:36 -0700569std::ostream& MethodVerifier::Fail(VerifyError error) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700570 switch (error) {
571 case VERIFY_ERROR_NO_CLASS:
572 case VERIFY_ERROR_NO_FIELD:
573 case VERIFY_ERROR_NO_METHOD:
574 case VERIFY_ERROR_ACCESS_CLASS:
575 case VERIFY_ERROR_ACCESS_FIELD:
576 case VERIFY_ERROR_ACCESS_METHOD:
Ian Rogers08f753d2012-08-24 14:35:25 -0700577 case VERIFY_ERROR_INSTANTIATION:
578 case VERIFY_ERROR_CLASS_CHANGE:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800579 if (Runtime::Current()->IsAotCompiler() || !can_load_classes_) {
jeffhaofaf459e2012-08-31 15:32:47 -0700580 // If we're optimistically running verification at compile time, turn NO_xxx, ACCESS_xxx,
581 // class change and instantiation errors into soft verification errors so that we re-verify
582 // at runtime. We may fail to find or to agree on access because of not yet available class
583 // loaders, or class loaders that will differ at runtime. In these cases, we don't want to
584 // affect the soundness of the code being compiled. Instead, the generated code runs "slow
585 // paths" that dynamically perform the verification and cause the behavior to be that akin
586 // to an interpreter.
587 error = VERIFY_ERROR_BAD_CLASS_SOFT;
588 } else {
Jeff Haoa3faaf42013-09-03 19:07:00 -0700589 // If we fail again at runtime, mark that this instruction would throw and force this
590 // method to be executed using the interpreter with checks.
jeffhaofaf459e2012-08-31 15:32:47 -0700591 have_pending_runtime_throw_failure_ = true;
Andreas Gamped7f8d052015-03-12 11:05:47 -0700592
593 // We need to save the work_line if the instruction wasn't throwing before. Otherwise we'll
594 // try to merge garbage.
595 // Note: this assumes that Fail is called before we do any work_line modifications.
596 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
597 const Instruction* inst = Instruction::At(insns);
598 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
599
600 if ((opcode_flags & Instruction::kThrow) == 0 && CurrentInsnFlags()->IsInTry()) {
601 saved_line_->CopyFromLine(work_line_.get());
602 }
jeffhaofaf459e2012-08-31 15:32:47 -0700603 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700604 break;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700605 // Indication that verification should be retried at runtime.
606 case VERIFY_ERROR_BAD_CLASS_SOFT:
Jeff Haoee988952013-04-16 14:23:47 -0700607 if (!allow_soft_failures_) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700608 have_pending_hard_failure_ = true;
609 }
610 break;
jeffhaod5347e02012-03-22 17:25:05 -0700611 // Hard verification failures at compile time will still fail at runtime, so the class is
612 // marked as rejected to prevent it from being compiled.
Ian Rogersad0b3a32012-04-16 14:50:24 -0700613 case VERIFY_ERROR_BAD_CLASS_HARD: {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800614 if (Runtime::Current()->IsAotCompiler()) {
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700615 ClassReference ref(dex_file_, dex_file_->GetIndexForClassDef(*class_def_));
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000616 Runtime::Current()->GetCompilerCallbacks()->ClassRejected(ref);
jeffhaod1224c72012-02-29 13:43:08 -0800617 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700618 have_pending_hard_failure_ = true;
619 break;
Ian Rogers47a05882012-02-03 12:23:33 -0800620 }
621 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700622 failures_.push_back(error);
Elena Sayapina78480ec2014-08-15 15:52:42 +0700623 std::string location(StringPrintf("%s: [0x%X] ", PrettyMethod(dex_method_idx_, *dex_file_).c_str(),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700624 work_insn_idx_));
Elena Sayapina78480ec2014-08-15 15:52:42 +0700625 std::ostringstream* failure_message = new std::ostringstream(location, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700626 failure_messages_.push_back(failure_message);
627 return *failure_message;
628}
629
Ian Rogers576ca0c2014-06-06 15:58:22 -0700630std::ostream& MethodVerifier::LogVerifyInfo() {
631 return info_messages_ << "VFY: " << PrettyMethod(dex_method_idx_, *dex_file_)
632 << '[' << reinterpret_cast<void*>(work_insn_idx_) << "] : ";
633}
634
Ian Rogersad0b3a32012-04-16 14:50:24 -0700635void MethodVerifier::PrependToLastFailMessage(std::string prepend) {
636 size_t failure_num = failure_messages_.size();
637 DCHECK_NE(failure_num, 0U);
638 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
639 prepend += last_fail_message->str();
Elena Sayapina78480ec2014-08-15 15:52:42 +0700640 failure_messages_[failure_num - 1] = new std::ostringstream(prepend, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700641 delete last_fail_message;
642}
643
644void MethodVerifier::AppendToLastFailMessage(std::string append) {
645 size_t failure_num = failure_messages_.size();
646 DCHECK_NE(failure_num, 0U);
647 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
648 (*last_fail_message) << append;
Ian Rogers47a05882012-02-03 12:23:33 -0800649}
650
Ian Rogers776ac1f2012-04-13 23:36:36 -0700651bool MethodVerifier::ComputeWidthsAndCountOps() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700652 const uint16_t* insns = code_item_->insns_;
653 size_t insns_size = code_item_->insns_size_in_code_units_;
654 const Instruction* inst = Instruction::At(insns);
jeffhaobdb76512011-09-07 11:43:16 -0700655 size_t new_instance_count = 0;
656 size_t monitor_enter_count = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -0700657 size_t dex_pc = 0;
jeffhaobdb76512011-09-07 11:43:16 -0700658
Ian Rogersd81871c2011-10-03 13:57:23 -0700659 while (dex_pc < insns_size) {
jeffhaobdb76512011-09-07 11:43:16 -0700660 Instruction::Code opcode = inst->Opcode();
Ian Rogersa9a82542013-10-04 11:17:26 -0700661 switch (opcode) {
662 case Instruction::APUT_OBJECT:
663 case Instruction::CHECK_CAST:
664 has_check_casts_ = true;
665 break;
666 case Instruction::INVOKE_VIRTUAL:
667 case Instruction::INVOKE_VIRTUAL_RANGE:
668 case Instruction::INVOKE_INTERFACE:
669 case Instruction::INVOKE_INTERFACE_RANGE:
670 has_virtual_or_interface_invokes_ = true;
671 break;
672 case Instruction::MONITOR_ENTER:
673 monitor_enter_count++;
674 break;
675 case Instruction::NEW_INSTANCE:
676 new_instance_count++;
677 break;
678 default:
679 break;
jeffhaobdb76512011-09-07 11:43:16 -0700680 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700681 size_t inst_size = inst->SizeInCodeUnits();
Ian Rogers7b078e82014-09-10 14:44:24 -0700682 insn_flags_[dex_pc].SetIsOpcode();
Ian Rogersd81871c2011-10-03 13:57:23 -0700683 dex_pc += inst_size;
Ian Rogers7b078e82014-09-10 14:44:24 -0700684 inst = inst->RelativeAt(inst_size);
jeffhaobdb76512011-09-07 11:43:16 -0700685 }
686
Ian Rogersd81871c2011-10-03 13:57:23 -0700687 if (dex_pc != insns_size) {
jeffhaod5347e02012-03-22 17:25:05 -0700688 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "code did not end where expected ("
689 << dex_pc << " vs. " << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700690 return false;
691 }
692
Ian Rogersd81871c2011-10-03 13:57:23 -0700693 new_instance_count_ = new_instance_count;
694 monitor_enter_count_ = monitor_enter_count;
jeffhaobdb76512011-09-07 11:43:16 -0700695 return true;
696}
697
Ian Rogers776ac1f2012-04-13 23:36:36 -0700698bool MethodVerifier::ScanTryCatchBlocks() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700699 uint32_t tries_size = code_item_->tries_size_;
jeffhaobdb76512011-09-07 11:43:16 -0700700 if (tries_size == 0) {
701 return true;
702 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700703 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Ian Rogers0571d352011-11-03 19:51:38 -0700704 const DexFile::TryItem* tries = DexFile::GetTryItems(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -0700705
706 for (uint32_t idx = 0; idx < tries_size; idx++) {
707 const DexFile::TryItem* try_item = &tries[idx];
708 uint32_t start = try_item->start_addr_;
709 uint32_t end = start + try_item->insn_count_;
jeffhaobdb76512011-09-07 11:43:16 -0700710 if ((start >= end) || (start >= insns_size) || (end > insns_size)) {
jeffhaod5347e02012-03-22 17:25:05 -0700711 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad exception entry: startAddr=" << start
712 << " endAddr=" << end << " (size=" << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700713 return false;
714 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700715 if (!insn_flags_[start].IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -0700716 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
717 << "'try' block starts inside an instruction (" << start << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700718 return false;
719 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700720 uint32_t dex_pc = start;
721 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
722 while (dex_pc < end) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700723 insn_flags_[dex_pc].SetInTry();
Ian Rogers7b078e82014-09-10 14:44:24 -0700724 size_t insn_size = inst->SizeInCodeUnits();
725 dex_pc += insn_size;
726 inst = inst->RelativeAt(insn_size);
jeffhaobdb76512011-09-07 11:43:16 -0700727 }
728 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800729 // Iterate over each of the handlers to verify target addresses.
Ian Rogers13735952014-10-08 12:43:28 -0700730 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -0700731 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
Ian Rogers28ad40d2011-10-27 15:19:26 -0700732 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhaobdb76512011-09-07 11:43:16 -0700733 for (uint32_t idx = 0; idx < handlers_size; idx++) {
Ian Rogers0571d352011-11-03 19:51:38 -0700734 CatchHandlerIterator iterator(handlers_ptr);
735 for (; iterator.HasNext(); iterator.Next()) {
736 uint32_t dex_pc= iterator.GetHandlerAddress();
Ian Rogersd81871c2011-10-03 13:57:23 -0700737 if (!insn_flags_[dex_pc].IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -0700738 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
739 << "exception handler starts at bad address (" << dex_pc << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700740 return false;
741 }
Stephen Kyle9bc61992014-09-22 13:53:15 +0100742 if (!CheckNotMoveResult(code_item_->insns_, dex_pc)) {
743 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
744 << "exception handler begins with move-result* (" << dex_pc << ")";
745 return false;
746 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700747 insn_flags_[dex_pc].SetBranchTarget();
Ian Rogers28ad40d2011-10-27 15:19:26 -0700748 // Ensure exception types are resolved so that they don't need resolution to be delivered,
749 // unresolved exception types will be ignored by exception delivery
Ian Rogers0571d352011-11-03 19:51:38 -0700750 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800751 mirror::Class* exception_type = linker->ResolveType(*dex_file_,
752 iterator.GetHandlerTypeIndex(),
Mathieu Chartierbf99f772014-08-23 16:37:27 -0700753 dex_cache_, class_loader_);
Ian Rogers7b078e82014-09-10 14:44:24 -0700754 if (exception_type == nullptr) {
755 DCHECK(self_->IsExceptionPending());
756 self_->ClearException();
Ian Rogers28ad40d2011-10-27 15:19:26 -0700757 }
758 }
jeffhaobdb76512011-09-07 11:43:16 -0700759 }
Ian Rogers0571d352011-11-03 19:51:38 -0700760 handlers_ptr = iterator.EndDataPointer();
jeffhaobdb76512011-09-07 11:43:16 -0700761 }
jeffhaobdb76512011-09-07 11:43:16 -0700762 return true;
763}
764
Ian Rogers776ac1f2012-04-13 23:36:36 -0700765bool MethodVerifier::VerifyInstructions() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700766 const Instruction* inst = Instruction::At(code_item_->insns_);
jeffhaoba5ebb92011-08-25 17:24:37 -0700767
Ian Rogers0c7abda2012-09-19 13:33:42 -0700768 /* 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 -0700769 insn_flags_[0].SetBranchTarget();
Sameer Abu Asal02c42232013-04-30 12:09:45 -0700770 insn_flags_[0].SetCompileTimeInfoPoint();
Ian Rogersd81871c2011-10-03 13:57:23 -0700771
772 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700773 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700774 if (!VerifyInstruction(inst, dex_pc)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700775 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -0700776 return false;
777 }
778 /* Flag instructions that are garbage collection points */
Sameer Abu Asal02c42232013-04-30 12:09:45 -0700779 // All invoke points are marked as "Throw" points already.
780 // We are relying on this to also count all the invokes as interesting.
Vladimir Marko8b858e12014-11-27 14:52:37 +0000781 if (inst->IsBranch()) {
782 insn_flags_[dex_pc].SetCompileTimeInfoPoint();
783 // The compiler also needs safepoints for fall-through to loop heads.
784 // Such a loop head must be a target of a branch.
785 int32_t offset = 0;
786 bool cond, self_ok;
787 bool target_ok = GetBranchOffset(dex_pc, &offset, &cond, &self_ok);
788 DCHECK(target_ok);
789 insn_flags_[dex_pc + offset].SetCompileTimeInfoPoint();
790 } else if (inst->IsSwitch() || inst->IsThrow()) {
Sameer Abu Asal02c42232013-04-30 12:09:45 -0700791 insn_flags_[dex_pc].SetCompileTimeInfoPoint();
Ian Rogersb8c78592013-07-25 23:52:52 +0000792 } else if (inst->IsReturn()) {
793 insn_flags_[dex_pc].SetCompileTimeInfoPointAndReturn();
Ian Rogersd81871c2011-10-03 13:57:23 -0700794 }
795 dex_pc += inst->SizeInCodeUnits();
796 inst = inst->Next();
797 }
798 return true;
799}
800
Ian Rogers776ac1f2012-04-13 23:36:36 -0700801bool MethodVerifier::VerifyInstruction(const Instruction* inst, uint32_t code_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700802 bool result = true;
803 switch (inst->GetVerifyTypeArgumentA()) {
804 case Instruction::kVerifyRegA:
Ian Rogers29a26482014-05-02 15:27:29 -0700805 result = result && CheckRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -0700806 break;
807 case Instruction::kVerifyRegAWide:
Ian Rogers29a26482014-05-02 15:27:29 -0700808 result = result && CheckWideRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -0700809 break;
810 }
811 switch (inst->GetVerifyTypeArgumentB()) {
812 case Instruction::kVerifyRegB:
Ian Rogers29a26482014-05-02 15:27:29 -0700813 result = result && CheckRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700814 break;
815 case Instruction::kVerifyRegBField:
Ian Rogers29a26482014-05-02 15:27:29 -0700816 result = result && CheckFieldIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700817 break;
818 case Instruction::kVerifyRegBMethod:
Ian Rogers29a26482014-05-02 15:27:29 -0700819 result = result && CheckMethodIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700820 break;
821 case Instruction::kVerifyRegBNewInstance:
Ian Rogers29a26482014-05-02 15:27:29 -0700822 result = result && CheckNewInstance(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700823 break;
824 case Instruction::kVerifyRegBString:
Ian Rogers29a26482014-05-02 15:27:29 -0700825 result = result && CheckStringIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700826 break;
827 case Instruction::kVerifyRegBType:
Ian Rogers29a26482014-05-02 15:27:29 -0700828 result = result && CheckTypeIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700829 break;
830 case Instruction::kVerifyRegBWide:
Ian Rogers29a26482014-05-02 15:27:29 -0700831 result = result && CheckWideRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -0700832 break;
833 }
834 switch (inst->GetVerifyTypeArgumentC()) {
835 case Instruction::kVerifyRegC:
Ian Rogers29a26482014-05-02 15:27:29 -0700836 result = result && CheckRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700837 break;
838 case Instruction::kVerifyRegCField:
Ian Rogers29a26482014-05-02 15:27:29 -0700839 result = result && CheckFieldIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700840 break;
841 case Instruction::kVerifyRegCNewArray:
Ian Rogers29a26482014-05-02 15:27:29 -0700842 result = result && CheckNewArray(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700843 break;
844 case Instruction::kVerifyRegCType:
Ian Rogers29a26482014-05-02 15:27:29 -0700845 result = result && CheckTypeIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700846 break;
847 case Instruction::kVerifyRegCWide:
Ian Rogers29a26482014-05-02 15:27:29 -0700848 result = result && CheckWideRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700849 break;
850 }
851 switch (inst->GetVerifyExtraFlags()) {
852 case Instruction::kVerifyArrayData:
853 result = result && CheckArrayData(code_offset);
854 break;
855 case Instruction::kVerifyBranchTarget:
856 result = result && CheckBranchTarget(code_offset);
857 break;
858 case Instruction::kVerifySwitchTargets:
859 result = result && CheckSwitchTargets(code_offset);
860 break;
Andreas Gampec3314312014-06-19 18:13:29 -0700861 case Instruction::kVerifyVarArgNonZero:
862 // Fall-through.
Ian Rogers29a26482014-05-02 15:27:29 -0700863 case Instruction::kVerifyVarArg: {
Andreas Gampec3314312014-06-19 18:13:29 -0700864 if (inst->GetVerifyExtraFlags() == Instruction::kVerifyVarArgNonZero && inst->VRegA() <= 0) {
865 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << inst->VRegA() << ") in "
866 "non-range invoke";
867 return false;
868 }
Ian Rogers29a26482014-05-02 15:27:29 -0700869 uint32_t args[Instruction::kMaxVarArgRegs];
870 inst->GetVarArgs(args);
871 result = result && CheckVarArgRegs(inst->VRegA(), args);
Ian Rogersd81871c2011-10-03 13:57:23 -0700872 break;
Ian Rogers29a26482014-05-02 15:27:29 -0700873 }
Andreas Gampec3314312014-06-19 18:13:29 -0700874 case Instruction::kVerifyVarArgRangeNonZero:
875 // Fall-through.
Ian Rogersd81871c2011-10-03 13:57:23 -0700876 case Instruction::kVerifyVarArgRange:
Andreas Gampec3314312014-06-19 18:13:29 -0700877 if (inst->GetVerifyExtraFlags() == Instruction::kVerifyVarArgRangeNonZero &&
878 inst->VRegA() <= 0) {
879 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << inst->VRegA() << ") in "
880 "range invoke";
881 return false;
882 }
Ian Rogers29a26482014-05-02 15:27:29 -0700883 result = result && CheckVarArgRangeRegs(inst->VRegA(), inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -0700884 break;
885 case Instruction::kVerifyError:
jeffhaod5347e02012-03-22 17:25:05 -0700886 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected opcode " << inst->Name();
Ian Rogersd81871c2011-10-03 13:57:23 -0700887 result = false;
888 break;
889 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800890 if (inst->GetVerifyIsRuntimeOnly() && Runtime::Current()->IsAotCompiler() && !verify_to_dump_) {
Ian Rogers5fb22a92014-06-13 10:31:28 -0700891 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "opcode only expected at runtime " << inst->Name();
892 result = false;
893 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700894 return result;
895}
896
Ian Rogers7b078e82014-09-10 14:44:24 -0700897inline bool MethodVerifier::CheckRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700898 if (idx >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700899 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register index out of range (" << idx << " >= "
900 << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700901 return false;
902 }
903 return true;
904}
905
Ian Rogers7b078e82014-09-10 14:44:24 -0700906inline bool MethodVerifier::CheckWideRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700907 if (idx + 1 >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700908 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "wide register index out of range (" << idx
909 << "+1 >= " << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700910 return false;
911 }
912 return true;
913}
914
Ian Rogers7b078e82014-09-10 14:44:24 -0700915inline bool MethodVerifier::CheckFieldIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700916 if (idx >= dex_file_->GetHeader().field_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700917 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad field index " << idx << " (max "
918 << dex_file_->GetHeader().field_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700919 return false;
920 }
921 return true;
922}
923
Ian Rogers7b078e82014-09-10 14:44:24 -0700924inline bool MethodVerifier::CheckMethodIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700925 if (idx >= dex_file_->GetHeader().method_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700926 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad method index " << idx << " (max "
927 << dex_file_->GetHeader().method_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700928 return false;
929 }
930 return true;
931}
932
Ian Rogers7b078e82014-09-10 14:44:24 -0700933inline bool MethodVerifier::CheckNewInstance(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700934 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700935 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
936 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700937 return false;
938 }
939 // We don't need the actual class, just a pointer to the class name.
Ian Rogers0571d352011-11-03 19:51:38 -0700940 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -0700941 if (descriptor[0] != 'L') {
jeffhaod5347e02012-03-22 17:25:05 -0700942 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "can't call new-instance on type '" << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -0700943 return false;
944 }
945 return true;
946}
947
Ian Rogers7b078e82014-09-10 14:44:24 -0700948inline bool MethodVerifier::CheckStringIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700949 if (idx >= dex_file_->GetHeader().string_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700950 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad string index " << idx << " (max "
951 << dex_file_->GetHeader().string_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700952 return false;
953 }
954 return true;
955}
956
Ian Rogers7b078e82014-09-10 14:44:24 -0700957inline bool MethodVerifier::CheckTypeIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700958 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700959 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
960 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700961 return false;
962 }
963 return true;
964}
965
Ian Rogers776ac1f2012-04-13 23:36:36 -0700966bool MethodVerifier::CheckNewArray(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700967 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700968 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
969 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700970 return false;
971 }
972 int bracket_count = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700973 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -0700974 const char* cp = descriptor;
975 while (*cp++ == '[') {
976 bracket_count++;
977 }
978 if (bracket_count == 0) {
979 /* The given class must be an array type. */
Brian Carlstrom93c33962013-07-26 10:37:43 -0700980 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
981 << "can't new-array class '" << descriptor << "' (not an array)";
Ian Rogersd81871c2011-10-03 13:57:23 -0700982 return false;
983 } else if (bracket_count > 255) {
984 /* It is illegal to create an array of more than 255 dimensions. */
Brian Carlstrom93c33962013-07-26 10:37:43 -0700985 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
986 << "can't new-array class '" << descriptor << "' (exceeds limit)";
Ian Rogersd81871c2011-10-03 13:57:23 -0700987 return false;
988 }
989 return true;
990}
991
Ian Rogers776ac1f2012-04-13 23:36:36 -0700992bool MethodVerifier::CheckArrayData(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700993 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
994 const uint16_t* insns = code_item_->insns_ + cur_offset;
995 const uint16_t* array_data;
996 int32_t array_data_offset;
997
998 DCHECK_LT(cur_offset, insn_count);
999 /* make sure the start of the array data table is in range */
1000 array_data_offset = insns[1] | (((int32_t) insns[2]) << 16);
1001 if ((int32_t) cur_offset + array_data_offset < 0 ||
1002 cur_offset + array_data_offset + 2 >= insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -07001003 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -07001004 << ", data offset " << array_data_offset
1005 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -07001006 return false;
1007 }
1008 /* offset to array data table is a relative branch-style offset */
1009 array_data = insns + array_data_offset;
1010 /* make sure the table is 32-bit aligned */
Ian Rogersef7d42f2014-01-06 12:55:46 -08001011 if ((reinterpret_cast<uintptr_t>(array_data) & 0x03) != 0) {
jeffhaod5347e02012-03-22 17:25:05 -07001012 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned array data table: at " << cur_offset
1013 << ", data offset " << array_data_offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001014 return false;
1015 }
1016 uint32_t value_width = array_data[1];
Elliott Hughes398f64b2012-03-26 18:05:48 -07001017 uint32_t value_count = *reinterpret_cast<const uint32_t*>(&array_data[2]);
Ian Rogersd81871c2011-10-03 13:57:23 -07001018 uint32_t table_size = 4 + (value_width * value_count + 1) / 2;
1019 /* make sure the end of the switch is in range */
1020 if (cur_offset + array_data_offset + table_size > insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -07001021 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data end: at " << cur_offset
1022 << ", data offset " << array_data_offset << ", end "
1023 << cur_offset + array_data_offset + table_size
1024 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -07001025 return false;
1026 }
1027 return true;
1028}
1029
Ian Rogers776ac1f2012-04-13 23:36:36 -07001030bool MethodVerifier::CheckBranchTarget(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001031 int32_t offset;
1032 bool isConditional, selfOkay;
1033 if (!GetBranchOffset(cur_offset, &offset, &isConditional, &selfOkay)) {
1034 return false;
1035 }
1036 if (!selfOkay && offset == 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001037 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch offset of zero not allowed at"
1038 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -07001039 return false;
1040 }
Elliott Hughes81ff3182012-03-23 20:35:56 -07001041 // Check for 32-bit overflow. This isn't strictly necessary if we can depend on the runtime
1042 // to have identical "wrap-around" behavior, but it's unwise to depend on that.
Ian Rogersd81871c2011-10-03 13:57:23 -07001043 if (((int64_t) cur_offset + (int64_t) offset) != (int64_t) (cur_offset + offset)) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001044 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch target overflow "
1045 << reinterpret_cast<void*>(cur_offset) << " +" << offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001046 return false;
1047 }
1048 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
1049 int32_t abs_offset = cur_offset + offset;
Brian Carlstrom93c33962013-07-26 10:37:43 -07001050 if (abs_offset < 0 ||
1051 (uint32_t) abs_offset >= insn_count ||
1052 !insn_flags_[abs_offset].IsOpcode()) {
jeffhaod5347e02012-03-22 17:25:05 -07001053 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid branch target " << offset << " (-> "
Elliott Hughes398f64b2012-03-26 18:05:48 -07001054 << reinterpret_cast<void*>(abs_offset) << ") at "
1055 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -07001056 return false;
1057 }
1058 insn_flags_[abs_offset].SetBranchTarget();
1059 return true;
1060}
1061
Ian Rogers776ac1f2012-04-13 23:36:36 -07001062bool MethodVerifier::GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
Ian Rogersd81871c2011-10-03 13:57:23 -07001063 bool* selfOkay) {
1064 const uint16_t* insns = code_item_->insns_ + cur_offset;
1065 *pConditional = false;
1066 *selfOkay = false;
jeffhaoba5ebb92011-08-25 17:24:37 -07001067 switch (*insns & 0xff) {
1068 case Instruction::GOTO:
1069 *pOffset = ((int16_t) *insns) >> 8;
jeffhaoba5ebb92011-08-25 17:24:37 -07001070 break;
1071 case Instruction::GOTO_32:
1072 *pOffset = insns[1] | (((uint32_t) insns[2]) << 16);
jeffhaoba5ebb92011-08-25 17:24:37 -07001073 *selfOkay = true;
1074 break;
1075 case Instruction::GOTO_16:
1076 *pOffset = (int16_t) insns[1];
jeffhaoba5ebb92011-08-25 17:24:37 -07001077 break;
1078 case Instruction::IF_EQ:
1079 case Instruction::IF_NE:
1080 case Instruction::IF_LT:
1081 case Instruction::IF_GE:
1082 case Instruction::IF_GT:
1083 case Instruction::IF_LE:
1084 case Instruction::IF_EQZ:
1085 case Instruction::IF_NEZ:
1086 case Instruction::IF_LTZ:
1087 case Instruction::IF_GEZ:
1088 case Instruction::IF_GTZ:
1089 case Instruction::IF_LEZ:
1090 *pOffset = (int16_t) insns[1];
1091 *pConditional = true;
jeffhaoba5ebb92011-08-25 17:24:37 -07001092 break;
1093 default:
1094 return false;
jeffhaoba5ebb92011-08-25 17:24:37 -07001095 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001096 return true;
1097}
1098
Ian Rogers776ac1f2012-04-13 23:36:36 -07001099bool MethodVerifier::CheckSwitchTargets(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001100 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001101 DCHECK_LT(cur_offset, insn_count);
Ian Rogersd81871c2011-10-03 13:57:23 -07001102 const uint16_t* insns = code_item_->insns_ + cur_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001103 /* make sure the start of the switch is in range */
Ian Rogersd81871c2011-10-03 13:57:23 -07001104 int32_t switch_offset = insns[1] | ((int32_t) insns[2]) << 16;
Jeff Hao9ccd1512015-03-20 18:11:45 -07001105 if ((int32_t) cur_offset + switch_offset < 0 || cur_offset + switch_offset + 2 > insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -07001106 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -07001107 << ", switch offset " << switch_offset
1108 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001109 return false;
1110 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001111 /* offset to switch table is a relative branch-style offset */
Ian Rogersd81871c2011-10-03 13:57:23 -07001112 const uint16_t* switch_insns = insns + switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001113 /* make sure the table is 32-bit aligned */
Ian Rogersef7d42f2014-01-06 12:55:46 -08001114 if ((reinterpret_cast<uintptr_t>(switch_insns) & 0x03) != 0) {
jeffhaod5347e02012-03-22 17:25:05 -07001115 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned switch table: at " << cur_offset
1116 << ", switch offset " << switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001117 return false;
1118 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001119 uint32_t switch_count = switch_insns[1];
1120 int32_t keys_offset, targets_offset;
1121 uint16_t expected_signature;
jeffhaoba5ebb92011-08-25 17:24:37 -07001122 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
1123 /* 0=sig, 1=count, 2/3=firstKey */
1124 targets_offset = 4;
1125 keys_offset = -1;
1126 expected_signature = Instruction::kPackedSwitchSignature;
1127 } else {
1128 /* 0=sig, 1=count, 2..count*2 = keys */
1129 keys_offset = 2;
1130 targets_offset = 2 + 2 * switch_count;
1131 expected_signature = Instruction::kSparseSwitchSignature;
1132 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001133 uint32_t table_size = targets_offset + switch_count * 2;
jeffhaoba5ebb92011-08-25 17:24:37 -07001134 if (switch_insns[0] != expected_signature) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001135 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1136 << StringPrintf("wrong signature for switch table (%x, wanted %x)",
1137 switch_insns[0], expected_signature);
jeffhaoba5ebb92011-08-25 17:24:37 -07001138 return false;
1139 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001140 /* make sure the end of the switch is in range */
1141 if (cur_offset + switch_offset + table_size > (uint32_t) insn_count) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001142 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch end: at " << cur_offset
1143 << ", switch offset " << switch_offset
1144 << ", end " << (cur_offset + switch_offset + table_size)
jeffhaod5347e02012-03-22 17:25:05 -07001145 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001146 return false;
1147 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001148 /* for a sparse switch, verify the keys are in ascending order */
1149 if (keys_offset > 0 && switch_count > 1) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001150 int32_t last_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1151 for (uint32_t targ = 1; targ < switch_count; targ++) {
jeffhaoba5ebb92011-08-25 17:24:37 -07001152 int32_t key = (int32_t) switch_insns[keys_offset + targ * 2] |
1153 (int32_t) (switch_insns[keys_offset + targ * 2 + 1] << 16);
1154 if (key <= last_key) {
jeffhaod5347e02012-03-22 17:25:05 -07001155 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid packed switch: last key=" << last_key
1156 << ", this=" << key;
jeffhaoba5ebb92011-08-25 17:24:37 -07001157 return false;
1158 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001159 last_key = key;
1160 }
1161 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001162 /* verify each switch target */
Ian Rogersd81871c2011-10-03 13:57:23 -07001163 for (uint32_t targ = 0; targ < switch_count; targ++) {
1164 int32_t offset = (int32_t) switch_insns[targets_offset + targ * 2] |
1165 (int32_t) (switch_insns[targets_offset + targ * 2 + 1] << 16);
1166 int32_t abs_offset = cur_offset + offset;
Brian Carlstrom93c33962013-07-26 10:37:43 -07001167 if (abs_offset < 0 ||
1168 abs_offset >= (int32_t) insn_count ||
1169 !insn_flags_[abs_offset].IsOpcode()) {
1170 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch target " << offset
1171 << " (-> " << reinterpret_cast<void*>(abs_offset) << ") at "
1172 << reinterpret_cast<void*>(cur_offset)
1173 << "[" << targ << "]";
jeffhaoba5ebb92011-08-25 17:24:37 -07001174 return false;
1175 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001176 insn_flags_[abs_offset].SetBranchTarget();
1177 }
1178 return true;
1179}
1180
Ian Rogers776ac1f2012-04-13 23:36:36 -07001181bool MethodVerifier::CheckVarArgRegs(uint32_t vA, uint32_t arg[]) {
Ian Rogers29a26482014-05-02 15:27:29 -07001182 if (vA > Instruction::kMaxVarArgRegs) {
jeffhaod5347e02012-03-22 17:25:05 -07001183 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << vA << ") in non-range invoke)";
Ian Rogersd81871c2011-10-03 13:57:23 -07001184 return false;
1185 }
1186 uint16_t registers_size = code_item_->registers_size_;
1187 for (uint32_t idx = 0; idx < vA; idx++) {
jeffhao457cc512012-02-02 16:55:13 -08001188 if (arg[idx] >= registers_size) {
jeffhaod5347e02012-03-22 17:25:05 -07001189 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index (" << arg[idx]
1190 << ") in non-range invoke (>= " << registers_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001191 return false;
1192 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001193 }
1194
1195 return true;
1196}
1197
Ian Rogers776ac1f2012-04-13 23:36:36 -07001198bool MethodVerifier::CheckVarArgRangeRegs(uint32_t vA, uint32_t vC) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001199 uint16_t registers_size = code_item_->registers_size_;
1200 // vA/vC are unsigned 8-bit/16-bit quantities for /range instructions, so there's no risk of
1201 // integer overflow when adding them here.
1202 if (vA + vC > registers_size) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001203 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index " << vA << "+" << vC
1204 << " in range invoke (> " << registers_size << ")";
jeffhaoba5ebb92011-08-25 17:24:37 -07001205 return false;
1206 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001207 return true;
1208}
1209
Ian Rogers776ac1f2012-04-13 23:36:36 -07001210bool MethodVerifier::VerifyCodeFlow() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001211 uint16_t registers_size = code_item_->registers_size_;
1212 uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaobdb76512011-09-07 11:43:16 -07001213
Ian Rogersd81871c2011-10-03 13:57:23 -07001214 if (registers_size * insns_size > 4*1024*1024) {
buzbee4922ef92012-02-24 14:32:20 -08001215 LOG(WARNING) << "warning: method is huge (regs=" << registers_size
1216 << " insns_size=" << insns_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001217 }
1218 /* Create and initialize table holding register status */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001219 reg_table_.Init(kTrackCompilerInterestPoints,
1220 insn_flags_.get(),
1221 insns_size,
1222 registers_size,
1223 this);
Sameer Abu Asal02c42232013-04-30 12:09:45 -07001224
jeffhaobdb76512011-09-07 11:43:16 -07001225
Ian Rogersd0fbd852013-09-24 18:17:04 -07001226 work_line_.reset(RegisterLine::Create(registers_size, this));
1227 saved_line_.reset(RegisterLine::Create(registers_size, this));
jeffhaobdb76512011-09-07 11:43:16 -07001228
Ian Rogersd81871c2011-10-03 13:57:23 -07001229 /* Initialize register types of method arguments. */
1230 if (!SetTypesFromSignature()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001231 DCHECK_NE(failures_.size(), 0U);
1232 std::string prepend("Bad signature in ");
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001233 prepend += PrettyMethod(dex_method_idx_, *dex_file_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001234 PrependToLastFailMessage(prepend);
Ian Rogersd81871c2011-10-03 13:57:23 -07001235 return false;
1236 }
1237 /* Perform code flow verification. */
1238 if (!CodeFlowVerifyMethod()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001239 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001240 return false;
jeffhaobdb76512011-09-07 11:43:16 -07001241 }
jeffhaobdb76512011-09-07 11:43:16 -07001242 return true;
1243}
1244
Ian Rogersad0b3a32012-04-16 14:50:24 -07001245std::ostream& MethodVerifier::DumpFailures(std::ostream& os) {
1246 DCHECK_EQ(failures_.size(), failure_messages_.size());
Jeff Hao4137f482013-11-22 11:44:57 -08001247 for (size_t i = 0; i < failures_.size(); ++i) {
1248 os << failure_messages_[i]->str() << "\n";
Ian Rogersad0b3a32012-04-16 14:50:24 -07001249 }
1250 return os;
1251}
1252
Ian Rogers776ac1f2012-04-13 23:36:36 -07001253void MethodVerifier::Dump(std::ostream& os) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001254 if (code_item_ == nullptr) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001255 os << "Native method\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001256 return;
jeffhaobdb76512011-09-07 11:43:16 -07001257 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001258 {
1259 os << "Register Types:\n";
1260 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1261 std::ostream indent_os(&indent_filter);
1262 reg_types_.Dump(indent_os);
1263 }
Ian Rogersb4903572012-10-11 11:52:56 -07001264 os << "Dumping instructions and register lines:\n";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001265 Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
1266 std::ostream indent_os(&indent_filter);
Ian Rogersd81871c2011-10-03 13:57:23 -07001267 const Instruction* inst = Instruction::At(code_item_->insns_);
1268 for (size_t dex_pc = 0; dex_pc < code_item_->insns_size_in_code_units_;
Ian Rogers7b078e82014-09-10 14:44:24 -07001269 dex_pc += inst->SizeInCodeUnits()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001270 RegisterLine* reg_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -07001271 if (reg_line != nullptr) {
1272 indent_os << reg_line->Dump(this) << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07001273 }
Ian Rogers7b3ddd22013-02-21 15:19:52 -08001274 indent_os << StringPrintf("0x%04zx", dex_pc) << ": " << insn_flags_[dex_pc].ToString() << " ";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001275 const bool kDumpHexOfInstruction = false;
1276 if (kDumpHexOfInstruction) {
1277 indent_os << inst->DumpHex(5) << " ";
1278 }
1279 indent_os << inst->DumpString(dex_file_) << "\n";
jeffhaoba5ebb92011-08-25 17:24:37 -07001280 inst = inst->Next();
1281 }
jeffhaobdb76512011-09-07 11:43:16 -07001282}
1283
Ian Rogersd81871c2011-10-03 13:57:23 -07001284static bool IsPrimitiveDescriptor(char descriptor) {
1285 switch (descriptor) {
jeffhaobdb76512011-09-07 11:43:16 -07001286 case 'I':
1287 case 'C':
1288 case 'S':
1289 case 'B':
1290 case 'Z':
jeffhaobdb76512011-09-07 11:43:16 -07001291 case 'F':
1292 case 'D':
1293 case 'J':
Ian Rogersd81871c2011-10-03 13:57:23 -07001294 return true;
jeffhaobdb76512011-09-07 11:43:16 -07001295 default:
1296 return false;
1297 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001298}
1299
Ian Rogers776ac1f2012-04-13 23:36:36 -07001300bool MethodVerifier::SetTypesFromSignature() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001301 RegisterLine* reg_line = reg_table_.GetLine(0);
1302 int arg_start = code_item_->registers_size_ - code_item_->ins_size_;
1303 size_t expected_args = code_item_->ins_size_; /* long/double count as two */
jeffhaobdb76512011-09-07 11:43:16 -07001304
Ian Rogersd81871c2011-10-03 13:57:23 -07001305 DCHECK_GE(arg_start, 0); /* should have been verified earlier */
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001306 // Include the "this" pointer.
Ian Rogersd81871c2011-10-03 13:57:23 -07001307 size_t cur_arg = 0;
Ian Rogersad0b3a32012-04-16 14:50:24 -07001308 if (!IsStatic()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001309 // If this is a constructor for a class other than java.lang.Object, mark the first ("this")
1310 // argument as uninitialized. This restricts field access until the superclass constructor is
1311 // called.
Ian Rogersd8f69b02014-09-10 21:43:52 +00001312 const RegType& declaring_class = GetDeclaringClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07001313 if (IsConstructor() && !declaring_class.IsJavaLangObject()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001314 reg_line->SetRegisterType(this, arg_start + cur_arg,
Ian Rogersd81871c2011-10-03 13:57:23 -07001315 reg_types_.UninitializedThisArgument(declaring_class));
1316 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07001317 reg_line->SetRegisterType(this, arg_start + cur_arg, declaring_class);
jeffhaobdb76512011-09-07 11:43:16 -07001318 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001319 cur_arg++;
jeffhaobdb76512011-09-07 11:43:16 -07001320 }
1321
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001322 const DexFile::ProtoId& proto_id =
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001323 dex_file_->GetMethodPrototype(dex_file_->GetMethodId(dex_method_idx_));
Ian Rogers0571d352011-11-03 19:51:38 -07001324 DexFileParameterIterator iterator(*dex_file_, proto_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07001325
1326 for (; iterator.HasNext(); iterator.Next()) {
1327 const char* descriptor = iterator.GetDescriptor();
Ian Rogers7b078e82014-09-10 14:44:24 -07001328 if (descriptor == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001329 LOG(FATAL) << "Null descriptor";
1330 }
1331 if (cur_arg >= expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07001332 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1333 << " args, found more (" << descriptor << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001334 return false;
1335 }
1336 switch (descriptor[0]) {
1337 case 'L':
1338 case '[':
1339 // We assume that reference arguments are initialized. The only way it could be otherwise
1340 // (assuming the caller was verified) is if the current method is <init>, but in that case
1341 // it's effectively considered initialized the instant we reach here (in the sense that we
1342 // can return without doing anything or call virtual methods).
1343 {
Ian Rogersd8f69b02014-09-10 21:43:52 +00001344 const RegType& reg_type = ResolveClassAndCheckAccess(iterator.GetTypeIdx());
Sebastien Hertz2ed76f92014-04-22 17:11:08 +02001345 if (!reg_type.IsNonZeroReferenceTypes()) {
1346 DCHECK(HasFailures());
1347 return false;
1348 }
Ian Rogers7b078e82014-09-10 14:44:24 -07001349 reg_line->SetRegisterType(this, arg_start + cur_arg, reg_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001350 }
1351 break;
1352 case 'Z':
Ian Rogers7b078e82014-09-10 14:44:24 -07001353 reg_line->SetRegisterType(this, arg_start + cur_arg, reg_types_.Boolean());
Ian Rogersd81871c2011-10-03 13:57:23 -07001354 break;
1355 case 'C':
Ian Rogers7b078e82014-09-10 14:44:24 -07001356 reg_line->SetRegisterType(this, arg_start + cur_arg, reg_types_.Char());
Ian Rogersd81871c2011-10-03 13:57:23 -07001357 break;
1358 case 'B':
Ian Rogers7b078e82014-09-10 14:44:24 -07001359 reg_line->SetRegisterType(this, arg_start + cur_arg, reg_types_.Byte());
Ian Rogersd81871c2011-10-03 13:57:23 -07001360 break;
1361 case 'I':
Ian Rogers7b078e82014-09-10 14:44:24 -07001362 reg_line->SetRegisterType(this, arg_start + cur_arg, reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07001363 break;
1364 case 'S':
Ian Rogers7b078e82014-09-10 14:44:24 -07001365 reg_line->SetRegisterType(this, arg_start + cur_arg, reg_types_.Short());
Ian Rogersd81871c2011-10-03 13:57:23 -07001366 break;
1367 case 'F':
Ian Rogers7b078e82014-09-10 14:44:24 -07001368 reg_line->SetRegisterType(this, arg_start + cur_arg, reg_types_.Float());
Ian Rogersd81871c2011-10-03 13:57:23 -07001369 break;
1370 case 'J':
1371 case 'D': {
Andreas Gampe77cd4d62014-06-19 17:29:48 -07001372 if (cur_arg + 1 >= expected_args) {
1373 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1374 << " args, found more (" << descriptor << ")";
1375 return false;
1376 }
1377
Ian Rogers7b078e82014-09-10 14:44:24 -07001378 const RegType* lo_half;
1379 const RegType* hi_half;
1380 if (descriptor[0] == 'J') {
1381 lo_half = &reg_types_.LongLo();
1382 hi_half = &reg_types_.LongHi();
1383 } else {
1384 lo_half = &reg_types_.DoubleLo();
1385 hi_half = &reg_types_.DoubleHi();
1386 }
1387 reg_line->SetRegisterTypeWide(this, arg_start + cur_arg, *lo_half, *hi_half);
Ian Rogersd81871c2011-10-03 13:57:23 -07001388 cur_arg++;
1389 break;
1390 }
1391 default:
Brian Carlstrom93c33962013-07-26 10:37:43 -07001392 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected signature type char '"
1393 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001394 return false;
1395 }
1396 cur_arg++;
1397 }
1398 if (cur_arg != expected_args) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001399 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1400 << " arguments, found " << cur_arg;
Ian Rogersd81871c2011-10-03 13:57:23 -07001401 return false;
1402 }
1403 const char* descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
1404 // Validate return type. We don't do the type lookup; just want to make sure that it has the right
1405 // format. Only major difference from the method argument format is that 'V' is supported.
1406 bool result;
1407 if (IsPrimitiveDescriptor(descriptor[0]) || descriptor[0] == 'V') {
1408 result = descriptor[1] == '\0';
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001409 } else if (descriptor[0] == '[') { // single/multi-dimensional array of object/primitive
Ian Rogersd81871c2011-10-03 13:57:23 -07001410 size_t i = 0;
1411 do {
1412 i++;
1413 } while (descriptor[i] == '['); // process leading [
1414 if (descriptor[i] == 'L') { // object array
1415 do {
1416 i++; // find closing ;
1417 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1418 result = descriptor[i] == ';';
1419 } else { // primitive array
1420 result = IsPrimitiveDescriptor(descriptor[i]) && descriptor[i + 1] == '\0';
1421 }
1422 } else if (descriptor[0] == 'L') {
1423 // could be more thorough here, but shouldn't be required
1424 size_t i = 0;
1425 do {
1426 i++;
1427 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1428 result = descriptor[i] == ';';
1429 } else {
1430 result = false;
1431 }
1432 if (!result) {
jeffhaod5347e02012-03-22 17:25:05 -07001433 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected char in return type descriptor '"
1434 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001435 }
1436 return result;
jeffhaobdb76512011-09-07 11:43:16 -07001437}
1438
Ian Rogers776ac1f2012-04-13 23:36:36 -07001439bool MethodVerifier::CodeFlowVerifyMethod() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001440 const uint16_t* insns = code_item_->insns_;
1441 const uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaoba5ebb92011-08-25 17:24:37 -07001442
jeffhaobdb76512011-09-07 11:43:16 -07001443 /* Begin by marking the first instruction as "changed". */
Ian Rogersd81871c2011-10-03 13:57:23 -07001444 insn_flags_[0].SetChanged();
1445 uint32_t start_guess = 0;
jeffhaoba5ebb92011-08-25 17:24:37 -07001446
jeffhaobdb76512011-09-07 11:43:16 -07001447 /* Continue until no instructions are marked "changed". */
1448 while (true) {
Mathieu Chartier4306ef82014-12-19 18:41:47 -08001449 if (allow_thread_suspension_) {
1450 self_->AllowThreadSuspension();
1451 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001452 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1453 uint32_t insn_idx = start_guess;
1454 for (; insn_idx < insns_size; insn_idx++) {
1455 if (insn_flags_[insn_idx].IsChanged())
jeffhaobdb76512011-09-07 11:43:16 -07001456 break;
1457 }
jeffhaobdb76512011-09-07 11:43:16 -07001458 if (insn_idx == insns_size) {
1459 if (start_guess != 0) {
1460 /* try again, starting from the top */
1461 start_guess = 0;
1462 continue;
1463 } else {
1464 /* all flags are clear */
1465 break;
1466 }
1467 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001468 // We carry the working set of registers from instruction to instruction. If this address can
1469 // be the target of a branch (or throw) instruction, or if we're skipping around chasing
1470 // "changed" flags, we need to load the set of registers from the table.
1471 // Because we always prefer to continue on to the next instruction, we should never have a
1472 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1473 // target.
1474 work_insn_idx_ = insn_idx;
1475 if (insn_flags_[insn_idx].IsBranchTarget()) {
1476 work_line_->CopyFromLine(reg_table_.GetLine(insn_idx));
Ian Rogersebbdd872014-07-07 23:53:08 -07001477 } else if (kIsDebugBuild) {
jeffhaobdb76512011-09-07 11:43:16 -07001478 /*
1479 * Sanity check: retrieve the stored register line (assuming
1480 * a full table) and make sure it actually matches.
1481 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001482 RegisterLine* register_line = reg_table_.GetLine(insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07001483 if (register_line != nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001484 if (work_line_->CompareLine(register_line) != 0) {
1485 Dump(std::cout);
1486 std::cout << info_messages_.str();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001487 LOG(FATAL) << "work_line diverged in " << PrettyMethod(dex_method_idx_, *dex_file_)
Elliott Hughesc073b072012-05-24 19:29:17 -07001488 << "@" << reinterpret_cast<void*>(work_insn_idx_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07001489 << " work_line=" << work_line_->Dump(this) << "\n"
1490 << " expected=" << register_line->Dump(this);
Ian Rogersd81871c2011-10-03 13:57:23 -07001491 }
jeffhaobdb76512011-09-07 11:43:16 -07001492 }
jeffhaobdb76512011-09-07 11:43:16 -07001493 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001494 if (!CodeFlowVerifyInstruction(&start_guess)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001495 std::string prepend(PrettyMethod(dex_method_idx_, *dex_file_));
Ian Rogersad0b3a32012-04-16 14:50:24 -07001496 prepend += " failed to verify: ";
1497 PrependToLastFailMessage(prepend);
jeffhaoba5ebb92011-08-25 17:24:37 -07001498 return false;
1499 }
jeffhaobdb76512011-09-07 11:43:16 -07001500 /* Clear "changed" and mark as visited. */
Ian Rogersd81871c2011-10-03 13:57:23 -07001501 insn_flags_[insn_idx].SetVisited();
1502 insn_flags_[insn_idx].ClearChanged();
jeffhaobdb76512011-09-07 11:43:16 -07001503 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001504
Ian Rogers1c849e52012-06-28 14:00:33 -07001505 if (gDebugVerify) {
jeffhaobdb76512011-09-07 11:43:16 -07001506 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001507 * Scan for dead code. There's nothing "evil" about dead code
jeffhaobdb76512011-09-07 11:43:16 -07001508 * (besides the wasted space), but it indicates a flaw somewhere
1509 * down the line, possibly in the verifier.
1510 *
1511 * If we've substituted "always throw" instructions into the stream,
1512 * we are almost certainly going to have some dead code.
1513 */
1514 int dead_start = -1;
Ian Rogersd81871c2011-10-03 13:57:23 -07001515 uint32_t insn_idx = 0;
Ian Rogers7b078e82014-09-10 14:44:24 -07001516 for (; insn_idx < insns_size;
1517 insn_idx += Instruction::At(code_item_->insns_ + insn_idx)->SizeInCodeUnits()) {
jeffhaobdb76512011-09-07 11:43:16 -07001518 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001519 * Switch-statement data doesn't get "visited" by scanner. It
jeffhaobdb76512011-09-07 11:43:16 -07001520 * may or may not be preceded by a padding NOP (for alignment).
1521 */
1522 if (insns[insn_idx] == Instruction::kPackedSwitchSignature ||
1523 insns[insn_idx] == Instruction::kSparseSwitchSignature ||
1524 insns[insn_idx] == Instruction::kArrayDataSignature ||
Elliott Hughes380aaa72012-07-09 14:33:15 -07001525 (insns[insn_idx] == Instruction::NOP && (insn_idx + 1 < insns_size) &&
jeffhaobdb76512011-09-07 11:43:16 -07001526 (insns[insn_idx + 1] == Instruction::kPackedSwitchSignature ||
1527 insns[insn_idx + 1] == Instruction::kSparseSwitchSignature ||
1528 insns[insn_idx + 1] == Instruction::kArrayDataSignature))) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001529 insn_flags_[insn_idx].SetVisited();
jeffhaobdb76512011-09-07 11:43:16 -07001530 }
1531
Ian Rogersd81871c2011-10-03 13:57:23 -07001532 if (!insn_flags_[insn_idx].IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001533 if (dead_start < 0)
1534 dead_start = insn_idx;
1535 } else if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001536 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1537 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaobdb76512011-09-07 11:43:16 -07001538 dead_start = -1;
1539 }
1540 }
1541 if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001542 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1543 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaoba5ebb92011-08-25 17:24:37 -07001544 }
Ian Rogersc9e463c2013-06-05 16:52:26 -07001545 // To dump the state of the verify after a method, do something like:
1546 // if (PrettyMethod(dex_method_idx_, *dex_file_) ==
1547 // "boolean java.lang.String.equals(java.lang.Object)") {
1548 // LOG(INFO) << info_messages_.str();
1549 // }
jeffhaoba5ebb92011-08-25 17:24:37 -07001550 }
jeffhaobdb76512011-09-07 11:43:16 -07001551 return true;
1552}
1553
Ian Rogers776ac1f2012-04-13 23:36:36 -07001554bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001555 // If we're doing FindLocksAtDexPc, check whether we're at the dex pc we care about.
1556 // We want the state _before_ the instruction, for the case where the dex pc we're
1557 // interested in is itself a monitor-enter instruction (which is a likely place
1558 // for a thread to be suspended).
Ian Rogers7b078e82014-09-10 14:44:24 -07001559 if (monitor_enter_dex_pcs_ != nullptr && work_insn_idx_ == interesting_dex_pc_) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001560 monitor_enter_dex_pcs_->clear(); // The new work line is more accurate than the previous one.
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001561 for (size_t i = 0; i < work_line_->GetMonitorEnterCount(); ++i) {
1562 monitor_enter_dex_pcs_->push_back(work_line_->GetMonitorEnterDexPc(i));
1563 }
1564 }
1565
jeffhaobdb76512011-09-07 11:43:16 -07001566 /*
1567 * Once we finish decoding the instruction, we need to figure out where
jeffhaod1f0fde2011-09-08 17:25:33 -07001568 * we can go from here. There are three possible ways to transfer
jeffhaobdb76512011-09-07 11:43:16 -07001569 * control to another statement:
1570 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001571 * (1) Continue to the next instruction. Applies to all but
jeffhaobdb76512011-09-07 11:43:16 -07001572 * unconditional branches, method returns, and exception throws.
jeffhaod1f0fde2011-09-08 17:25:33 -07001573 * (2) Branch to one or more possible locations. Applies to branches
jeffhaobdb76512011-09-07 11:43:16 -07001574 * and switch statements.
jeffhaod1f0fde2011-09-08 17:25:33 -07001575 * (3) Exception handlers. Applies to any instruction that can
jeffhaobdb76512011-09-07 11:43:16 -07001576 * throw an exception that is handled by an encompassing "try"
1577 * block.
1578 *
1579 * We can also return, in which case there is no successor instruction
1580 * from this point.
1581 *
Elliott Hughesadb8c672012-03-06 16:49:32 -08001582 * The behavior can be determined from the opcode flags.
jeffhaobdb76512011-09-07 11:43:16 -07001583 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001584 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
1585 const Instruction* inst = Instruction::At(insns);
Ian Rogersa75a0132012-09-28 11:41:42 -07001586 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
jeffhaobdb76512011-09-07 11:43:16 -07001587
jeffhaobdb76512011-09-07 11:43:16 -07001588 int32_t branch_target = 0;
jeffhaobdb76512011-09-07 11:43:16 -07001589 bool just_set_result = false;
Ian Rogers2c8a8572011-10-24 17:11:36 -07001590 if (gDebugVerify) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001591 // Generate processing back trace to debug verifier
Elliott Hughesc073b072012-05-24 19:29:17 -07001592 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07001593 << work_line_->Dump(this) << "\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001594 }
jeffhaobdb76512011-09-07 11:43:16 -07001595
1596 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001597 * Make a copy of the previous register state. If the instruction
jeffhaobdb76512011-09-07 11:43:16 -07001598 * can throw an exception, we will copy/merge this into the "catch"
1599 * address rather than work_line, because we don't want the result
1600 * from the "successful" code path (e.g. a check-cast that "improves"
1601 * a type) to be visible to the exception handler.
1602 */
Ian Rogers776ac1f2012-04-13 23:36:36 -07001603 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001604 saved_line_->CopyFromLine(work_line_.get());
Ian Rogers1ff3c982014-08-12 02:30:58 -07001605 } else if (kIsDebugBuild) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001606 saved_line_->FillWithGarbage();
jeffhaobdb76512011-09-07 11:43:16 -07001607 }
1608
Dragos Sbirlea980d16b2013-06-04 15:01:40 -07001609
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001610 // We need to ensure the work line is consistent while performing validation. When we spot a
1611 // peephole pattern we compute a new line for either the fallthrough instruction or the
1612 // branch target.
Ian Rogers700a4022014-05-19 16:49:03 -07001613 std::unique_ptr<RegisterLine> branch_line;
1614 std::unique_ptr<RegisterLine> fallthrough_line;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07001615
Stephen Kyle7e541c92014-12-17 17:10:02 +00001616 /*
1617 * If we are in a constructor, and we currently have an UninitializedThis type
1618 * in a register somewhere, we need to make sure it isn't overwritten.
1619 */
1620 bool track_uninitialized_this = false;
1621 size_t uninitialized_this_loc = 0;
1622 if (IsConstructor()) {
1623 track_uninitialized_this = work_line_->GetUninitializedThisLoc(this, &uninitialized_this_loc);
1624 }
1625
Sebastien Hertz5243e912013-05-21 10:55:07 +02001626 switch (inst->Opcode()) {
jeffhaobdb76512011-09-07 11:43:16 -07001627 case Instruction::NOP:
1628 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001629 * A "pure" NOP has no effect on anything. Data tables start with
jeffhaobdb76512011-09-07 11:43:16 -07001630 * a signature that looks like a NOP; if we see one of these in
1631 * the course of executing code then we have a problem.
1632 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001633 if (inst->VRegA_10x() != 0) {
jeffhaod5347e02012-03-22 17:25:05 -07001634 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "encountered data table in instruction stream";
jeffhaobdb76512011-09-07 11:43:16 -07001635 }
1636 break;
1637
1638 case Instruction::MOVE:
Ian Rogers7b078e82014-09-10 14:44:24 -07001639 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02001640 break;
jeffhaobdb76512011-09-07 11:43:16 -07001641 case Instruction::MOVE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07001642 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02001643 break;
jeffhaobdb76512011-09-07 11:43:16 -07001644 case Instruction::MOVE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07001645 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategory1nr);
jeffhaobdb76512011-09-07 11:43:16 -07001646 break;
1647 case Instruction::MOVE_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07001648 work_line_->CopyRegister2(this, inst->VRegA_12x(), inst->VRegB_12x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02001649 break;
jeffhaobdb76512011-09-07 11:43:16 -07001650 case Instruction::MOVE_WIDE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07001651 work_line_->CopyRegister2(this, inst->VRegA_22x(), inst->VRegB_22x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02001652 break;
jeffhaobdb76512011-09-07 11:43:16 -07001653 case Instruction::MOVE_WIDE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07001654 work_line_->CopyRegister2(this, inst->VRegA_32x(), inst->VRegB_32x());
jeffhaobdb76512011-09-07 11:43:16 -07001655 break;
1656 case Instruction::MOVE_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07001657 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02001658 break;
jeffhaobdb76512011-09-07 11:43:16 -07001659 case Instruction::MOVE_OBJECT_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07001660 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02001661 break;
jeffhaobdb76512011-09-07 11:43:16 -07001662 case Instruction::MOVE_OBJECT_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07001663 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategoryRef);
jeffhaobdb76512011-09-07 11:43:16 -07001664 break;
1665
1666 /*
1667 * The move-result instructions copy data out of a "pseudo-register"
jeffhaod1f0fde2011-09-08 17:25:33 -07001668 * with the results from the last method invocation. In practice we
jeffhaobdb76512011-09-07 11:43:16 -07001669 * might want to hold the result in an actual CPU register, so the
1670 * Dalvik spec requires that these only appear immediately after an
1671 * invoke or filled-new-array.
1672 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001673 * These calls invalidate the "result" register. (This is now
jeffhaobdb76512011-09-07 11:43:16 -07001674 * redundant with the reset done below, but it can make the debug info
1675 * easier to read in some cases.)
1676 */
1677 case Instruction::MOVE_RESULT:
Ian Rogers7b078e82014-09-10 14:44:24 -07001678 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), false);
jeffhaobdb76512011-09-07 11:43:16 -07001679 break;
1680 case Instruction::MOVE_RESULT_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07001681 work_line_->CopyResultRegister2(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07001682 break;
1683 case Instruction::MOVE_RESULT_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07001684 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), true);
jeffhaobdb76512011-09-07 11:43:16 -07001685 break;
1686
Ian Rogersd81871c2011-10-03 13:57:23 -07001687 case Instruction::MOVE_EXCEPTION: {
Sebastien Hertz270a0e12015-01-16 19:49:09 +01001688 // We do not allow MOVE_EXCEPTION as the first instruction in a method. This is a simple case
1689 // where one entrypoint to the catch block is not actually an exception path.
1690 if (work_insn_idx_ == 0) {
1691 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "move-exception at pc 0x0";
1692 break;
1693 }
jeffhaobdb76512011-09-07 11:43:16 -07001694 /*
jeffhao60f83e32012-02-13 17:16:30 -08001695 * This statement can only appear as the first instruction in an exception handler. We verify
1696 * that as part of extracting the exception type from the catch block list.
jeffhaobdb76512011-09-07 11:43:16 -07001697 */
Ian Rogersd8f69b02014-09-10 21:43:52 +00001698 const RegType& res_type = GetCaughtExceptionType();
Ian Rogers7b078e82014-09-10 14:44:24 -07001699 work_line_->SetRegisterType(this, inst->VRegA_11x(), res_type);
jeffhaobdb76512011-09-07 11:43:16 -07001700 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001701 }
jeffhaobdb76512011-09-07 11:43:16 -07001702 case Instruction::RETURN_VOID:
Ian Rogers7b078e82014-09-10 14:44:24 -07001703 if (!IsConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001704 if (!GetMethodReturnType().IsConflict()) {
jeffhaod5347e02012-03-22 17:25:05 -07001705 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07001706 }
jeffhaobdb76512011-09-07 11:43:16 -07001707 }
1708 break;
1709 case Instruction::RETURN:
Ian Rogers7b078e82014-09-10 14:44:24 -07001710 if (!IsConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07001711 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00001712 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07001713 if (!return_type.IsCategory1Types()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001714 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected non-category 1 return type "
1715 << return_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07001716 } else {
1717 // Compilers may generate synthetic functions that write byte values into boolean fields.
1718 // Also, it may use integer values for boolean, byte, short, and character return types.
Sebastien Hertz5243e912013-05-21 10:55:07 +02001719 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07001720 const RegType& src_type = work_line_->GetRegisterType(this, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07001721 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) ||
1722 ((return_type.IsBoolean() || return_type.IsByte() ||
1723 return_type.IsShort() || return_type.IsChar()) &&
1724 src_type.IsInteger()));
1725 /* check the register contents */
Ian Rogersad0b3a32012-04-16 14:50:24 -07001726 bool success =
Ian Rogers7b078e82014-09-10 14:44:24 -07001727 work_line_->VerifyRegisterType(this, vregA, use_src ? src_type : return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001728 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001729 AppendToLastFailMessage(StringPrintf(" return-1nr on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07001730 }
jeffhaobdb76512011-09-07 11:43:16 -07001731 }
1732 }
1733 break;
1734 case Instruction::RETURN_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07001735 if (!IsConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07001736 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00001737 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07001738 if (!return_type.IsCategory2Types()) {
jeffhaod5347e02012-03-22 17:25:05 -07001739 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-wide not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07001740 } else {
1741 /* check the register contents */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001742 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07001743 bool success = work_line_->VerifyRegisterType(this, vregA, return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001744 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001745 AppendToLastFailMessage(StringPrintf(" return-wide on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07001746 }
jeffhaobdb76512011-09-07 11:43:16 -07001747 }
1748 }
1749 break;
1750 case Instruction::RETURN_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07001751 if (!IsConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00001752 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07001753 if (!return_type.IsReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001754 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07001755 } else {
1756 /* return_type is the *expected* return type, not register value */
1757 DCHECK(!return_type.IsZero());
1758 DCHECK(!return_type.IsUninitializedReference());
Sebastien Hertz5243e912013-05-21 10:55:07 +02001759 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07001760 const RegType& reg_type = work_line_->GetRegisterType(this, vregA);
Ian Rogers9074b992011-10-26 17:41:55 -07001761 // Disallow returning uninitialized values and verify that the reference in vAA is an
1762 // instance of the "return_type"
1763 if (reg_type.IsUninitializedTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001764 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "returning uninitialized object '"
1765 << reg_type << "'";
Ian Rogers9074b992011-10-26 17:41:55 -07001766 } else if (!return_type.IsAssignableFrom(reg_type)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07001767 if (reg_type.IsUnresolvedTypes() || return_type.IsUnresolvedTypes()) {
1768 Fail(VERIFY_ERROR_NO_CLASS) << " can't resolve returned type '" << return_type
1769 << "' or '" << reg_type << "'";
1770 } else {
Andreas Gampe16f149c2015-03-23 10:10:20 -07001771 bool soft_error = false;
1772 // Check whether arrays are involved. They will show a valid class status, even
1773 // if their components are erroneous.
1774 if (reg_type.IsArrayTypes() && return_type.IsArrayTypes()) {
1775 return_type.CanAssignArray(reg_type, reg_types_, class_loader_, &soft_error);
1776 if (soft_error) {
1777 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "array with erroneous component type: "
1778 << reg_type << " vs " << return_type;
1779 }
1780 }
1781
1782 if (!soft_error) {
1783 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning '" << reg_type
1784 << "', but expected from declaration '" << return_type << "'";
1785 }
Jeff Haoa3faaf42013-09-03 19:07:00 -07001786 }
jeffhaobdb76512011-09-07 11:43:16 -07001787 }
1788 }
1789 }
1790 break;
1791
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001792 /* could be boolean, int, float, or a null reference */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001793 case Instruction::CONST_4: {
1794 int32_t val = static_cast<int32_t>(inst->VRegB_11n() << 28) >> 28;
Ian Rogers7b078e82014-09-10 14:44:24 -07001795 work_line_->SetRegisterType(this, inst->VRegA_11n(),
Ian Rogers46960fe2014-05-23 10:43:43 -07001796 DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001797 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02001798 }
1799 case Instruction::CONST_16: {
1800 int16_t val = static_cast<int16_t>(inst->VRegB_21s());
Ian Rogers7b078e82014-09-10 14:44:24 -07001801 work_line_->SetRegisterType(this, inst->VRegA_21s(),
Ian Rogers46960fe2014-05-23 10:43:43 -07001802 DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07001803 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02001804 }
Sebastien Hertz849600b2013-12-20 10:28:08 +01001805 case Instruction::CONST: {
1806 int32_t val = inst->VRegB_31i();
Ian Rogers7b078e82014-09-10 14:44:24 -07001807 work_line_->SetRegisterType(this, inst->VRegA_31i(),
Ian Rogers46960fe2014-05-23 10:43:43 -07001808 DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07001809 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01001810 }
1811 case Instruction::CONST_HIGH16: {
1812 int32_t val = static_cast<int32_t>(inst->VRegB_21h() << 16);
Ian Rogers7b078e82014-09-10 14:44:24 -07001813 work_line_->SetRegisterType(this, inst->VRegA_21h(),
Ian Rogers46960fe2014-05-23 10:43:43 -07001814 DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07001815 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01001816 }
jeffhaobdb76512011-09-07 11:43:16 -07001817 /* could be long or double; resolved upon use */
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001818 case Instruction::CONST_WIDE_16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001819 int64_t val = static_cast<int16_t>(inst->VRegB_21s());
Ian Rogersd8f69b02014-09-10 21:43:52 +00001820 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
1821 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07001822 work_line_->SetRegisterTypeWide(this, inst->VRegA_21s(), lo, hi);
jeffhaobdb76512011-09-07 11:43:16 -07001823 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001824 }
1825 case Instruction::CONST_WIDE_32: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001826 int64_t val = static_cast<int32_t>(inst->VRegB_31i());
Ian Rogersd8f69b02014-09-10 21:43:52 +00001827 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
1828 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07001829 work_line_->SetRegisterTypeWide(this, inst->VRegA_31i(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001830 break;
1831 }
1832 case Instruction::CONST_WIDE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001833 int64_t val = inst->VRegB_51l();
Ian Rogersd8f69b02014-09-10 21:43:52 +00001834 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
1835 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07001836 work_line_->SetRegisterTypeWide(this, inst->VRegA_51l(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001837 break;
1838 }
1839 case Instruction::CONST_WIDE_HIGH16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001840 int64_t val = static_cast<uint64_t>(inst->VRegB_21h()) << 48;
Ian Rogersd8f69b02014-09-10 21:43:52 +00001841 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
1842 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07001843 work_line_->SetRegisterTypeWide(this, inst->VRegA_21h(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001844 break;
1845 }
jeffhaobdb76512011-09-07 11:43:16 -07001846 case Instruction::CONST_STRING:
Ian Rogers7b078e82014-09-10 14:44:24 -07001847 work_line_->SetRegisterType(this, inst->VRegA_21c(), reg_types_.JavaLangString());
Sebastien Hertz5243e912013-05-21 10:55:07 +02001848 break;
jeffhaobdb76512011-09-07 11:43:16 -07001849 case Instruction::CONST_STRING_JUMBO:
Ian Rogers7b078e82014-09-10 14:44:24 -07001850 work_line_->SetRegisterType(this, inst->VRegA_31c(), reg_types_.JavaLangString());
jeffhaobdb76512011-09-07 11:43:16 -07001851 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001852 case Instruction::CONST_CLASS: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07001853 // Get type from instruction if unresolved then we need an access check
1854 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Ian Rogersd8f69b02014-09-10 21:43:52 +00001855 const RegType& res_type = ResolveClassAndCheckAccess(inst->VRegB_21c());
Ian Rogersad0b3a32012-04-16 14:50:24 -07001856 // Register holds class, ie its type is class, on error it will hold Conflict.
Ian Rogers7b078e82014-09-10 14:44:24 -07001857 work_line_->SetRegisterType(this, inst->VRegA_21c(),
Ian Rogersb4903572012-10-11 11:52:56 -07001858 res_type.IsConflict() ? res_type
Ian Rogers7b078e82014-09-10 14:44:24 -07001859 : reg_types_.JavaLangClass());
jeffhaobdb76512011-09-07 11:43:16 -07001860 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001861 }
jeffhaobdb76512011-09-07 11:43:16 -07001862 case Instruction::MONITOR_ENTER:
Ian Rogers7b078e82014-09-10 14:44:24 -07001863 work_line_->PushMonitor(this, inst->VRegA_11x(), work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07001864 break;
1865 case Instruction::MONITOR_EXIT:
1866 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001867 * monitor-exit instructions are odd. They can throw exceptions,
jeffhaobdb76512011-09-07 11:43:16 -07001868 * but when they do they act as if they succeeded and the PC is
jeffhaod1f0fde2011-09-08 17:25:33 -07001869 * pointing to the following instruction. (This behavior goes back
jeffhaobdb76512011-09-07 11:43:16 -07001870 * to the need to handle asynchronous exceptions, a now-deprecated
1871 * feature that Dalvik doesn't support.)
1872 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001873 * In practice we don't need to worry about this. The only
jeffhaobdb76512011-09-07 11:43:16 -07001874 * exceptions that can be thrown from monitor-exit are for a
jeffhaod1f0fde2011-09-08 17:25:33 -07001875 * null reference and -exit without a matching -enter. If the
jeffhaobdb76512011-09-07 11:43:16 -07001876 * structured locking checks are working, the former would have
1877 * failed on the -enter instruction, and the latter is impossible.
1878 *
1879 * This is fortunate, because issue 3221411 prevents us from
1880 * chasing the "can throw" path when monitor verification is
jeffhaod1f0fde2011-09-08 17:25:33 -07001881 * enabled. If we can fully verify the locking we can ignore
jeffhaobdb76512011-09-07 11:43:16 -07001882 * some catch blocks (which will show up as "dead" code when
1883 * we skip them here); if we can't, then the code path could be
1884 * "live" so we still need to check it.
1885 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001886 opcode_flags &= ~Instruction::kThrow;
Ian Rogers7b078e82014-09-10 14:44:24 -07001887 work_line_->PopMonitor(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07001888 break;
1889
Ian Rogers28ad40d2011-10-27 15:19:26 -07001890 case Instruction::CHECK_CAST:
Ian Rogersd81871c2011-10-03 13:57:23 -07001891 case Instruction::INSTANCE_OF: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07001892 /*
1893 * If this instruction succeeds, we will "downcast" register vA to the type in vB. (This
1894 * could be a "upcast" -- not expected, so we don't try to address it.)
1895 *
1896 * If it fails, an exception is thrown, which we deal with later by ignoring the update to
Elliott Hughesadb8c672012-03-06 16:49:32 -08001897 * dec_insn.vA when branching to a handler.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001898 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02001899 const bool is_checkcast = (inst->Opcode() == Instruction::CHECK_CAST);
1900 const uint32_t type_idx = (is_checkcast) ? inst->VRegB_21c() : inst->VRegC_22c();
Ian Rogersd8f69b02014-09-10 21:43:52 +00001901 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001902 if (res_type.IsConflict()) {
Andreas Gampe00633eb2014-07-17 16:13:35 -07001903 // If this is a primitive type, fail HARD.
Mathieu Chartierbf99f772014-08-23 16:37:27 -07001904 mirror::Class* klass = dex_cache_->GetResolvedType(type_idx);
Andreas Gampe00633eb2014-07-17 16:13:35 -07001905 if (klass != nullptr && klass->IsPrimitive()) {
1906 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "using primitive type "
1907 << dex_file_->StringByTypeIdx(type_idx) << " in instanceof in "
1908 << GetDeclaringClass();
1909 break;
1910 }
1911
Ian Rogersad0b3a32012-04-16 14:50:24 -07001912 DCHECK_NE(failures_.size(), 0U);
1913 if (!is_checkcast) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001914 work_line_->SetRegisterType(this, inst->VRegA_22c(), reg_types_.Boolean());
Ian Rogersad0b3a32012-04-16 14:50:24 -07001915 }
1916 break; // bad class
Ian Rogers9f1ab122011-12-12 08:52:43 -08001917 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07001918 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Sebastien Hertz5243e912013-05-21 10:55:07 +02001919 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c();
Ian Rogers7b078e82014-09-10 14:44:24 -07001920 const RegType& orig_type = work_line_->GetRegisterType(this, orig_type_reg);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001921 if (!res_type.IsNonZeroReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001922 if (is_checkcast) {
1923 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on unexpected class " << res_type;
1924 } else {
1925 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on unexpected class " << res_type;
1926 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07001927 } else if (!orig_type.IsReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02001928 if (is_checkcast) {
1929 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on non-reference in v" << orig_type_reg;
1930 } else {
1931 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on non-reference in v" << orig_type_reg;
1932 }
jeffhao2a8a90e2011-09-26 14:25:31 -07001933 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07001934 if (is_checkcast) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001935 work_line_->SetRegisterType(this, inst->VRegA_21c(), res_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001936 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07001937 work_line_->SetRegisterType(this, inst->VRegA_22c(), reg_types_.Boolean());
jeffhaobdb76512011-09-07 11:43:16 -07001938 }
jeffhaobdb76512011-09-07 11:43:16 -07001939 }
jeffhao2a8a90e2011-09-26 14:25:31 -07001940 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001941 }
1942 case Instruction::ARRAY_LENGTH: {
Ian Rogers7b078e82014-09-10 14:44:24 -07001943 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegB_12x());
Ian Rogers28ad40d2011-10-27 15:19:26 -07001944 if (res_type.IsReferenceTypes()) {
Ian Rogers89310de2012-02-01 13:47:30 -08001945 if (!res_type.IsArrayTypes() && !res_type.IsZero()) { // ie not an array or null
jeffhaod5347e02012-03-22 17:25:05 -07001946 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07001947 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07001948 work_line_->SetRegisterType(this, inst->VRegA_12x(), reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07001949 }
Andreas Gampe65c9db82014-07-28 13:14:34 -07001950 } else {
1951 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07001952 }
1953 break;
1954 }
1955 case Instruction::NEW_INSTANCE: {
Ian Rogersd8f69b02014-09-10 21:43:52 +00001956 const RegType& res_type = ResolveClassAndCheckAccess(inst->VRegB_21c());
Ian Rogersad0b3a32012-04-16 14:50:24 -07001957 if (res_type.IsConflict()) {
1958 DCHECK_NE(failures_.size(), 0U);
1959 break; // bad class
jeffhao8cd6dda2012-02-22 10:15:34 -08001960 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07001961 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
1962 // can't create an instance of an interface or abstract class */
1963 if (!res_type.IsInstantiableTypes()) {
1964 Fail(VERIFY_ERROR_INSTANTIATION)
1965 << "new-instance on primitive, interface or abstract class" << res_type;
Ian Rogers08f753d2012-08-24 14:35:25 -07001966 // Soft failure so carry on to set register type.
Ian Rogersd81871c2011-10-03 13:57:23 -07001967 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00001968 const RegType& uninit_type = reg_types_.Uninitialized(res_type, work_insn_idx_);
Ian Rogers08f753d2012-08-24 14:35:25 -07001969 // Any registers holding previous allocations from this address that have not yet been
1970 // initialized must be marked invalid.
Ian Rogers7b078e82014-09-10 14:44:24 -07001971 work_line_->MarkUninitRefsAsInvalid(this, uninit_type);
Ian Rogers08f753d2012-08-24 14:35:25 -07001972 // add the new uninitialized reference to the register state
Ian Rogers7b078e82014-09-10 14:44:24 -07001973 work_line_->SetRegisterType(this, inst->VRegA_21c(), uninit_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001974 break;
1975 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08001976 case Instruction::NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001977 VerifyNewArray(inst, false, false);
jeffhaobdb76512011-09-07 11:43:16 -07001978 break;
1979 case Instruction::FILLED_NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001980 VerifyNewArray(inst, true, false);
Ian Rogers0c4a5062012-02-03 15:18:59 -08001981 just_set_result = true; // Filled new array sets result register
jeffhaobdb76512011-09-07 11:43:16 -07001982 break;
Ian Rogers0c4a5062012-02-03 15:18:59 -08001983 case Instruction::FILLED_NEW_ARRAY_RANGE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02001984 VerifyNewArray(inst, true, true);
Ian Rogers0c4a5062012-02-03 15:18:59 -08001985 just_set_result = true; // Filled new array range sets result register
1986 break;
jeffhaobdb76512011-09-07 11:43:16 -07001987 case Instruction::CMPL_FLOAT:
1988 case Instruction::CMPG_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07001989 if (!work_line_->VerifyRegisterType(this, inst->VRegB_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08001990 break;
1991 }
Ian Rogers7b078e82014-09-10 14:44:24 -07001992 if (!work_line_->VerifyRegisterType(this, inst->VRegC_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08001993 break;
1994 }
Ian Rogers7b078e82014-09-10 14:44:24 -07001995 work_line_->SetRegisterType(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07001996 break;
1997 case Instruction::CMPL_DOUBLE:
1998 case Instruction::CMPG_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07001999 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegB_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002000 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002001 break;
2002 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002003 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002004 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002005 break;
2006 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002007 work_line_->SetRegisterType(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002008 break;
2009 case Instruction::CMP_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07002010 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegB_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002011 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002012 break;
2013 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002014 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002015 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002016 break;
2017 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002018 work_line_->SetRegisterType(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002019 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002020 case Instruction::THROW: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002021 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegA_11x());
Ian Rogersb4903572012-10-11 11:52:56 -07002022 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(res_type)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07002023 Fail(res_type.IsUnresolvedTypes() ? VERIFY_ERROR_NO_CLASS : VERIFY_ERROR_BAD_CLASS_SOFT)
2024 << "thrown class " << res_type << " not instanceof Throwable";
jeffhaobdb76512011-09-07 11:43:16 -07002025 }
2026 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002027 }
jeffhaobdb76512011-09-07 11:43:16 -07002028 case Instruction::GOTO:
2029 case Instruction::GOTO_16:
2030 case Instruction::GOTO_32:
2031 /* no effect on or use of registers */
2032 break;
2033
2034 case Instruction::PACKED_SWITCH:
2035 case Instruction::SPARSE_SWITCH:
2036 /* verify that vAA is an integer, or can be converted to one */
Ian Rogers7b078e82014-09-10 14:44:24 -07002037 work_line_->VerifyRegisterType(this, inst->VRegA_31t(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002038 break;
2039
Ian Rogersd81871c2011-10-03 13:57:23 -07002040 case Instruction::FILL_ARRAY_DATA: {
2041 /* Similar to the verification done for APUT */
Ian Rogers7b078e82014-09-10 14:44:24 -07002042 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t());
Ian Rogers89310de2012-02-01 13:47:30 -08002043 /* array_type can be null if the reg type is Zero */
2044 if (!array_type.IsZero()) {
jeffhao457cc512012-02-02 16:55:13 -08002045 if (!array_type.IsArrayTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002046 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with array type "
2047 << array_type;
Ian Rogers89310de2012-02-01 13:47:30 -08002048 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00002049 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
Ian Rogersad0b3a32012-04-16 14:50:24 -07002050 DCHECK(!component_type.IsConflict());
jeffhao457cc512012-02-02 16:55:13 -08002051 if (component_type.IsNonZeroReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002052 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with component type "
2053 << component_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002054 } else {
jeffhao457cc512012-02-02 16:55:13 -08002055 // Now verify if the element width in the table matches the element width declared in
2056 // the array
2057 const uint16_t* array_data = insns + (insns[1] | (((int32_t) insns[2]) << 16));
2058 if (array_data[0] != Instruction::kArrayDataSignature) {
jeffhaod5347e02012-03-22 17:25:05 -07002059 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid magic for array-data";
jeffhao457cc512012-02-02 16:55:13 -08002060 } else {
2061 size_t elem_width = Primitive::ComponentSize(component_type.GetPrimitiveType());
2062 // Since we don't compress the data in Dex, expect to see equal width of data stored
2063 // in the table and expected from the array class.
2064 if (array_data[1] != elem_width) {
jeffhaod5347e02012-03-22 17:25:05 -07002065 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-data size mismatch (" << array_data[1]
2066 << " vs " << elem_width << ")";
jeffhao457cc512012-02-02 16:55:13 -08002067 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002068 }
2069 }
jeffhaobdb76512011-09-07 11:43:16 -07002070 }
2071 }
2072 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002073 }
jeffhaobdb76512011-09-07 11:43:16 -07002074 case Instruction::IF_EQ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002075 case Instruction::IF_NE: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002076 const RegType& reg_type1 = work_line_->GetRegisterType(this, inst->VRegA_22t());
2077 const RegType& reg_type2 = work_line_->GetRegisterType(this, inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002078 bool mismatch = false;
2079 if (reg_type1.IsZero()) { // zero then integral or reference expected
2080 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes();
2081 } else if (reg_type1.IsReferenceTypes()) { // both references?
2082 mismatch = !reg_type2.IsReferenceTypes();
2083 } else { // both integral?
2084 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes();
2085 }
2086 if (mismatch) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002087 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to if-eq/if-ne (" << reg_type1 << ","
2088 << reg_type2 << ") must both be references or integral";
jeffhaobdb76512011-09-07 11:43:16 -07002089 }
2090 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002091 }
jeffhaobdb76512011-09-07 11:43:16 -07002092 case Instruction::IF_LT:
2093 case Instruction::IF_GE:
2094 case Instruction::IF_GT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002095 case Instruction::IF_LE: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002096 const RegType& reg_type1 = work_line_->GetRegisterType(this, inst->VRegA_22t());
2097 const RegType& reg_type2 = work_line_->GetRegisterType(this, inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002098 if (!reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002099 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to 'if' (" << reg_type1 << ","
2100 << reg_type2 << ") must be integral";
jeffhaobdb76512011-09-07 11:43:16 -07002101 }
2102 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002103 }
jeffhaobdb76512011-09-07 11:43:16 -07002104 case Instruction::IF_EQZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002105 case Instruction::IF_NEZ: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002106 const RegType& reg_type = work_line_->GetRegisterType(this, inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002107 if (!reg_type.IsReferenceTypes() && !reg_type.IsIntegralTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002108 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
2109 << " unexpected as arg to if-eqz/if-nez";
Ian Rogersd81871c2011-10-03 13:57:23 -07002110 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002111
2112 // Find previous instruction - its existence is a precondition to peephole optimization.
Ian Rogers9b360392013-06-06 14:45:07 -07002113 uint32_t instance_of_idx = 0;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002114 if (0 != work_insn_idx_) {
Ian Rogers9b360392013-06-06 14:45:07 -07002115 instance_of_idx = work_insn_idx_ - 1;
Brian Carlstromdf629502013-07-17 22:39:56 -07002116 while (0 != instance_of_idx && !insn_flags_[instance_of_idx].IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07002117 instance_of_idx--;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002118 }
Andreas Gampe7c038102014-10-27 20:08:46 -07002119 if (FailOrAbort(this, insn_flags_[instance_of_idx].IsOpcode(),
2120 "Unable to get previous instruction of if-eqz/if-nez for work index ",
2121 work_insn_idx_)) {
2122 break;
2123 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002124 } else {
2125 break;
2126 }
2127
Ian Rogers9b360392013-06-06 14:45:07 -07002128 const Instruction* instance_of_inst = Instruction::At(code_item_->insns_ + instance_of_idx);
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002129
2130 /* Check for peep-hole pattern of:
2131 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002132 * instance-of vX, vY, T;
2133 * ifXXX vX, label ;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002134 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002135 * label:
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002136 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002137 * and sharpen the type of vY to be type T.
2138 * Note, this pattern can't be if:
2139 * - if there are other branches to this branch,
2140 * - when vX == vY.
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002141 */
Ian Rogersfae370a2013-06-05 08:33:27 -07002142 if (!CurrentInsnFlags()->IsBranchTarget() &&
Ian Rogers9b360392013-06-06 14:45:07 -07002143 (Instruction::INSTANCE_OF == instance_of_inst->Opcode()) &&
2144 (inst->VRegA_21t() == instance_of_inst->VRegA_22c()) &&
2145 (instance_of_inst->VRegA_22c() != instance_of_inst->VRegB_22c())) {
Ian Rogersebbdd872014-07-07 23:53:08 -07002146 // Check the type of the instance-of is different than that of registers type, as if they
2147 // are the same there is no work to be done here. Check that the conversion is not to or
2148 // from an unresolved type as type information is imprecise. If the instance-of is to an
2149 // interface then ignore the type information as interfaces can only be treated as Objects
2150 // and we don't want to disallow field and other operations on the object. If the value
2151 // being instance-of checked against is known null (zero) then allow the optimization as
2152 // we didn't have type information. If the merge of the instance-of type with the original
2153 // type is assignable to the original then allow optimization. This check is performed to
2154 // ensure that subsequent merges don't lose type information - such as becoming an
2155 // interface from a class that would lose information relevant to field checks.
Ian Rogers7b078e82014-09-10 14:44:24 -07002156 const RegType& orig_type = work_line_->GetRegisterType(this, instance_of_inst->VRegB_22c());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002157 const RegType& cast_type = ResolveClassAndCheckAccess(instance_of_inst->VRegC_22c());
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002158
Ian Rogersebbdd872014-07-07 23:53:08 -07002159 if (!orig_type.Equals(cast_type) &&
2160 !cast_type.IsUnresolvedTypes() && !orig_type.IsUnresolvedTypes() &&
Andreas Gampe00633eb2014-07-17 16:13:35 -07002161 cast_type.HasClass() && // Could be conflict type, make sure it has a class.
Ian Rogersebbdd872014-07-07 23:53:08 -07002162 !cast_type.GetClass()->IsInterface() &&
2163 (orig_type.IsZero() ||
2164 orig_type.IsStrictlyAssignableFrom(cast_type.Merge(orig_type, &reg_types_)))) {
Ian Rogersd0fbd852013-09-24 18:17:04 -07002165 RegisterLine* update_line = RegisterLine::Create(code_item_->registers_size_, this);
Ian Rogersfae370a2013-06-05 08:33:27 -07002166 if (inst->Opcode() == Instruction::IF_EQZ) {
Ian Rogers9b360392013-06-06 14:45:07 -07002167 fallthrough_line.reset(update_line);
Ian Rogersfae370a2013-06-05 08:33:27 -07002168 } else {
Ian Rogers9b360392013-06-06 14:45:07 -07002169 branch_line.reset(update_line);
2170 }
2171 update_line->CopyFromLine(work_line_.get());
Ian Rogers7b078e82014-09-10 14:44:24 -07002172 update_line->SetRegisterType(this, instance_of_inst->VRegB_22c(), cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002173 if (!insn_flags_[instance_of_idx].IsBranchTarget() && 0 != instance_of_idx) {
2174 // See if instance-of was preceded by a move-object operation, common due to the small
2175 // register encoding space of instance-of, and propagate type information to the source
2176 // of the move-object.
2177 uint32_t move_idx = instance_of_idx - 1;
Brian Carlstromdf629502013-07-17 22:39:56 -07002178 while (0 != move_idx && !insn_flags_[move_idx].IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07002179 move_idx--;
2180 }
Andreas Gampe7c038102014-10-27 20:08:46 -07002181 if (FailOrAbort(this, insn_flags_[move_idx].IsOpcode(),
2182 "Unable to get previous instruction of if-eqz/if-nez for work index ",
2183 work_insn_idx_)) {
2184 break;
2185 }
Ian Rogers9b360392013-06-06 14:45:07 -07002186 const Instruction* move_inst = Instruction::At(code_item_->insns_ + move_idx);
2187 switch (move_inst->Opcode()) {
2188 case Instruction::MOVE_OBJECT:
2189 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002190 update_line->SetRegisterType(this, move_inst->VRegB_12x(), cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002191 }
2192 break;
2193 case Instruction::MOVE_OBJECT_FROM16:
2194 if (move_inst->VRegA_22x() == instance_of_inst->VRegB_22c()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002195 update_line->SetRegisterType(this, move_inst->VRegB_22x(), cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002196 }
2197 break;
2198 case Instruction::MOVE_OBJECT_16:
2199 if (move_inst->VRegA_32x() == instance_of_inst->VRegB_22c()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002200 update_line->SetRegisterType(this, move_inst->VRegB_32x(), cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002201 }
2202 break;
2203 default:
2204 break;
2205 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002206 }
2207 }
2208 }
2209
jeffhaobdb76512011-09-07 11:43:16 -07002210 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002211 }
jeffhaobdb76512011-09-07 11:43:16 -07002212 case Instruction::IF_LTZ:
2213 case Instruction::IF_GEZ:
2214 case Instruction::IF_GTZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002215 case Instruction::IF_LEZ: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002216 const RegType& reg_type = work_line_->GetRegisterType(this, inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002217 if (!reg_type.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002218 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
2219 << " unexpected as arg to if-ltz/if-gez/if-gtz/if-lez";
Ian Rogersd81871c2011-10-03 13:57:23 -07002220 }
jeffhaobdb76512011-09-07 11:43:16 -07002221 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002222 }
jeffhaobdb76512011-09-07 11:43:16 -07002223 case Instruction::AGET_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002224 VerifyAGet(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002225 break;
jeffhaobdb76512011-09-07 11:43:16 -07002226 case Instruction::AGET_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002227 VerifyAGet(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002228 break;
jeffhaobdb76512011-09-07 11:43:16 -07002229 case Instruction::AGET_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002230 VerifyAGet(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002231 break;
jeffhaobdb76512011-09-07 11:43:16 -07002232 case Instruction::AGET_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002233 VerifyAGet(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002234 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002235 case Instruction::AGET:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002236 VerifyAGet(inst, reg_types_.Integer(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002237 break;
jeffhaobdb76512011-09-07 11:43:16 -07002238 case Instruction::AGET_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002239 VerifyAGet(inst, reg_types_.LongLo(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002240 break;
2241 case Instruction::AGET_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002242 VerifyAGet(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002243 break;
2244
Ian Rogersd81871c2011-10-03 13:57:23 -07002245 case Instruction::APUT_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002246 VerifyAPut(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002247 break;
2248 case Instruction::APUT_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002249 VerifyAPut(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002250 break;
2251 case Instruction::APUT_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002252 VerifyAPut(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002253 break;
2254 case Instruction::APUT_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002255 VerifyAPut(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002256 break;
2257 case Instruction::APUT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002258 VerifyAPut(inst, reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002259 break;
2260 case Instruction::APUT_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002261 VerifyAPut(inst, reg_types_.LongLo(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002262 break;
2263 case Instruction::APUT_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002264 VerifyAPut(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002265 break;
2266
jeffhaobdb76512011-09-07 11:43:16 -07002267 case Instruction::IGET_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002268 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002269 break;
jeffhaobdb76512011-09-07 11:43:16 -07002270 case Instruction::IGET_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002271 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002272 break;
jeffhaobdb76512011-09-07 11:43:16 -07002273 case Instruction::IGET_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002274 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002275 break;
jeffhaobdb76512011-09-07 11:43:16 -07002276 case Instruction::IGET_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002277 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002278 break;
2279 case Instruction::IGET:
Andreas Gampe896df402014-10-20 22:25:29 -07002280 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002281 break;
2282 case Instruction::IGET_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002283 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002284 break;
2285 case Instruction::IGET_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002286 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false,
2287 false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002288 break;
jeffhaobdb76512011-09-07 11:43:16 -07002289
Ian Rogersd81871c2011-10-03 13:57:23 -07002290 case Instruction::IPUT_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002291 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002292 break;
2293 case Instruction::IPUT_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002294 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002295 break;
2296 case Instruction::IPUT_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002297 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002298 break;
2299 case Instruction::IPUT_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002300 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002301 break;
2302 case Instruction::IPUT:
Andreas Gampe896df402014-10-20 22:25:29 -07002303 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002304 break;
2305 case Instruction::IPUT_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002306 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002307 break;
jeffhaobdb76512011-09-07 11:43:16 -07002308 case Instruction::IPUT_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002309 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false,
2310 false);
jeffhaobdb76512011-09-07 11:43:16 -07002311 break;
2312
jeffhaobdb76512011-09-07 11:43:16 -07002313 case Instruction::SGET_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002314 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002315 break;
jeffhaobdb76512011-09-07 11:43:16 -07002316 case Instruction::SGET_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002317 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002318 break;
jeffhaobdb76512011-09-07 11:43:16 -07002319 case Instruction::SGET_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002320 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002321 break;
jeffhaobdb76512011-09-07 11:43:16 -07002322 case Instruction::SGET_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002323 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002324 break;
2325 case Instruction::SGET:
Andreas Gampe896df402014-10-20 22:25:29 -07002326 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002327 break;
2328 case Instruction::SGET_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002329 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002330 break;
2331 case Instruction::SGET_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002332 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false,
2333 true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002334 break;
2335
2336 case Instruction::SPUT_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002337 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002338 break;
2339 case Instruction::SPUT_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002340 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002341 break;
2342 case Instruction::SPUT_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002343 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002344 break;
2345 case Instruction::SPUT_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002346 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002347 break;
2348 case Instruction::SPUT:
Andreas Gampe896df402014-10-20 22:25:29 -07002349 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002350 break;
2351 case Instruction::SPUT_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002352 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002353 break;
2354 case Instruction::SPUT_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002355 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false,
2356 true);
jeffhaobdb76512011-09-07 11:43:16 -07002357 break;
2358
2359 case Instruction::INVOKE_VIRTUAL:
2360 case Instruction::INVOKE_VIRTUAL_RANGE:
2361 case Instruction::INVOKE_SUPER:
Ian Rogersd81871c2011-10-03 13:57:23 -07002362 case Instruction::INVOKE_SUPER_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002363 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE ||
2364 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002365 bool is_super = (inst->Opcode() == Instruction::INVOKE_SUPER ||
2366 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
Andreas Gampeacc4d2f2014-06-12 19:35:05 -07002367 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_VIRTUAL, is_range,
2368 is_super);
Ian Rogersd8f69b02014-09-10 21:43:52 +00002369 const RegType* return_type = nullptr;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002370 if (called_method != nullptr) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002371 StackHandleScope<1> hs(self_);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002372 Handle<mirror::ArtMethod> h_called_method(hs.NewHandle(called_method));
Ian Rogersded66a02014-10-28 18:12:55 -07002373 mirror::Class* return_type_class = h_called_method->GetReturnType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002374 if (return_type_class != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002375 return_type = &reg_types_.FromClass(h_called_method->GetReturnTypeDescriptor(),
2376 return_type_class,
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002377 return_type_class->CannotBeAssignedFromOtherTypes());
2378 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002379 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2380 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002381 }
2382 }
2383 if (return_type == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002384 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002385 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2386 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002387 const char* descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002388 return_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
jeffhaobdb76512011-09-07 11:43:16 -07002389 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002390 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002391 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002392 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002393 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002394 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002395 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07002396 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002397 }
jeffhaobdb76512011-09-07 11:43:16 -07002398 case Instruction::INVOKE_DIRECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002399 case Instruction::INVOKE_DIRECT_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002400 bool is_range = (inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE);
Brian Carlstromea46f952013-07-30 01:26:50 -07002401 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002402 is_range, false);
Ian Rogers46685432012-06-03 22:26:43 -07002403 const char* return_type_descriptor;
2404 bool is_constructor;
Ian Rogersd8f69b02014-09-10 21:43:52 +00002405 const RegType* return_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07002406 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002407 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers46685432012-06-03 22:26:43 -07002408 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002409 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0;
Ian Rogers46685432012-06-03 22:26:43 -07002410 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
2411 return_type_descriptor = dex_file_->StringByTypeIdx(return_type_idx);
2412 } else {
2413 is_constructor = called_method->IsConstructor();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002414 return_type_descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogers7b078e82014-09-10 14:44:24 -07002415 StackHandleScope<1> hs(self_);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002416 Handle<mirror::ArtMethod> h_called_method(hs.NewHandle(called_method));
Ian Rogersded66a02014-10-28 18:12:55 -07002417 mirror::Class* return_type_class = h_called_method->GetReturnType(can_load_classes_);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002418 if (return_type_class != nullptr) {
2419 return_type = &reg_types_.FromClass(return_type_descriptor,
2420 return_type_class,
2421 return_type_class->CannotBeAssignedFromOtherTypes());
2422 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002423 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2424 self_->ClearException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002425 }
Ian Rogers46685432012-06-03 22:26:43 -07002426 }
2427 if (is_constructor) {
jeffhaobdb76512011-09-07 11:43:16 -07002428 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002429 * Some additional checks when calling a constructor. We know from the invocation arg check
2430 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2431 * that to require that called_method->klass is the same as this->klass or this->super,
2432 * allowing the latter only if the "this" argument is the same as the "this" argument to
2433 * this method (which implies that we're in a constructor ourselves).
jeffhaobdb76512011-09-07 11:43:16 -07002434 */
Ian Rogers7b078e82014-09-10 14:44:24 -07002435 const RegType& this_type = work_line_->GetInvocationThis(this, inst, is_range);
jeffhaob57e9522012-04-26 18:08:21 -07002436 if (this_type.IsConflict()) // failure.
2437 break;
jeffhaobdb76512011-09-07 11:43:16 -07002438
jeffhaob57e9522012-04-26 18:08:21 -07002439 /* no null refs allowed (?) */
2440 if (this_type.IsZero()) {
2441 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unable to initialize null ref";
2442 break;
jeffhao2a8a90e2011-09-26 14:25:31 -07002443 }
jeffhaob57e9522012-04-26 18:08:21 -07002444
2445 /* must be in same class or in superclass */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002446 // const RegType& this_super_klass = this_type.GetSuperClass(&reg_types_);
Ian Rogers46685432012-06-03 22:26:43 -07002447 // TODO: re-enable constructor type verification
2448 // if (this_super_klass.IsConflict()) {
jeffhaob57e9522012-04-26 18:08:21 -07002449 // Unknown super class, fail so we re-check at runtime.
Ian Rogers46685432012-06-03 22:26:43 -07002450 // Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "super class unknown for '" << this_type << "'";
2451 // break;
2452 // }
jeffhaob57e9522012-04-26 18:08:21 -07002453
2454 /* arg must be an uninitialized reference */
2455 if (!this_type.IsUninitializedTypes()) {
2456 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Expected initialization on uninitialized reference "
2457 << this_type;
2458 break;
2459 }
2460
2461 /*
2462 * Replace the uninitialized reference with an initialized one. We need to do this for all
2463 * registers that have the same object instance in them, not just the "this" register.
2464 */
Jeff Hao848f70a2014-01-15 13:49:50 -08002465 const uint32_t this_reg = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
2466 work_line_->MarkRefsAsInitialized(this, this_type, this_reg, work_insn_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002467 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07002468 if (return_type == nullptr) {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002469 return_type = &reg_types_.FromDescriptor(GetClassLoader(), return_type_descriptor,
2470 false);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002471 }
2472 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002473 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002474 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002475 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002476 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002477 just_set_result = true;
2478 break;
2479 }
2480 case Instruction::INVOKE_STATIC:
2481 case Instruction::INVOKE_STATIC_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002482 bool is_range = (inst->Opcode() == Instruction::INVOKE_STATIC_RANGE);
Brian Carlstromea46f952013-07-30 01:26:50 -07002483 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst,
Brian Carlstrom93c33962013-07-26 10:37:43 -07002484 METHOD_STATIC,
2485 is_range,
2486 false);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002487 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07002488 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002489 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002490 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2491 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002492 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002493 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002494 descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002495 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00002496 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002497 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002498 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002499 } else {
2500 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
2501 }
jeffhaobdb76512011-09-07 11:43:16 -07002502 just_set_result = true;
2503 }
2504 break;
jeffhaobdb76512011-09-07 11:43:16 -07002505 case Instruction::INVOKE_INTERFACE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002506 case Instruction::INVOKE_INTERFACE_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002507 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE);
Brian Carlstromea46f952013-07-30 01:26:50 -07002508 mirror::ArtMethod* abs_method = VerifyInvocationArgs(inst,
Brian Carlstrom93c33962013-07-26 10:37:43 -07002509 METHOD_INTERFACE,
2510 is_range,
2511 false);
Ian Rogers7b078e82014-09-10 14:44:24 -07002512 if (abs_method != nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002513 mirror::Class* called_interface = abs_method->GetDeclaringClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002514 if (!called_interface->IsInterface() && !called_interface->IsObjectClass()) {
2515 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected interface class in invoke-interface '"
2516 << PrettyMethod(abs_method) << "'";
2517 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07002518 }
Ian Rogers0d604842012-04-16 14:50:24 -07002519 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002520 /* Get the type of the "this" arg, which should either be a sub-interface of called
2521 * interface or Object (see comments in RegType::JoinClass).
2522 */
Ian Rogers7b078e82014-09-10 14:44:24 -07002523 const RegType& this_type = work_line_->GetInvocationThis(this, inst, is_range);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002524 if (this_type.IsZero()) {
2525 /* null pointer always passes (and always fails at runtime) */
2526 } else {
2527 if (this_type.IsUninitializedTypes()) {
2528 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface call on uninitialized object "
2529 << this_type;
2530 break;
2531 }
2532 // In the past we have tried to assert that "called_interface" is assignable
2533 // from "this_type.GetClass()", however, as we do an imprecise Join
2534 // (RegType::JoinClass) we don't have full information on what interfaces are
2535 // implemented by "this_type". For example, two classes may implement the same
2536 // interfaces and have a common parent that doesn't implement the interface. The
2537 // join will set "this_type" to the parent class and a test that this implements
2538 // the interface will incorrectly fail.
2539 }
2540 /*
2541 * We don't have an object instance, so we can't find the concrete method. However, all of
2542 * the type information is in the abstract method, so we're good.
2543 */
2544 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07002545 if (abs_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002546 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002547 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2548 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
2549 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
2550 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002551 descriptor = abs_method->GetReturnTypeDescriptor();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002552 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00002553 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002554 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002555 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002556 } else {
2557 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
2558 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002559 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07002560 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002561 }
jeffhaobdb76512011-09-07 11:43:16 -07002562 case Instruction::NEG_INT:
2563 case Instruction::NOT_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002564 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002565 break;
2566 case Instruction::NEG_LONG:
2567 case Instruction::NOT_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07002568 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002569 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002570 break;
2571 case Instruction::NEG_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002572 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002573 break;
2574 case Instruction::NEG_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002575 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002576 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002577 break;
2578 case Instruction::INT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07002579 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002580 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002581 break;
2582 case Instruction::INT_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002583 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002584 break;
2585 case Instruction::INT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002586 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002587 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002588 break;
2589 case Instruction::LONG_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002590 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002591 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002592 break;
2593 case Instruction::LONG_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002594 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002595 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002596 break;
2597 case Instruction::LONG_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002598 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002599 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002600 break;
2601 case Instruction::FLOAT_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002602 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002603 break;
2604 case Instruction::FLOAT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07002605 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002606 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002607 break;
2608 case Instruction::FLOAT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002609 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002610 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002611 break;
2612 case Instruction::DOUBLE_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002613 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002614 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002615 break;
2616 case Instruction::DOUBLE_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07002617 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002618 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002619 break;
2620 case Instruction::DOUBLE_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002621 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002622 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002623 break;
2624 case Instruction::INT_TO_BYTE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002625 work_line_->CheckUnaryOp(this, inst, reg_types_.Byte(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002626 break;
2627 case Instruction::INT_TO_CHAR:
Ian Rogers7b078e82014-09-10 14:44:24 -07002628 work_line_->CheckUnaryOp(this, inst, reg_types_.Char(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002629 break;
2630 case Instruction::INT_TO_SHORT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002631 work_line_->CheckUnaryOp(this, inst, reg_types_.Short(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002632 break;
2633
2634 case Instruction::ADD_INT:
2635 case Instruction::SUB_INT:
2636 case Instruction::MUL_INT:
2637 case Instruction::REM_INT:
2638 case Instruction::DIV_INT:
2639 case Instruction::SHL_INT:
2640 case Instruction::SHR_INT:
2641 case Instruction::USHR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002642 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002643 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002644 break;
2645 case Instruction::AND_INT:
2646 case Instruction::OR_INT:
2647 case Instruction::XOR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002648 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002649 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002650 break;
2651 case Instruction::ADD_LONG:
2652 case Instruction::SUB_LONG:
2653 case Instruction::MUL_LONG:
2654 case Instruction::DIV_LONG:
2655 case Instruction::REM_LONG:
2656 case Instruction::AND_LONG:
2657 case Instruction::OR_LONG:
2658 case Instruction::XOR_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07002659 work_line_->CheckBinaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002660 reg_types_.LongLo(), reg_types_.LongHi(),
2661 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002662 break;
2663 case Instruction::SHL_LONG:
2664 case Instruction::SHR_LONG:
2665 case Instruction::USHR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002666 /* shift distance is Int, making these different from other binary operations */
Ian Rogers7b078e82014-09-10 14:44:24 -07002667 work_line_->CheckBinaryOpWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002668 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002669 break;
2670 case Instruction::ADD_FLOAT:
2671 case Instruction::SUB_FLOAT:
2672 case Instruction::MUL_FLOAT:
2673 case Instruction::DIV_FLOAT:
2674 case Instruction::REM_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002675 work_line_->CheckBinaryOp(this, inst, reg_types_.Float(), reg_types_.Float(),
2676 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002677 break;
2678 case Instruction::ADD_DOUBLE:
2679 case Instruction::SUB_DOUBLE:
2680 case Instruction::MUL_DOUBLE:
2681 case Instruction::DIV_DOUBLE:
2682 case Instruction::REM_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002683 work_line_->CheckBinaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002684 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
2685 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002686 break;
2687 case Instruction::ADD_INT_2ADDR:
2688 case Instruction::SUB_INT_2ADDR:
2689 case Instruction::MUL_INT_2ADDR:
2690 case Instruction::REM_INT_2ADDR:
2691 case Instruction::SHL_INT_2ADDR:
2692 case Instruction::SHR_INT_2ADDR:
2693 case Instruction::USHR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07002694 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
2695 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002696 break;
2697 case Instruction::AND_INT_2ADDR:
2698 case Instruction::OR_INT_2ADDR:
2699 case Instruction::XOR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07002700 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
2701 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002702 break;
2703 case Instruction::DIV_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07002704 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
2705 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002706 break;
2707 case Instruction::ADD_LONG_2ADDR:
2708 case Instruction::SUB_LONG_2ADDR:
2709 case Instruction::MUL_LONG_2ADDR:
2710 case Instruction::DIV_LONG_2ADDR:
2711 case Instruction::REM_LONG_2ADDR:
2712 case Instruction::AND_LONG_2ADDR:
2713 case Instruction::OR_LONG_2ADDR:
2714 case Instruction::XOR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07002715 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002716 reg_types_.LongLo(), reg_types_.LongHi(),
2717 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07002718 break;
2719 case Instruction::SHL_LONG_2ADDR:
2720 case Instruction::SHR_LONG_2ADDR:
2721 case Instruction::USHR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07002722 work_line_->CheckBinaryOp2addrWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002723 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002724 break;
2725 case Instruction::ADD_FLOAT_2ADDR:
2726 case Instruction::SUB_FLOAT_2ADDR:
2727 case Instruction::MUL_FLOAT_2ADDR:
2728 case Instruction::DIV_FLOAT_2ADDR:
2729 case Instruction::REM_FLOAT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07002730 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Float(), reg_types_.Float(),
2731 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002732 break;
2733 case Instruction::ADD_DOUBLE_2ADDR:
2734 case Instruction::SUB_DOUBLE_2ADDR:
2735 case Instruction::MUL_DOUBLE_2ADDR:
2736 case Instruction::DIV_DOUBLE_2ADDR:
2737 case Instruction::REM_DOUBLE_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07002738 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002739 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
2740 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07002741 break;
2742 case Instruction::ADD_INT_LIT16:
Ian Rogersf72a11d2014-10-30 15:41:08 -07002743 case Instruction::RSUB_INT_LIT16:
jeffhaobdb76512011-09-07 11:43:16 -07002744 case Instruction::MUL_INT_LIT16:
2745 case Instruction::DIV_INT_LIT16:
2746 case Instruction::REM_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002747 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
2748 true);
jeffhaobdb76512011-09-07 11:43:16 -07002749 break;
2750 case Instruction::AND_INT_LIT16:
2751 case Instruction::OR_INT_LIT16:
2752 case Instruction::XOR_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002753 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
2754 true);
jeffhaobdb76512011-09-07 11:43:16 -07002755 break;
2756 case Instruction::ADD_INT_LIT8:
2757 case Instruction::RSUB_INT_LIT8:
2758 case Instruction::MUL_INT_LIT8:
2759 case Instruction::DIV_INT_LIT8:
2760 case Instruction::REM_INT_LIT8:
2761 case Instruction::SHL_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07002762 case Instruction::SHR_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07002763 case Instruction::USHR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07002764 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
2765 false);
jeffhaobdb76512011-09-07 11:43:16 -07002766 break;
2767 case Instruction::AND_INT_LIT8:
2768 case Instruction::OR_INT_LIT8:
2769 case Instruction::XOR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07002770 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
2771 false);
jeffhaobdb76512011-09-07 11:43:16 -07002772 break;
2773
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002774 // Special instructions.
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07002775 case Instruction::RETURN_VOID_NO_BARRIER:
2776 if (IsConstructor() && !IsStatic()) {
2777 auto& declaring_class = GetDeclaringClass();
2778 auto* klass = declaring_class.GetClass();
2779 for (uint32_t i = 0, num_fields = klass->NumInstanceFields(); i < num_fields; ++i) {
2780 if (klass->GetInstanceField(i)->IsFinal()) {
Mathieu Chartiere86deef2015-03-19 13:43:37 -07002781 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-no-barrier not expected for "
2782 << PrettyField(klass->GetInstanceField(i));
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07002783 break;
2784 }
2785 }
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02002786 }
2787 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002788 // Note: the following instructions encode offsets derived from class linking.
2789 // As such they use Class*/Field*/AbstractMethod* as these offsets only have
2790 // meaning if the class linking and resolution were successful.
2791 case Instruction::IGET_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002792 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002793 break;
2794 case Instruction::IGET_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002795 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002796 break;
2797 case Instruction::IGET_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002798 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002799 break;
Mathieu Chartierffc605c2014-12-10 10:35:44 -08002800 case Instruction::IGET_BOOLEAN_QUICK:
2801 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true);
2802 break;
2803 case Instruction::IGET_BYTE_QUICK:
2804 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true);
2805 break;
2806 case Instruction::IGET_CHAR_QUICK:
2807 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true);
2808 break;
2809 case Instruction::IGET_SHORT_QUICK:
2810 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true);
2811 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002812 case Instruction::IPUT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002813 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002814 break;
Fred Shih37f05ef2014-07-16 18:38:08 -07002815 case Instruction::IPUT_BOOLEAN_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002816 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07002817 break;
2818 case Instruction::IPUT_BYTE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002819 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07002820 break;
2821 case Instruction::IPUT_CHAR_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002822 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07002823 break;
2824 case Instruction::IPUT_SHORT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002825 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07002826 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002827 case Instruction::IPUT_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002828 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002829 break;
2830 case Instruction::IPUT_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07002831 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002832 break;
2833 case Instruction::INVOKE_VIRTUAL_QUICK:
2834 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
2835 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Brian Carlstromea46f952013-07-30 01:26:50 -07002836 mirror::ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range);
Ian Rogers7b078e82014-09-10 14:44:24 -07002837 if (called_method != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002838 const char* descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogersd8f69b02014-09-10 21:43:52 +00002839 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002840 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002841 work_line_->SetResultRegisterType(this, return_type);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002842 } else {
2843 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
2844 }
2845 just_set_result = true;
2846 }
2847 break;
2848 }
2849
Ian Rogersd81871c2011-10-03 13:57:23 -07002850 /* These should never appear during verification. */
Mathieu Chartierffc605c2014-12-10 10:35:44 -08002851 case Instruction::UNUSED_3E ... Instruction::UNUSED_43:
2852 case Instruction::UNUSED_F3 ... Instruction::UNUSED_FF:
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02002853 case Instruction::UNUSED_79:
2854 case Instruction::UNUSED_7A:
jeffhaod5347e02012-03-22 17:25:05 -07002855 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Unexpected opcode " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07002856 break;
2857
2858 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002859 * DO NOT add a "default" clause here. Without it the compiler will
jeffhaobdb76512011-09-07 11:43:16 -07002860 * complain if an instruction is missing (which is desirable).
2861 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002862 } // end - switch (dec_insn.opcode)
jeffhaobdb76512011-09-07 11:43:16 -07002863
Stephen Kyle7e541c92014-12-17 17:10:02 +00002864 /*
2865 * If we are in a constructor, and we had an UninitializedThis type
2866 * in a register somewhere, we need to make sure it wasn't overwritten.
2867 */
2868 if (track_uninitialized_this) {
2869 bool was_invoke_direct = (inst->Opcode() == Instruction::INVOKE_DIRECT ||
2870 inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE);
2871 if (work_line_->WasUninitializedThisOverwritten(this, uninitialized_this_loc,
2872 was_invoke_direct)) {
2873 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
2874 << "Constructor failed to initialize this object";
2875 }
2876 }
2877
Ian Rogersad0b3a32012-04-16 14:50:24 -07002878 if (have_pending_hard_failure_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08002879 if (Runtime::Current()->IsAotCompiler()) {
2880 /* When AOT compiling, check that the last failure is a hard failure */
Ian Rogersad0b3a32012-04-16 14:50:24 -07002881 CHECK_EQ(failures_[failures_.size() - 1], VERIFY_ERROR_BAD_CLASS_HARD);
Ian Rogerse1758fe2012-04-19 11:31:15 -07002882 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002883 /* immediate failure, reject class */
2884 info_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_);
2885 return false;
jeffhaofaf459e2012-08-31 15:32:47 -07002886 } else if (have_pending_runtime_throw_failure_) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07002887 /* checking interpreter will throw, mark following code as unreachable */
jeffhaofaf459e2012-08-31 15:32:47 -07002888 opcode_flags = Instruction::kThrow;
jeffhaobdb76512011-09-07 11:43:16 -07002889 }
jeffhaobdb76512011-09-07 11:43:16 -07002890 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002891 * If we didn't just set the result register, clear it out. This ensures that you can only use
2892 * "move-result" immediately after the result is set. (We could check this statically, but it's
2893 * not expensive and it makes our debugging output cleaner.)
jeffhaobdb76512011-09-07 11:43:16 -07002894 */
2895 if (!just_set_result) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002896 work_line_->SetResultTypeToUnknown(this);
jeffhaobdb76512011-09-07 11:43:16 -07002897 }
2898
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002899
jeffhaobdb76512011-09-07 11:43:16 -07002900
2901 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002902 * Handle "branch". Tag the branch target.
jeffhaobdb76512011-09-07 11:43:16 -07002903 *
2904 * NOTE: instructions like Instruction::EQZ provide information about the
jeffhaod1f0fde2011-09-08 17:25:33 -07002905 * state of the register when the branch is taken or not taken. For example,
jeffhaobdb76512011-09-07 11:43:16 -07002906 * somebody could get a reference field, check it for zero, and if the
2907 * branch is taken immediately store that register in a boolean field
jeffhaod1f0fde2011-09-08 17:25:33 -07002908 * since the value is known to be zero. We do not currently account for
jeffhaobdb76512011-09-07 11:43:16 -07002909 * that, and will reject the code.
2910 *
2911 * TODO: avoid re-fetching the branch target
2912 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002913 if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07002914 bool isConditional, selfOkay;
Ian Rogersd81871c2011-10-03 13:57:23 -07002915 if (!GetBranchOffset(work_insn_idx_, &branch_target, &isConditional, &selfOkay)) {
jeffhaobdb76512011-09-07 11:43:16 -07002916 /* should never happen after static verification */
jeffhaod5347e02012-03-22 17:25:05 -07002917 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad branch";
jeffhaobdb76512011-09-07 11:43:16 -07002918 return false;
2919 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08002920 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0);
Stephen Kyle9bc61992014-09-22 13:53:15 +01002921 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, work_insn_idx_ + branch_target)) {
jeffhaobdb76512011-09-07 11:43:16 -07002922 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002923 }
jeffhaobdb76512011-09-07 11:43:16 -07002924 /* update branch target, set "changed" if appropriate */
Ian Rogers7b078e82014-09-10 14:44:24 -07002925 if (nullptr != branch_line.get()) {
Ian Rogersebbdd872014-07-07 23:53:08 -07002926 if (!UpdateRegisters(work_insn_idx_ + branch_target, branch_line.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002927 return false;
2928 }
2929 } else {
Ian Rogersebbdd872014-07-07 23:53:08 -07002930 if (!UpdateRegisters(work_insn_idx_ + branch_target, work_line_.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002931 return false;
2932 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002933 }
jeffhaobdb76512011-09-07 11:43:16 -07002934 }
2935
2936 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002937 * Handle "switch". Tag all possible branch targets.
jeffhaobdb76512011-09-07 11:43:16 -07002938 *
2939 * We've already verified that the table is structurally sound, so we
2940 * just need to walk through and tag the targets.
2941 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002942 if ((opcode_flags & Instruction::kSwitch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07002943 int offset_to_switch = insns[1] | (((int32_t) insns[2]) << 16);
2944 const uint16_t* switch_insns = insns + offset_to_switch;
2945 int switch_count = switch_insns[1];
2946 int offset_to_targets, targ;
2947
2948 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
2949 /* 0 = sig, 1 = count, 2/3 = first key */
2950 offset_to_targets = 4;
2951 } else {
2952 /* 0 = sig, 1 = count, 2..count * 2 = keys */
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07002953 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH);
jeffhaobdb76512011-09-07 11:43:16 -07002954 offset_to_targets = 2 + 2 * switch_count;
2955 }
2956
2957 /* verify each switch target */
2958 for (targ = 0; targ < switch_count; targ++) {
2959 int offset;
2960 uint32_t abs_offset;
2961
2962 /* offsets are 32-bit, and only partly endian-swapped */
2963 offset = switch_insns[offset_to_targets + targ * 2] |
2964 (((int32_t) switch_insns[offset_to_targets + targ * 2 + 1]) << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07002965 abs_offset = work_insn_idx_ + offset;
2966 DCHECK_LT(abs_offset, code_item_->insns_size_in_code_units_);
Stephen Kyle9bc61992014-09-22 13:53:15 +01002967 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, abs_offset)) {
jeffhaobdb76512011-09-07 11:43:16 -07002968 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002969 }
Ian Rogersebbdd872014-07-07 23:53:08 -07002970 if (!UpdateRegisters(abs_offset, work_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07002971 return false;
Ian Rogersebbdd872014-07-07 23:53:08 -07002972 }
jeffhaobdb76512011-09-07 11:43:16 -07002973 }
2974 }
2975
2976 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002977 * Handle instructions that can throw and that are sitting in a "try" block. (If they're not in a
2978 * "try" block when they throw, control transfers out of the method.)
jeffhaobdb76512011-09-07 11:43:16 -07002979 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002980 if ((opcode_flags & Instruction::kThrow) != 0 && insn_flags_[work_insn_idx_].IsInTry()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07002981 bool has_catch_all_handler = false;
Ian Rogers0571d352011-11-03 19:51:38 -07002982 CatchHandlerIterator iterator(*code_item_, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07002983
Andreas Gampef91baf12014-07-18 15:41:00 -07002984 // Need the linker to try and resolve the handled class to check if it's Throwable.
2985 ClassLinker* linker = Runtime::Current()->GetClassLinker();
2986
Ian Rogers0571d352011-11-03 19:51:38 -07002987 for (; iterator.HasNext(); iterator.Next()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07002988 uint16_t handler_type_idx = iterator.GetHandlerTypeIndex();
2989 if (handler_type_idx == DexFile::kDexNoIndex16) {
2990 has_catch_all_handler = true;
2991 } else {
2992 // It is also a catch-all if it is java.lang.Throwable.
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002993 mirror::Class* klass = linker->ResolveType(*dex_file_, handler_type_idx, dex_cache_,
2994 class_loader_);
Andreas Gampef91baf12014-07-18 15:41:00 -07002995 if (klass != nullptr) {
2996 if (klass == mirror::Throwable::GetJavaLangThrowable()) {
2997 has_catch_all_handler = true;
2998 }
2999 } else {
3000 // Clear exception.
Ian Rogers7b078e82014-09-10 14:44:24 -07003001 DCHECK(self_->IsExceptionPending());
3002 self_->ClearException();
Andreas Gampef91baf12014-07-18 15:41:00 -07003003 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003004 }
jeffhaobdb76512011-09-07 11:43:16 -07003005 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003006 * Merge registers into the "catch" block. We want to use the "savedRegs" rather than
3007 * "work_regs", because at runtime the exception will be thrown before the instruction
3008 * modifies any registers.
jeffhaobdb76512011-09-07 11:43:16 -07003009 */
Ian Rogersebbdd872014-07-07 23:53:08 -07003010 if (!UpdateRegisters(iterator.GetHandlerAddress(), saved_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07003011 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003012 }
jeffhaobdb76512011-09-07 11:43:16 -07003013 }
3014
3015 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003016 * If the monitor stack depth is nonzero, there must be a "catch all" handler for this
3017 * instruction. This does apply to monitor-exit because of async exception handling.
jeffhaobdb76512011-09-07 11:43:16 -07003018 */
Andreas Gampef91baf12014-07-18 15:41:00 -07003019 if (work_line_->MonitorStackDepth() > 0 && !has_catch_all_handler) {
jeffhaobdb76512011-09-07 11:43:16 -07003020 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003021 * The state in work_line reflects the post-execution state. If the current instruction is a
3022 * monitor-enter and the monitor stack was empty, we don't need a catch-all (if it throws,
jeffhaobdb76512011-09-07 11:43:16 -07003023 * it will do so before grabbing the lock).
3024 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02003025 if (inst->Opcode() != Instruction::MONITOR_ENTER || work_line_->MonitorStackDepth() != 1) {
jeffhaod5347e02012-03-22 17:25:05 -07003026 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
Ian Rogersd81871c2011-10-03 13:57:23 -07003027 << "expected to be within a catch-all for an instruction where a monitor is held";
jeffhaobdb76512011-09-07 11:43:16 -07003028 return false;
3029 }
3030 }
3031 }
3032
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003033 /* Handle "continue". Tag the next consecutive instruction.
3034 * Note: Keep the code handling "continue" case below the "branch" and "switch" cases,
3035 * because it changes work_line_ when performing peephole optimization
3036 * and this change should not be used in those cases.
3037 */
Ian Rogers6d376ae2013-07-23 15:12:40 -07003038 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003039 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3040 uint32_t next_insn_idx = work_insn_idx_ + inst->SizeInCodeUnits();
Ian Rogers6d376ae2013-07-23 15:12:40 -07003041 if (next_insn_idx >= code_item_->insns_size_in_code_units_) {
3042 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Execution can walk off end of code area";
3043 return false;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003044 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003045 // The only way to get to a move-exception instruction is to get thrown there. Make sure the
3046 // next instruction isn't one.
3047 if (!CheckNotMoveException(code_item_->insns_, next_insn_idx)) {
3048 return false;
3049 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003050 if (nullptr != fallthrough_line.get()) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003051 // Make workline consistent with fallthrough computed from peephole optimization.
3052 work_line_->CopyFromLine(fallthrough_line.get());
3053 }
Ian Rogersb8c78592013-07-25 23:52:52 +00003054 if (insn_flags_[next_insn_idx].IsReturn()) {
3055 // For returns we only care about the operand to the return, all other registers are dead.
3056 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn_idx);
3057 Instruction::Code opcode = ret_inst->Opcode();
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003058 if (opcode == Instruction::RETURN_VOID || opcode == Instruction::RETURN_VOID_NO_BARRIER) {
Stephen Kyle7e541c92014-12-17 17:10:02 +00003059 SafelyMarkAllRegistersAsConflicts(this, work_line_.get());
Ian Rogersb8c78592013-07-25 23:52:52 +00003060 } else {
3061 if (opcode == Instruction::RETURN_WIDE) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003062 work_line_->MarkAllRegistersAsConflictsExceptWide(this, ret_inst->VRegA_11x());
Ian Rogersb8c78592013-07-25 23:52:52 +00003063 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07003064 work_line_->MarkAllRegistersAsConflictsExcept(this, ret_inst->VRegA_11x());
Ian Rogersb8c78592013-07-25 23:52:52 +00003065 }
3066 }
3067 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003068 RegisterLine* next_line = reg_table_.GetLine(next_insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07003069 if (next_line != nullptr) {
Ian Rogersebbdd872014-07-07 23:53:08 -07003070 // Merge registers into what we have for the next instruction, and set the "changed" flag if
3071 // needed. If the merge changes the state of the registers then the work line will be
3072 // updated.
3073 if (!UpdateRegisters(next_insn_idx, work_line_.get(), true)) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003074 return false;
3075 }
3076 } else {
3077 /*
3078 * We're not recording register data for the next instruction, so we don't know what the
3079 * prior state was. We have to assume that something has changed and re-evaluate it.
3080 */
3081 insn_flags_[next_insn_idx].SetChanged();
3082 }
3083 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003084
jeffhaod1f0fde2011-09-08 17:25:33 -07003085 /* If we're returning from the method, make sure monitor stack is empty. */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003086 if ((opcode_flags & Instruction::kReturn) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003087 if (!work_line_->VerifyMonitorStackEmpty(this)) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003088 return false;
3089 }
jeffhaobdb76512011-09-07 11:43:16 -07003090 }
3091
3092 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003093 * Update start_guess. Advance to the next instruction of that's
3094 * possible, otherwise use the branch target if one was found. If
jeffhaobdb76512011-09-07 11:43:16 -07003095 * neither of those exists we're in a return or throw; leave start_guess
3096 * alone and let the caller sort it out.
3097 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003098 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003099 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3100 *start_guess = work_insn_idx_ + inst->SizeInCodeUnits();
Elliott Hughesadb8c672012-03-06 16:49:32 -08003101 } else if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07003102 /* we're still okay if branch_target is zero */
Ian Rogersd81871c2011-10-03 13:57:23 -07003103 *start_guess = work_insn_idx_ + branch_target;
jeffhaobdb76512011-09-07 11:43:16 -07003104 }
3105
Ian Rogersd81871c2011-10-03 13:57:23 -07003106 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
3107 DCHECK(insn_flags_[*start_guess].IsOpcode());
jeffhaobdb76512011-09-07 11:43:16 -07003108
3109 return true;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003110} // NOLINT(readability/fn_size)
jeffhaobdb76512011-09-07 11:43:16 -07003111
Ian Rogersd8f69b02014-09-10 21:43:52 +00003112const RegType& MethodVerifier::ResolveClassAndCheckAccess(uint32_t class_idx) {
Ian Rogers0571d352011-11-03 19:51:38 -07003113 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
Ian Rogersd8f69b02014-09-10 21:43:52 +00003114 const RegType& referrer = GetDeclaringClass();
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003115 mirror::Class* klass = dex_cache_->GetResolvedType(class_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07003116 const RegType& result = klass != nullptr ?
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003117 reg_types_.FromClass(descriptor, klass, klass->CannotBeAssignedFromOtherTypes()) :
3118 reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003119 if (result.IsConflict()) {
3120 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "accessing broken descriptor '" << descriptor
3121 << "' in " << referrer;
3122 return result;
3123 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003124 if (klass == nullptr && !result.IsUnresolvedTypes()) {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003125 dex_cache_->SetResolvedType(class_idx, result.GetClass());
Ian Rogerse1758fe2012-04-19 11:31:15 -07003126 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003127 // Check if access is allowed. Unresolved types use xxxWithAccessCheck to
Jeff Haob24b4a72013-07-31 13:47:31 -07003128 // check at runtime if access is allowed and so pass here. If result is
3129 // primitive, skip the access check.
3130 if (result.IsNonZeroReferenceTypes() && !result.IsUnresolvedTypes() &&
3131 !referrer.IsUnresolvedTypes() && !referrer.CanAccess(result)) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07003132 Fail(VERIFY_ERROR_ACCESS_CLASS) << "illegal class access: '"
Ian Rogersad0b3a32012-04-16 14:50:24 -07003133 << referrer << "' -> '" << result << "'";
Ian Rogers28ad40d2011-10-27 15:19:26 -07003134 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003135 return result;
Ian Rogersd81871c2011-10-03 13:57:23 -07003136}
3137
Ian Rogersd8f69b02014-09-10 21:43:52 +00003138const RegType& MethodVerifier::GetCaughtExceptionType() {
Ian Rogers7b078e82014-09-10 14:44:24 -07003139 const RegType* common_super = nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003140 if (code_item_->tries_size_ != 0) {
Ian Rogers13735952014-10-08 12:43:28 -07003141 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
Ian Rogersd81871c2011-10-03 13:57:23 -07003142 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
3143 for (uint32_t i = 0; i < handlers_size; i++) {
Ian Rogers0571d352011-11-03 19:51:38 -07003144 CatchHandlerIterator iterator(handlers_ptr);
3145 for (; iterator.HasNext(); iterator.Next()) {
3146 if (iterator.GetHandlerAddress() == (uint32_t) work_insn_idx_) {
3147 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) {
Ian Rogersb4903572012-10-11 11:52:56 -07003148 common_super = &reg_types_.JavaLangThrowable(false);
Ian Rogersd81871c2011-10-03 13:57:23 -07003149 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00003150 const RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex());
Jeff Haob878f212014-04-24 16:25:36 -07003151 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(exception)) {
Jeff Haoc26a56c2013-11-04 12:00:47 -08003152 if (exception.IsUnresolvedTypes()) {
3153 // We don't know enough about the type. Fail here and let runtime handle it.
3154 Fail(VERIFY_ERROR_NO_CLASS) << "unresolved exception class " << exception;
3155 return exception;
3156 } else {
3157 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unexpected non-exception class " << exception;
3158 return reg_types_.Conflict();
3159 }
Jeff Haob878f212014-04-24 16:25:36 -07003160 } else if (common_super == nullptr) {
3161 common_super = &exception;
Ian Rogers28ad40d2011-10-27 15:19:26 -07003162 } else if (common_super->Equals(exception)) {
Ian Rogersc4762272012-02-01 15:55:55 -08003163 // odd case, but nothing to do
Ian Rogersd81871c2011-10-03 13:57:23 -07003164 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07003165 common_super = &common_super->Merge(exception, &reg_types_);
Andreas Gampe7c038102014-10-27 20:08:46 -07003166 if (FailOrAbort(this,
3167 reg_types_.JavaLangThrowable(false).IsAssignableFrom(*common_super),
3168 "java.lang.Throwable is not assignable-from common_super at ",
3169 work_insn_idx_)) {
3170 break;
3171 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003172 }
3173 }
3174 }
3175 }
Ian Rogers0571d352011-11-03 19:51:38 -07003176 handlers_ptr = iterator.EndDataPointer();
Ian Rogersd81871c2011-10-03 13:57:23 -07003177 }
3178 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003179 if (common_super == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003180 /* no catch blocks, or no catches with classes we can find */
jeffhaod5347e02012-03-22 17:25:05 -07003181 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unable to find exception handler";
Ian Rogersad0b3a32012-04-16 14:50:24 -07003182 return reg_types_.Conflict();
Ian Rogersd81871c2011-10-03 13:57:23 -07003183 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003184 return *common_super;
Ian Rogersd81871c2011-10-03 13:57:23 -07003185}
3186
Brian Carlstromea46f952013-07-30 01:26:50 -07003187mirror::ArtMethod* MethodVerifier::ResolveMethodAndCheckAccess(uint32_t dex_method_idx,
Ian Rogersd91d6d62013-09-25 20:26:14 -07003188 MethodType method_type) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003189 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx);
Ian Rogersd8f69b02014-09-10 21:43:52 +00003190 const RegType& klass_type = ResolveClassAndCheckAccess(method_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003191 if (klass_type.IsConflict()) {
3192 std::string append(" in attempt to access method ");
3193 append += dex_file_->GetMethodName(method_id);
3194 AppendToLastFailMessage(append);
Ian Rogers7b078e82014-09-10 14:44:24 -07003195 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08003196 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003197 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003198 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08003199 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003200 mirror::Class* klass = klass_type.GetClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003201 const RegType& referrer = GetDeclaringClass();
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003202 mirror::ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07003203 if (res_method == nullptr) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003204 const char* name = dex_file_->GetMethodName(method_id);
Ian Rogersd91d6d62013-09-25 20:26:14 -07003205 const Signature signature = dex_file_->GetMethodSignature(method_id);
jeffhao8cd6dda2012-02-22 10:15:34 -08003206
3207 if (method_type == METHOD_DIRECT || method_type == METHOD_STATIC) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003208 res_method = klass->FindDirectMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08003209 } else if (method_type == METHOD_INTERFACE) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003210 res_method = klass->FindInterfaceMethod(name, signature);
3211 } else {
3212 res_method = klass->FindVirtualMethod(name, signature);
3213 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003214 if (res_method != nullptr) {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003215 dex_cache_->SetResolvedMethod(dex_method_idx, res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07003216 } else {
jeffhao8cd6dda2012-02-22 10:15:34 -08003217 // If a virtual or interface method wasn't found with the expected type, look in
3218 // the direct methods. This can happen when the wrong invoke type is used or when
3219 // a class has changed, and will be flagged as an error in later checks.
3220 if (method_type == METHOD_INTERFACE || method_type == METHOD_VIRTUAL) {
3221 res_method = klass->FindDirectMethod(name, signature);
3222 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003223 if (res_method == nullptr) {
jeffhao8cd6dda2012-02-22 10:15:34 -08003224 Fail(VERIFY_ERROR_NO_METHOD) << "couldn't find method "
3225 << PrettyDescriptor(klass) << "." << name
3226 << " " << signature;
Ian Rogers7b078e82014-09-10 14:44:24 -07003227 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003228 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003229 }
3230 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003231 // Make sure calls to constructors are "direct". There are additional restrictions but we don't
3232 // enforce them here.
3233 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) {
jeffhaod5347e02012-03-22 17:25:05 -07003234 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting non-direct call to constructor "
3235 << PrettyMethod(res_method);
Ian Rogers7b078e82014-09-10 14:44:24 -07003236 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003237 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003238 // Disallow any calls to class initializers.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003239 if (res_method->IsClassInitializer()) {
jeffhaod5347e02012-03-22 17:25:05 -07003240 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting call to class initializer "
3241 << PrettyMethod(res_method);
Ian Rogers7b078e82014-09-10 14:44:24 -07003242 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003243 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003244 // Check if access is allowed.
Ian Rogersad0b3a32012-04-16 14:50:24 -07003245 if (!referrer.CanAccessMember(res_method->GetDeclaringClass(), res_method->GetAccessFlags())) {
jeffhao8cd6dda2012-02-22 10:15:34 -08003246 Fail(VERIFY_ERROR_ACCESS_METHOD) << "illegal method access (call " << PrettyMethod(res_method)
Ian Rogersad0b3a32012-04-16 14:50:24 -07003247 << " from " << referrer << ")";
jeffhaob57e9522012-04-26 18:08:21 -07003248 return res_method;
jeffhao8cd6dda2012-02-22 10:15:34 -08003249 }
jeffhaode0d9c92012-02-27 13:58:13 -08003250 // Check that invoke-virtual and invoke-super are not used on private methods of the same class.
3251 if (res_method->IsPrivate() && method_type == METHOD_VIRTUAL) {
jeffhaod5347e02012-03-22 17:25:05 -07003252 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-super/virtual can't be used on private method "
3253 << PrettyMethod(res_method);
Ian Rogers7b078e82014-09-10 14:44:24 -07003254 return nullptr;
jeffhaode0d9c92012-02-27 13:58:13 -08003255 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003256 // Check that interface methods match interface classes.
3257 if (klass->IsInterface() && method_type != METHOD_INTERFACE) {
3258 Fail(VERIFY_ERROR_CLASS_CHANGE) << "non-interface method " << PrettyMethod(res_method)
3259 << " is in an interface class " << PrettyClass(klass);
Ian Rogers7b078e82014-09-10 14:44:24 -07003260 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003261 } else if (!klass->IsInterface() && method_type == METHOD_INTERFACE) {
3262 Fail(VERIFY_ERROR_CLASS_CHANGE) << "interface method " << PrettyMethod(res_method)
3263 << " is in a non-interface class " << PrettyClass(klass);
Ian Rogers7b078e82014-09-10 14:44:24 -07003264 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003265 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003266 // See if the method type implied by the invoke instruction matches the access flags for the
3267 // target method.
Brian Carlstrombe6fa5e2014-12-09 20:15:42 -08003268 if ((method_type == METHOD_DIRECT && (!res_method->IsDirect() || res_method->IsStatic())) ||
Ian Rogersd81871c2011-10-03 13:57:23 -07003269 (method_type == METHOD_STATIC && !res_method->IsStatic()) ||
3270 ((method_type == METHOD_VIRTUAL || method_type == METHOD_INTERFACE) && res_method->IsDirect())
3271 ) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003272 Fail(VERIFY_ERROR_CLASS_CHANGE) << "invoke type (" << method_type << ") does not match method "
3273 " type of " << PrettyMethod(res_method);
Ian Rogers7b078e82014-09-10 14:44:24 -07003274 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003275 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003276 return res_method;
3277}
3278
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003279template <class T>
3280mirror::ArtMethod* MethodVerifier::VerifyInvocationArgsFromIterator(T* it, const Instruction* inst,
3281 MethodType method_type,
3282 bool is_range,
3283 mirror::ArtMethod* res_method) {
3284 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
3285 // match the call to the signature. Also, we might be calling through an abstract method
3286 // definition (which doesn't have register count values).
3287 const size_t expected_args = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
3288 /* caught by static verifier */
3289 DCHECK(is_range || expected_args <= 5);
3290 if (expected_args > code_item_->outs_size_) {
3291 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
3292 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
3293 return nullptr;
3294 }
3295
3296 uint32_t arg[5];
3297 if (!is_range) {
3298 inst->GetVarArgs(arg);
3299 }
3300 uint32_t sig_registers = 0;
3301
3302 /*
3303 * Check the "this" argument, which must be an instance of the class that declared the method.
3304 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
3305 * rigorous check here (which is okay since we have to do it at runtime).
3306 */
3307 if (method_type != METHOD_STATIC) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003308 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst, is_range);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003309 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
3310 CHECK(have_pending_hard_failure_);
3311 return nullptr;
3312 }
3313 if (actual_arg_type.IsUninitializedReference()) {
3314 if (res_method) {
3315 if (!res_method->IsConstructor()) {
3316 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
3317 return nullptr;
3318 }
3319 } else {
3320 // Check whether the name of the called method is "<init>"
3321 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Jeff Hao0d087272014-08-04 14:47:17 -07003322 if (strcmp(dex_file_->GetMethodName(dex_file_->GetMethodId(method_idx)), "<init>") != 0) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003323 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
3324 return nullptr;
3325 }
3326 }
3327 }
3328 if (method_type != METHOD_INTERFACE && !actual_arg_type.IsZero()) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00003329 const RegType* res_method_class;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003330 if (res_method != nullptr) {
3331 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07003332 std::string temp;
3333 res_method_class = &reg_types_.FromClass(klass->GetDescriptor(&temp), klass,
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003334 klass->CannotBeAssignedFromOtherTypes());
3335 } else {
3336 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
3337 const uint16_t class_idx = dex_file_->GetMethodId(method_idx).class_idx_;
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003338 res_method_class = &reg_types_.FromDescriptor(GetClassLoader(),
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003339 dex_file_->StringByTypeIdx(class_idx),
3340 false);
3341 }
3342 if (!res_method_class->IsAssignableFrom(actual_arg_type)) {
3343 Fail(actual_arg_type.IsUnresolvedTypes() ? VERIFY_ERROR_NO_CLASS:
3344 VERIFY_ERROR_BAD_CLASS_SOFT) << "'this' argument '" << actual_arg_type
3345 << "' not instance of '" << *res_method_class << "'";
3346 // Continue on soft failures. We need to find possible hard failures to avoid problems in
3347 // the compiler.
3348 if (have_pending_hard_failure_) {
3349 return nullptr;
3350 }
3351 }
3352 }
3353 sig_registers = 1;
3354 }
3355
3356 for ( ; it->HasNext(); it->Next()) {
3357 if (sig_registers >= expected_args) {
3358 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << inst->VRegA() <<
3359 " arguments, found " << sig_registers << " or more.";
3360 return nullptr;
3361 }
3362
3363 const char* param_descriptor = it->GetDescriptor();
3364
3365 if (param_descriptor == nullptr) {
3366 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation because of missing signature "
3367 "component";
3368 return nullptr;
3369 }
3370
Ian Rogersd8f69b02014-09-10 21:43:52 +00003371 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), param_descriptor, false);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003372 uint32_t get_reg = is_range ? inst->VRegC_3rc() + static_cast<uint32_t>(sig_registers) :
3373 arg[sig_registers];
3374 if (reg_type.IsIntegralTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003375 const RegType& src_type = work_line_->GetRegisterType(this, get_reg);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003376 if (!src_type.IsIntegralTypes()) {
3377 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << get_reg << " has type " << src_type
3378 << " but expected " << reg_type;
3379 return res_method;
3380 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003381 } else if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003382 // Continue on soft failures. We need to find possible hard failures to avoid problems in the
3383 // compiler.
3384 if (have_pending_hard_failure_) {
3385 return res_method;
3386 }
3387 }
3388 sig_registers += reg_type.IsLongOrDoubleTypes() ? 2 : 1;
3389 }
3390 if (expected_args != sig_registers) {
3391 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << expected_args <<
3392 " arguments, found " << sig_registers;
3393 return nullptr;
3394 }
3395 return res_method;
3396}
3397
3398void MethodVerifier::VerifyInvocationArgsUnresolvedMethod(const Instruction* inst,
3399 MethodType method_type,
3400 bool is_range) {
3401 // As the method may not have been resolved, make this static check against what we expect.
3402 // The main reason for this code block is to fail hard when we find an illegal use, e.g.,
3403 // wrong number of arguments or wrong primitive types, even if the method could not be resolved.
3404 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
3405 DexFileParameterIterator it(*dex_file_,
3406 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_));
3407 VerifyInvocationArgsFromIterator<DexFileParameterIterator>(&it, inst, method_type, is_range,
3408 nullptr);
3409}
3410
3411class MethodParamListDescriptorIterator {
3412 public:
3413 explicit MethodParamListDescriptorIterator(mirror::ArtMethod* res_method) :
3414 res_method_(res_method), pos_(0), params_(res_method->GetParameterTypeList()),
3415 params_size_(params_ == nullptr ? 0 : params_->Size()) {
3416 }
3417
3418 bool HasNext() {
3419 return pos_ < params_size_;
3420 }
3421
3422 void Next() {
3423 ++pos_;
3424 }
3425
3426 const char* GetDescriptor() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
3427 return res_method_->GetTypeDescriptorFromTypeIdx(params_->GetTypeItem(pos_).type_idx_);
3428 }
3429
3430 private:
3431 mirror::ArtMethod* res_method_;
3432 size_t pos_;
3433 const DexFile::TypeList* params_;
3434 const size_t params_size_;
3435};
3436
Brian Carlstromea46f952013-07-30 01:26:50 -07003437mirror::ArtMethod* MethodVerifier::VerifyInvocationArgs(const Instruction* inst,
Sebastien Hertz5243e912013-05-21 10:55:07 +02003438 MethodType method_type,
3439 bool is_range,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003440 bool is_super) {
jeffhao8cd6dda2012-02-22 10:15:34 -08003441 // Resolve the method. This could be an abstract or concrete method depending on what sort of call
3442 // we're making.
Sebastien Hertz5243e912013-05-21 10:55:07 +02003443 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Andreas Gampeacc4d2f2014-06-12 19:35:05 -07003444
Brian Carlstromea46f952013-07-30 01:26:50 -07003445 mirror::ArtMethod* res_method = ResolveMethodAndCheckAccess(method_idx, method_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07003446 if (res_method == nullptr) { // error or class is unresolved
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003447 // Check what we can statically.
3448 if (!have_pending_hard_failure_) {
3449 VerifyInvocationArgsUnresolvedMethod(inst, method_type, is_range);
3450 }
3451 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003452 }
3453
Ian Rogersd81871c2011-10-03 13:57:23 -07003454 // If we're using invoke-super(method), make sure that the executing method's class' superclass
3455 // has a vtable entry for the target method.
3456 if (is_super) {
3457 DCHECK(method_type == METHOD_VIRTUAL);
Ian Rogersd8f69b02014-09-10 21:43:52 +00003458 const RegType& super = GetDeclaringClass().GetSuperClass(&reg_types_);
Ian Rogers529781d2012-07-23 17:24:29 -07003459 if (super.IsUnresolvedTypes()) {
jeffhao4d8df822012-04-24 17:09:36 -07003460 Fail(VERIFY_ERROR_NO_METHOD) << "unknown super class in invoke-super from "
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003461 << PrettyMethod(dex_method_idx_, *dex_file_)
jeffhao4d8df822012-04-24 17:09:36 -07003462 << " to super " << PrettyMethod(res_method);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003463 return nullptr;
jeffhao4d8df822012-04-24 17:09:36 -07003464 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003465 mirror::Class* super_klass = super.GetClass();
Mingyao Yang2cdbad72014-07-16 10:44:41 -07003466 if (res_method->GetMethodIndex() >= super_klass->GetVTableLength()) {
jeffhao4d8df822012-04-24 17:09:36 -07003467 Fail(VERIFY_ERROR_NO_METHOD) << "invalid invoke-super from "
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003468 << PrettyMethod(dex_method_idx_, *dex_file_)
jeffhao4d8df822012-04-24 17:09:36 -07003469 << " to super " << super
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003470 << "." << res_method->GetName()
3471 << res_method->GetSignature();
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003472 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003473 }
3474 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003475
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003476 // Process the target method's signature. This signature may or may not
3477 MethodParamListDescriptorIterator it(res_method);
3478 return VerifyInvocationArgsFromIterator<MethodParamListDescriptorIterator>(&it, inst, method_type,
3479 is_range, res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07003480}
3481
Brian Carlstromea46f952013-07-30 01:26:50 -07003482mirror::ArtMethod* MethodVerifier::GetQuickInvokedMethod(const Instruction* inst,
Mathieu Chartier091d2382015-03-06 10:59:06 -08003483 RegisterLine* reg_line, bool is_range,
3484 bool allow_failure) {
3485 if (is_range) {
3486 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
3487 } else {
3488 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_QUICK);
3489 }
3490 const RegType& actual_arg_type = reg_line->GetInvocationThis(this, inst, is_range, allow_failure);
Ian Rogers9bc54402014-04-17 16:40:01 -07003491 if (!actual_arg_type.HasClass()) {
3492 VLOG(verifier) << "Failed to get mirror::Class* from '" << actual_arg_type << "'";
Andreas Gampe63981562014-04-17 12:28:43 -07003493 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003494 }
Ian Rogersa4cf1df2014-05-07 19:47:17 -07003495 mirror::Class* klass = actual_arg_type.GetClass();
Mingyao Yang2cdbad72014-07-16 10:44:41 -07003496 mirror::Class* dispatch_class;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07003497 if (klass->IsInterface()) {
3498 // Derive Object.class from Class.class.getSuperclass().
3499 mirror::Class* object_klass = klass->GetClass()->GetSuperClass();
Andreas Gampe7c038102014-10-27 20:08:46 -07003500 if (FailOrAbort(this, object_klass->IsObjectClass(),
Mathieu Chartier091d2382015-03-06 10:59:06 -08003501 "Failed to find Object class in quickened invoke receiver", work_insn_idx_)) {
Andreas Gampe7c038102014-10-27 20:08:46 -07003502 return nullptr;
3503 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -07003504 dispatch_class = object_klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07003505 } else {
Mingyao Yang2cdbad72014-07-16 10:44:41 -07003506 dispatch_class = klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07003507 }
Mathieu Chartier091d2382015-03-06 10:59:06 -08003508 if (!dispatch_class->HasVTable()) {
3509 FailOrAbort(this, allow_failure, "Receiver class has no vtable for quickened invoke at ",
3510 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07003511 return nullptr;
3512 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003513 uint16_t vtable_index = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
Mathieu Chartier091d2382015-03-06 10:59:06 -08003514 if (static_cast<int32_t>(vtable_index) >= dispatch_class->GetVTableLength()) {
3515 FailOrAbort(this, allow_failure,
3516 "Receiver class has not enough vtable slots for quickened invoke at ",
3517 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07003518 return nullptr;
3519 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -07003520 mirror::ArtMethod* res_method = dispatch_class->GetVTableEntry(vtable_index);
Mathieu Chartier091d2382015-03-06 10:59:06 -08003521 if (self_->IsExceptionPending()) {
3522 FailOrAbort(this, allow_failure, "Unexpected exception pending for quickened invoke at ",
3523 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07003524 return nullptr;
3525 }
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003526 return res_method;
3527}
3528
Brian Carlstromea46f952013-07-30 01:26:50 -07003529mirror::ArtMethod* MethodVerifier::VerifyInvokeVirtualQuickArgs(const Instruction* inst,
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07003530 bool is_range) {
Andreas Gampe76bd8802014-12-10 16:43:58 -08003531 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_)
3532 << PrettyMethod(dex_method_idx_, *dex_file_, true) << "@" << work_insn_idx_;
3533
Mathieu Chartier091d2382015-03-06 10:59:06 -08003534 mirror::ArtMethod* res_method = GetQuickInvokedMethod(inst, work_line_.get(), is_range, false);
Ian Rogers7b078e82014-09-10 14:44:24 -07003535 if (res_method == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003536 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer method from " << inst->Name();
Ian Rogers7b078e82014-09-10 14:44:24 -07003537 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003538 }
Andreas Gampe7c038102014-10-27 20:08:46 -07003539 if (FailOrAbort(this, !res_method->IsDirect(), "Quick-invoked method is direct at ",
3540 work_insn_idx_)) {
3541 return nullptr;
3542 }
3543 if (FailOrAbort(this, !res_method->IsStatic(), "Quick-invoked method is static at ",
3544 work_insn_idx_)) {
3545 return nullptr;
3546 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003547
3548 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
3549 // match the call to the signature. Also, we might be calling through an abstract method
3550 // definition (which doesn't have register count values).
Ian Rogers7b078e82014-09-10 14:44:24 -07003551 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst, is_range);
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003552 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
Ian Rogers7b078e82014-09-10 14:44:24 -07003553 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003554 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003555 const size_t expected_args = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
3556 /* caught by static verifier */
3557 DCHECK(is_range || expected_args <= 5);
3558 if (expected_args > code_item_->outs_size_) {
3559 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
3560 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
Ian Rogers7b078e82014-09-10 14:44:24 -07003561 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003562 }
3563
3564 /*
3565 * Check the "this" argument, which must be an instance of the class that declared the method.
3566 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
3567 * rigorous check here (which is okay since we have to do it at runtime).
3568 */
3569 if (actual_arg_type.IsUninitializedReference() && !res_method->IsConstructor()) {
3570 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
Ian Rogers7b078e82014-09-10 14:44:24 -07003571 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003572 }
3573 if (!actual_arg_type.IsZero()) {
3574 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07003575 std::string temp;
Ian Rogersd8f69b02014-09-10 21:43:52 +00003576 const RegType& res_method_class =
Ian Rogers1ff3c982014-08-12 02:30:58 -07003577 reg_types_.FromClass(klass->GetDescriptor(&temp), klass,
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003578 klass->CannotBeAssignedFromOtherTypes());
3579 if (!res_method_class.IsAssignableFrom(actual_arg_type)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07003580 Fail(actual_arg_type.IsUnresolvedTypes() ? VERIFY_ERROR_NO_CLASS :
3581 VERIFY_ERROR_BAD_CLASS_SOFT) << "'this' argument '" << actual_arg_type
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003582 << "' not instance of '" << res_method_class << "'";
Ian Rogers7b078e82014-09-10 14:44:24 -07003583 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003584 }
3585 }
3586 /*
3587 * Process the target method's signature. This signature may or may not
3588 * have been verified, so we can't assume it's properly formed.
3589 */
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003590 const DexFile::TypeList* params = res_method->GetParameterTypeList();
Ian Rogers7b078e82014-09-10 14:44:24 -07003591 size_t params_size = params == nullptr ? 0 : params->Size();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003592 uint32_t arg[5];
3593 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07003594 inst->GetVarArgs(arg);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003595 }
3596 size_t actual_args = 1;
3597 for (size_t param_index = 0; param_index < params_size; param_index++) {
3598 if (actual_args >= expected_args) {
3599 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invalid call to '" << PrettyMethod(res_method)
Brian Carlstrom93c33962013-07-26 10:37:43 -07003600 << "'. Expected " << expected_args
3601 << " arguments, processing argument " << actual_args
3602 << " (where longs/doubles count twice).";
Ian Rogers7b078e82014-09-10 14:44:24 -07003603 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003604 }
3605 const char* descriptor =
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003606 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);
Ian Rogers7b078e82014-09-10 14:44:24 -07003607 if (descriptor == nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003608 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02003609 << " missing signature component";
Ian Rogers7b078e82014-09-10 14:44:24 -07003610 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003611 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003612 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003613 uint32_t get_reg = is_range ? inst->VRegC_3rc() + actual_args : arg[actual_args];
Ian Rogers7b078e82014-09-10 14:44:24 -07003614 if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003615 return res_method;
3616 }
3617 actual_args = reg_type.IsLongOrDoubleTypes() ? actual_args + 2 : actual_args + 1;
3618 }
3619 if (actual_args != expected_args) {
3620 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
3621 << " expected " << expected_args << " arguments, found " << actual_args;
Ian Rogers7b078e82014-09-10 14:44:24 -07003622 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003623 } else {
3624 return res_method;
3625 }
3626}
3627
Ian Rogers62342ec2013-06-11 10:26:37 -07003628void MethodVerifier::VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003629 uint32_t type_idx;
3630 if (!is_filled) {
3631 DCHECK_EQ(inst->Opcode(), Instruction::NEW_ARRAY);
3632 type_idx = inst->VRegC_22c();
3633 } else if (!is_range) {
3634 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY);
3635 type_idx = inst->VRegB_35c();
3636 } else {
3637 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY_RANGE);
3638 type_idx = inst->VRegB_3rc();
3639 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003640 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003641 if (res_type.IsConflict()) { // bad class
3642 DCHECK_NE(failures_.size(), 0U);
Ian Rogers0c4a5062012-02-03 15:18:59 -08003643 } else {
3644 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
3645 if (!res_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003646 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "new-array on non-array class " << res_type;
Ian Rogers0c4a5062012-02-03 15:18:59 -08003647 } else if (!is_filled) {
3648 /* make sure "size" register is valid type */
Ian Rogers7b078e82014-09-10 14:44:24 -07003649 work_line_->VerifyRegisterType(this, inst->VRegB_22c(), reg_types_.Integer());
Ian Rogers0c4a5062012-02-03 15:18:59 -08003650 /* set register type to array class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00003651 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07003652 work_line_->SetRegisterType(this, inst->VRegA_22c(), precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08003653 } else {
3654 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
3655 // the list and fail. It's legal, if silly, for arg_count to be zero.
Ian Rogersd8f69b02014-09-10 21:43:52 +00003656 const RegType& expected_type = reg_types_.GetComponentType(res_type, GetClassLoader());
Sebastien Hertz5243e912013-05-21 10:55:07 +02003657 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
3658 uint32_t arg[5];
3659 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07003660 inst->GetVarArgs(arg);
Sebastien Hertz5243e912013-05-21 10:55:07 +02003661 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08003662 for (size_t ui = 0; ui < arg_count; ui++) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003663 uint32_t get_reg = is_range ? inst->VRegC_3rc() + ui : arg[ui];
Ian Rogers7b078e82014-09-10 14:44:24 -07003664 if (!work_line_->VerifyRegisterType(this, get_reg, expected_type)) {
3665 work_line_->SetResultRegisterType(this, reg_types_.Conflict());
Ian Rogers0c4a5062012-02-03 15:18:59 -08003666 return;
3667 }
3668 }
3669 // filled-array result goes into "result" register
Ian Rogersd8f69b02014-09-10 21:43:52 +00003670 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07003671 work_line_->SetResultRegisterType(this, precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08003672 }
3673 }
3674}
3675
Sebastien Hertz5243e912013-05-21 10:55:07 +02003676void MethodVerifier::VerifyAGet(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00003677 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003678 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07003679 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003680 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07003681 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07003682 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08003683 if (array_type.IsZero()) {
3684 // Null array class; this code path will fail at runtime. Infer a merge-able type from the
3685 // instruction type. TODO: have a proper notion of bottom here.
3686 if (!is_primitive || insn_type.IsCategory1Types()) {
3687 // Reference or category 1
Ian Rogers7b078e82014-09-10 14:44:24 -07003688 work_line_->SetRegisterType(this, inst->VRegA_23x(), reg_types_.Zero());
Ian Rogersd81871c2011-10-03 13:57:23 -07003689 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08003690 // Category 2
Ian Rogers7b078e82014-09-10 14:44:24 -07003691 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(),
3692 reg_types_.FromCat2ConstLo(0, false),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003693 reg_types_.FromCat2ConstHi(0, false));
Ian Rogers89310de2012-02-01 13:47:30 -08003694 }
jeffhaofc3144e2012-02-01 17:21:15 -08003695 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003696 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aget";
Ian Rogers89310de2012-02-01 13:47:30 -08003697 } else {
3698 /* verify the class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00003699 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
jeffhaofc3144e2012-02-01 17:21:15 -08003700 if (!component_type.IsReferenceTypes() && !is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07003701 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08003702 << " source for aget-object";
3703 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07003704 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08003705 << " source for category 1 aget";
3706 } else if (is_primitive && !insn_type.Equals(component_type) &&
3707 !((insn_type.IsInteger() && component_type.IsFloat()) ||
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003708 (insn_type.IsLong() && component_type.IsDouble()))) {
3709 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array type " << array_type
3710 << " incompatible with aget of type " << insn_type;
Ian Rogers89310de2012-02-01 13:47:30 -08003711 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003712 // Use knowledge of the field type which is stronger than the type inferred from the
3713 // instruction, which can't differentiate object types and ints from floats, longs from
3714 // doubles.
3715 if (!component_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003716 work_line_->SetRegisterType(this, inst->VRegA_23x(), component_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003717 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07003718 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(), component_type,
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003719 component_type.HighHalf(&reg_types_));
3720 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003721 }
3722 }
3723 }
3724}
3725
Ian Rogersd8f69b02014-09-10 21:43:52 +00003726void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
Jeff Haofe1f7c82013-08-01 14:50:24 -07003727 const uint32_t vregA) {
3728 // Primitive assignability rules are weaker than regular assignability rules.
3729 bool instruction_compatible;
3730 bool value_compatible;
Ian Rogers7b078e82014-09-10 14:44:24 -07003731 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
Jeff Haofe1f7c82013-08-01 14:50:24 -07003732 if (target_type.IsIntegralTypes()) {
Jeff Haoa4647482013-08-06 15:35:47 -07003733 instruction_compatible = target_type.Equals(insn_type);
Jeff Haofe1f7c82013-08-01 14:50:24 -07003734 value_compatible = value_type.IsIntegralTypes();
3735 } else if (target_type.IsFloat()) {
3736 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int
3737 value_compatible = value_type.IsFloatTypes();
3738 } else if (target_type.IsLong()) {
3739 instruction_compatible = insn_type.IsLong();
Andreas Gampe376fa682014-09-07 13:06:12 -07003740 // Additional register check: this is not checked statically (as part of VerifyInstructions),
3741 // as target_type depends on the resolved type of the field.
3742 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003743 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07003744 value_compatible = value_type.IsLongTypes() && value_type.CheckWidePair(value_type_hi);
3745 } else {
3746 value_compatible = false;
3747 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07003748 } else if (target_type.IsDouble()) {
3749 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long
Andreas Gampe376fa682014-09-07 13:06:12 -07003750 // Additional register check: this is not checked statically (as part of VerifyInstructions),
3751 // as target_type depends on the resolved type of the field.
3752 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003753 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07003754 value_compatible = value_type.IsDoubleTypes() && value_type.CheckWidePair(value_type_hi);
3755 } else {
3756 value_compatible = false;
3757 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07003758 } else {
3759 instruction_compatible = false; // reference with primitive store
3760 value_compatible = false; // unused
3761 }
3762 if (!instruction_compatible) {
3763 // This is a global failure rather than a class change failure as the instructions and
3764 // the descriptors for the type should have been consistent within the same file at
3765 // compile time.
3766 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
3767 << "' but expected type '" << target_type << "'";
3768 return;
3769 }
3770 if (!value_compatible) {
3771 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
3772 << " of type " << value_type << " but expected " << target_type << " for put";
3773 return;
3774 }
3775}
3776
Sebastien Hertz5243e912013-05-21 10:55:07 +02003777void MethodVerifier::VerifyAPut(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00003778 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003779 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07003780 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003781 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07003782 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07003783 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08003784 if (array_type.IsZero()) {
3785 // Null array type; this code path will fail at runtime. Infer a merge-able type from the
3786 // instruction type.
jeffhaofc3144e2012-02-01 17:21:15 -08003787 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07003788 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aput";
Ian Rogers89310de2012-02-01 13:47:30 -08003789 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00003790 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
Jeff Haofe1f7c82013-08-01 14:50:24 -07003791 const uint32_t vregA = inst->VRegA_23x();
Jeff Haob24b4a72013-07-31 13:47:31 -07003792 if (is_primitive) {
Jeff Haofe1f7c82013-08-01 14:50:24 -07003793 VerifyPrimitivePut(component_type, insn_type, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07003794 } else {
Jeff Haob24b4a72013-07-31 13:47:31 -07003795 if (!component_type.IsReferenceTypes()) {
3796 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
3797 << " source for aput-object";
3798 } else {
3799 // The instruction agrees with the type of array, confirm the value to be stored does too
3800 // Note: we use the instruction type (rather than the component type) for aput-object as
3801 // incompatible classes will be caught at runtime as an array store exception
Ian Rogers7b078e82014-09-10 14:44:24 -07003802 work_line_->VerifyRegisterType(this, vregA, insn_type);
Jeff Haob24b4a72013-07-31 13:47:31 -07003803 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003804 }
3805 }
3806 }
3807}
3808
Mathieu Chartierc7853442015-03-27 14:35:38 -07003809ArtField* MethodVerifier::GetStaticField(int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08003810 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3811 // Check access to class
Ian Rogersd8f69b02014-09-10 21:43:52 +00003812 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003813 if (klass_type.IsConflict()) { // bad class
Ian Rogersad0b3a32012-04-16 14:50:24 -07003814 AppendToLastFailMessage(StringPrintf(" in attempt to access static field %d (%s) in %s",
3815 field_idx, dex_file_->GetFieldName(field_id),
3816 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07003817 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08003818 }
Elliott Hughesb25c3f62012-03-26 16:35:06 -07003819 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003820 return nullptr; // Can't resolve Class so no more to do here, will do checking at runtime.
Ian Rogers90040192011-12-16 08:54:29 -08003821 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07003822 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartierc7853442015-03-27 14:35:38 -07003823 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_,
3824 class_loader_);
Ian Rogers7b078e82014-09-10 14:44:24 -07003825 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07003826 VLOG(verifier) << "Unable to resolve static field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07003827 << dex_file_->GetFieldName(field_id) << ") in "
3828 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07003829 DCHECK(self_->IsExceptionPending());
3830 self_->ClearException();
3831 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003832 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
3833 field->GetAccessFlags())) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003834 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access static field " << PrettyField(field)
Ian Rogersad0b3a32012-04-16 14:50:24 -07003835 << " from " << GetDeclaringClass();
Ian Rogers7b078e82014-09-10 14:44:24 -07003836 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003837 } else if (!field->IsStatic()) {
3838 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field) << " to be static";
Ian Rogers7b078e82014-09-10 14:44:24 -07003839 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003840 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07003841 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07003842}
3843
Mathieu Chartierc7853442015-03-27 14:35:38 -07003844ArtField* MethodVerifier::GetInstanceField(const RegType& obj_type, int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08003845 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3846 // Check access to class
Ian Rogersd8f69b02014-09-10 21:43:52 +00003847 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003848 if (klass_type.IsConflict()) {
3849 AppendToLastFailMessage(StringPrintf(" in attempt to access instance field %d (%s) in %s",
3850 field_idx, dex_file_->GetFieldName(field_id),
3851 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07003852 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08003853 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003854 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003855 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08003856 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07003857 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartierc7853442015-03-27 14:35:38 -07003858 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_,
3859 class_loader_);
Ian Rogers7b078e82014-09-10 14:44:24 -07003860 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07003861 VLOG(verifier) << "Unable to resolve instance field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07003862 << dex_file_->GetFieldName(field_id) << ") in "
3863 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07003864 DCHECK(self_->IsExceptionPending());
3865 self_->ClearException();
3866 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003867 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
3868 field->GetAccessFlags())) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003869 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access instance field " << PrettyField(field)
Ian Rogersad0b3a32012-04-16 14:50:24 -07003870 << " from " << GetDeclaringClass();
Ian Rogers7b078e82014-09-10 14:44:24 -07003871 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003872 } else if (field->IsStatic()) {
3873 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field)
3874 << " to not be static";
Ian Rogers7b078e82014-09-10 14:44:24 -07003875 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003876 } else if (obj_type.IsZero()) {
3877 // Cannot infer and check type, however, access will cause null pointer exception
3878 return field;
Stephen Kyle695c5982014-08-22 15:03:07 +01003879 } else if (!obj_type.IsReferenceTypes()) {
3880 // Trying to read a field from something that isn't a reference
3881 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance field access on object that has "
3882 << "non-reference type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07003883 return nullptr;
Ian Rogerse1758fe2012-04-19 11:31:15 -07003884 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003885 mirror::Class* klass = field->GetDeclaringClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003886 const RegType& field_klass =
Ian Rogers637c65b2013-05-31 11:46:00 -07003887 reg_types_.FromClass(dex_file_->GetFieldDeclaringClassDescriptor(field_id),
Ian Rogers04f94f42013-06-10 15:09:26 -07003888 klass, klass->CannotBeAssignedFromOtherTypes());
Ian Rogersad0b3a32012-04-16 14:50:24 -07003889 if (obj_type.IsUninitializedTypes() &&
3890 (!IsConstructor() || GetDeclaringClass().Equals(obj_type) ||
3891 !field_klass.Equals(GetDeclaringClass()))) {
3892 // Field accesses through uninitialized references are only allowable for constructors where
3893 // the field is declared in this class
3894 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access instance field " << PrettyField(field)
Brian Carlstrom93c33962013-07-26 10:37:43 -07003895 << " of a not fully initialized object within the context"
3896 << " of " << PrettyMethod(dex_method_idx_, *dex_file_);
Ian Rogers7b078e82014-09-10 14:44:24 -07003897 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003898 } else if (!field_klass.IsAssignableFrom(obj_type)) {
3899 // Trying to access C1.field1 using reference of type C2, which is neither C1 or a sub-class
3900 // of C1. For resolution to occur the declared class of the field must be compatible with
3901 // obj_type, we've discovered this wasn't so, so report the field didn't exist.
3902 Fail(VERIFY_ERROR_NO_FIELD) << "cannot access instance field " << PrettyField(field)
3903 << " from object of type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07003904 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07003905 } else {
3906 return field;
3907 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003908 }
3909}
3910
Andreas Gampe896df402014-10-20 22:25:29 -07003911template <MethodVerifier::FieldAccessType kAccType>
3912void MethodVerifier::VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type,
3913 bool is_primitive, bool is_static) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003914 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
Mathieu Chartierc7853442015-03-27 14:35:38 -07003915 ArtField* field;
Ian Rogersb94a27b2011-10-26 00:33:41 -07003916 if (is_static) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07003917 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07003918 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07003919 const RegType& object_type = work_line_->GetRegisterType(this, inst->VRegB_22c());
Ian Rogersf4028cc2011-11-02 14:56:39 -07003920 field = GetInstanceField(object_type, field_idx);
Andreas Gampe896df402014-10-20 22:25:29 -07003921 if (UNLIKELY(have_pending_hard_failure_)) {
3922 return;
3923 }
Ian Rogersb94a27b2011-10-26 00:33:41 -07003924 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003925 const RegType* field_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07003926 if (field != nullptr) {
Andreas Gampe896df402014-10-20 22:25:29 -07003927 if (kAccType == FieldAccessType::kAccPut) {
3928 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
3929 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << PrettyField(field)
3930 << " from other class " << GetDeclaringClass();
3931 return;
3932 }
3933 }
3934
Mathieu Chartierc7853442015-03-27 14:35:38 -07003935 mirror::Class* field_type_class =
3936 can_load_classes_ ? field->GetType<true>() : field->GetType<false>();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003937 if (field_type_class != nullptr) {
Mathieu Chartier61c5ebc2014-06-05 17:42:53 -07003938 field_type = &reg_types_.FromClass(field->GetTypeDescriptor(), field_type_class,
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003939 field_type_class->CannotBeAssignedFromOtherTypes());
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003940 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07003941 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
3942 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003943 }
Ian Rogers0d604842012-04-16 14:50:24 -07003944 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003945 if (field_type == nullptr) {
3946 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3947 const char* descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003948 field_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003949 }
Sebastien Hertz757b3042014-03-28 14:34:28 +01003950 DCHECK(field_type != nullptr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02003951 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c();
Andreas Gampe896df402014-10-20 22:25:29 -07003952 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
3953 "Unexpected third access type");
3954 if (kAccType == FieldAccessType::kAccPut) {
3955 // sput or iput.
3956 if (is_primitive) {
3957 VerifyPrimitivePut(*field_type, insn_type, vregA);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003958 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07003959 if (!insn_type.IsAssignableFrom(*field_type)) {
3960 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
3961 << " to be compatible with type '" << insn_type
3962 << "' but found type '" << *field_type
3963 << "' in put-object";
3964 return;
3965 }
3966 work_line_->VerifyRegisterType(this, vregA, *field_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003967 }
Andreas Gampe896df402014-10-20 22:25:29 -07003968 } else if (kAccType == FieldAccessType::kAccGet) {
3969 // sget or iget.
3970 if (is_primitive) {
3971 if (field_type->Equals(insn_type) ||
3972 (field_type->IsFloat() && insn_type.IsInteger()) ||
3973 (field_type->IsDouble() && insn_type.IsLong())) {
3974 // expected that read is of the correct primitive type or that int reads are reading
3975 // floats or long reads are reading doubles
3976 } else {
3977 // This is a global failure rather than a class change failure as the instructions and
3978 // the descriptors for the type should have been consistent within the same file at
3979 // compile time
3980 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
3981 << " to be of type '" << insn_type
3982 << "' but found type '" << *field_type << "' in get";
3983 return;
3984 }
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08003985 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07003986 if (!insn_type.IsAssignableFrom(*field_type)) {
3987 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
3988 << " to be compatible with type '" << insn_type
3989 << "' but found type '" << *field_type
3990 << "' in get-object";
3991 work_line_->SetRegisterType(this, vregA, reg_types_.Conflict());
3992 return;
3993 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07003994 }
Andreas Gampe896df402014-10-20 22:25:29 -07003995 if (!field_type->IsLowHalf()) {
3996 work_line_->SetRegisterType(this, vregA, *field_type);
3997 } else {
3998 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
3999 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07004000 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004001 LOG(FATAL) << "Unexpected case.";
Ian Rogersd81871c2011-10-03 13:57:23 -07004002 }
4003}
4004
Mathieu Chartierc7853442015-03-27 14:35:38 -07004005ArtField* MethodVerifier::GetQuickFieldAccess(const Instruction* inst,
Ian Rogers98379392014-02-24 16:53:16 -08004006 RegisterLine* reg_line) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004007 DCHECK(IsInstructionIGetQuickOrIPutQuick(inst->Opcode())) << inst->Opcode();
Ian Rogers7b078e82014-09-10 14:44:24 -07004008 const RegType& object_type = reg_line->GetRegisterType(this, inst->VRegB_22c());
Ian Rogers9bc54402014-04-17 16:40:01 -07004009 if (!object_type.HasClass()) {
4010 VLOG(verifier) << "Failed to get mirror::Class* from '" << object_type << "'";
4011 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004012 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004013 uint32_t field_offset = static_cast<uint32_t>(inst->VRegC_22c());
Mathieu Chartierc7853442015-03-27 14:35:38 -07004014 ArtField* const f = ArtField::FindInstanceFieldWithOffset(object_type.GetClass(), field_offset);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004015 DCHECK_EQ(f->GetOffset().Uint32Value(), field_offset);
Sebastien Hertz479fc1e2014-04-04 17:51:34 +02004016 if (f == nullptr) {
4017 VLOG(verifier) << "Failed to find instance field at offset '" << field_offset
4018 << "' from '" << PrettyDescriptor(object_type.GetClass()) << "'";
4019 }
4020 return f;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004021}
4022
Andreas Gampe896df402014-10-20 22:25:29 -07004023template <MethodVerifier::FieldAccessType kAccType>
4024void MethodVerifier::VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type,
4025 bool is_primitive) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07004026 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004027
Mathieu Chartierc7853442015-03-27 14:35:38 -07004028 ArtField* field = GetQuickFieldAccess(inst, work_line_.get());
Ian Rogers7b078e82014-09-10 14:44:24 -07004029 if (field == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004030 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field from " << inst->Name();
4031 return;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004032 }
Andreas Gampe896df402014-10-20 22:25:29 -07004033
4034 // For an IPUT_QUICK, we now test for final flag of the field.
4035 if (kAccType == FieldAccessType::kAccPut) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004036 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
4037 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << PrettyField(field)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004038 << " from other class " << GetDeclaringClass();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004039 return;
4040 }
4041 }
Andreas Gampe896df402014-10-20 22:25:29 -07004042
4043 // Get the field type.
4044 const RegType* field_type;
4045 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07004046 mirror::Class* field_type_class = can_load_classes_ ? field->GetType<true>() :
4047 field->GetType<false>();
Andreas Gampe896df402014-10-20 22:25:29 -07004048
4049 if (field_type_class != nullptr) {
4050 field_type = &reg_types_.FromClass(field->GetTypeDescriptor(), field_type_class,
4051 field_type_class->CannotBeAssignedFromOtherTypes());
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004052 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004053 Thread* self = Thread::Current();
4054 DCHECK(!can_load_classes_ || self->IsExceptionPending());
4055 self->ClearException();
4056 field_type = &reg_types_.FromDescriptor(field->GetDeclaringClass()->GetClassLoader(),
4057 field->GetTypeDescriptor(), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004058 }
Andreas Gampe896df402014-10-20 22:25:29 -07004059 if (field_type == nullptr) {
4060 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field type from " << inst->Name();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004061 return;
4062 }
Andreas Gampe896df402014-10-20 22:25:29 -07004063 }
4064
4065 const uint32_t vregA = inst->VRegA_22c();
4066 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
4067 "Unexpected third access type");
4068 if (kAccType == FieldAccessType::kAccPut) {
4069 if (is_primitive) {
4070 // Primitive field assignability rules are weaker than regular assignability rules
4071 bool instruction_compatible;
4072 bool value_compatible;
4073 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
4074 if (field_type->IsIntegralTypes()) {
4075 instruction_compatible = insn_type.IsIntegralTypes();
4076 value_compatible = value_type.IsIntegralTypes();
4077 } else if (field_type->IsFloat()) {
4078 instruction_compatible = insn_type.IsInteger(); // no [is]put-float, so expect [is]put-int
4079 value_compatible = value_type.IsFloatTypes();
4080 } else if (field_type->IsLong()) {
4081 instruction_compatible = insn_type.IsLong();
4082 value_compatible = value_type.IsLongTypes();
4083 } else if (field_type->IsDouble()) {
4084 instruction_compatible = insn_type.IsLong(); // no [is]put-double, so expect [is]put-long
4085 value_compatible = value_type.IsDoubleTypes();
4086 } else {
4087 instruction_compatible = false; // reference field with primitive store
4088 value_compatible = false; // unused
4089 }
4090 if (!instruction_compatible) {
4091 // This is a global failure rather than a class change failure as the instructions and
4092 // the descriptors for the type should have been consistent within the same file at
4093 // compile time
4094 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
4095 << " to be of type '" << insn_type
4096 << "' but found type '" << *field_type
4097 << "' in put";
4098 return;
4099 }
4100 if (!value_compatible) {
4101 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
4102 << " of type " << value_type
4103 << " but expected " << *field_type
4104 << " for store to " << PrettyField(field) << " in put";
4105 return;
4106 }
4107 } else {
4108 if (!insn_type.IsAssignableFrom(*field_type)) {
4109 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
4110 << " to be compatible with type '" << insn_type
4111 << "' but found type '" << *field_type
4112 << "' in put-object";
4113 return;
4114 }
4115 work_line_->VerifyRegisterType(this, vregA, *field_type);
4116 }
4117 } else if (kAccType == FieldAccessType::kAccGet) {
4118 if (is_primitive) {
4119 if (field_type->Equals(insn_type) ||
4120 (field_type->IsFloat() && insn_type.IsIntegralTypes()) ||
4121 (field_type->IsDouble() && insn_type.IsLongTypes())) {
4122 // expected that read is of the correct primitive type or that int reads are reading
4123 // floats or long reads are reading doubles
4124 } else {
4125 // This is a global failure rather than a class change failure as the instructions and
4126 // the descriptors for the type should have been consistent within the same file at
4127 // compile time
4128 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
4129 << " to be of type '" << insn_type
4130 << "' but found type '" << *field_type << "' in Get";
4131 return;
4132 }
4133 } else {
4134 if (!insn_type.IsAssignableFrom(*field_type)) {
4135 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
4136 << " to be compatible with type '" << insn_type
4137 << "' but found type '" << *field_type
4138 << "' in get-object";
4139 work_line_->SetRegisterType(this, vregA, reg_types_.Conflict());
4140 return;
4141 }
4142 }
4143 if (!field_type->IsLowHalf()) {
4144 work_line_->SetRegisterType(this, vregA, *field_type);
4145 } else {
4146 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004147 }
4148 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004149 LOG(FATAL) << "Unexpected case.";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004150 }
4151}
4152
Ian Rogers776ac1f2012-04-13 23:36:36 -07004153bool MethodVerifier::CheckNotMoveException(const uint16_t* insns, int insn_idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07004154 if ((insns[insn_idx] & 0xff) == Instruction::MOVE_EXCEPTION) {
jeffhaod5347e02012-03-22 17:25:05 -07004155 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-exception";
Ian Rogersd81871c2011-10-03 13:57:23 -07004156 return false;
4157 }
4158 return true;
4159}
4160
Stephen Kyle9bc61992014-09-22 13:53:15 +01004161bool MethodVerifier::CheckNotMoveResult(const uint16_t* insns, int insn_idx) {
4162 if (((insns[insn_idx] & 0xff) >= Instruction::MOVE_RESULT) &&
4163 ((insns[insn_idx] & 0xff) <= Instruction::MOVE_RESULT_OBJECT)) {
4164 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-result*";
4165 return false;
4166 }
4167 return true;
4168}
4169
4170bool MethodVerifier::CheckNotMoveExceptionOrMoveResult(const uint16_t* insns, int insn_idx) {
4171 return (CheckNotMoveException(insns, insn_idx) && CheckNotMoveResult(insns, insn_idx));
4172}
4173
Ian Rogersebbdd872014-07-07 23:53:08 -07004174bool MethodVerifier::UpdateRegisters(uint32_t next_insn, RegisterLine* merge_line,
4175 bool update_merge_line) {
Ian Rogersd81871c2011-10-03 13:57:23 -07004176 bool changed = true;
4177 RegisterLine* target_line = reg_table_.GetLine(next_insn);
4178 if (!insn_flags_[next_insn].IsVisitedOrChanged()) {
jeffhaobdb76512011-09-07 11:43:16 -07004179 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07004180 * We haven't processed this instruction before, and we haven't touched the registers here, so
4181 * there's nothing to "merge". Copy the registers over and mark it as changed. (This is the
4182 * only way a register can transition out of "unknown", so this is not just an optimization.)
jeffhaobdb76512011-09-07 11:43:16 -07004183 */
Ian Rogersb8c78592013-07-25 23:52:52 +00004184 if (!insn_flags_[next_insn].IsReturn()) {
4185 target_line->CopyFromLine(merge_line);
4186 } else {
Jeff Haob24b4a72013-07-31 13:47:31 -07004187 // Verify that the monitor stack is empty on return.
Ian Rogers7b078e82014-09-10 14:44:24 -07004188 if (!merge_line->VerifyMonitorStackEmpty(this)) {
Jeff Haob24b4a72013-07-31 13:47:31 -07004189 return false;
4190 }
Ian Rogersb8c78592013-07-25 23:52:52 +00004191 // For returns we only care about the operand to the return, all other registers are dead.
4192 // Initialize them as conflicts so they don't add to GC and deoptimization information.
4193 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn);
4194 Instruction::Code opcode = ret_inst->Opcode();
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07004195 if (opcode == Instruction::RETURN_VOID || opcode == Instruction::RETURN_VOID_NO_BARRIER) {
Stephen Kyle7e541c92014-12-17 17:10:02 +00004196 SafelyMarkAllRegistersAsConflicts(this, target_line);
Ian Rogersb8c78592013-07-25 23:52:52 +00004197 } else {
4198 target_line->CopyFromLine(merge_line);
4199 if (opcode == Instruction::RETURN_WIDE) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004200 target_line->MarkAllRegistersAsConflictsExceptWide(this, ret_inst->VRegA_11x());
Ian Rogersb8c78592013-07-25 23:52:52 +00004201 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004202 target_line->MarkAllRegistersAsConflictsExcept(this, ret_inst->VRegA_11x());
Ian Rogersb8c78592013-07-25 23:52:52 +00004203 }
4204 }
4205 }
jeffhaobdb76512011-09-07 11:43:16 -07004206 } else {
Ian Rogers700a4022014-05-19 16:49:03 -07004207 std::unique_ptr<RegisterLine> copy(gDebugVerify ?
Ian Rogersd0fbd852013-09-24 18:17:04 -07004208 RegisterLine::Create(target_line->NumRegs(), this) :
Ian Rogers7b078e82014-09-10 14:44:24 -07004209 nullptr);
Ian Rogers7b0c5b42012-02-16 15:29:07 -08004210 if (gDebugVerify) {
4211 copy->CopyFromLine(target_line);
4212 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004213 changed = target_line->MergeRegisters(this, merge_line);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004214 if (have_pending_hard_failure_) {
Ian Rogersd81871c2011-10-03 13:57:23 -07004215 return false;
jeffhaobdb76512011-09-07 11:43:16 -07004216 }
Ian Rogers2c8a8572011-10-24 17:11:36 -07004217 if (gDebugVerify && changed) {
Elliott Hughes398f64b2012-03-26 18:05:48 -07004218 LogVerifyInfo() << "Merging at [" << reinterpret_cast<void*>(work_insn_idx_) << "]"
Elliott Hughesc073b072012-05-24 19:29:17 -07004219 << " to [" << reinterpret_cast<void*>(next_insn) << "]: " << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07004220 << copy->Dump(this) << " MERGE\n"
4221 << merge_line->Dump(this) << " ==\n"
4222 << target_line->Dump(this) << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07004223 }
Ian Rogersebbdd872014-07-07 23:53:08 -07004224 if (update_merge_line && changed) {
4225 merge_line->CopyFromLine(target_line);
4226 }
jeffhaobdb76512011-09-07 11:43:16 -07004227 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004228 if (changed) {
4229 insn_flags_[next_insn].SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07004230 }
4231 return true;
4232}
4233
Ian Rogers7b3ddd22013-02-21 15:19:52 -08004234InstructionFlags* MethodVerifier::CurrentInsnFlags() {
Ian Rogers776ac1f2012-04-13 23:36:36 -07004235 return &insn_flags_[work_insn_idx_];
4236}
4237
Ian Rogersd8f69b02014-09-10 21:43:52 +00004238const RegType& MethodVerifier::GetMethodReturnType() {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004239 if (return_type_ == nullptr) {
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07004240 if (mirror_method_.Get() != nullptr) {
Ian Rogersded66a02014-10-28 18:12:55 -07004241 mirror::Class* return_type_class = mirror_method_->GetReturnType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004242 if (return_type_class != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004243 return_type_ = &reg_types_.FromClass(mirror_method_->GetReturnTypeDescriptor(),
4244 return_type_class,
Mathieu Chartier590fee92013-09-13 13:46:47 -07004245 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004246 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004247 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
4248 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004249 }
4250 }
4251 if (return_type_ == nullptr) {
4252 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
4253 const DexFile::ProtoId& proto_id = dex_file_->GetMethodPrototype(method_id);
4254 uint16_t return_type_idx = proto_id.return_type_idx_;
4255 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx));
Mathieu Chartierbf99f772014-08-23 16:37:27 -07004256 return_type_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004257 }
4258 }
4259 return *return_type_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004260}
4261
Ian Rogersd8f69b02014-09-10 21:43:52 +00004262const RegType& MethodVerifier::GetDeclaringClass() {
Ian Rogers7b078e82014-09-10 14:44:24 -07004263 if (declaring_class_ == nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004264 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
Brian Carlstrom93c33962013-07-26 10:37:43 -07004265 const char* descriptor
4266 = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
Hiroshi Yamauchidc376172014-08-22 11:13:12 -07004267 if (mirror_method_.Get() != nullptr) {
Ian Rogers637c65b2013-05-31 11:46:00 -07004268 mirror::Class* klass = mirror_method_->GetDeclaringClass();
Ian Rogers04f94f42013-06-10 15:09:26 -07004269 declaring_class_ = &reg_types_.FromClass(descriptor, klass,
4270 klass->CannotBeAssignedFromOtherTypes());
Ian Rogers637c65b2013-05-31 11:46:00 -07004271 } else {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07004272 declaring_class_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers637c65b2013-05-31 11:46:00 -07004273 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07004274 }
Ian Rogers637c65b2013-05-31 11:46:00 -07004275 return *declaring_class_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004276}
4277
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004278std::vector<int32_t> MethodVerifier::DescribeVRegs(uint32_t dex_pc) {
4279 RegisterLine* line = reg_table_.GetLine(dex_pc);
Sebastien Hertzaa0c00c2014-03-14 17:58:54 +01004280 DCHECK(line != nullptr) << "No register line at DEX pc " << StringPrintf("0x%x", dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004281 std::vector<int32_t> result;
4282 for (size_t i = 0; i < line->NumRegs(); ++i) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004283 const RegType& type = line->GetRegisterType(this, i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004284 if (type.IsConstant()) {
4285 result.push_back(type.IsPreciseConstant() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07004286 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
4287 result.push_back(const_val->ConstantValue());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004288 } else if (type.IsConstantLo()) {
4289 result.push_back(type.IsPreciseConstantLo() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07004290 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
4291 result.push_back(const_val->ConstantValueLo());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004292 } else if (type.IsConstantHi()) {
4293 result.push_back(type.IsPreciseConstantHi() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07004294 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
4295 result.push_back(const_val->ConstantValueHi());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004296 } else if (type.IsIntegralTypes()) {
4297 result.push_back(kIntVReg);
4298 result.push_back(0);
4299 } else if (type.IsFloat()) {
4300 result.push_back(kFloatVReg);
4301 result.push_back(0);
4302 } else if (type.IsLong()) {
4303 result.push_back(kLongLoVReg);
4304 result.push_back(0);
4305 result.push_back(kLongHiVReg);
4306 result.push_back(0);
4307 ++i;
4308 } else if (type.IsDouble()) {
4309 result.push_back(kDoubleLoVReg);
4310 result.push_back(0);
4311 result.push_back(kDoubleHiVReg);
4312 result.push_back(0);
4313 ++i;
4314 } else if (type.IsUndefined() || type.IsConflict() || type.IsHighHalf()) {
4315 result.push_back(kUndefined);
4316 result.push_back(0);
4317 } else {
Ian Rogers7b3ddd22013-02-21 15:19:52 -08004318 CHECK(type.IsNonZeroReferenceTypes());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004319 result.push_back(kReferenceVReg);
4320 result.push_back(0);
4321 }
4322 }
4323 return result;
4324}
4325
Ian Rogersd8f69b02014-09-10 21:43:52 +00004326const RegType& MethodVerifier::DetermineCat1Constant(int32_t value, bool precise) {
Sebastien Hertz849600b2013-12-20 10:28:08 +01004327 if (precise) {
4328 // Precise constant type.
4329 return reg_types_.FromCat1Const(value, true);
4330 } else {
4331 // Imprecise constant type.
4332 if (value < -32768) {
4333 return reg_types_.IntConstant();
4334 } else if (value < -128) {
4335 return reg_types_.ShortConstant();
4336 } else if (value < 0) {
4337 return reg_types_.ByteConstant();
4338 } else if (value == 0) {
4339 return reg_types_.Zero();
4340 } else if (value == 1) {
4341 return reg_types_.One();
4342 } else if (value < 128) {
4343 return reg_types_.PosByteConstant();
4344 } else if (value < 32768) {
4345 return reg_types_.PosShortConstant();
4346 } else if (value < 65536) {
4347 return reg_types_.CharConstant();
4348 } else {
4349 return reg_types_.IntConstant();
4350 }
4351 }
4352}
4353
Elliott Hughes0a1038b2012-06-14 16:24:17 -07004354void MethodVerifier::Init() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08004355 art::verifier::RegTypeCache::Init();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08004356}
4357
Elliott Hughes0a1038b2012-06-14 16:24:17 -07004358void MethodVerifier::Shutdown() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08004359 verifier::RegTypeCache::ShutDown();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08004360}
jeffhaod1224c72012-02-29 13:43:08 -08004361
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07004362void MethodVerifier::VisitStaticRoots(RootVisitor* visitor) {
4363 RegTypeCache::VisitStaticRoots(visitor);
Mathieu Chartier7c438b12014-09-12 17:01:24 -07004364}
4365
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07004366void MethodVerifier::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
4367 reg_types_.VisitRoots(visitor, root_info);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08004368}
4369
Ian Rogersd81871c2011-10-03 13:57:23 -07004370} // namespace verifier
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07004371} // namespace art