blob: 887217307986fa7bc94a8090cbe54d36e02f7033 [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
Andreas Gampe46ee31b2016-12-14 10:11:49 -080021#include "android-base/stringprintf.h"
22
Mathieu Chartierc7853442015-03-27 14:35:38 -070023#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070024#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070025#include "base/enums.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080026#include "base/logging.h"
Ian Rogers637c65b2013-05-31 11:46:00 -070027#include "base/mutex-inl.h"
Vladimir Marko637ee0b2015-09-04 12:47:41 +010028#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080029#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010030#include "base/time_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070031#include "class_linker.h"
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000032#include "compiler_callbacks.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070033#include "dex_file-inl.h"
Ian Rogersd0583802013-06-01 10:51:46 -070034#include "dex_instruction-inl.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080035#include "dex_instruction_utils.h"
Alex Lighteb7c1442015-08-31 13:17:42 -070036#include "experimental_flags.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070037#include "gc/accounting/card_table-inl.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070038#include "handle_scope-inl.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080039#include "indenter.h"
Ian Rogers84fa0742011-10-25 18:13:30 -070040#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070041#include "leb128.h"
David Brazdilca3c8c32016-09-06 14:04:48 +010042#include "method_resolution_kind.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/class.h"
44#include "mirror/class-inl.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070045#include "mirror/dex_cache-inl.h"
Orion Hodsoncfa325e2016-10-13 10:25:54 +010046#include "mirror/method_handle_impl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047#include "mirror/object-inl.h"
48#include "mirror/object_array-inl.h"
Ian Rogers7b078e82014-09-10 14:44:24 -070049#include "reg_type-inl.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070050#include "register_line-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070051#include "runtime.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070052#include "scoped_thread_state_change-inl.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070053#include "stack.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010054#include "utils.h"
David Brazdilca3c8c32016-09-06 14:04:48 +010055#include "verifier_deps.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070056#include "verifier_compiler_binding.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070057
58namespace art {
Ian Rogersd81871c2011-10-03 13:57:23 -070059namespace verifier {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070060
Andreas Gampe46ee31b2016-12-14 10:11:49 -080061using android::base::StringPrintf;
62
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070063static constexpr bool kTimeVerifyMethod = !kIsDebugBuild;
Andreas Gampeec6e6c12015-11-05 20:39:56 -080064static constexpr bool kDebugVerify = false;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -070065// TODO: Add a constant to method_verifier to turn on verbose logging?
Ian Rogers2c8a8572011-10-24 17:11:36 -070066
Andreas Gampeebf850c2015-08-14 15:37:35 -070067// On VLOG(verifier), should we dump the whole state when we run into a hard failure?
68static constexpr bool kDumpRegLinesOnHardFailureIfVLOG = true;
69
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -080070// We print a warning blurb about "dx --no-optimize" when we find monitor-locking issues. Make
71// sure we only print this once.
72static bool gPrintedDxMonitorText = false;
73
Mathieu Chartierde40d472015-10-15 17:47:48 -070074PcToRegisterLineTable::PcToRegisterLineTable(ScopedArenaAllocator& arena)
75 : register_lines_(arena.Adapter(kArenaAllocVerifier)) {}
76
Ian Rogers7b3ddd22013-02-21 15:19:52 -080077void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InstructionFlags* flags,
Ian Rogersd81871c2011-10-03 13:57:23 -070078 uint32_t insns_size, uint16_t registers_size,
Ian Rogers776ac1f2012-04-13 23:36:36 -070079 MethodVerifier* verifier) {
Ian Rogersd81871c2011-10-03 13:57:23 -070080 DCHECK_GT(insns_size, 0U);
Mathieu Chartierde40d472015-10-15 17:47:48 -070081 register_lines_.resize(insns_size);
Ian Rogersd81871c2011-10-03 13:57:23 -070082 for (uint32_t i = 0; i < insns_size; i++) {
83 bool interesting = false;
84 switch (mode) {
85 case kTrackRegsAll:
86 interesting = flags[i].IsOpcode();
87 break;
Sameer Abu Asal02c42232013-04-30 12:09:45 -070088 case kTrackCompilerInterestPoints:
Brian Carlstrom02c8cc62013-07-18 15:54:44 -070089 interesting = flags[i].IsCompileTimeInfoPoint() || flags[i].IsBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -070090 break;
91 case kTrackRegsBranches:
92 interesting = flags[i].IsBranchTarget();
93 break;
94 default:
95 break;
96 }
97 if (interesting) {
Mathieu Chartierde40d472015-10-15 17:47:48 -070098 register_lines_[i].reset(RegisterLine::Create(registers_size, verifier));
Ian Rogersd0fbd852013-09-24 18:17:04 -070099 }
100 }
101}
102
Mathieu Chartierde40d472015-10-15 17:47:48 -0700103PcToRegisterLineTable::~PcToRegisterLineTable() {}
Ian Rogersd81871c2011-10-03 13:57:23 -0700104
Andreas Gampe7c038102014-10-27 20:08:46 -0700105// Note: returns true on failure.
106ALWAYS_INLINE static inline bool FailOrAbort(MethodVerifier* verifier, bool condition,
107 const char* error_msg, uint32_t work_insn_idx) {
108 if (kIsDebugBuild) {
Andreas Gampef8f36c22016-11-19 14:51:52 -0800109 // In a debug build, abort if the error condition is wrong. Only warn if
110 // we are already aborting (as this verification is likely run to print
111 // lock information).
112 if (LIKELY(gAborting == 0)) {
113 DCHECK(condition) << error_msg << work_insn_idx;
114 } else {
115 if (!condition) {
116 LOG(ERROR) << error_msg << work_insn_idx;
117 verifier->Fail(VERIFY_ERROR_BAD_CLASS_HARD) << error_msg << work_insn_idx;
118 return true;
119 }
120 }
Andreas Gampe7c038102014-10-27 20:08:46 -0700121 } else {
122 // In a non-debug build, just fail the class.
123 if (!condition) {
124 verifier->Fail(VERIFY_ERROR_BAD_CLASS_HARD) << error_msg << work_insn_idx;
125 return true;
126 }
127 }
128
129 return false;
130}
131
Stephen Kyle7e541c92014-12-17 17:10:02 +0000132static void SafelyMarkAllRegistersAsConflicts(MethodVerifier* verifier, RegisterLine* reg_line) {
Andreas Gampef10b6e12015-08-12 10:48:12 -0700133 if (verifier->IsInstanceConstructor()) {
Stephen Kyle7e541c92014-12-17 17:10:02 +0000134 // Before we mark all regs as conflicts, check that we don't have an uninitialized this.
135 reg_line->CheckConstructorReturn(verifier);
136 }
137 reg_line->MarkAllRegistersAsConflicts(verifier);
138}
139
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700140FailureKind MethodVerifier::VerifyClass(Thread* self,
141 mirror::Class* klass,
142 CompilerCallbacks* callbacks,
143 bool allow_soft_failures,
144 HardFailLogMode log_level,
145 std::string* error) {
jeffhaobdb76512011-09-07 11:43:16 -0700146 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700147 return FailureKind::kNoFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700148 }
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800149 bool early_failure = false;
150 std::string failure_message;
Mathieu Chartierf8322842014-05-16 10:59:25 -0700151 const DexFile& dex_file = klass->GetDexFile();
152 const DexFile::ClassDef* class_def = klass->GetClassDef();
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800153 mirror::Class* super = klass->GetSuperClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -0700154 std::string temp;
Ian Rogers7b078e82014-09-10 14:44:24 -0700155 if (super == nullptr && strcmp("Ljava/lang/Object;", klass->GetDescriptor(&temp)) != 0) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800156 early_failure = true;
157 failure_message = " that has no super class";
Ian Rogers7b078e82014-09-10 14:44:24 -0700158 } else if (super != nullptr && super->IsFinal()) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800159 early_failure = true;
David Sehr709b0702016-10-13 09:12:37 -0700160 failure_message = " that attempts to sub-class final class " + super->PrettyDescriptor();
Ian Rogers7b078e82014-09-10 14:44:24 -0700161 } else if (class_def == nullptr) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800162 early_failure = true;
163 failure_message = " that isn't present in dex file " + dex_file.GetLocation();
164 }
165 if (early_failure) {
David Sehr709b0702016-10-13 09:12:37 -0700166 *error = "Verifier rejected class " + klass->PrettyDescriptor() + failure_message;
Andreas Gampe53e32d12015-12-09 21:03:23 -0800167 if (callbacks != nullptr) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800168 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
Andreas Gampe53e32d12015-12-09 21:03:23 -0800169 callbacks->ClassRejected(ref);
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800170 }
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700171 return FailureKind::kHardFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700172 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700173 StackHandleScope<2> hs(self);
Mathieu Chartierf8322842014-05-16 10:59:25 -0700174 Handle<mirror::DexCache> dex_cache(hs.NewHandle(klass->GetDexCache()));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700175 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(klass->GetClassLoader()));
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800176 return VerifyClass(self,
177 &dex_file,
178 dex_cache,
179 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100180 *class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800181 callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800182 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700183 log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800184 error);
185}
186
187template <bool kDirect>
188static bool HasNextMethod(ClassDataItemIterator* it) {
189 return kDirect ? it->HasNextDirectMethod() : it->HasNextVirtualMethod();
190}
191
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700192static FailureKind FailureKindMax(FailureKind fk1, FailureKind fk2) {
193 static_assert(FailureKind::kNoFailure < FailureKind::kSoftFailure
194 && FailureKind::kSoftFailure < FailureKind::kHardFailure,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800195 "Unexpected FailureKind order");
196 return std::max(fk1, fk2);
197}
198
199void MethodVerifier::FailureData::Merge(const MethodVerifier::FailureData& fd) {
200 kind = FailureKindMax(kind, fd.kind);
201 types |= fd.types;
202}
203
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800204template <bool kDirect>
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800205MethodVerifier::FailureData MethodVerifier::VerifyMethods(Thread* self,
206 ClassLinker* linker,
207 const DexFile* dex_file,
David Brazdil15fc7292016-09-02 14:13:18 +0100208 const DexFile::ClassDef& class_def,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800209 ClassDataItemIterator* it,
210 Handle<mirror::DexCache> dex_cache,
211 Handle<mirror::ClassLoader> class_loader,
212 CompilerCallbacks* callbacks,
213 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700214 HardFailLogMode log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800215 bool need_precise_constants,
216 std::string* error_string) {
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800217 DCHECK(it != nullptr);
218
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800219 MethodVerifier::FailureData failure_data;
220
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800221 int64_t previous_method_idx = -1;
222 while (HasNextMethod<kDirect>(it)) {
223 self->AllowThreadSuspension();
224 uint32_t method_idx = it->GetMemberIndex();
225 if (method_idx == previous_method_idx) {
226 // smali can create dex files with two encoded_methods sharing the same method_idx
227 // http://code.google.com/p/smali/issues/detail?id=119
228 it->Next();
229 continue;
230 }
231 previous_method_idx = method_idx;
David Brazdil15fc7292016-09-02 14:13:18 +0100232 InvokeType type = it->GetMethodInvokeType(class_def);
Andreas Gampe42ef8ab2015-12-03 17:27:32 -0800233 ArtMethod* method = linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800234 *dex_file, method_idx, dex_cache, class_loader, nullptr, type);
235 if (method == nullptr) {
236 DCHECK(self->IsExceptionPending());
237 // We couldn't resolve the method, but continue regardless.
238 self->ClearException();
239 } else {
240 DCHECK(method->GetDeclaringClassUnchecked() != nullptr) << type;
241 }
242 StackHandleScope<1> hs(self);
243 std::string hard_failure_msg;
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800244 MethodVerifier::FailureData result = VerifyMethod(self,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800245 method_idx,
246 dex_file,
247 dex_cache,
248 class_loader,
249 class_def,
250 it->GetMethodCodeItem(),
251 method,
252 it->GetMethodAccessFlags(),
Andreas Gampe53e32d12015-12-09 21:03:23 -0800253 callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800254 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700255 log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800256 need_precise_constants,
257 &hard_failure_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700258 if (result.kind == FailureKind::kHardFailure) {
259 if (failure_data.kind == FailureKind::kHardFailure) {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800260 // If we logged an error before, we need a newline.
261 *error_string += "\n";
262 } else {
263 // If we didn't log a hard failure before, print the header of the message.
264 *error_string += "Verifier rejected class ";
David Brazdil15fc7292016-09-02 14:13:18 +0100265 *error_string += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800266 *error_string += ":";
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800267 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800268 *error_string += " ";
269 *error_string += hard_failure_msg;
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800270 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800271 failure_data.Merge(result);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800272 it->Next();
273 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800274
275 return failure_data;
Shih-wei Liao371814f2011-10-27 16:52:10 -0700276}
277
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700278FailureKind MethodVerifier::VerifyClass(Thread* self,
279 const DexFile* dex_file,
280 Handle<mirror::DexCache> dex_cache,
281 Handle<mirror::ClassLoader> class_loader,
282 const DexFile::ClassDef& class_def,
283 CompilerCallbacks* callbacks,
284 bool allow_soft_failures,
285 HardFailLogMode log_level,
286 std::string* error) {
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800287 ScopedTrace trace(__FUNCTION__);
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700288
289 // A class must not be abstract and final.
David Brazdil15fc7292016-09-02 14:13:18 +0100290 if ((class_def.access_flags_ & (kAccAbstract | kAccFinal)) == (kAccAbstract | kAccFinal)) {
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700291 *error = "Verifier rejected class ";
David Brazdil15fc7292016-09-02 14:13:18 +0100292 *error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700293 *error += ": class is abstract and final.";
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700294 return FailureKind::kHardFailure;
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700295 }
296
David Brazdil15fc7292016-09-02 14:13:18 +0100297 const uint8_t* class_data = dex_file->GetClassData(class_def);
Ian Rogers7b078e82014-09-10 14:44:24 -0700298 if (class_data == nullptr) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700299 // empty class, probably a marker interface
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700300 return FailureKind::kNoFailure;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700301 }
jeffhaof56197c2012-03-05 18:01:54 -0800302 ClassDataItemIterator it(*dex_file, class_data);
303 while (it.HasNextStaticField() || it.HasNextInstanceField()) {
304 it.Next();
305 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700306 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800307 // Direct methods.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800308 MethodVerifier::FailureData data1 = VerifyMethods<true>(self,
309 linker,
310 dex_file,
311 class_def,
312 &it,
313 dex_cache,
314 class_loader,
315 callbacks,
316 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700317 log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800318 false /* need precise constants */,
319 error);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800320 // Virtual methods.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800321 MethodVerifier::FailureData data2 = VerifyMethods<false>(self,
322 linker,
323 dex_file,
324 class_def,
325 &it,
326 dex_cache,
327 class_loader,
328 callbacks,
329 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700330 log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800331 false /* need precise constants */,
332 error);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800333
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800334 data1.Merge(data2);
335
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700336 if (data1.kind == FailureKind::kNoFailure) {
337 return FailureKind::kNoFailure;
jeffhaof1e6b7c2012-06-05 18:33:30 -0700338 } else {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800339 if ((data1.types & VERIFY_ERROR_LOCKING) != 0) {
340 // Print a warning about expected slow-down. Use a string temporary to print one contiguous
341 // warning.
342 std::string tmp =
343 StringPrintf("Class %s failed lock verification and will run slower.",
David Brazdil15fc7292016-09-02 14:13:18 +0100344 PrettyDescriptor(dex_file->GetClassDescriptor(class_def)).c_str());
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800345 if (!gPrintedDxMonitorText) {
346 tmp = tmp + "\nCommon causes for lock verification issues are non-optimized dex code\n"
347 "and incorrect proguard optimizations.";
348 gPrintedDxMonitorText = true;
349 }
350 LOG(WARNING) << tmp;
351 }
352 return data1.kind;
jeffhaof1e6b7c2012-06-05 18:33:30 -0700353 }
jeffhaof56197c2012-03-05 18:01:54 -0800354}
355
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700356static bool IsLargeMethod(const DexFile::CodeItem* const code_item) {
Andreas Gampe3c651fc2015-05-21 14:06:46 -0700357 if (code_item == nullptr) {
358 return false;
359 }
360
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700361 uint16_t registers_size = code_item->registers_size_;
362 uint32_t insns_size = code_item->insns_size_in_code_units_;
363
364 return registers_size * insns_size > 4*1024*1024;
365}
366
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800367MethodVerifier::FailureData MethodVerifier::VerifyMethod(Thread* self,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800368 uint32_t method_idx,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800369 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700370 Handle<mirror::DexCache> dex_cache,
371 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100372 const DexFile::ClassDef& class_def,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800373 const DexFile::CodeItem* code_item,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700374 ArtMethod* method,
Jeff Haoee988952013-04-16 14:23:47 -0700375 uint32_t method_access_flags,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800376 CompilerCallbacks* callbacks,
Ian Rogers46960fe2014-05-23 10:43:43 -0700377 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700378 HardFailLogMode log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800379 bool need_precise_constants,
380 std::string* hard_failure_msg) {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800381 MethodVerifier::FailureData result;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700382 uint64_t start_ns = kTimeVerifyMethod ? NanoTime() : 0;
Ian Rogersc8982582012-09-07 16:53:25 -0700383
Andreas Gampebf9611f2016-03-25 16:58:00 -0700384 MethodVerifier verifier(self,
385 dex_file,
386 dex_cache,
387 class_loader,
388 class_def,
389 code_item,
390 method_idx,
391 method,
392 method_access_flags,
393 true /* can_load_classes */,
394 allow_soft_failures,
395 need_precise_constants,
396 false /* verify to dump */,
397 true /* allow_thread_suspension */);
Ian Rogers46960fe2014-05-23 10:43:43 -0700398 if (verifier.Verify()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700399 // Verification completed, however failures may be pending that didn't cause the verification
400 // to hard fail.
Ian Rogers46960fe2014-05-23 10:43:43 -0700401 CHECK(!verifier.have_pending_hard_failure_);
Andreas Gampe53e32d12015-12-09 21:03:23 -0800402
403 if (code_item != nullptr && callbacks != nullptr) {
404 // Let the interested party know that the method was verified.
405 callbacks->MethodVerified(&verifier);
406 }
407
Ian Rogers46960fe2014-05-23 10:43:43 -0700408 if (verifier.failures_.size() != 0) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700409 if (VLOG_IS_ON(verifier)) {
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800410 verifier.DumpFailures(VLOG_STREAM(verifier) << "Soft verification failures in "
David Sehr709b0702016-10-13 09:12:37 -0700411 << dex_file->PrettyMethod(method_idx) << "\n");
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700412 }
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700413 result.kind = FailureKind::kSoftFailure;
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100414 if (method != nullptr &&
415 !CanCompilerHandleVerificationFailure(verifier.encountered_failure_types_)) {
Alex Lightfcbafb32017-02-02 15:09:54 -0800416 method->SetDontCompile();
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100417 }
418 }
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700419 if (method != nullptr) {
420 if (verifier.HasInstructionThatWillThrow()) {
Alex Lightfcbafb32017-02-02 15:09:54 -0800421 method->SetDontCompile();
Calin Juravle857f0582016-12-20 14:36:59 +0000422 if (Runtime::Current()->IsAotCompiler() &&
423 (callbacks != nullptr) && !callbacks->IsBootImage()) {
424 // When compiling apps, make HasInstructionThatWillThrow a soft error to trigger
425 // re-verification at runtime.
426 // The dead code after the throw is not verified and might be invalid. This may cause
427 // the JIT compiler to crash since it assumes that all the code is valid.
428 //
429 // There's a strong assumption that the entire boot image is verified and all its dex
430 // code is valid (even the dead and unverified one). As such this is done only for apps.
431 // (CompilerDriver DCHECKs in VerifyClassVisitor that methods from boot image are
432 // fully verified).
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700433 result.kind = FailureKind::kSoftFailure;
Calin Juravle857f0582016-12-20 14:36:59 +0000434 }
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700435 }
436 if ((verifier.encountered_failure_types_ & VerifyError::VERIFY_ERROR_LOCKING) != 0) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700437 method->AddAccessFlags(kAccMustCountLocks);
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700438 }
jeffhaof56197c2012-03-05 18:01:54 -0800439 }
440 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700441 // Bad method data.
Ian Rogers46960fe2014-05-23 10:43:43 -0700442 CHECK_NE(verifier.failures_.size(), 0U);
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700443
444 if (UNLIKELY(verifier.have_pending_experimental_failure_)) {
445 // Failed due to being forced into interpreter. This is ok because
446 // we just want to skip verification.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700447 result.kind = FailureKind::kSoftFailure;
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700448 } else {
449 CHECK(verifier.have_pending_hard_failure_);
Andreas Gampe7fe30232016-03-25 16:58:00 -0700450 if (VLOG_IS_ON(verifier)) {
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700451 log_level = std::max(HardFailLogMode::kLogVerbose, log_level);
Andreas Gampe7fe30232016-03-25 16:58:00 -0700452 }
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700453 if (log_level >= HardFailLogMode::kLogVerbose) {
454 LogSeverity severity;
455 switch (log_level) {
456 case HardFailLogMode::kLogVerbose:
457 severity = LogSeverity::VERBOSE;
458 break;
459 case HardFailLogMode::kLogWarning:
460 severity = LogSeverity::WARNING;
461 break;
462 case HardFailLogMode::kLogInternalFatal:
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700463 severity = LogSeverity::FATAL_WITHOUT_ABORT;
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700464 break;
465 default:
466 LOG(FATAL) << "Unsupported log-level " << static_cast<uint32_t>(log_level);
467 UNREACHABLE();
468 }
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700469 verifier.DumpFailures(LOG_STREAM(severity) << "Verification error in "
David Sehr709b0702016-10-13 09:12:37 -0700470 << dex_file->PrettyMethod(method_idx)
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700471 << "\n");
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800472 }
473 if (hard_failure_msg != nullptr) {
474 CHECK(!verifier.failure_messages_.empty());
475 *hard_failure_msg =
476 verifier.failure_messages_[verifier.failure_messages_.size() - 1]->str();
477 }
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700478 result.kind = FailureKind::kHardFailure;
Andreas Gampe53e32d12015-12-09 21:03:23 -0800479
480 if (callbacks != nullptr) {
481 // Let the interested party know that we failed the class.
David Brazdil15fc7292016-09-02 14:13:18 +0100482 ClassReference ref(dex_file, dex_file->GetIndexForClassDef(class_def));
Andreas Gampe53e32d12015-12-09 21:03:23 -0800483 callbacks->ClassRejected(ref);
484 }
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700485 }
Andreas Gampe53e32d12015-12-09 21:03:23 -0800486 if (VLOG_IS_ON(verifier)) {
Ian Rogers46960fe2014-05-23 10:43:43 -0700487 std::cout << "\n" << verifier.info_messages_.str();
488 verifier.Dump(std::cout);
jeffhaof56197c2012-03-05 18:01:54 -0800489 }
jeffhaof56197c2012-03-05 18:01:54 -0800490 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700491 if (kTimeVerifyMethod) {
492 uint64_t duration_ns = NanoTime() - start_ns;
493 if (duration_ns > MsToNs(100)) {
David Sehr709b0702016-10-13 09:12:37 -0700494 LOG(WARNING) << "Verification of " << dex_file->PrettyMethod(method_idx)
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700495 << " took " << PrettyDuration(duration_ns)
496 << (IsLargeMethod(code_item) ? " (large method)" : "");
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700497 }
Ian Rogersc8982582012-09-07 16:53:25 -0700498 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800499 result.types = verifier.encountered_failure_types_;
Ian Rogersc8982582012-09-07 16:53:25 -0700500 return result;
jeffhaof56197c2012-03-05 18:01:54 -0800501}
502
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100503MethodVerifier* MethodVerifier::VerifyMethodAndDump(Thread* self,
504 VariableIndentationOutputStream* vios,
505 uint32_t dex_method_idx,
506 const DexFile* dex_file,
507 Handle<mirror::DexCache> dex_cache,
508 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100509 const DexFile::ClassDef& class_def,
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100510 const DexFile::CodeItem* code_item,
511 ArtMethod* method,
512 uint32_t method_access_flags) {
Andreas Gampebf9611f2016-03-25 16:58:00 -0700513 MethodVerifier* verifier = new MethodVerifier(self,
514 dex_file,
515 dex_cache,
516 class_loader,
517 class_def,
518 code_item,
519 dex_method_idx,
520 method,
521 method_access_flags,
522 true /* can_load_classes */,
523 true /* allow_soft_failures */,
524 true /* need_precise_constants */,
525 true /* verify_to_dump */,
526 true /* allow_thread_suspension */);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700527 verifier->Verify();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100528 verifier->DumpFailures(vios->Stream());
529 vios->Stream() << verifier->info_messages_.str();
Andreas Gampe5cbcde22014-09-16 14:59:49 -0700530 // Only dump and return if no hard failures. Otherwise the verifier may be not fully initialized
531 // and querying any info is dangerous/can abort.
532 if (verifier->have_pending_hard_failure_) {
533 delete verifier;
534 return nullptr;
535 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100536 verifier->Dump(vios);
Andreas Gampe5cbcde22014-09-16 14:59:49 -0700537 return verifier;
538 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800539}
540
Ian Rogers7b078e82014-09-10 14:44:24 -0700541MethodVerifier::MethodVerifier(Thread* self,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800542 const DexFile* dex_file,
543 Handle<mirror::DexCache> dex_cache,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700544 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100545 const DexFile::ClassDef& class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800546 const DexFile::CodeItem* code_item,
547 uint32_t dex_method_idx,
548 ArtMethod* method,
549 uint32_t method_access_flags,
550 bool can_load_classes,
551 bool allow_soft_failures,
552 bool need_precise_constants,
553 bool verify_to_dump,
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800554 bool allow_thread_suspension)
Ian Rogers7b078e82014-09-10 14:44:24 -0700555 : self_(self),
Mathieu Chartierde40d472015-10-15 17:47:48 -0700556 arena_stack_(Runtime::Current()->GetArenaPool()),
557 arena_(&arena_stack_),
558 reg_types_(can_load_classes, arena_),
559 reg_table_(arena_),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700560 work_insn_idx_(DexFile::kDexNoIndex),
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800561 dex_method_idx_(dex_method_idx),
Ian Rogers637c65b2013-05-31 11:46:00 -0700562 mirror_method_(method),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700563 method_access_flags_(method_access_flags),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700564 return_type_(nullptr),
jeffhaof56197c2012-03-05 18:01:54 -0800565 dex_file_(dex_file),
566 dex_cache_(dex_cache),
567 class_loader_(class_loader),
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700568 class_def_(class_def),
jeffhaof56197c2012-03-05 18:01:54 -0800569 code_item_(code_item),
Ian Rogers7b078e82014-09-10 14:44:24 -0700570 declaring_class_(nullptr),
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700571 interesting_dex_pc_(-1),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700572 monitor_enter_dex_pcs_(nullptr),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700573 have_pending_hard_failure_(false),
jeffhaofaf459e2012-08-31 15:32:47 -0700574 have_pending_runtime_throw_failure_(false),
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700575 have_pending_experimental_failure_(false),
Andreas Gamped12e7822015-06-25 10:26:40 -0700576 have_any_pending_runtime_throw_failure_(false),
jeffhaof56197c2012-03-05 18:01:54 -0800577 new_instance_count_(0),
Elliott Hughes80537bb2013-01-04 16:37:26 -0800578 monitor_enter_count_(0),
Andreas Gampe0760a812015-08-26 17:12:51 -0700579 encountered_failure_types_(0),
Jeff Haoee988952013-04-16 14:23:47 -0700580 can_load_classes_(can_load_classes),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200581 allow_soft_failures_(allow_soft_failures),
Ian Rogers46960fe2014-05-23 10:43:43 -0700582 need_precise_constants_(need_precise_constants),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200583 has_check_casts_(false),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700584 has_virtual_or_interface_invokes_(false),
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800585 verify_to_dump_(verify_to_dump),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700586 allow_thread_suspension_(allow_thread_suspension),
Andreas Gampee6215c02015-08-31 18:54:38 -0700587 is_constructor_(false),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700588 link_(nullptr) {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700589 self->PushVerifier(this);
jeffhaof56197c2012-03-05 18:01:54 -0800590}
591
Mathieu Chartier590fee92013-09-13 13:46:47 -0700592MethodVerifier::~MethodVerifier() {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700593 Thread::Current()->PopVerifier(this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700594 STLDeleteElements(&failure_messages_);
595}
596
Mathieu Chartiere401d142015-04-22 13:56:20 -0700597void MethodVerifier::FindLocksAtDexPc(ArtMethod* m, uint32_t dex_pc,
Ian Rogers46960fe2014-05-23 10:43:43 -0700598 std::vector<uint32_t>* monitor_enter_dex_pcs) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700599 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700600 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
601 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700602 MethodVerifier verifier(hs.Self(),
603 m->GetDexFile(),
604 dex_cache,
605 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100606 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700607 m->GetCodeItem(),
608 m->GetDexMethodIndex(),
609 m,
610 m->GetAccessFlags(),
611 false /* can_load_classes */,
612 true /* allow_soft_failures */,
613 false /* need_precise_constants */,
614 false /* verify_to_dump */,
615 false /* allow_thread_suspension */);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700616 verifier.interesting_dex_pc_ = dex_pc;
Ian Rogers46960fe2014-05-23 10:43:43 -0700617 verifier.monitor_enter_dex_pcs_ = monitor_enter_dex_pcs;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700618 verifier.FindLocksAtDexPc();
619}
620
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700621static bool HasMonitorEnterInstructions(const DexFile::CodeItem* const code_item) {
622 const Instruction* inst = Instruction::At(code_item->insns_);
623
624 uint32_t insns_size = code_item->insns_size_in_code_units_;
625 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
626 if (inst->Opcode() == Instruction::MONITOR_ENTER) {
627 return true;
628 }
629
630 dex_pc += inst->SizeInCodeUnits();
631 inst = inst->Next();
632 }
633
634 return false;
635}
636
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700637void MethodVerifier::FindLocksAtDexPc() {
Ian Rogers7b078e82014-09-10 14:44:24 -0700638 CHECK(monitor_enter_dex_pcs_ != nullptr);
639 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700640
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700641 // Quick check whether there are any monitor_enter instructions at all.
642 if (!HasMonitorEnterInstructions(code_item_)) {
643 return;
644 }
645
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700646 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
647 // verification. In practice, the phase we want relies on data structures set up by all the
648 // earlier passes, so we just run the full method verification and bail out early when we've
649 // got what we wanted.
650 Verify();
651}
652
Mathieu Chartiere401d142015-04-22 13:56:20 -0700653ArtField* MethodVerifier::FindAccessedFieldAtDexPc(ArtMethod* m, uint32_t dex_pc) {
654 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700655 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
656 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700657 MethodVerifier verifier(hs.Self(),
658 m->GetDexFile(),
659 dex_cache,
660 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100661 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700662 m->GetCodeItem(),
663 m->GetDexMethodIndex(),
664 m,
665 m->GetAccessFlags(),
666 true /* can_load_classes */,
667 true /* allow_soft_failures */,
668 false /* need_precise_constants */,
669 false /* verify_to_dump */,
670 true /* allow_thread_suspension */);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200671 return verifier.FindAccessedFieldAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200672}
673
Mathieu Chartierc7853442015-03-27 14:35:38 -0700674ArtField* MethodVerifier::FindAccessedFieldAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700675 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200676
677 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
678 // verification. In practice, the phase we want relies on data structures set up by all the
679 // earlier passes, so we just run the full method verification and bail out early when we've
680 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200681 bool success = Verify();
682 if (!success) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700683 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200684 }
685 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700686 if (register_line == nullptr) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700687 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200688 }
689 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
690 return GetQuickFieldAccess(inst, register_line);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200691}
692
Mathieu Chartiere401d142015-04-22 13:56:20 -0700693ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(ArtMethod* m, uint32_t dex_pc) {
694 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700695 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
696 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700697 MethodVerifier verifier(hs.Self(),
698 m->GetDexFile(),
699 dex_cache,
700 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100701 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700702 m->GetCodeItem(),
703 m->GetDexMethodIndex(),
704 m,
705 m->GetAccessFlags(),
706 true /* can_load_classes */,
707 true /* allow_soft_failures */,
708 false /* need_precise_constants */,
709 false /* verify_to_dump */,
710 true /* allow_thread_suspension */);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200711 return verifier.FindInvokedMethodAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200712}
713
Mathieu Chartiere401d142015-04-22 13:56:20 -0700714ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700715 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200716
717 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
718 // verification. In practice, the phase we want relies on data structures set up by all the
719 // earlier passes, so we just run the full method verification and bail out early when we've
720 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200721 bool success = Verify();
722 if (!success) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700723 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200724 }
725 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700726 if (register_line == nullptr) {
727 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200728 }
729 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
730 const bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Mathieu Chartier091d2382015-03-06 10:59:06 -0800731 return GetQuickInvokedMethod(inst, register_line, is_range, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200732}
733
Ian Rogersad0b3a32012-04-16 14:50:24 -0700734bool MethodVerifier::Verify() {
Andreas Gampee6215c02015-08-31 18:54:38 -0700735 // Some older code doesn't correctly mark constructors as such. Test for this case by looking at
736 // the name.
737 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
738 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
739 bool instance_constructor_by_name = strcmp("<init>", method_name) == 0;
740 bool static_constructor_by_name = strcmp("<clinit>", method_name) == 0;
741 bool constructor_by_name = instance_constructor_by_name || static_constructor_by_name;
742 // Check that only constructors are tagged, and check for bad code that doesn't tag constructors.
743 if ((method_access_flags_ & kAccConstructor) != 0) {
744 if (!constructor_by_name) {
745 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
746 << "method is marked as constructor, but not named accordingly";
jeffhaobdb76512011-09-07 11:43:16 -0700747 return false;
Andreas Gampee6215c02015-08-31 18:54:38 -0700748 }
749 is_constructor_ = true;
750 } else if (constructor_by_name) {
David Sehr709b0702016-10-13 09:12:37 -0700751 LOG(WARNING) << "Method " << dex_file_->PrettyMethod(dex_method_idx_)
Andreas Gampee6215c02015-08-31 18:54:38 -0700752 << " not marked as constructor.";
753 is_constructor_ = true;
754 }
755 // If it's a constructor, check whether IsStatic() matches the name.
756 // This should have been rejected by the dex file verifier. Only do in debug build.
757 if (kIsDebugBuild) {
758 if (IsConstructor()) {
759 if (IsStatic() ^ static_constructor_by_name) {
760 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
761 << "constructor name doesn't match static flag";
762 return false;
763 }
jeffhaobdb76512011-09-07 11:43:16 -0700764 }
jeffhaobdb76512011-09-07 11:43:16 -0700765 }
Andreas Gampee6215c02015-08-31 18:54:38 -0700766
767 // Methods may only have one of public/protected/private.
768 // This should have been rejected by the dex file verifier. Only do in debug build.
769 if (kIsDebugBuild) {
770 size_t access_mod_count =
771 (((method_access_flags_ & kAccPublic) == 0) ? 0 : 1) +
772 (((method_access_flags_ & kAccProtected) == 0) ? 0 : 1) +
773 (((method_access_flags_ & kAccPrivate) == 0) ? 0 : 1);
774 if (access_mod_count > 1) {
775 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "method has more than one of public/protected/private";
776 return false;
777 }
778 }
779
780 // If there aren't any instructions, make sure that's expected, then exit successfully.
781 if (code_item_ == nullptr) {
Andreas Gampe76ed99d2016-03-28 18:31:29 -0700782 // Only native or abstract methods may not have code.
783 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) {
784 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "zero-length code in concrete non-native method";
785 return false;
786 }
787
Andreas Gampee6215c02015-08-31 18:54:38 -0700788 // This should have been rejected by the dex file verifier. Only do in debug build.
Andreas Gampe76ed99d2016-03-28 18:31:29 -0700789 // Note: the above will also be rejected in the dex file verifier, starting in dex version 37.
Andreas Gampee6215c02015-08-31 18:54:38 -0700790 if (kIsDebugBuild) {
Andreas Gampee6215c02015-08-31 18:54:38 -0700791 if ((method_access_flags_ & kAccAbstract) != 0) {
792 // Abstract methods are not allowed to have the following flags.
793 static constexpr uint32_t kForbidden =
794 kAccPrivate |
795 kAccStatic |
796 kAccFinal |
797 kAccNative |
798 kAccStrict |
799 kAccSynchronized;
800 if ((method_access_flags_ & kForbidden) != 0) {
801 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
802 << "method can't be abstract and private/static/final/native/strict/synchronized";
803 return false;
804 }
805 }
David Brazdil15fc7292016-09-02 14:13:18 +0100806 if ((class_def_.GetJavaAccessFlags() & kAccInterface) != 0) {
Alex Lighteb7c1442015-08-31 13:17:42 -0700807 // Interface methods must be public and abstract (if default methods are disabled).
Neil Fuller9724c632016-01-07 15:42:47 +0000808 uint32_t kRequired = kAccPublic;
Alex Lighteb7c1442015-08-31 13:17:42 -0700809 if ((method_access_flags_ & kRequired) != kRequired) {
Neil Fuller9724c632016-01-07 15:42:47 +0000810 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface methods must be public";
Andreas Gampee6215c02015-08-31 18:54:38 -0700811 return false;
812 }
813 // In addition to the above, interface methods must not be protected.
814 static constexpr uint32_t kForbidden = kAccProtected;
815 if ((method_access_flags_ & kForbidden) != 0) {
816 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface methods can't be protected";
817 return false;
818 }
819 }
820 // We also don't allow constructors to be abstract or native.
821 if (IsConstructor()) {
822 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "constructors can't be abstract or native";
823 return false;
824 }
825 }
826 return true;
827 }
828
829 // This should have been rejected by the dex file verifier. Only do in debug build.
830 if (kIsDebugBuild) {
831 // When there's code, the method must not be native or abstract.
832 if ((method_access_flags_ & (kAccNative | kAccAbstract)) != 0) {
833 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "non-zero-length code in abstract or native method";
834 return false;
835 }
836
David Brazdil15fc7292016-09-02 14:13:18 +0100837 if ((class_def_.GetJavaAccessFlags() & kAccInterface) != 0) {
Alex Lighteb7c1442015-08-31 13:17:42 -0700838 // Interfaces may always have static initializers for their fields. If we are running with
839 // default methods enabled we also allow other public, static, non-final methods to have code.
840 // Otherwise that is the only type of method allowed.
Alex Light0db36b32015-10-27 14:06:34 -0700841 if (!(IsConstructor() && IsStatic())) {
Neil Fuller9724c632016-01-07 15:42:47 +0000842 if (IsInstanceConstructor()) {
843 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interfaces may not have non-static constructor";
844 return false;
845 } else if (method_access_flags_ & kAccFinal) {
846 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interfaces may not have final methods";
847 return false;
Alex Lightb55f1ac2016-04-12 15:50:55 -0700848 } else {
849 uint32_t access_flag_options = kAccPublic;
850 if (dex_file_->GetVersion() >= DexFile::kDefaultMethodsVersion) {
851 access_flag_options |= kAccPrivate;
852 }
853 if (!(method_access_flags_ & access_flag_options)) {
854 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
855 << "interfaces may not have protected or package-private members";
856 return false;
857 }
Alex Lighteb7c1442015-08-31 13:17:42 -0700858 }
Andreas Gampee6215c02015-08-31 18:54:38 -0700859 }
860 }
861
862 // Instance constructors must not be synchronized.
863 if (IsInstanceConstructor()) {
864 static constexpr uint32_t kForbidden = kAccSynchronized;
865 if ((method_access_flags_ & kForbidden) != 0) {
866 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "constructors can't be synchronized";
867 return false;
868 }
869 }
870 }
871
Ian Rogersd81871c2011-10-03 13:57:23 -0700872 // Sanity-check the register counts. ins + locals = registers, so make sure that ins <= registers.
873 if (code_item_->ins_size_ > code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700874 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad register counts (ins=" << code_item_->ins_size_
875 << " regs=" << code_item_->registers_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700876 return false;
jeffhaobdb76512011-09-07 11:43:16 -0700877 }
Alex Lighteb7c1442015-08-31 13:17:42 -0700878
Ian Rogersd81871c2011-10-03 13:57:23 -0700879 // Allocate and initialize an array to hold instruction data.
Mathieu Chartierde40d472015-10-15 17:47:48 -0700880 insn_flags_.reset(arena_.AllocArray<InstructionFlags>(code_item_->insns_size_in_code_units_));
881 DCHECK(insn_flags_ != nullptr);
882 std::uninitialized_fill_n(insn_flags_.get(),
883 code_item_->insns_size_in_code_units_,
884 InstructionFlags());
Ian Rogersd81871c2011-10-03 13:57:23 -0700885 // Run through the instructions and see if the width checks out.
886 bool result = ComputeWidthsAndCountOps();
887 // Flag instructions guarded by a "try" block and check exception handlers.
888 result = result && ScanTryCatchBlocks();
889 // Perform static instruction verification.
890 result = result && VerifyInstructions();
Ian Rogersad0b3a32012-04-16 14:50:24 -0700891 // Perform code-flow analysis and return.
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000892 result = result && VerifyCodeFlow();
Andreas Gampe53e32d12015-12-09 21:03:23 -0800893
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000894 return result;
jeffhaoba5ebb92011-08-25 17:24:37 -0700895}
896
Ian Rogers776ac1f2012-04-13 23:36:36 -0700897std::ostream& MethodVerifier::Fail(VerifyError error) {
Andreas Gampe0760a812015-08-26 17:12:51 -0700898 // Mark the error type as encountered.
Andreas Gampea727e372015-08-25 09:22:37 -0700899 encountered_failure_types_ |= static_cast<uint32_t>(error);
Andreas Gampe0760a812015-08-26 17:12:51 -0700900
Ian Rogersad0b3a32012-04-16 14:50:24 -0700901 switch (error) {
902 case VERIFY_ERROR_NO_CLASS:
903 case VERIFY_ERROR_NO_FIELD:
904 case VERIFY_ERROR_NO_METHOD:
905 case VERIFY_ERROR_ACCESS_CLASS:
906 case VERIFY_ERROR_ACCESS_FIELD:
907 case VERIFY_ERROR_ACCESS_METHOD:
Ian Rogers08f753d2012-08-24 14:35:25 -0700908 case VERIFY_ERROR_INSTANTIATION:
909 case VERIFY_ERROR_CLASS_CHANGE:
Igor Murashkin158f35c2015-06-10 15:55:30 -0700910 case VERIFY_ERROR_FORCE_INTERPRETER:
Andreas Gampea727e372015-08-25 09:22:37 -0700911 case VERIFY_ERROR_LOCKING:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800912 if (Runtime::Current()->IsAotCompiler() || !can_load_classes_) {
jeffhaofaf459e2012-08-31 15:32:47 -0700913 // If we're optimistically running verification at compile time, turn NO_xxx, ACCESS_xxx,
914 // class change and instantiation errors into soft verification errors so that we re-verify
915 // at runtime. We may fail to find or to agree on access because of not yet available class
916 // loaders, or class loaders that will differ at runtime. In these cases, we don't want to
917 // affect the soundness of the code being compiled. Instead, the generated code runs "slow
918 // paths" that dynamically perform the verification and cause the behavior to be that akin
919 // to an interpreter.
920 error = VERIFY_ERROR_BAD_CLASS_SOFT;
921 } else {
Jeff Haoa3faaf42013-09-03 19:07:00 -0700922 // If we fail again at runtime, mark that this instruction would throw and force this
923 // method to be executed using the interpreter with checks.
jeffhaofaf459e2012-08-31 15:32:47 -0700924 have_pending_runtime_throw_failure_ = true;
Andreas Gamped7f8d052015-03-12 11:05:47 -0700925
926 // We need to save the work_line if the instruction wasn't throwing before. Otherwise we'll
927 // try to merge garbage.
928 // Note: this assumes that Fail is called before we do any work_line modifications.
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700929 // Note: this can fail before we touch any instruction, for the signature of a method. So
930 // add a check.
931 if (work_insn_idx_ < DexFile::kDexNoIndex) {
932 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
933 const Instruction* inst = Instruction::At(insns);
934 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
Andreas Gamped7f8d052015-03-12 11:05:47 -0700935
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700936 if ((opcode_flags & Instruction::kThrow) == 0 && CurrentInsnFlags()->IsInTry()) {
937 saved_line_->CopyFromLine(work_line_.get());
938 }
Andreas Gamped7f8d052015-03-12 11:05:47 -0700939 }
jeffhaofaf459e2012-08-31 15:32:47 -0700940 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700941 break;
Andreas Gampea727e372015-08-25 09:22:37 -0700942
Ian Rogersad0b3a32012-04-16 14:50:24 -0700943 // Indication that verification should be retried at runtime.
944 case VERIFY_ERROR_BAD_CLASS_SOFT:
Jeff Haoee988952013-04-16 14:23:47 -0700945 if (!allow_soft_failures_) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700946 have_pending_hard_failure_ = true;
947 }
948 break;
Andreas Gampea727e372015-08-25 09:22:37 -0700949
jeffhaod5347e02012-03-22 17:25:05 -0700950 // Hard verification failures at compile time will still fail at runtime, so the class is
951 // marked as rejected to prevent it from being compiled.
Ian Rogersad0b3a32012-04-16 14:50:24 -0700952 case VERIFY_ERROR_BAD_CLASS_HARD: {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700953 have_pending_hard_failure_ = true;
Andreas Gampeebf850c2015-08-14 15:37:35 -0700954 if (VLOG_IS_ON(verifier) && kDumpRegLinesOnHardFailureIfVLOG) {
955 ScopedObjectAccess soa(Thread::Current());
956 std::ostringstream oss;
957 Dump(oss);
958 LOG(ERROR) << oss.str();
959 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700960 break;
Ian Rogers47a05882012-02-03 12:23:33 -0800961 }
962 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700963 failures_.push_back(error);
David Sehr709b0702016-10-13 09:12:37 -0700964 std::string location(StringPrintf("%s: [0x%X] ", dex_file_->PrettyMethod(dex_method_idx_).c_str(),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700965 work_insn_idx_));
Elena Sayapina78480ec2014-08-15 15:52:42 +0700966 std::ostringstream* failure_message = new std::ostringstream(location, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700967 failure_messages_.push_back(failure_message);
968 return *failure_message;
969}
970
Ian Rogers576ca0c2014-06-06 15:58:22 -0700971std::ostream& MethodVerifier::LogVerifyInfo() {
David Sehr709b0702016-10-13 09:12:37 -0700972 return info_messages_ << "VFY: " << dex_file_->PrettyMethod(dex_method_idx_)
Ian Rogers576ca0c2014-06-06 15:58:22 -0700973 << '[' << reinterpret_cast<void*>(work_insn_idx_) << "] : ";
974}
975
Ian Rogersad0b3a32012-04-16 14:50:24 -0700976void MethodVerifier::PrependToLastFailMessage(std::string prepend) {
977 size_t failure_num = failure_messages_.size();
978 DCHECK_NE(failure_num, 0U);
979 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
980 prepend += last_fail_message->str();
Elena Sayapina78480ec2014-08-15 15:52:42 +0700981 failure_messages_[failure_num - 1] = new std::ostringstream(prepend, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700982 delete last_fail_message;
983}
984
Vladimir Marko5c657fe2016-11-03 15:12:29 +0000985void MethodVerifier::AppendToLastFailMessage(const std::string& append) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700986 size_t failure_num = failure_messages_.size();
987 DCHECK_NE(failure_num, 0U);
988 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
989 (*last_fail_message) << append;
Ian Rogers47a05882012-02-03 12:23:33 -0800990}
991
Ian Rogers776ac1f2012-04-13 23:36:36 -0700992bool MethodVerifier::ComputeWidthsAndCountOps() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700993 const uint16_t* insns = code_item_->insns_;
994 size_t insns_size = code_item_->insns_size_in_code_units_;
995 const Instruction* inst = Instruction::At(insns);
jeffhaobdb76512011-09-07 11:43:16 -0700996 size_t new_instance_count = 0;
997 size_t monitor_enter_count = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -0700998 size_t dex_pc = 0;
jeffhaobdb76512011-09-07 11:43:16 -0700999
Ian Rogersd81871c2011-10-03 13:57:23 -07001000 while (dex_pc < insns_size) {
jeffhaobdb76512011-09-07 11:43:16 -07001001 Instruction::Code opcode = inst->Opcode();
Ian Rogersa9a82542013-10-04 11:17:26 -07001002 switch (opcode) {
1003 case Instruction::APUT_OBJECT:
1004 case Instruction::CHECK_CAST:
1005 has_check_casts_ = true;
1006 break;
1007 case Instruction::INVOKE_VIRTUAL:
1008 case Instruction::INVOKE_VIRTUAL_RANGE:
1009 case Instruction::INVOKE_INTERFACE:
1010 case Instruction::INVOKE_INTERFACE_RANGE:
1011 has_virtual_or_interface_invokes_ = true;
1012 break;
1013 case Instruction::MONITOR_ENTER:
1014 monitor_enter_count++;
1015 break;
1016 case Instruction::NEW_INSTANCE:
1017 new_instance_count++;
1018 break;
1019 default:
1020 break;
jeffhaobdb76512011-09-07 11:43:16 -07001021 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001022 size_t inst_size = inst->SizeInCodeUnits();
Mathieu Chartierde40d472015-10-15 17:47:48 -07001023 GetInstructionFlags(dex_pc).SetIsOpcode();
Ian Rogersd81871c2011-10-03 13:57:23 -07001024 dex_pc += inst_size;
Ian Rogers7b078e82014-09-10 14:44:24 -07001025 inst = inst->RelativeAt(inst_size);
jeffhaobdb76512011-09-07 11:43:16 -07001026 }
1027
Ian Rogersd81871c2011-10-03 13:57:23 -07001028 if (dex_pc != insns_size) {
jeffhaod5347e02012-03-22 17:25:05 -07001029 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "code did not end where expected ("
1030 << dex_pc << " vs. " << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001031 return false;
1032 }
1033
Ian Rogersd81871c2011-10-03 13:57:23 -07001034 new_instance_count_ = new_instance_count;
1035 monitor_enter_count_ = monitor_enter_count;
jeffhaobdb76512011-09-07 11:43:16 -07001036 return true;
1037}
1038
Ian Rogers776ac1f2012-04-13 23:36:36 -07001039bool MethodVerifier::ScanTryCatchBlocks() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001040 uint32_t tries_size = code_item_->tries_size_;
jeffhaobdb76512011-09-07 11:43:16 -07001041 if (tries_size == 0) {
1042 return true;
1043 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001044 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Ian Rogers0571d352011-11-03 19:51:38 -07001045 const DexFile::TryItem* tries = DexFile::GetTryItems(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001046
1047 for (uint32_t idx = 0; idx < tries_size; idx++) {
1048 const DexFile::TryItem* try_item = &tries[idx];
1049 uint32_t start = try_item->start_addr_;
1050 uint32_t end = start + try_item->insn_count_;
jeffhaobdb76512011-09-07 11:43:16 -07001051 if ((start >= end) || (start >= insns_size) || (end > insns_size)) {
jeffhaod5347e02012-03-22 17:25:05 -07001052 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad exception entry: startAddr=" << start
1053 << " endAddr=" << end << " (size=" << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001054 return false;
1055 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001056 if (!GetInstructionFlags(start).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001057 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1058 << "'try' block starts inside an instruction (" << start << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001059 return false;
1060 }
Ian Rogers7b078e82014-09-10 14:44:24 -07001061 uint32_t dex_pc = start;
1062 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
1063 while (dex_pc < end) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001064 GetInstructionFlags(dex_pc).SetInTry();
Ian Rogers7b078e82014-09-10 14:44:24 -07001065 size_t insn_size = inst->SizeInCodeUnits();
1066 dex_pc += insn_size;
1067 inst = inst->RelativeAt(insn_size);
jeffhaobdb76512011-09-07 11:43:16 -07001068 }
1069 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001070 // Iterate over each of the handlers to verify target addresses.
Ian Rogers13735952014-10-08 12:43:28 -07001071 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001072 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001073 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhaobdb76512011-09-07 11:43:16 -07001074 for (uint32_t idx = 0; idx < handlers_size; idx++) {
Ian Rogers0571d352011-11-03 19:51:38 -07001075 CatchHandlerIterator iterator(handlers_ptr);
1076 for (; iterator.HasNext(); iterator.Next()) {
1077 uint32_t dex_pc= iterator.GetHandlerAddress();
Mathieu Chartierde40d472015-10-15 17:47:48 -07001078 if (!GetInstructionFlags(dex_pc).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001079 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1080 << "exception handler starts at bad address (" << dex_pc << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001081 return false;
1082 }
Stephen Kyle9bc61992014-09-22 13:53:15 +01001083 if (!CheckNotMoveResult(code_item_->insns_, dex_pc)) {
1084 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1085 << "exception handler begins with move-result* (" << dex_pc << ")";
1086 return false;
1087 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001088 GetInstructionFlags(dex_pc).SetBranchTarget();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001089 // Ensure exception types are resolved so that they don't need resolution to be delivered,
1090 // unresolved exception types will be ignored by exception delivery
Andreas Gampea5b09a62016-11-17 15:21:22 -08001091 if (iterator.GetHandlerTypeIndex().IsValid()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001092 mirror::Class* exception_type = linker->ResolveType(*dex_file_,
1093 iterator.GetHandlerTypeIndex(),
Mathieu Chartierbf99f772014-08-23 16:37:27 -07001094 dex_cache_, class_loader_);
Ian Rogers7b078e82014-09-10 14:44:24 -07001095 if (exception_type == nullptr) {
1096 DCHECK(self_->IsExceptionPending());
1097 self_->ClearException();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001098 }
1099 }
jeffhaobdb76512011-09-07 11:43:16 -07001100 }
Ian Rogers0571d352011-11-03 19:51:38 -07001101 handlers_ptr = iterator.EndDataPointer();
jeffhaobdb76512011-09-07 11:43:16 -07001102 }
jeffhaobdb76512011-09-07 11:43:16 -07001103 return true;
1104}
1105
Ian Rogers776ac1f2012-04-13 23:36:36 -07001106bool MethodVerifier::VerifyInstructions() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001107 const Instruction* inst = Instruction::At(code_item_->insns_);
jeffhaoba5ebb92011-08-25 17:24:37 -07001108
Ian Rogers0c7abda2012-09-19 13:33:42 -07001109 /* Flag the start of the method as a branch target, and a GC point due to stack overflow errors */
Mathieu Chartierde40d472015-10-15 17:47:48 -07001110 GetInstructionFlags(0).SetBranchTarget();
1111 GetInstructionFlags(0).SetCompileTimeInfoPoint();
Ian Rogersd81871c2011-10-03 13:57:23 -07001112
1113 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Andreas Gampe11895162017-05-15 10:25:02 -07001114 bool allow_runtime_only_instructions = !Runtime::Current()->IsAotCompiler() || verify_to_dump_;
Elliott Hughesb25c3f62012-03-26 16:35:06 -07001115 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
Andreas Gampe11895162017-05-15 10:25:02 -07001116 if (!VerifyInstruction(inst, dex_pc, allow_runtime_only_instructions)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001117 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001118 return false;
1119 }
1120 /* Flag instructions that are garbage collection points */
Sameer Abu Asal02c42232013-04-30 12:09:45 -07001121 // All invoke points are marked as "Throw" points already.
1122 // We are relying on this to also count all the invokes as interesting.
Vladimir Marko8b858e12014-11-27 14:52:37 +00001123 if (inst->IsBranch()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001124 GetInstructionFlags(dex_pc).SetCompileTimeInfoPoint();
Vladimir Marko8b858e12014-11-27 14:52:37 +00001125 // The compiler also needs safepoints for fall-through to loop heads.
1126 // Such a loop head must be a target of a branch.
1127 int32_t offset = 0;
1128 bool cond, self_ok;
1129 bool target_ok = GetBranchOffset(dex_pc, &offset, &cond, &self_ok);
1130 DCHECK(target_ok);
Mathieu Chartierde40d472015-10-15 17:47:48 -07001131 GetInstructionFlags(dex_pc + offset).SetCompileTimeInfoPoint();
Vladimir Marko8b858e12014-11-27 14:52:37 +00001132 } else if (inst->IsSwitch() || inst->IsThrow()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001133 GetInstructionFlags(dex_pc).SetCompileTimeInfoPoint();
Ian Rogersb8c78592013-07-25 23:52:52 +00001134 } else if (inst->IsReturn()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001135 GetInstructionFlags(dex_pc).SetCompileTimeInfoPointAndReturn();
Ian Rogersd81871c2011-10-03 13:57:23 -07001136 }
1137 dex_pc += inst->SizeInCodeUnits();
1138 inst = inst->Next();
1139 }
1140 return true;
1141}
1142
Andreas Gampe11895162017-05-15 10:25:02 -07001143bool MethodVerifier::VerifyInstruction(const Instruction* inst,
1144 uint32_t code_offset,
1145 bool allow_runtime_only_instructions) {
Andreas Gampee05cc662017-05-15 10:17:30 -07001146 if (Instruction::kHaveExperimentalInstructions && UNLIKELY(inst->IsExperimental())) {
Igor Murashkin4d7b75f2015-07-21 17:03:36 -07001147 // Experimental instructions don't yet have verifier support implementation.
1148 // While it is possible to use them by themselves, when we try to use stable instructions
1149 // with a virtual register that was created by an experimental instruction,
1150 // the data flow analysis will fail.
1151 Fail(VERIFY_ERROR_FORCE_INTERPRETER)
1152 << "experimental instruction is not supported by verifier; skipping verification";
1153 have_pending_experimental_failure_ = true;
1154 return false;
1155 }
1156
Ian Rogersd81871c2011-10-03 13:57:23 -07001157 bool result = true;
1158 switch (inst->GetVerifyTypeArgumentA()) {
1159 case Instruction::kVerifyRegA:
Ian Rogers29a26482014-05-02 15:27:29 -07001160 result = result && CheckRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -07001161 break;
1162 case Instruction::kVerifyRegAWide:
Ian Rogers29a26482014-05-02 15:27:29 -07001163 result = result && CheckWideRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -07001164 break;
1165 }
1166 switch (inst->GetVerifyTypeArgumentB()) {
1167 case Instruction::kVerifyRegB:
Ian Rogers29a26482014-05-02 15:27:29 -07001168 result = result && CheckRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001169 break;
1170 case Instruction::kVerifyRegBField:
Ian Rogers29a26482014-05-02 15:27:29 -07001171 result = result && CheckFieldIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001172 break;
1173 case Instruction::kVerifyRegBMethod:
Ian Rogers29a26482014-05-02 15:27:29 -07001174 result = result && CheckMethodIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001175 break;
1176 case Instruction::kVerifyRegBNewInstance:
Andreas Gampea5b09a62016-11-17 15:21:22 -08001177 result = result && CheckNewInstance(dex::TypeIndex(inst->VRegB()));
Ian Rogersd81871c2011-10-03 13:57:23 -07001178 break;
1179 case Instruction::kVerifyRegBString:
Ian Rogers29a26482014-05-02 15:27:29 -07001180 result = result && CheckStringIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001181 break;
1182 case Instruction::kVerifyRegBType:
Andreas Gampea5b09a62016-11-17 15:21:22 -08001183 result = result && CheckTypeIndex(dex::TypeIndex(inst->VRegB()));
Ian Rogersd81871c2011-10-03 13:57:23 -07001184 break;
1185 case Instruction::kVerifyRegBWide:
Ian Rogers29a26482014-05-02 15:27:29 -07001186 result = result && CheckWideRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001187 break;
1188 }
1189 switch (inst->GetVerifyTypeArgumentC()) {
1190 case Instruction::kVerifyRegC:
Ian Rogers29a26482014-05-02 15:27:29 -07001191 result = result && CheckRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001192 break;
1193 case Instruction::kVerifyRegCField:
Ian Rogers29a26482014-05-02 15:27:29 -07001194 result = result && CheckFieldIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001195 break;
1196 case Instruction::kVerifyRegCNewArray:
Andreas Gampea5b09a62016-11-17 15:21:22 -08001197 result = result && CheckNewArray(dex::TypeIndex(inst->VRegC()));
Ian Rogersd81871c2011-10-03 13:57:23 -07001198 break;
1199 case Instruction::kVerifyRegCType:
Andreas Gampea5b09a62016-11-17 15:21:22 -08001200 result = result && CheckTypeIndex(dex::TypeIndex(inst->VRegC()));
Ian Rogersd81871c2011-10-03 13:57:23 -07001201 break;
1202 case Instruction::kVerifyRegCWide:
Ian Rogers29a26482014-05-02 15:27:29 -07001203 result = result && CheckWideRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001204 break;
1205 }
Orion Hodsoncfa325e2016-10-13 10:25:54 +01001206 switch (inst->GetVerifyTypeArgumentH()) {
1207 case Instruction::kVerifyRegHPrototype:
1208 result = result && CheckPrototypeIndex(inst->VRegH());
1209 break;
1210 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001211 switch (inst->GetVerifyExtraFlags()) {
1212 case Instruction::kVerifyArrayData:
1213 result = result && CheckArrayData(code_offset);
1214 break;
1215 case Instruction::kVerifyBranchTarget:
1216 result = result && CheckBranchTarget(code_offset);
1217 break;
1218 case Instruction::kVerifySwitchTargets:
1219 result = result && CheckSwitchTargets(code_offset);
1220 break;
Andreas Gampec3314312014-06-19 18:13:29 -07001221 case Instruction::kVerifyVarArgNonZero:
1222 // Fall-through.
Ian Rogers29a26482014-05-02 15:27:29 -07001223 case Instruction::kVerifyVarArg: {
Taiju Tsuiki29498a22015-04-13 14:21:00 +09001224 // Instructions that can actually return a negative value shouldn't have this flag.
1225 uint32_t v_a = dchecked_integral_cast<uint32_t>(inst->VRegA());
1226 if ((inst->GetVerifyExtraFlags() == Instruction::kVerifyVarArgNonZero && v_a == 0) ||
1227 v_a > Instruction::kMaxVarArgRegs) {
1228 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << v_a << ") in "
Andreas Gampec3314312014-06-19 18:13:29 -07001229 "non-range invoke";
1230 return false;
1231 }
Taiju Tsuiki29498a22015-04-13 14:21:00 +09001232
Ian Rogers29a26482014-05-02 15:27:29 -07001233 uint32_t args[Instruction::kMaxVarArgRegs];
1234 inst->GetVarArgs(args);
Taiju Tsuiki29498a22015-04-13 14:21:00 +09001235 result = result && CheckVarArgRegs(v_a, args);
Ian Rogersd81871c2011-10-03 13:57:23 -07001236 break;
Ian Rogers29a26482014-05-02 15:27:29 -07001237 }
Andreas Gampec3314312014-06-19 18:13:29 -07001238 case Instruction::kVerifyVarArgRangeNonZero:
1239 // Fall-through.
Ian Rogersd81871c2011-10-03 13:57:23 -07001240 case Instruction::kVerifyVarArgRange:
Andreas Gampec3314312014-06-19 18:13:29 -07001241 if (inst->GetVerifyExtraFlags() == Instruction::kVerifyVarArgRangeNonZero &&
1242 inst->VRegA() <= 0) {
1243 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << inst->VRegA() << ") in "
1244 "range invoke";
1245 return false;
1246 }
Ian Rogers29a26482014-05-02 15:27:29 -07001247 result = result && CheckVarArgRangeRegs(inst->VRegA(), inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001248 break;
1249 case Instruction::kVerifyError:
jeffhaod5347e02012-03-22 17:25:05 -07001250 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected opcode " << inst->Name();
Ian Rogersd81871c2011-10-03 13:57:23 -07001251 result = false;
1252 break;
1253 }
Andreas Gampe11895162017-05-15 10:25:02 -07001254 if (!allow_runtime_only_instructions && inst->GetVerifyIsRuntimeOnly()) {
Ian Rogers5fb22a92014-06-13 10:31:28 -07001255 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "opcode only expected at runtime " << inst->Name();
1256 result = false;
1257 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001258 return result;
1259}
1260
Ian Rogers7b078e82014-09-10 14:44:24 -07001261inline bool MethodVerifier::CheckRegisterIndex(uint32_t idx) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001262 if (UNLIKELY(idx >= code_item_->registers_size_)) {
jeffhaod5347e02012-03-22 17:25:05 -07001263 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register index out of range (" << idx << " >= "
1264 << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001265 return false;
1266 }
1267 return true;
1268}
1269
Ian Rogers7b078e82014-09-10 14:44:24 -07001270inline bool MethodVerifier::CheckWideRegisterIndex(uint32_t idx) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001271 if (UNLIKELY(idx + 1 >= code_item_->registers_size_)) {
jeffhaod5347e02012-03-22 17:25:05 -07001272 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "wide register index out of range (" << idx
1273 << "+1 >= " << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001274 return false;
1275 }
1276 return true;
1277}
1278
Ian Rogers7b078e82014-09-10 14:44:24 -07001279inline bool MethodVerifier::CheckFieldIndex(uint32_t idx) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001280 if (UNLIKELY(idx >= dex_file_->GetHeader().field_ids_size_)) {
jeffhaod5347e02012-03-22 17:25:05 -07001281 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad field index " << idx << " (max "
1282 << dex_file_->GetHeader().field_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001283 return false;
1284 }
1285 return true;
1286}
1287
Ian Rogers7b078e82014-09-10 14:44:24 -07001288inline bool MethodVerifier::CheckMethodIndex(uint32_t idx) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001289 if (UNLIKELY(idx >= dex_file_->GetHeader().method_ids_size_)) {
jeffhaod5347e02012-03-22 17:25:05 -07001290 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad method index " << idx << " (max "
1291 << dex_file_->GetHeader().method_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001292 return false;
1293 }
1294 return true;
1295}
1296
Andreas Gampea5b09a62016-11-17 15:21:22 -08001297inline bool MethodVerifier::CheckNewInstance(dex::TypeIndex idx) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001298 if (UNLIKELY(idx.index_ >= dex_file_->GetHeader().type_ids_size_)) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001299 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx.index_ << " (max "
jeffhaod5347e02012-03-22 17:25:05 -07001300 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001301 return false;
1302 }
1303 // We don't need the actual class, just a pointer to the class name.
Ian Rogers0571d352011-11-03 19:51:38 -07001304 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Andreas Gampe29e81422017-05-15 16:29:32 -07001305 if (UNLIKELY(descriptor[0] != 'L')) {
jeffhaod5347e02012-03-22 17:25:05 -07001306 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "can't call new-instance on type '" << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001307 return false;
Andreas Gampe29e81422017-05-15 16:29:32 -07001308 } else if (UNLIKELY(strcmp(descriptor, "Ljava/lang/Class;") == 0)) {
Aart Bikdb698f12016-07-25 17:52:22 -07001309 // An unlikely new instance on Class is not allowed. Fall back to interpreter to ensure an
1310 // exception is thrown when this statement is executed (compiled code would not do that).
1311 Fail(VERIFY_ERROR_INSTANTIATION);
Ian Rogersd81871c2011-10-03 13:57:23 -07001312 }
1313 return true;
1314}
1315
Orion Hodsoncfa325e2016-10-13 10:25:54 +01001316inline bool MethodVerifier::CheckPrototypeIndex(uint32_t idx) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001317 if (UNLIKELY(idx >= dex_file_->GetHeader().proto_ids_size_)) {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01001318 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad prototype index " << idx << " (max "
1319 << dex_file_->GetHeader().proto_ids_size_ << ")";
1320 return false;
1321 }
1322 return true;
1323}
1324
Ian Rogers7b078e82014-09-10 14:44:24 -07001325inline bool MethodVerifier::CheckStringIndex(uint32_t idx) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001326 if (UNLIKELY(idx >= dex_file_->GetHeader().string_ids_size_)) {
jeffhaod5347e02012-03-22 17:25:05 -07001327 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad string index " << idx << " (max "
1328 << dex_file_->GetHeader().string_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001329 return false;
1330 }
1331 return true;
1332}
1333
Andreas Gampea5b09a62016-11-17 15:21:22 -08001334inline bool MethodVerifier::CheckTypeIndex(dex::TypeIndex idx) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001335 if (UNLIKELY(idx.index_ >= dex_file_->GetHeader().type_ids_size_)) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001336 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx.index_ << " (max "
jeffhaod5347e02012-03-22 17:25:05 -07001337 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001338 return false;
1339 }
1340 return true;
1341}
1342
Andreas Gampea5b09a62016-11-17 15:21:22 -08001343bool MethodVerifier::CheckNewArray(dex::TypeIndex idx) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001344 if (UNLIKELY(idx.index_ >= dex_file_->GetHeader().type_ids_size_)) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001345 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx.index_ << " (max "
jeffhaod5347e02012-03-22 17:25:05 -07001346 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001347 return false;
1348 }
1349 int bracket_count = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001350 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -07001351 const char* cp = descriptor;
1352 while (*cp++ == '[') {
1353 bracket_count++;
1354 }
Andreas Gampe29e81422017-05-15 16:29:32 -07001355 if (UNLIKELY(bracket_count == 0)) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001356 /* The given class must be an array type. */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001357 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1358 << "can't new-array class '" << descriptor << "' (not an array)";
Ian Rogersd81871c2011-10-03 13:57:23 -07001359 return false;
Andreas Gampe29e81422017-05-15 16:29:32 -07001360 } else if (UNLIKELY(bracket_count > 255)) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001361 /* It is illegal to create an array of more than 255 dimensions. */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001362 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1363 << "can't new-array class '" << descriptor << "' (exceeds limit)";
Ian Rogersd81871c2011-10-03 13:57:23 -07001364 return false;
1365 }
1366 return true;
1367}
1368
Ian Rogers776ac1f2012-04-13 23:36:36 -07001369bool MethodVerifier::CheckArrayData(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001370 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
1371 const uint16_t* insns = code_item_->insns_ + cur_offset;
1372 const uint16_t* array_data;
1373 int32_t array_data_offset;
1374
1375 DCHECK_LT(cur_offset, insn_count);
1376 /* make sure the start of the array data table is in range */
Andreas Gampe53de99c2015-08-17 13:43:55 -07001377 array_data_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
Andreas Gampe29e81422017-05-15 16:29:32 -07001378 if (UNLIKELY(static_cast<int32_t>(cur_offset) + array_data_offset < 0 ||
1379 cur_offset + array_data_offset + 2 >= insn_count)) {
jeffhaod5347e02012-03-22 17:25:05 -07001380 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -07001381 << ", data offset " << array_data_offset
1382 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -07001383 return false;
1384 }
1385 /* offset to array data table is a relative branch-style offset */
1386 array_data = insns + array_data_offset;
Andreas Gampe57c47582015-07-01 22:05:59 -07001387 // Make sure the table is at an even dex pc, that is, 32-bit aligned.
Andreas Gampe29e81422017-05-15 16:29:32 -07001388 if (UNLIKELY(!IsAligned<4>(array_data))) {
jeffhaod5347e02012-03-22 17:25:05 -07001389 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned array data table: at " << cur_offset
1390 << ", data offset " << array_data_offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001391 return false;
1392 }
Andreas Gampe57c47582015-07-01 22:05:59 -07001393 // Make sure the array-data is marked as an opcode. This ensures that it was reached when
1394 // traversing the code item linearly. It is an approximation for a by-spec padding value.
Andreas Gampe29e81422017-05-15 16:29:32 -07001395 if (UNLIKELY(!GetInstructionFlags(cur_offset + array_data_offset).IsOpcode())) {
Andreas Gampe57c47582015-07-01 22:05:59 -07001396 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array data table at " << cur_offset
1397 << ", data offset " << array_data_offset
1398 << " not correctly visited, probably bad padding.";
1399 return false;
1400 }
1401
Ian Rogersd81871c2011-10-03 13:57:23 -07001402 uint32_t value_width = array_data[1];
Elliott Hughes398f64b2012-03-26 18:05:48 -07001403 uint32_t value_count = *reinterpret_cast<const uint32_t*>(&array_data[2]);
Ian Rogersd81871c2011-10-03 13:57:23 -07001404 uint32_t table_size = 4 + (value_width * value_count + 1) / 2;
1405 /* make sure the end of the switch is in range */
Andreas Gampe29e81422017-05-15 16:29:32 -07001406 if (UNLIKELY(cur_offset + array_data_offset + table_size > insn_count)) {
jeffhaod5347e02012-03-22 17:25:05 -07001407 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data end: at " << cur_offset
1408 << ", data offset " << array_data_offset << ", end "
1409 << cur_offset + array_data_offset + table_size
1410 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -07001411 return false;
1412 }
1413 return true;
1414}
1415
Ian Rogers776ac1f2012-04-13 23:36:36 -07001416bool MethodVerifier::CheckBranchTarget(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001417 int32_t offset;
1418 bool isConditional, selfOkay;
1419 if (!GetBranchOffset(cur_offset, &offset, &isConditional, &selfOkay)) {
1420 return false;
1421 }
Andreas Gampe29e81422017-05-15 16:29:32 -07001422 if (UNLIKELY(!selfOkay && offset == 0)) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001423 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch offset of zero not allowed at"
1424 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -07001425 return false;
1426 }
Elliott Hughes81ff3182012-03-23 20:35:56 -07001427 // Check for 32-bit overflow. This isn't strictly necessary if we can depend on the runtime
1428 // to have identical "wrap-around" behavior, but it's unwise to depend on that.
Andreas Gampe29e81422017-05-15 16:29:32 -07001429 if (UNLIKELY(((int64_t) cur_offset + (int64_t) offset) != (int64_t) (cur_offset + offset))) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001430 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch target overflow "
1431 << reinterpret_cast<void*>(cur_offset) << " +" << offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001432 return false;
1433 }
1434 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
1435 int32_t abs_offset = cur_offset + offset;
Andreas Gampe29e81422017-05-15 16:29:32 -07001436 if (UNLIKELY(abs_offset < 0 ||
1437 (uint32_t) abs_offset >= insn_count ||
1438 !GetInstructionFlags(abs_offset).IsOpcode())) {
jeffhaod5347e02012-03-22 17:25:05 -07001439 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid branch target " << offset << " (-> "
Elliott Hughes398f64b2012-03-26 18:05:48 -07001440 << reinterpret_cast<void*>(abs_offset) << ") at "
1441 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -07001442 return false;
1443 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001444 GetInstructionFlags(abs_offset).SetBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -07001445 return true;
1446}
1447
Ian Rogers776ac1f2012-04-13 23:36:36 -07001448bool MethodVerifier::GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
Ian Rogersd81871c2011-10-03 13:57:23 -07001449 bool* selfOkay) {
1450 const uint16_t* insns = code_item_->insns_ + cur_offset;
1451 *pConditional = false;
1452 *selfOkay = false;
jeffhaoba5ebb92011-08-25 17:24:37 -07001453 switch (*insns & 0xff) {
1454 case Instruction::GOTO:
1455 *pOffset = ((int16_t) *insns) >> 8;
jeffhaoba5ebb92011-08-25 17:24:37 -07001456 break;
1457 case Instruction::GOTO_32:
1458 *pOffset = insns[1] | (((uint32_t) insns[2]) << 16);
jeffhaoba5ebb92011-08-25 17:24:37 -07001459 *selfOkay = true;
1460 break;
1461 case Instruction::GOTO_16:
1462 *pOffset = (int16_t) insns[1];
jeffhaoba5ebb92011-08-25 17:24:37 -07001463 break;
1464 case Instruction::IF_EQ:
1465 case Instruction::IF_NE:
1466 case Instruction::IF_LT:
1467 case Instruction::IF_GE:
1468 case Instruction::IF_GT:
1469 case Instruction::IF_LE:
1470 case Instruction::IF_EQZ:
1471 case Instruction::IF_NEZ:
1472 case Instruction::IF_LTZ:
1473 case Instruction::IF_GEZ:
1474 case Instruction::IF_GTZ:
1475 case Instruction::IF_LEZ:
1476 *pOffset = (int16_t) insns[1];
1477 *pConditional = true;
jeffhaoba5ebb92011-08-25 17:24:37 -07001478 break;
1479 default:
1480 return false;
jeffhaoba5ebb92011-08-25 17:24:37 -07001481 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001482 return true;
1483}
1484
Ian Rogers776ac1f2012-04-13 23:36:36 -07001485bool MethodVerifier::CheckSwitchTargets(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001486 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001487 DCHECK_LT(cur_offset, insn_count);
Ian Rogersd81871c2011-10-03 13:57:23 -07001488 const uint16_t* insns = code_item_->insns_ + cur_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001489 /* make sure the start of the switch is in range */
Andreas Gampe53de99c2015-08-17 13:43:55 -07001490 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
Andreas Gampe29e81422017-05-15 16:29:32 -07001491 if (UNLIKELY(static_cast<int32_t>(cur_offset) + switch_offset < 0 ||
1492 cur_offset + switch_offset + 2 > insn_count)) {
jeffhaod5347e02012-03-22 17:25:05 -07001493 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -07001494 << ", switch offset " << switch_offset
1495 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001496 return false;
1497 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001498 /* offset to switch table is a relative branch-style offset */
Ian Rogersd81871c2011-10-03 13:57:23 -07001499 const uint16_t* switch_insns = insns + switch_offset;
Andreas Gampe57c47582015-07-01 22:05:59 -07001500 // Make sure the table is at an even dex pc, that is, 32-bit aligned.
Andreas Gampe29e81422017-05-15 16:29:32 -07001501 if (UNLIKELY(!IsAligned<4>(switch_insns))) {
jeffhaod5347e02012-03-22 17:25:05 -07001502 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned switch table: at " << cur_offset
1503 << ", switch offset " << switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001504 return false;
1505 }
Andreas Gampe57c47582015-07-01 22:05:59 -07001506 // Make sure the switch data is marked as an opcode. This ensures that it was reached when
1507 // traversing the code item linearly. It is an approximation for a by-spec padding value.
Andreas Gampe29e81422017-05-15 16:29:32 -07001508 if (UNLIKELY(!GetInstructionFlags(cur_offset + switch_offset).IsOpcode())) {
Andreas Gampe57c47582015-07-01 22:05:59 -07001509 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "switch table at " << cur_offset
1510 << ", switch offset " << switch_offset
1511 << " not correctly visited, probably bad padding.";
1512 return false;
1513 }
1514
David Brazdil5469d342015-09-25 16:57:53 +01001515 bool is_packed_switch = (*insns & 0xff) == Instruction::PACKED_SWITCH;
1516
Ian Rogersd81871c2011-10-03 13:57:23 -07001517 uint32_t switch_count = switch_insns[1];
David Brazdil5469d342015-09-25 16:57:53 +01001518 int32_t targets_offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001519 uint16_t expected_signature;
David Brazdil5469d342015-09-25 16:57:53 +01001520 if (is_packed_switch) {
jeffhaoba5ebb92011-08-25 17:24:37 -07001521 /* 0=sig, 1=count, 2/3=firstKey */
1522 targets_offset = 4;
jeffhaoba5ebb92011-08-25 17:24:37 -07001523 expected_signature = Instruction::kPackedSwitchSignature;
1524 } else {
1525 /* 0=sig, 1=count, 2..count*2 = keys */
jeffhaoba5ebb92011-08-25 17:24:37 -07001526 targets_offset = 2 + 2 * switch_count;
1527 expected_signature = Instruction::kSparseSwitchSignature;
1528 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001529 uint32_t table_size = targets_offset + switch_count * 2;
Andreas Gampe29e81422017-05-15 16:29:32 -07001530 if (UNLIKELY(switch_insns[0] != expected_signature)) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001531 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1532 << StringPrintf("wrong signature for switch table (%x, wanted %x)",
1533 switch_insns[0], expected_signature);
jeffhaoba5ebb92011-08-25 17:24:37 -07001534 return false;
1535 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001536 /* make sure the end of the switch is in range */
Andreas Gampe29e81422017-05-15 16:29:32 -07001537 if (UNLIKELY(cur_offset + switch_offset + table_size > (uint32_t) insn_count)) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001538 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch end: at " << cur_offset
1539 << ", switch offset " << switch_offset
1540 << ", end " << (cur_offset + switch_offset + table_size)
jeffhaod5347e02012-03-22 17:25:05 -07001541 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001542 return false;
1543 }
David Brazdil5469d342015-09-25 16:57:53 +01001544
1545 constexpr int32_t keys_offset = 2;
1546 if (switch_count > 1) {
1547 if (is_packed_switch) {
1548 /* for a packed switch, verify that keys do not overflow int32 */
1549 int32_t first_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1550 int32_t max_first_key =
1551 std::numeric_limits<int32_t>::max() - (static_cast<int32_t>(switch_count) - 1);
Andreas Gampe29e81422017-05-15 16:29:32 -07001552 if (UNLIKELY(first_key > max_first_key)) {
David Brazdil5469d342015-09-25 16:57:53 +01001553 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid packed switch: first_key=" << first_key
1554 << ", switch_count=" << switch_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001555 return false;
1556 }
David Brazdil5469d342015-09-25 16:57:53 +01001557 } else {
1558 /* for a sparse switch, verify the keys are in ascending order */
1559 int32_t last_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1560 for (uint32_t targ = 1; targ < switch_count; targ++) {
1561 int32_t key =
1562 static_cast<int32_t>(switch_insns[keys_offset + targ * 2]) |
1563 static_cast<int32_t>(switch_insns[keys_offset + targ * 2 + 1] << 16);
Andreas Gampe29e81422017-05-15 16:29:32 -07001564 if (UNLIKELY(key <= last_key)) {
David Brazdil5469d342015-09-25 16:57:53 +01001565 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid sparse switch: last key=" << last_key
1566 << ", this=" << key;
1567 return false;
1568 }
1569 last_key = key;
1570 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001571 }
1572 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001573 /* verify each switch target */
Ian Rogersd81871c2011-10-03 13:57:23 -07001574 for (uint32_t targ = 0; targ < switch_count; targ++) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07001575 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
1576 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07001577 int32_t abs_offset = cur_offset + offset;
Andreas Gampe29e81422017-05-15 16:29:32 -07001578 if (UNLIKELY(abs_offset < 0 ||
1579 abs_offset >= static_cast<int32_t>(insn_count) ||
1580 !GetInstructionFlags(abs_offset).IsOpcode())) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001581 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch target " << offset
1582 << " (-> " << reinterpret_cast<void*>(abs_offset) << ") at "
1583 << reinterpret_cast<void*>(cur_offset)
1584 << "[" << targ << "]";
jeffhaoba5ebb92011-08-25 17:24:37 -07001585 return false;
1586 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001587 GetInstructionFlags(abs_offset).SetBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -07001588 }
1589 return true;
1590}
1591
Ian Rogers776ac1f2012-04-13 23:36:36 -07001592bool MethodVerifier::CheckVarArgRegs(uint32_t vA, uint32_t arg[]) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001593 uint16_t registers_size = code_item_->registers_size_;
1594 for (uint32_t idx = 0; idx < vA; idx++) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001595 if (UNLIKELY(arg[idx] >= registers_size)) {
jeffhaod5347e02012-03-22 17:25:05 -07001596 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index (" << arg[idx]
1597 << ") in non-range invoke (>= " << registers_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001598 return false;
1599 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001600 }
1601
1602 return true;
1603}
1604
Ian Rogers776ac1f2012-04-13 23:36:36 -07001605bool MethodVerifier::CheckVarArgRangeRegs(uint32_t vA, uint32_t vC) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001606 uint16_t registers_size = code_item_->registers_size_;
1607 // vA/vC are unsigned 8-bit/16-bit quantities for /range instructions, so there's no risk of
1608 // integer overflow when adding them here.
Andreas Gampe29e81422017-05-15 16:29:32 -07001609 if (UNLIKELY(vA + vC > registers_size)) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001610 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index " << vA << "+" << vC
1611 << " in range invoke (> " << registers_size << ")";
jeffhaoba5ebb92011-08-25 17:24:37 -07001612 return false;
1613 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001614 return true;
1615}
1616
Ian Rogers776ac1f2012-04-13 23:36:36 -07001617bool MethodVerifier::VerifyCodeFlow() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001618 uint16_t registers_size = code_item_->registers_size_;
1619 uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaobdb76512011-09-07 11:43:16 -07001620
Ian Rogersd81871c2011-10-03 13:57:23 -07001621 /* Create and initialize table holding register status */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001622 reg_table_.Init(kTrackCompilerInterestPoints,
1623 insn_flags_.get(),
1624 insns_size,
1625 registers_size,
1626 this);
Sameer Abu Asal02c42232013-04-30 12:09:45 -07001627
Ian Rogersd0fbd852013-09-24 18:17:04 -07001628 work_line_.reset(RegisterLine::Create(registers_size, this));
1629 saved_line_.reset(RegisterLine::Create(registers_size, this));
jeffhaobdb76512011-09-07 11:43:16 -07001630
Ian Rogersd81871c2011-10-03 13:57:23 -07001631 /* Initialize register types of method arguments. */
1632 if (!SetTypesFromSignature()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001633 DCHECK_NE(failures_.size(), 0U);
1634 std::string prepend("Bad signature in ");
David Sehr709b0702016-10-13 09:12:37 -07001635 prepend += dex_file_->PrettyMethod(dex_method_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001636 PrependToLastFailMessage(prepend);
Ian Rogersd81871c2011-10-03 13:57:23 -07001637 return false;
1638 }
Andreas Gamped5ad72f2015-06-26 17:33:47 -07001639 // We may have a runtime failure here, clear.
1640 have_pending_runtime_throw_failure_ = false;
1641
Ian Rogersd81871c2011-10-03 13:57:23 -07001642 /* Perform code flow verification. */
1643 if (!CodeFlowVerifyMethod()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001644 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001645 return false;
jeffhaobdb76512011-09-07 11:43:16 -07001646 }
jeffhaobdb76512011-09-07 11:43:16 -07001647 return true;
1648}
1649
Ian Rogersad0b3a32012-04-16 14:50:24 -07001650std::ostream& MethodVerifier::DumpFailures(std::ostream& os) {
1651 DCHECK_EQ(failures_.size(), failure_messages_.size());
Jeff Hao4137f482013-11-22 11:44:57 -08001652 for (size_t i = 0; i < failures_.size(); ++i) {
1653 os << failure_messages_[i]->str() << "\n";
Ian Rogersad0b3a32012-04-16 14:50:24 -07001654 }
1655 return os;
1656}
1657
Ian Rogers776ac1f2012-04-13 23:36:36 -07001658void MethodVerifier::Dump(std::ostream& os) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001659 VariableIndentationOutputStream vios(&os);
1660 Dump(&vios);
1661}
1662
1663void MethodVerifier::Dump(VariableIndentationOutputStream* vios) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001664 if (code_item_ == nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001665 vios->Stream() << "Native method\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001666 return;
jeffhaobdb76512011-09-07 11:43:16 -07001667 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001668 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001669 vios->Stream() << "Register Types:\n";
1670 ScopedIndentation indent1(vios);
1671 reg_types_.Dump(vios->Stream());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001672 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001673 vios->Stream() << "Dumping instructions and register lines:\n";
1674 ScopedIndentation indent1(vios);
Ian Rogersd81871c2011-10-03 13:57:23 -07001675 const Instruction* inst = Instruction::At(code_item_->insns_);
1676 for (size_t dex_pc = 0; dex_pc < code_item_->insns_size_in_code_units_;
Andreas Gampeebf850c2015-08-14 15:37:35 -07001677 dex_pc += inst->SizeInCodeUnits(), inst = inst->Next()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001678 RegisterLine* reg_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -07001679 if (reg_line != nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001680 vios->Stream() << reg_line->Dump(this) << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07001681 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001682 vios->Stream()
Mathieu Chartierde40d472015-10-15 17:47:48 -07001683 << StringPrintf("0x%04zx", dex_pc) << ": " << GetInstructionFlags(dex_pc).ToString() << " ";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001684 const bool kDumpHexOfInstruction = false;
1685 if (kDumpHexOfInstruction) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001686 vios->Stream() << inst->DumpHex(5) << " ";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001687 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001688 vios->Stream() << inst->DumpString(dex_file_) << "\n";
jeffhaoba5ebb92011-08-25 17:24:37 -07001689 }
jeffhaobdb76512011-09-07 11:43:16 -07001690}
1691
Ian Rogersd81871c2011-10-03 13:57:23 -07001692static bool IsPrimitiveDescriptor(char descriptor) {
1693 switch (descriptor) {
jeffhaobdb76512011-09-07 11:43:16 -07001694 case 'I':
1695 case 'C':
1696 case 'S':
1697 case 'B':
1698 case 'Z':
jeffhaobdb76512011-09-07 11:43:16 -07001699 case 'F':
1700 case 'D':
1701 case 'J':
Ian Rogersd81871c2011-10-03 13:57:23 -07001702 return true;
jeffhaobdb76512011-09-07 11:43:16 -07001703 default:
1704 return false;
1705 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001706}
1707
Ian Rogers776ac1f2012-04-13 23:36:36 -07001708bool MethodVerifier::SetTypesFromSignature() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001709 RegisterLine* reg_line = reg_table_.GetLine(0);
Andreas Gampeef0b1a12015-06-19 20:37:46 -07001710
1711 // Should have been verified earlier.
1712 DCHECK_GE(code_item_->registers_size_, code_item_->ins_size_);
1713
1714 uint32_t arg_start = code_item_->registers_size_ - code_item_->ins_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -07001715 size_t expected_args = code_item_->ins_size_; /* long/double count as two */
jeffhaobdb76512011-09-07 11:43:16 -07001716
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001717 // Include the "this" pointer.
Ian Rogersd81871c2011-10-03 13:57:23 -07001718 size_t cur_arg = 0;
Ian Rogersad0b3a32012-04-16 14:50:24 -07001719 if (!IsStatic()) {
Andreas Gampeef0b1a12015-06-19 20:37:46 -07001720 if (expected_args == 0) {
1721 // Expect at least a receiver.
1722 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected 0 args, but method is not static";
1723 return false;
1724 }
1725
Ian Rogersd81871c2011-10-03 13:57:23 -07001726 // If this is a constructor for a class other than java.lang.Object, mark the first ("this")
1727 // argument as uninitialized. This restricts field access until the superclass constructor is
1728 // called.
Ian Rogersd8f69b02014-09-10 21:43:52 +00001729 const RegType& declaring_class = GetDeclaringClass();
Andreas Gampef10b6e12015-08-12 10:48:12 -07001730 if (IsConstructor()) {
1731 if (declaring_class.IsJavaLangObject()) {
1732 // "this" is implicitly initialized.
1733 reg_line->SetThisInitialized();
Andreas Gampead238ce2015-08-24 21:13:08 -07001734 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, declaring_class);
Andreas Gampef10b6e12015-08-12 10:48:12 -07001735 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07001736 reg_line->SetRegisterType<LockOp::kClear>(
1737 this,
1738 arg_start + cur_arg,
1739 reg_types_.UninitializedThisArgument(declaring_class));
Andreas Gampef10b6e12015-08-12 10:48:12 -07001740 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001741 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07001742 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, declaring_class);
jeffhaobdb76512011-09-07 11:43:16 -07001743 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001744 cur_arg++;
jeffhaobdb76512011-09-07 11:43:16 -07001745 }
1746
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001747 const DexFile::ProtoId& proto_id =
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001748 dex_file_->GetMethodPrototype(dex_file_->GetMethodId(dex_method_idx_));
Ian Rogers0571d352011-11-03 19:51:38 -07001749 DexFileParameterIterator iterator(*dex_file_, proto_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07001750
1751 for (; iterator.HasNext(); iterator.Next()) {
1752 const char* descriptor = iterator.GetDescriptor();
Ian Rogers7b078e82014-09-10 14:44:24 -07001753 if (descriptor == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001754 LOG(FATAL) << "Null descriptor";
1755 }
1756 if (cur_arg >= expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07001757 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1758 << " args, found more (" << descriptor << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001759 return false;
1760 }
1761 switch (descriptor[0]) {
1762 case 'L':
1763 case '[':
1764 // We assume that reference arguments are initialized. The only way it could be otherwise
1765 // (assuming the caller was verified) is if the current method is <init>, but in that case
1766 // it's effectively considered initialized the instant we reach here (in the sense that we
1767 // can return without doing anything or call virtual methods).
1768 {
Ian Rogersd8f69b02014-09-10 21:43:52 +00001769 const RegType& reg_type = ResolveClassAndCheckAccess(iterator.GetTypeIdx());
Sebastien Hertz2ed76f92014-04-22 17:11:08 +02001770 if (!reg_type.IsNonZeroReferenceTypes()) {
1771 DCHECK(HasFailures());
1772 return false;
1773 }
Andreas Gampead238ce2015-08-24 21:13:08 -07001774 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001775 }
1776 break;
1777 case 'Z':
Andreas Gampead238ce2015-08-24 21:13:08 -07001778 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Boolean());
Ian Rogersd81871c2011-10-03 13:57:23 -07001779 break;
1780 case 'C':
Andreas Gampead238ce2015-08-24 21:13:08 -07001781 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Char());
Ian Rogersd81871c2011-10-03 13:57:23 -07001782 break;
1783 case 'B':
Andreas Gampead238ce2015-08-24 21:13:08 -07001784 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Byte());
Ian Rogersd81871c2011-10-03 13:57:23 -07001785 break;
1786 case 'I':
Andreas Gampead238ce2015-08-24 21:13:08 -07001787 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07001788 break;
1789 case 'S':
Andreas Gampead238ce2015-08-24 21:13:08 -07001790 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Short());
Ian Rogersd81871c2011-10-03 13:57:23 -07001791 break;
1792 case 'F':
Andreas Gampead238ce2015-08-24 21:13:08 -07001793 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Float());
Ian Rogersd81871c2011-10-03 13:57:23 -07001794 break;
1795 case 'J':
1796 case 'D': {
Andreas Gampe77cd4d62014-06-19 17:29:48 -07001797 if (cur_arg + 1 >= expected_args) {
1798 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1799 << " args, found more (" << descriptor << ")";
1800 return false;
1801 }
1802
Ian Rogers7b078e82014-09-10 14:44:24 -07001803 const RegType* lo_half;
1804 const RegType* hi_half;
1805 if (descriptor[0] == 'J') {
1806 lo_half = &reg_types_.LongLo();
1807 hi_half = &reg_types_.LongHi();
1808 } else {
1809 lo_half = &reg_types_.DoubleLo();
1810 hi_half = &reg_types_.DoubleHi();
1811 }
1812 reg_line->SetRegisterTypeWide(this, arg_start + cur_arg, *lo_half, *hi_half);
Ian Rogersd81871c2011-10-03 13:57:23 -07001813 cur_arg++;
1814 break;
1815 }
1816 default:
Brian Carlstrom93c33962013-07-26 10:37:43 -07001817 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected signature type char '"
1818 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001819 return false;
1820 }
1821 cur_arg++;
1822 }
1823 if (cur_arg != expected_args) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001824 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1825 << " arguments, found " << cur_arg;
Ian Rogersd81871c2011-10-03 13:57:23 -07001826 return false;
1827 }
1828 const char* descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
1829 // Validate return type. We don't do the type lookup; just want to make sure that it has the right
1830 // format. Only major difference from the method argument format is that 'V' is supported.
1831 bool result;
1832 if (IsPrimitiveDescriptor(descriptor[0]) || descriptor[0] == 'V') {
1833 result = descriptor[1] == '\0';
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001834 } else if (descriptor[0] == '[') { // single/multi-dimensional array of object/primitive
Ian Rogersd81871c2011-10-03 13:57:23 -07001835 size_t i = 0;
1836 do {
1837 i++;
1838 } while (descriptor[i] == '['); // process leading [
1839 if (descriptor[i] == 'L') { // object array
1840 do {
1841 i++; // find closing ;
1842 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1843 result = descriptor[i] == ';';
1844 } else { // primitive array
1845 result = IsPrimitiveDescriptor(descriptor[i]) && descriptor[i + 1] == '\0';
1846 }
1847 } else if (descriptor[0] == 'L') {
1848 // could be more thorough here, but shouldn't be required
1849 size_t i = 0;
1850 do {
1851 i++;
1852 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1853 result = descriptor[i] == ';';
1854 } else {
1855 result = false;
1856 }
1857 if (!result) {
jeffhaod5347e02012-03-22 17:25:05 -07001858 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected char in return type descriptor '"
1859 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001860 }
1861 return result;
jeffhaobdb76512011-09-07 11:43:16 -07001862}
1863
Ian Rogers776ac1f2012-04-13 23:36:36 -07001864bool MethodVerifier::CodeFlowVerifyMethod() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001865 const uint16_t* insns = code_item_->insns_;
1866 const uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaoba5ebb92011-08-25 17:24:37 -07001867
jeffhaobdb76512011-09-07 11:43:16 -07001868 /* Begin by marking the first instruction as "changed". */
Mathieu Chartierde40d472015-10-15 17:47:48 -07001869 GetInstructionFlags(0).SetChanged();
Ian Rogersd81871c2011-10-03 13:57:23 -07001870 uint32_t start_guess = 0;
jeffhaoba5ebb92011-08-25 17:24:37 -07001871
jeffhaobdb76512011-09-07 11:43:16 -07001872 /* Continue until no instructions are marked "changed". */
1873 while (true) {
Mathieu Chartier4306ef82014-12-19 18:41:47 -08001874 if (allow_thread_suspension_) {
1875 self_->AllowThreadSuspension();
1876 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001877 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1878 uint32_t insn_idx = start_guess;
1879 for (; insn_idx < insns_size; insn_idx++) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001880 if (GetInstructionFlags(insn_idx).IsChanged())
jeffhaobdb76512011-09-07 11:43:16 -07001881 break;
1882 }
jeffhaobdb76512011-09-07 11:43:16 -07001883 if (insn_idx == insns_size) {
1884 if (start_guess != 0) {
1885 /* try again, starting from the top */
1886 start_guess = 0;
1887 continue;
1888 } else {
1889 /* all flags are clear */
1890 break;
1891 }
1892 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001893 // We carry the working set of registers from instruction to instruction. If this address can
1894 // be the target of a branch (or throw) instruction, or if we're skipping around chasing
1895 // "changed" flags, we need to load the set of registers from the table.
1896 // Because we always prefer to continue on to the next instruction, we should never have a
1897 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1898 // target.
1899 work_insn_idx_ = insn_idx;
Mathieu Chartierde40d472015-10-15 17:47:48 -07001900 if (GetInstructionFlags(insn_idx).IsBranchTarget()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001901 work_line_->CopyFromLine(reg_table_.GetLine(insn_idx));
Ian Rogersebbdd872014-07-07 23:53:08 -07001902 } else if (kIsDebugBuild) {
jeffhaobdb76512011-09-07 11:43:16 -07001903 /*
1904 * Sanity check: retrieve the stored register line (assuming
1905 * a full table) and make sure it actually matches.
1906 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001907 RegisterLine* register_line = reg_table_.GetLine(insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07001908 if (register_line != nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001909 if (work_line_->CompareLine(register_line) != 0) {
1910 Dump(std::cout);
1911 std::cout << info_messages_.str();
David Sehr709b0702016-10-13 09:12:37 -07001912 LOG(FATAL) << "work_line diverged in " << dex_file_->PrettyMethod(dex_method_idx_)
Elliott Hughesc073b072012-05-24 19:29:17 -07001913 << "@" << reinterpret_cast<void*>(work_insn_idx_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07001914 << " work_line=" << work_line_->Dump(this) << "\n"
1915 << " expected=" << register_line->Dump(this);
Ian Rogersd81871c2011-10-03 13:57:23 -07001916 }
jeffhaobdb76512011-09-07 11:43:16 -07001917 }
jeffhaobdb76512011-09-07 11:43:16 -07001918 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001919 if (!CodeFlowVerifyInstruction(&start_guess)) {
David Sehr709b0702016-10-13 09:12:37 -07001920 std::string prepend(dex_file_->PrettyMethod(dex_method_idx_));
Ian Rogersad0b3a32012-04-16 14:50:24 -07001921 prepend += " failed to verify: ";
1922 PrependToLastFailMessage(prepend);
jeffhaoba5ebb92011-08-25 17:24:37 -07001923 return false;
1924 }
jeffhaobdb76512011-09-07 11:43:16 -07001925 /* Clear "changed" and mark as visited. */
Mathieu Chartierde40d472015-10-15 17:47:48 -07001926 GetInstructionFlags(insn_idx).SetVisited();
1927 GetInstructionFlags(insn_idx).ClearChanged();
jeffhaobdb76512011-09-07 11:43:16 -07001928 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001929
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001930 if (kDebugVerify) {
jeffhaobdb76512011-09-07 11:43:16 -07001931 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001932 * Scan for dead code. There's nothing "evil" about dead code
jeffhaobdb76512011-09-07 11:43:16 -07001933 * (besides the wasted space), but it indicates a flaw somewhere
1934 * down the line, possibly in the verifier.
1935 *
1936 * If we've substituted "always throw" instructions into the stream,
1937 * we are almost certainly going to have some dead code.
1938 */
1939 int dead_start = -1;
Ian Rogersd81871c2011-10-03 13:57:23 -07001940 uint32_t insn_idx = 0;
Ian Rogers7b078e82014-09-10 14:44:24 -07001941 for (; insn_idx < insns_size;
1942 insn_idx += Instruction::At(code_item_->insns_ + insn_idx)->SizeInCodeUnits()) {
jeffhaobdb76512011-09-07 11:43:16 -07001943 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001944 * Switch-statement data doesn't get "visited" by scanner. It
jeffhaobdb76512011-09-07 11:43:16 -07001945 * may or may not be preceded by a padding NOP (for alignment).
1946 */
1947 if (insns[insn_idx] == Instruction::kPackedSwitchSignature ||
1948 insns[insn_idx] == Instruction::kSparseSwitchSignature ||
1949 insns[insn_idx] == Instruction::kArrayDataSignature ||
Elliott Hughes380aaa72012-07-09 14:33:15 -07001950 (insns[insn_idx] == Instruction::NOP && (insn_idx + 1 < insns_size) &&
jeffhaobdb76512011-09-07 11:43:16 -07001951 (insns[insn_idx + 1] == Instruction::kPackedSwitchSignature ||
1952 insns[insn_idx + 1] == Instruction::kSparseSwitchSignature ||
1953 insns[insn_idx + 1] == Instruction::kArrayDataSignature))) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001954 GetInstructionFlags(insn_idx).SetVisited();
jeffhaobdb76512011-09-07 11:43:16 -07001955 }
1956
Mathieu Chartierde40d472015-10-15 17:47:48 -07001957 if (!GetInstructionFlags(insn_idx).IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001958 if (dead_start < 0)
1959 dead_start = insn_idx;
1960 } else if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001961 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1962 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaobdb76512011-09-07 11:43:16 -07001963 dead_start = -1;
1964 }
1965 }
1966 if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001967 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1968 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaoba5ebb92011-08-25 17:24:37 -07001969 }
Ian Rogersc9e463c2013-06-05 16:52:26 -07001970 // To dump the state of the verify after a method, do something like:
David Sehr709b0702016-10-13 09:12:37 -07001971 // if (dex_file_->PrettyMethod(dex_method_idx_) ==
Ian Rogersc9e463c2013-06-05 16:52:26 -07001972 // "boolean java.lang.String.equals(java.lang.Object)") {
1973 // LOG(INFO) << info_messages_.str();
1974 // }
jeffhaoba5ebb92011-08-25 17:24:37 -07001975 }
jeffhaobdb76512011-09-07 11:43:16 -07001976 return true;
1977}
1978
Andreas Gampe68df3202015-06-22 11:35:46 -07001979// Returns the index of the first final instance field of the given class, or kDexNoIndex if there
1980// is no such field.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001981static uint32_t GetFirstFinalInstanceFieldIndex(const DexFile& dex_file, dex::TypeIndex type_idx) {
Andreas Gampe68df3202015-06-22 11:35:46 -07001982 const DexFile::ClassDef* class_def = dex_file.FindClassDef(type_idx);
1983 DCHECK(class_def != nullptr);
1984 const uint8_t* class_data = dex_file.GetClassData(*class_def);
1985 DCHECK(class_data != nullptr);
1986 ClassDataItemIterator it(dex_file, class_data);
1987 // Skip static fields.
1988 while (it.HasNextStaticField()) {
1989 it.Next();
1990 }
1991 while (it.HasNextInstanceField()) {
1992 if ((it.GetFieldAccessFlags() & kAccFinal) != 0) {
1993 return it.GetMemberIndex();
1994 }
1995 it.Next();
1996 }
1997 return DexFile::kDexNoIndex;
1998}
1999
Andreas Gampea727e372015-08-25 09:22:37 -07002000// Setup a register line for the given return instruction.
2001static void AdjustReturnLine(MethodVerifier* verifier,
2002 const Instruction* ret_inst,
2003 RegisterLine* line) {
2004 Instruction::Code opcode = ret_inst->Opcode();
2005
2006 switch (opcode) {
2007 case Instruction::RETURN_VOID:
2008 case Instruction::RETURN_VOID_NO_BARRIER:
2009 SafelyMarkAllRegistersAsConflicts(verifier, line);
2010 break;
2011
2012 case Instruction::RETURN:
2013 case Instruction::RETURN_OBJECT:
2014 line->MarkAllRegistersAsConflictsExcept(verifier, ret_inst->VRegA_11x());
2015 break;
2016
2017 case Instruction::RETURN_WIDE:
2018 line->MarkAllRegistersAsConflictsExceptWide(verifier, ret_inst->VRegA_11x());
2019 break;
2020
2021 default:
2022 LOG(FATAL) << "Unknown return opcode " << opcode;
2023 UNREACHABLE();
2024 }
2025}
2026
Ian Rogers776ac1f2012-04-13 23:36:36 -07002027bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002028 // If we're doing FindLocksAtDexPc, check whether we're at the dex pc we care about.
2029 // We want the state _before_ the instruction, for the case where the dex pc we're
2030 // interested in is itself a monitor-enter instruction (which is a likely place
2031 // for a thread to be suspended).
Ian Rogers7b078e82014-09-10 14:44:24 -07002032 if (monitor_enter_dex_pcs_ != nullptr && work_insn_idx_ == interesting_dex_pc_) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002033 monitor_enter_dex_pcs_->clear(); // The new work line is more accurate than the previous one.
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002034 for (size_t i = 0; i < work_line_->GetMonitorEnterCount(); ++i) {
2035 monitor_enter_dex_pcs_->push_back(work_line_->GetMonitorEnterDexPc(i));
2036 }
2037 }
2038
jeffhaobdb76512011-09-07 11:43:16 -07002039 /*
2040 * Once we finish decoding the instruction, we need to figure out where
jeffhaod1f0fde2011-09-08 17:25:33 -07002041 * we can go from here. There are three possible ways to transfer
jeffhaobdb76512011-09-07 11:43:16 -07002042 * control to another statement:
2043 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002044 * (1) Continue to the next instruction. Applies to all but
jeffhaobdb76512011-09-07 11:43:16 -07002045 * unconditional branches, method returns, and exception throws.
jeffhaod1f0fde2011-09-08 17:25:33 -07002046 * (2) Branch to one or more possible locations. Applies to branches
jeffhaobdb76512011-09-07 11:43:16 -07002047 * and switch statements.
jeffhaod1f0fde2011-09-08 17:25:33 -07002048 * (3) Exception handlers. Applies to any instruction that can
jeffhaobdb76512011-09-07 11:43:16 -07002049 * throw an exception that is handled by an encompassing "try"
2050 * block.
2051 *
2052 * We can also return, in which case there is no successor instruction
2053 * from this point.
2054 *
Elliott Hughesadb8c672012-03-06 16:49:32 -08002055 * The behavior can be determined from the opcode flags.
jeffhaobdb76512011-09-07 11:43:16 -07002056 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002057 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
2058 const Instruction* inst = Instruction::At(insns);
Ian Rogersa75a0132012-09-28 11:41:42 -07002059 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
jeffhaobdb76512011-09-07 11:43:16 -07002060
jeffhaobdb76512011-09-07 11:43:16 -07002061 int32_t branch_target = 0;
jeffhaobdb76512011-09-07 11:43:16 -07002062 bool just_set_result = false;
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002063 if (kDebugVerify) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002064 // Generate processing back trace to debug verifier
Elliott Hughesc073b072012-05-24 19:29:17 -07002065 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07002066 << work_line_->Dump(this) << "\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07002067 }
jeffhaobdb76512011-09-07 11:43:16 -07002068
2069 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002070 * Make a copy of the previous register state. If the instruction
jeffhaobdb76512011-09-07 11:43:16 -07002071 * can throw an exception, we will copy/merge this into the "catch"
2072 * address rather than work_line, because we don't want the result
2073 * from the "successful" code path (e.g. a check-cast that "improves"
2074 * a type) to be visible to the exception handler.
2075 */
Ian Rogers776ac1f2012-04-13 23:36:36 -07002076 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002077 saved_line_->CopyFromLine(work_line_.get());
Ian Rogers1ff3c982014-08-12 02:30:58 -07002078 } else if (kIsDebugBuild) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002079 saved_line_->FillWithGarbage();
jeffhaobdb76512011-09-07 11:43:16 -07002080 }
Andreas Gamped12e7822015-06-25 10:26:40 -07002081 DCHECK(!have_pending_runtime_throw_failure_); // Per-instruction flag, should not be set here.
jeffhaobdb76512011-09-07 11:43:16 -07002082
Dragos Sbirlea980d16b2013-06-04 15:01:40 -07002083
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002084 // We need to ensure the work line is consistent while performing validation. When we spot a
2085 // peephole pattern we compute a new line for either the fallthrough instruction or the
2086 // branch target.
Mathieu Chartier361e04a2016-02-16 14:06:35 -08002087 RegisterLineArenaUniquePtr branch_line;
2088 RegisterLineArenaUniquePtr fallthrough_line;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002089
Sebastien Hertz5243e912013-05-21 10:55:07 +02002090 switch (inst->Opcode()) {
jeffhaobdb76512011-09-07 11:43:16 -07002091 case Instruction::NOP:
2092 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002093 * A "pure" NOP has no effect on anything. Data tables start with
jeffhaobdb76512011-09-07 11:43:16 -07002094 * a signature that looks like a NOP; if we see one of these in
2095 * the course of executing code then we have a problem.
2096 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002097 if (inst->VRegA_10x() != 0) {
jeffhaod5347e02012-03-22 17:25:05 -07002098 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "encountered data table in instruction stream";
jeffhaobdb76512011-09-07 11:43:16 -07002099 }
2100 break;
2101
2102 case Instruction::MOVE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002103 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002104 break;
jeffhaobdb76512011-09-07 11:43:16 -07002105 case Instruction::MOVE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002106 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002107 break;
jeffhaobdb76512011-09-07 11:43:16 -07002108 case Instruction::MOVE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002109 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategory1nr);
jeffhaobdb76512011-09-07 11:43:16 -07002110 break;
2111 case Instruction::MOVE_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002112 work_line_->CopyRegister2(this, inst->VRegA_12x(), inst->VRegB_12x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002113 break;
jeffhaobdb76512011-09-07 11:43:16 -07002114 case Instruction::MOVE_WIDE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002115 work_line_->CopyRegister2(this, inst->VRegA_22x(), inst->VRegB_22x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002116 break;
jeffhaobdb76512011-09-07 11:43:16 -07002117 case Instruction::MOVE_WIDE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002118 work_line_->CopyRegister2(this, inst->VRegA_32x(), inst->VRegB_32x());
jeffhaobdb76512011-09-07 11:43:16 -07002119 break;
2120 case Instruction::MOVE_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002121 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002122 break;
jeffhaobdb76512011-09-07 11:43:16 -07002123 case Instruction::MOVE_OBJECT_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002124 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002125 break;
jeffhaobdb76512011-09-07 11:43:16 -07002126 case Instruction::MOVE_OBJECT_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002127 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategoryRef);
jeffhaobdb76512011-09-07 11:43:16 -07002128 break;
2129
2130 /*
2131 * The move-result instructions copy data out of a "pseudo-register"
jeffhaod1f0fde2011-09-08 17:25:33 -07002132 * with the results from the last method invocation. In practice we
jeffhaobdb76512011-09-07 11:43:16 -07002133 * might want to hold the result in an actual CPU register, so the
2134 * Dalvik spec requires that these only appear immediately after an
2135 * invoke or filled-new-array.
2136 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002137 * These calls invalidate the "result" register. (This is now
jeffhaobdb76512011-09-07 11:43:16 -07002138 * redundant with the reset done below, but it can make the debug info
2139 * easier to read in some cases.)
2140 */
2141 case Instruction::MOVE_RESULT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002142 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002143 break;
2144 case Instruction::MOVE_RESULT_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002145 work_line_->CopyResultRegister2(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07002146 break;
2147 case Instruction::MOVE_RESULT_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002148 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002149 break;
2150
Ian Rogersd81871c2011-10-03 13:57:23 -07002151 case Instruction::MOVE_EXCEPTION: {
Sebastien Hertz270a0e12015-01-16 19:49:09 +01002152 // We do not allow MOVE_EXCEPTION as the first instruction in a method. This is a simple case
2153 // where one entrypoint to the catch block is not actually an exception path.
2154 if (work_insn_idx_ == 0) {
2155 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "move-exception at pc 0x0";
2156 break;
2157 }
jeffhaobdb76512011-09-07 11:43:16 -07002158 /*
jeffhao60f83e32012-02-13 17:16:30 -08002159 * This statement can only appear as the first instruction in an exception handler. We verify
2160 * that as part of extracting the exception type from the catch block list.
jeffhaobdb76512011-09-07 11:43:16 -07002161 */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002162 const RegType& res_type = GetCaughtExceptionType();
Andreas Gampead238ce2015-08-24 21:13:08 -07002163 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_11x(), res_type);
jeffhaobdb76512011-09-07 11:43:16 -07002164 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002165 }
jeffhaobdb76512011-09-07 11:43:16 -07002166 case Instruction::RETURN_VOID:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002167 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002168 if (!GetMethodReturnType().IsConflict()) {
jeffhaod5347e02012-03-22 17:25:05 -07002169 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002170 }
jeffhaobdb76512011-09-07 11:43:16 -07002171 }
2172 break;
2173 case Instruction::RETURN:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002174 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07002175 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002176 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002177 if (!return_type.IsCategory1Types()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002178 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected non-category 1 return type "
2179 << return_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002180 } else {
2181 // Compilers may generate synthetic functions that write byte values into boolean fields.
2182 // Also, it may use integer values for boolean, byte, short, and character return types.
Sebastien Hertz5243e912013-05-21 10:55:07 +02002183 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002184 const RegType& src_type = work_line_->GetRegisterType(this, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07002185 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) ||
2186 ((return_type.IsBoolean() || return_type.IsByte() ||
2187 return_type.IsShort() || return_type.IsChar()) &&
2188 src_type.IsInteger()));
2189 /* check the register contents */
Ian Rogersad0b3a32012-04-16 14:50:24 -07002190 bool success =
Ian Rogers7b078e82014-09-10 14:44:24 -07002191 work_line_->VerifyRegisterType(this, vregA, use_src ? src_type : return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002192 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002193 AppendToLastFailMessage(StringPrintf(" return-1nr on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07002194 }
jeffhaobdb76512011-09-07 11:43:16 -07002195 }
2196 }
2197 break;
2198 case Instruction::RETURN_WIDE:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002199 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07002200 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002201 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002202 if (!return_type.IsCategory2Types()) {
jeffhaod5347e02012-03-22 17:25:05 -07002203 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-wide not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002204 } else {
2205 /* check the register contents */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002206 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002207 bool success = work_line_->VerifyRegisterType(this, vregA, return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002208 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002209 AppendToLastFailMessage(StringPrintf(" return-wide on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07002210 }
jeffhaobdb76512011-09-07 11:43:16 -07002211 }
2212 }
2213 break;
2214 case Instruction::RETURN_OBJECT:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002215 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00002216 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002217 if (!return_type.IsReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002218 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002219 } else {
2220 /* return_type is the *expected* return type, not register value */
2221 DCHECK(!return_type.IsZero());
2222 DCHECK(!return_type.IsUninitializedReference());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002223 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002224 const RegType& reg_type = work_line_->GetRegisterType(this, vregA);
Andreas Gampea32210c2015-06-24 10:26:13 -07002225 // Disallow returning undefined, conflict & uninitialized values and verify that the
2226 // reference in vAA is an instance of the "return_type."
2227 if (reg_type.IsUndefined()) {
2228 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning undefined register";
2229 } else if (reg_type.IsConflict()) {
2230 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning register with conflict";
2231 } else if (reg_type.IsUninitializedTypes()) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00002232 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning uninitialized object '"
Brian Carlstrom93c33962013-07-26 10:37:43 -07002233 << reg_type << "'";
Andreas Gampea4c98f22015-11-06 16:24:49 -08002234 } else if (!reg_type.IsReferenceTypes()) {
2235 // We really do expect a reference here.
2236 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object returns a non-reference type "
2237 << reg_type;
David Brazdilca3c8c32016-09-06 14:04:48 +01002238 } else if (!return_type.IsAssignableFrom(reg_type, this)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07002239 if (reg_type.IsUnresolvedTypes() || return_type.IsUnresolvedTypes()) {
2240 Fail(VERIFY_ERROR_NO_CLASS) << " can't resolve returned type '" << return_type
2241 << "' or '" << reg_type << "'";
2242 } else {
Andreas Gampe16f149c2015-03-23 10:10:20 -07002243 bool soft_error = false;
2244 // Check whether arrays are involved. They will show a valid class status, even
2245 // if their components are erroneous.
2246 if (reg_type.IsArrayTypes() && return_type.IsArrayTypes()) {
David Brazdilca3c8c32016-09-06 14:04:48 +01002247 return_type.CanAssignArray(reg_type, reg_types_, class_loader_, this, &soft_error);
Andreas Gampe16f149c2015-03-23 10:10:20 -07002248 if (soft_error) {
2249 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "array with erroneous component type: "
2250 << reg_type << " vs " << return_type;
2251 }
2252 }
2253
2254 if (!soft_error) {
2255 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning '" << reg_type
2256 << "', but expected from declaration '" << return_type << "'";
2257 }
Jeff Haoa3faaf42013-09-03 19:07:00 -07002258 }
jeffhaobdb76512011-09-07 11:43:16 -07002259 }
2260 }
2261 }
2262 break;
2263
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002264 /* could be boolean, int, float, or a null reference */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002265 case Instruction::CONST_4: {
2266 int32_t val = static_cast<int32_t>(inst->VRegB_11n() << 28) >> 28;
Andreas Gampead238ce2015-08-24 21:13:08 -07002267 work_line_->SetRegisterType<LockOp::kClear>(
2268 this, inst->VRegA_11n(), DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002269 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02002270 }
2271 case Instruction::CONST_16: {
2272 int16_t val = static_cast<int16_t>(inst->VRegB_21s());
Andreas Gampead238ce2015-08-24 21:13:08 -07002273 work_line_->SetRegisterType<LockOp::kClear>(
2274 this, inst->VRegA_21s(), DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002275 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02002276 }
Sebastien Hertz849600b2013-12-20 10:28:08 +01002277 case Instruction::CONST: {
2278 int32_t val = inst->VRegB_31i();
Andreas Gampead238ce2015-08-24 21:13:08 -07002279 work_line_->SetRegisterType<LockOp::kClear>(
2280 this, inst->VRegA_31i(), DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07002281 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01002282 }
2283 case Instruction::CONST_HIGH16: {
2284 int32_t val = static_cast<int32_t>(inst->VRegB_21h() << 16);
Andreas Gampead238ce2015-08-24 21:13:08 -07002285 work_line_->SetRegisterType<LockOp::kClear>(
2286 this, inst->VRegA_21h(), DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07002287 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01002288 }
jeffhaobdb76512011-09-07 11:43:16 -07002289 /* could be long or double; resolved upon use */
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002290 case Instruction::CONST_WIDE_16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002291 int64_t val = static_cast<int16_t>(inst->VRegB_21s());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002292 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2293 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002294 work_line_->SetRegisterTypeWide(this, inst->VRegA_21s(), lo, hi);
jeffhaobdb76512011-09-07 11:43:16 -07002295 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002296 }
2297 case Instruction::CONST_WIDE_32: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002298 int64_t val = static_cast<int32_t>(inst->VRegB_31i());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002299 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2300 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002301 work_line_->SetRegisterTypeWide(this, inst->VRegA_31i(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002302 break;
2303 }
2304 case Instruction::CONST_WIDE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002305 int64_t val = inst->VRegB_51l();
Ian Rogersd8f69b02014-09-10 21:43:52 +00002306 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2307 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002308 work_line_->SetRegisterTypeWide(this, inst->VRegA_51l(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002309 break;
2310 }
2311 case Instruction::CONST_WIDE_HIGH16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002312 int64_t val = static_cast<uint64_t>(inst->VRegB_21h()) << 48;
Ian Rogersd8f69b02014-09-10 21:43:52 +00002313 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2314 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002315 work_line_->SetRegisterTypeWide(this, inst->VRegA_21h(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002316 break;
2317 }
jeffhaobdb76512011-09-07 11:43:16 -07002318 case Instruction::CONST_STRING:
Andreas Gampead238ce2015-08-24 21:13:08 -07002319 work_line_->SetRegisterType<LockOp::kClear>(
2320 this, inst->VRegA_21c(), reg_types_.JavaLangString());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002321 break;
jeffhaobdb76512011-09-07 11:43:16 -07002322 case Instruction::CONST_STRING_JUMBO:
Andreas Gampead238ce2015-08-24 21:13:08 -07002323 work_line_->SetRegisterType<LockOp::kClear>(
2324 this, inst->VRegA_31c(), reg_types_.JavaLangString());
jeffhaobdb76512011-09-07 11:43:16 -07002325 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002326 case Instruction::CONST_CLASS: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002327 // Get type from instruction if unresolved then we need an access check
2328 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Andreas Gampea5b09a62016-11-17 15:21:22 -08002329 const RegType& res_type = ResolveClassAndCheckAccess(dex::TypeIndex(inst->VRegB_21c()));
Ian Rogersad0b3a32012-04-16 14:50:24 -07002330 // Register holds class, ie its type is class, on error it will hold Conflict.
Andreas Gampead238ce2015-08-24 21:13:08 -07002331 work_line_->SetRegisterType<LockOp::kClear>(
2332 this, inst->VRegA_21c(), res_type.IsConflict() ? res_type
2333 : reg_types_.JavaLangClass());
jeffhaobdb76512011-09-07 11:43:16 -07002334 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002335 }
jeffhaobdb76512011-09-07 11:43:16 -07002336 case Instruction::MONITOR_ENTER:
Ian Rogers7b078e82014-09-10 14:44:24 -07002337 work_line_->PushMonitor(this, inst->VRegA_11x(), work_insn_idx_);
Andreas Gampec1474102015-08-18 08:57:44 -07002338 // Check whether the previous instruction is a move-object with vAA as a source, creating
2339 // untracked lock aliasing.
Mathieu Chartierde40d472015-10-15 17:47:48 -07002340 if (0 != work_insn_idx_ && !GetInstructionFlags(work_insn_idx_).IsBranchTarget()) {
Andreas Gampec1474102015-08-18 08:57:44 -07002341 uint32_t prev_idx = work_insn_idx_ - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002342 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) {
Andreas Gampec1474102015-08-18 08:57:44 -07002343 prev_idx--;
2344 }
2345 const Instruction* prev_inst = Instruction::At(code_item_->insns_ + prev_idx);
2346 switch (prev_inst->Opcode()) {
2347 case Instruction::MOVE_OBJECT:
2348 case Instruction::MOVE_OBJECT_16:
2349 case Instruction::MOVE_OBJECT_FROM16:
2350 if (prev_inst->VRegB() == inst->VRegA_11x()) {
2351 // Redo the copy. This won't change the register types, but update the lock status
2352 // for the aliased register.
2353 work_line_->CopyRegister1(this,
2354 prev_inst->VRegA(),
2355 prev_inst->VRegB(),
2356 kTypeCategoryRef);
2357 }
2358 break;
2359
2360 default: // Other instruction types ignored.
2361 break;
2362 }
2363 }
jeffhaobdb76512011-09-07 11:43:16 -07002364 break;
2365 case Instruction::MONITOR_EXIT:
2366 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002367 * monitor-exit instructions are odd. They can throw exceptions,
jeffhaobdb76512011-09-07 11:43:16 -07002368 * but when they do they act as if they succeeded and the PC is
jeffhaod1f0fde2011-09-08 17:25:33 -07002369 * pointing to the following instruction. (This behavior goes back
jeffhaobdb76512011-09-07 11:43:16 -07002370 * to the need to handle asynchronous exceptions, a now-deprecated
2371 * feature that Dalvik doesn't support.)
2372 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002373 * In practice we don't need to worry about this. The only
jeffhaobdb76512011-09-07 11:43:16 -07002374 * exceptions that can be thrown from monitor-exit are for a
jeffhaod1f0fde2011-09-08 17:25:33 -07002375 * null reference and -exit without a matching -enter. If the
jeffhaobdb76512011-09-07 11:43:16 -07002376 * structured locking checks are working, the former would have
2377 * failed on the -enter instruction, and the latter is impossible.
2378 *
2379 * This is fortunate, because issue 3221411 prevents us from
2380 * chasing the "can throw" path when monitor verification is
jeffhaod1f0fde2011-09-08 17:25:33 -07002381 * enabled. If we can fully verify the locking we can ignore
jeffhaobdb76512011-09-07 11:43:16 -07002382 * some catch blocks (which will show up as "dead" code when
2383 * we skip them here); if we can't, then the code path could be
2384 * "live" so we still need to check it.
2385 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002386 opcode_flags &= ~Instruction::kThrow;
Ian Rogers7b078e82014-09-10 14:44:24 -07002387 work_line_->PopMonitor(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07002388 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07002389 case Instruction::CHECK_CAST:
Ian Rogersd81871c2011-10-03 13:57:23 -07002390 case Instruction::INSTANCE_OF: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002391 /*
2392 * If this instruction succeeds, we will "downcast" register vA to the type in vB. (This
2393 * could be a "upcast" -- not expected, so we don't try to address it.)
2394 *
2395 * If it fails, an exception is thrown, which we deal with later by ignoring the update to
Elliott Hughesadb8c672012-03-06 16:49:32 -08002396 * dec_insn.vA when branching to a handler.
Ian Rogers28ad40d2011-10-27 15:19:26 -07002397 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002398 const bool is_checkcast = (inst->Opcode() == Instruction::CHECK_CAST);
Andreas Gampea5b09a62016-11-17 15:21:22 -08002399 const dex::TypeIndex type_idx((is_checkcast) ? inst->VRegB_21c() : inst->VRegC_22c());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002400 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002401 if (res_type.IsConflict()) {
Andreas Gampe00633eb2014-07-17 16:13:35 -07002402 // If this is a primitive type, fail HARD.
Vladimir Marko8d6768d2017-03-14 10:13:21 +00002403 ObjPtr<mirror::Class> klass =
2404 ClassLinker::LookupResolvedType(type_idx, dex_cache_.Get(), class_loader_.Get());
Andreas Gampe00633eb2014-07-17 16:13:35 -07002405 if (klass != nullptr && klass->IsPrimitive()) {
2406 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "using primitive type "
2407 << dex_file_->StringByTypeIdx(type_idx) << " in instanceof in "
2408 << GetDeclaringClass();
2409 break;
2410 }
2411
Ian Rogersad0b3a32012-04-16 14:50:24 -07002412 DCHECK_NE(failures_.size(), 0U);
2413 if (!is_checkcast) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002414 work_line_->SetRegisterType<LockOp::kClear>(this,
2415 inst->VRegA_22c(),
2416 reg_types_.Boolean());
Ian Rogersad0b3a32012-04-16 14:50:24 -07002417 }
2418 break; // bad class
Ian Rogers9f1ab122011-12-12 08:52:43 -08002419 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002420 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Sebastien Hertz5243e912013-05-21 10:55:07 +02002421 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c();
Ian Rogers7b078e82014-09-10 14:44:24 -07002422 const RegType& orig_type = work_line_->GetRegisterType(this, orig_type_reg);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002423 if (!res_type.IsNonZeroReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002424 if (is_checkcast) {
2425 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on unexpected class " << res_type;
2426 } else {
2427 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on unexpected class " << res_type;
2428 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002429 } else if (!orig_type.IsReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002430 if (is_checkcast) {
2431 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on non-reference in v" << orig_type_reg;
2432 } else {
2433 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on non-reference in v" << orig_type_reg;
2434 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00002435 } else if (orig_type.IsUninitializedTypes()) {
2436 if (is_checkcast) {
2437 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on uninitialized reference in v"
2438 << orig_type_reg;
2439 } else {
2440 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on uninitialized reference in v"
2441 << orig_type_reg;
2442 }
jeffhao2a8a90e2011-09-26 14:25:31 -07002443 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002444 if (is_checkcast) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002445 work_line_->SetRegisterType<LockOp::kKeep>(this, inst->VRegA_21c(), res_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002446 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07002447 work_line_->SetRegisterType<LockOp::kClear>(this,
2448 inst->VRegA_22c(),
2449 reg_types_.Boolean());
jeffhaobdb76512011-09-07 11:43:16 -07002450 }
jeffhaobdb76512011-09-07 11:43:16 -07002451 }
jeffhao2a8a90e2011-09-26 14:25:31 -07002452 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002453 }
2454 case Instruction::ARRAY_LENGTH: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002455 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegB_12x());
Ian Rogers28ad40d2011-10-27 15:19:26 -07002456 if (res_type.IsReferenceTypes()) {
Ian Rogers89310de2012-02-01 13:47:30 -08002457 if (!res_type.IsArrayTypes() && !res_type.IsZero()) { // ie not an array or null
jeffhaod5347e02012-03-22 17:25:05 -07002458 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002459 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07002460 work_line_->SetRegisterType<LockOp::kClear>(this,
2461 inst->VRegA_12x(),
2462 reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07002463 }
Andreas Gampe65c9db82014-07-28 13:14:34 -07002464 } else {
2465 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002466 }
2467 break;
2468 }
2469 case Instruction::NEW_INSTANCE: {
Andreas Gampea5b09a62016-11-17 15:21:22 -08002470 const RegType& res_type = ResolveClassAndCheckAccess(dex::TypeIndex(inst->VRegB_21c()));
Ian Rogersad0b3a32012-04-16 14:50:24 -07002471 if (res_type.IsConflict()) {
2472 DCHECK_NE(failures_.size(), 0U);
2473 break; // bad class
jeffhao8cd6dda2012-02-22 10:15:34 -08002474 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002475 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
2476 // can't create an instance of an interface or abstract class */
2477 if (!res_type.IsInstantiableTypes()) {
2478 Fail(VERIFY_ERROR_INSTANTIATION)
2479 << "new-instance on primitive, interface or abstract class" << res_type;
Ian Rogers08f753d2012-08-24 14:35:25 -07002480 // Soft failure so carry on to set register type.
Ian Rogersd81871c2011-10-03 13:57:23 -07002481 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00002482 const RegType& uninit_type = reg_types_.Uninitialized(res_type, work_insn_idx_);
Ian Rogers08f753d2012-08-24 14:35:25 -07002483 // Any registers holding previous allocations from this address that have not yet been
2484 // initialized must be marked invalid.
Ian Rogers7b078e82014-09-10 14:44:24 -07002485 work_line_->MarkUninitRefsAsInvalid(this, uninit_type);
Ian Rogers08f753d2012-08-24 14:35:25 -07002486 // add the new uninitialized reference to the register state
Andreas Gampead238ce2015-08-24 21:13:08 -07002487 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_21c(), uninit_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002488 break;
2489 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08002490 case Instruction::NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002491 VerifyNewArray(inst, false, false);
jeffhaobdb76512011-09-07 11:43:16 -07002492 break;
2493 case Instruction::FILLED_NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002494 VerifyNewArray(inst, true, false);
Ian Rogers0c4a5062012-02-03 15:18:59 -08002495 just_set_result = true; // Filled new array sets result register
jeffhaobdb76512011-09-07 11:43:16 -07002496 break;
Ian Rogers0c4a5062012-02-03 15:18:59 -08002497 case Instruction::FILLED_NEW_ARRAY_RANGE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002498 VerifyNewArray(inst, true, true);
Ian Rogers0c4a5062012-02-03 15:18:59 -08002499 just_set_result = true; // Filled new array range sets result register
2500 break;
jeffhaobdb76512011-09-07 11:43:16 -07002501 case Instruction::CMPL_FLOAT:
2502 case Instruction::CMPG_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002503 if (!work_line_->VerifyRegisterType(this, inst->VRegB_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08002504 break;
2505 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002506 if (!work_line_->VerifyRegisterType(this, inst->VRegC_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08002507 break;
2508 }
Andreas Gampead238ce2015-08-24 21:13:08 -07002509 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002510 break;
2511 case Instruction::CMPL_DOUBLE:
2512 case Instruction::CMPG_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002513 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegB_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002514 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002515 break;
2516 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002517 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002518 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002519 break;
2520 }
Andreas Gampead238ce2015-08-24 21:13:08 -07002521 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002522 break;
2523 case Instruction::CMP_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07002524 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegB_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002525 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002526 break;
2527 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002528 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002529 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002530 break;
2531 }
Andreas Gampead238ce2015-08-24 21:13:08 -07002532 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002533 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002534 case Instruction::THROW: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002535 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegA_11x());
David Brazdilca3c8c32016-09-06 14:04:48 +01002536 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(res_type, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00002537 if (res_type.IsUninitializedTypes()) {
2538 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "thrown exception not initialized";
Pavel Vyssotski980027c2016-02-11 20:28:11 +06002539 } else if (!res_type.IsReferenceTypes()) {
2540 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "thrown value of non-reference type " << res_type;
David Brazdil68b5c0b2016-01-19 14:25:29 +00002541 } else {
2542 Fail(res_type.IsUnresolvedTypes() ? VERIFY_ERROR_NO_CLASS : VERIFY_ERROR_BAD_CLASS_SOFT)
2543 << "thrown class " << res_type << " not instanceof Throwable";
2544 }
jeffhaobdb76512011-09-07 11:43:16 -07002545 }
2546 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002547 }
jeffhaobdb76512011-09-07 11:43:16 -07002548 case Instruction::GOTO:
2549 case Instruction::GOTO_16:
2550 case Instruction::GOTO_32:
2551 /* no effect on or use of registers */
2552 break;
2553
2554 case Instruction::PACKED_SWITCH:
2555 case Instruction::SPARSE_SWITCH:
2556 /* verify that vAA is an integer, or can be converted to one */
Ian Rogers7b078e82014-09-10 14:44:24 -07002557 work_line_->VerifyRegisterType(this, inst->VRegA_31t(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002558 break;
2559
Ian Rogersd81871c2011-10-03 13:57:23 -07002560 case Instruction::FILL_ARRAY_DATA: {
2561 /* Similar to the verification done for APUT */
Ian Rogers7b078e82014-09-10 14:44:24 -07002562 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t());
Ian Rogers89310de2012-02-01 13:47:30 -08002563 /* array_type can be null if the reg type is Zero */
2564 if (!array_type.IsZero()) {
jeffhao457cc512012-02-02 16:55:13 -08002565 if (!array_type.IsArrayTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002566 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with array type "
2567 << array_type;
Andreas Gampebb18a032016-03-22 20:34:25 -07002568 } else if (array_type.IsUnresolvedTypes()) {
2569 // If it's an unresolved array type, it must be non-primitive.
2570 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data for array of type "
2571 << array_type;
Ian Rogers89310de2012-02-01 13:47:30 -08002572 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00002573 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
Ian Rogersad0b3a32012-04-16 14:50:24 -07002574 DCHECK(!component_type.IsConflict());
jeffhao457cc512012-02-02 16:55:13 -08002575 if (component_type.IsNonZeroReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002576 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with component type "
2577 << component_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002578 } else {
jeffhao457cc512012-02-02 16:55:13 -08002579 // Now verify if the element width in the table matches the element width declared in
2580 // the array
Andreas Gampe53de99c2015-08-17 13:43:55 -07002581 const uint16_t* array_data =
2582 insns + (insns[1] | (static_cast<int32_t>(insns[2]) << 16));
jeffhao457cc512012-02-02 16:55:13 -08002583 if (array_data[0] != Instruction::kArrayDataSignature) {
jeffhaod5347e02012-03-22 17:25:05 -07002584 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid magic for array-data";
jeffhao457cc512012-02-02 16:55:13 -08002585 } else {
2586 size_t elem_width = Primitive::ComponentSize(component_type.GetPrimitiveType());
2587 // Since we don't compress the data in Dex, expect to see equal width of data stored
2588 // in the table and expected from the array class.
2589 if (array_data[1] != elem_width) {
jeffhaod5347e02012-03-22 17:25:05 -07002590 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-data size mismatch (" << array_data[1]
2591 << " vs " << elem_width << ")";
jeffhao457cc512012-02-02 16:55:13 -08002592 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002593 }
2594 }
jeffhaobdb76512011-09-07 11:43:16 -07002595 }
2596 }
2597 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002598 }
jeffhaobdb76512011-09-07 11:43:16 -07002599 case Instruction::IF_EQ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002600 case Instruction::IF_NE: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002601 const RegType& reg_type1 = work_line_->GetRegisterType(this, inst->VRegA_22t());
2602 const RegType& reg_type2 = work_line_->GetRegisterType(this, inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002603 bool mismatch = false;
2604 if (reg_type1.IsZero()) { // zero then integral or reference expected
2605 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes();
2606 } else if (reg_type1.IsReferenceTypes()) { // both references?
2607 mismatch = !reg_type2.IsReferenceTypes();
2608 } else { // both integral?
2609 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes();
2610 }
2611 if (mismatch) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002612 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to if-eq/if-ne (" << reg_type1 << ","
2613 << reg_type2 << ") must both be references or integral";
jeffhaobdb76512011-09-07 11:43:16 -07002614 }
2615 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002616 }
jeffhaobdb76512011-09-07 11:43:16 -07002617 case Instruction::IF_LT:
2618 case Instruction::IF_GE:
2619 case Instruction::IF_GT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002620 case Instruction::IF_LE: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002621 const RegType& reg_type1 = work_line_->GetRegisterType(this, inst->VRegA_22t());
2622 const RegType& reg_type2 = work_line_->GetRegisterType(this, inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002623 if (!reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002624 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to 'if' (" << reg_type1 << ","
2625 << reg_type2 << ") must be integral";
jeffhaobdb76512011-09-07 11:43:16 -07002626 }
2627 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002628 }
jeffhaobdb76512011-09-07 11:43:16 -07002629 case Instruction::IF_EQZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002630 case Instruction::IF_NEZ: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002631 const RegType& reg_type = work_line_->GetRegisterType(this, inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002632 if (!reg_type.IsReferenceTypes() && !reg_type.IsIntegralTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002633 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
2634 << " unexpected as arg to if-eqz/if-nez";
Ian Rogersd81871c2011-10-03 13:57:23 -07002635 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002636
2637 // Find previous instruction - its existence is a precondition to peephole optimization.
Ian Rogers9b360392013-06-06 14:45:07 -07002638 uint32_t instance_of_idx = 0;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002639 if (0 != work_insn_idx_) {
Ian Rogers9b360392013-06-06 14:45:07 -07002640 instance_of_idx = work_insn_idx_ - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002641 while (0 != instance_of_idx && !GetInstructionFlags(instance_of_idx).IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07002642 instance_of_idx--;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002643 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07002644 if (FailOrAbort(this, GetInstructionFlags(instance_of_idx).IsOpcode(),
Andreas Gampe7c038102014-10-27 20:08:46 -07002645 "Unable to get previous instruction of if-eqz/if-nez for work index ",
2646 work_insn_idx_)) {
2647 break;
2648 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002649 } else {
2650 break;
2651 }
2652
Ian Rogers9b360392013-06-06 14:45:07 -07002653 const Instruction* instance_of_inst = Instruction::At(code_item_->insns_ + instance_of_idx);
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002654
2655 /* Check for peep-hole pattern of:
2656 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002657 * instance-of vX, vY, T;
2658 * ifXXX vX, label ;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002659 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002660 * label:
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002661 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002662 * and sharpen the type of vY to be type T.
2663 * Note, this pattern can't be if:
2664 * - if there are other branches to this branch,
2665 * - when vX == vY.
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002666 */
Ian Rogersfae370a2013-06-05 08:33:27 -07002667 if (!CurrentInsnFlags()->IsBranchTarget() &&
Ian Rogers9b360392013-06-06 14:45:07 -07002668 (Instruction::INSTANCE_OF == instance_of_inst->Opcode()) &&
2669 (inst->VRegA_21t() == instance_of_inst->VRegA_22c()) &&
2670 (instance_of_inst->VRegA_22c() != instance_of_inst->VRegB_22c())) {
Ian Rogersebbdd872014-07-07 23:53:08 -07002671 // Check the type of the instance-of is different than that of registers type, as if they
2672 // are the same there is no work to be done here. Check that the conversion is not to or
2673 // from an unresolved type as type information is imprecise. If the instance-of is to an
2674 // interface then ignore the type information as interfaces can only be treated as Objects
2675 // and we don't want to disallow field and other operations on the object. If the value
2676 // being instance-of checked against is known null (zero) then allow the optimization as
2677 // we didn't have type information. If the merge of the instance-of type with the original
2678 // type is assignable to the original then allow optimization. This check is performed to
2679 // ensure that subsequent merges don't lose type information - such as becoming an
2680 // interface from a class that would lose information relevant to field checks.
Ian Rogers7b078e82014-09-10 14:44:24 -07002681 const RegType& orig_type = work_line_->GetRegisterType(this, instance_of_inst->VRegB_22c());
Andreas Gampea5b09a62016-11-17 15:21:22 -08002682 const RegType& cast_type = ResolveClassAndCheckAccess(
2683 dex::TypeIndex(instance_of_inst->VRegC_22c()));
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002684
Ian Rogersebbdd872014-07-07 23:53:08 -07002685 if (!orig_type.Equals(cast_type) &&
2686 !cast_type.IsUnresolvedTypes() && !orig_type.IsUnresolvedTypes() &&
Andreas Gampe00633eb2014-07-17 16:13:35 -07002687 cast_type.HasClass() && // Could be conflict type, make sure it has a class.
Ian Rogersebbdd872014-07-07 23:53:08 -07002688 !cast_type.GetClass()->IsInterface() &&
2689 (orig_type.IsZero() ||
David Brazdilca3c8c32016-09-06 14:04:48 +01002690 orig_type.IsStrictlyAssignableFrom(
2691 cast_type.Merge(orig_type, &reg_types_, this), this))) {
Ian Rogersd0fbd852013-09-24 18:17:04 -07002692 RegisterLine* update_line = RegisterLine::Create(code_item_->registers_size_, this);
Ian Rogersfae370a2013-06-05 08:33:27 -07002693 if (inst->Opcode() == Instruction::IF_EQZ) {
Ian Rogers9b360392013-06-06 14:45:07 -07002694 fallthrough_line.reset(update_line);
Ian Rogersfae370a2013-06-05 08:33:27 -07002695 } else {
Ian Rogers9b360392013-06-06 14:45:07 -07002696 branch_line.reset(update_line);
2697 }
2698 update_line->CopyFromLine(work_line_.get());
Andreas Gampead238ce2015-08-24 21:13:08 -07002699 update_line->SetRegisterType<LockOp::kKeep>(this,
2700 instance_of_inst->VRegB_22c(),
2701 cast_type);
Mathieu Chartierde40d472015-10-15 17:47:48 -07002702 if (!GetInstructionFlags(instance_of_idx).IsBranchTarget() && 0 != instance_of_idx) {
Ian Rogers9b360392013-06-06 14:45:07 -07002703 // See if instance-of was preceded by a move-object operation, common due to the small
2704 // register encoding space of instance-of, and propagate type information to the source
2705 // of the move-object.
2706 uint32_t move_idx = instance_of_idx - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002707 while (0 != move_idx && !GetInstructionFlags(move_idx).IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07002708 move_idx--;
2709 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07002710 if (FailOrAbort(this, GetInstructionFlags(move_idx).IsOpcode(),
Andreas Gampe7c038102014-10-27 20:08:46 -07002711 "Unable to get previous instruction of if-eqz/if-nez for work index ",
2712 work_insn_idx_)) {
2713 break;
2714 }
Ian Rogers9b360392013-06-06 14:45:07 -07002715 const Instruction* move_inst = Instruction::At(code_item_->insns_ + move_idx);
2716 switch (move_inst->Opcode()) {
2717 case Instruction::MOVE_OBJECT:
2718 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002719 update_line->SetRegisterType<LockOp::kKeep>(this,
2720 move_inst->VRegB_12x(),
2721 cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002722 }
2723 break;
2724 case Instruction::MOVE_OBJECT_FROM16:
2725 if (move_inst->VRegA_22x() == instance_of_inst->VRegB_22c()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002726 update_line->SetRegisterType<LockOp::kKeep>(this,
2727 move_inst->VRegB_22x(),
2728 cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002729 }
2730 break;
2731 case Instruction::MOVE_OBJECT_16:
2732 if (move_inst->VRegA_32x() == instance_of_inst->VRegB_22c()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002733 update_line->SetRegisterType<LockOp::kKeep>(this,
2734 move_inst->VRegB_32x(),
2735 cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002736 }
2737 break;
2738 default:
2739 break;
2740 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002741 }
2742 }
2743 }
2744
jeffhaobdb76512011-09-07 11:43:16 -07002745 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002746 }
jeffhaobdb76512011-09-07 11:43:16 -07002747 case Instruction::IF_LTZ:
2748 case Instruction::IF_GEZ:
2749 case Instruction::IF_GTZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002750 case Instruction::IF_LEZ: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002751 const RegType& reg_type = work_line_->GetRegisterType(this, inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002752 if (!reg_type.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002753 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
2754 << " unexpected as arg to if-ltz/if-gez/if-gtz/if-lez";
Ian Rogersd81871c2011-10-03 13:57:23 -07002755 }
jeffhaobdb76512011-09-07 11:43:16 -07002756 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002757 }
jeffhaobdb76512011-09-07 11:43:16 -07002758 case Instruction::AGET_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002759 VerifyAGet(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002760 break;
jeffhaobdb76512011-09-07 11:43:16 -07002761 case Instruction::AGET_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002762 VerifyAGet(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002763 break;
jeffhaobdb76512011-09-07 11:43:16 -07002764 case Instruction::AGET_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002765 VerifyAGet(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002766 break;
jeffhaobdb76512011-09-07 11:43:16 -07002767 case Instruction::AGET_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002768 VerifyAGet(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002769 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002770 case Instruction::AGET:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002771 VerifyAGet(inst, reg_types_.Integer(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002772 break;
jeffhaobdb76512011-09-07 11:43:16 -07002773 case Instruction::AGET_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002774 VerifyAGet(inst, reg_types_.LongLo(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002775 break;
2776 case Instruction::AGET_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002777 VerifyAGet(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002778 break;
2779
Ian Rogersd81871c2011-10-03 13:57:23 -07002780 case Instruction::APUT_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002781 VerifyAPut(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002782 break;
2783 case Instruction::APUT_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002784 VerifyAPut(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002785 break;
2786 case Instruction::APUT_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002787 VerifyAPut(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002788 break;
2789 case Instruction::APUT_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002790 VerifyAPut(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002791 break;
2792 case Instruction::APUT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002793 VerifyAPut(inst, reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002794 break;
2795 case Instruction::APUT_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002796 VerifyAPut(inst, reg_types_.LongLo(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002797 break;
2798 case Instruction::APUT_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002799 VerifyAPut(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002800 break;
2801
jeffhaobdb76512011-09-07 11:43:16 -07002802 case Instruction::IGET_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002803 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002804 break;
jeffhaobdb76512011-09-07 11:43:16 -07002805 case Instruction::IGET_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002806 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002807 break;
jeffhaobdb76512011-09-07 11:43:16 -07002808 case Instruction::IGET_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002809 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002810 break;
jeffhaobdb76512011-09-07 11:43:16 -07002811 case Instruction::IGET_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002812 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002813 break;
2814 case Instruction::IGET:
Andreas Gampe896df402014-10-20 22:25:29 -07002815 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002816 break;
2817 case Instruction::IGET_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002818 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002819 break;
2820 case Instruction::IGET_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002821 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false,
2822 false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002823 break;
jeffhaobdb76512011-09-07 11:43:16 -07002824
Ian Rogersd81871c2011-10-03 13:57:23 -07002825 case Instruction::IPUT_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002826 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002827 break;
2828 case Instruction::IPUT_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002829 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002830 break;
2831 case Instruction::IPUT_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002832 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002833 break;
2834 case Instruction::IPUT_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002835 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002836 break;
2837 case Instruction::IPUT:
Andreas Gampe896df402014-10-20 22:25:29 -07002838 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002839 break;
2840 case Instruction::IPUT_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002841 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002842 break;
jeffhaobdb76512011-09-07 11:43:16 -07002843 case Instruction::IPUT_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002844 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false,
2845 false);
jeffhaobdb76512011-09-07 11:43:16 -07002846 break;
2847
jeffhaobdb76512011-09-07 11:43:16 -07002848 case Instruction::SGET_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002849 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002850 break;
jeffhaobdb76512011-09-07 11:43:16 -07002851 case Instruction::SGET_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002852 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002853 break;
jeffhaobdb76512011-09-07 11:43:16 -07002854 case Instruction::SGET_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002855 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002856 break;
jeffhaobdb76512011-09-07 11:43:16 -07002857 case Instruction::SGET_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002858 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002859 break;
2860 case Instruction::SGET:
Andreas Gampe896df402014-10-20 22:25:29 -07002861 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002862 break;
2863 case Instruction::SGET_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002864 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002865 break;
2866 case Instruction::SGET_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002867 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false,
2868 true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002869 break;
2870
2871 case Instruction::SPUT_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002872 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002873 break;
2874 case Instruction::SPUT_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002875 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002876 break;
2877 case Instruction::SPUT_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002878 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002879 break;
2880 case Instruction::SPUT_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002881 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002882 break;
2883 case Instruction::SPUT:
Andreas Gampe896df402014-10-20 22:25:29 -07002884 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002885 break;
2886 case Instruction::SPUT_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002887 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002888 break;
2889 case Instruction::SPUT_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002890 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false,
2891 true);
jeffhaobdb76512011-09-07 11:43:16 -07002892 break;
2893
2894 case Instruction::INVOKE_VIRTUAL:
2895 case Instruction::INVOKE_VIRTUAL_RANGE:
2896 case Instruction::INVOKE_SUPER:
Ian Rogersd81871c2011-10-03 13:57:23 -07002897 case Instruction::INVOKE_SUPER_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002898 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE ||
2899 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002900 bool is_super = (inst->Opcode() == Instruction::INVOKE_SUPER ||
2901 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08002902 MethodType type = is_super ? METHOD_SUPER : METHOD_VIRTUAL;
2903 ArtMethod* called_method = VerifyInvocationArgs(inst, type, is_range);
Ian Rogersd8f69b02014-09-10 21:43:52 +00002904 const RegType* return_type = nullptr;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002905 if (called_method != nullptr) {
Vladimir Marko942fd312017-01-16 20:52:19 +00002906 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002907 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07002908 return_type = &FromClass(called_method->GetReturnTypeDescriptor(),
2909 return_type_class,
2910 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002911 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002912 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2913 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002914 }
2915 }
2916 if (return_type == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002917 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002918 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Andreas Gampea5b09a62016-11-17 15:21:22 -08002919 dex::TypeIndex return_type_idx =
2920 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002921 const char* descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002922 return_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
jeffhaobdb76512011-09-07 11:43:16 -07002923 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002924 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002925 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002926 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002927 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002928 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002929 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07002930 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002931 }
jeffhaobdb76512011-09-07 11:43:16 -07002932 case Instruction::INVOKE_DIRECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002933 case Instruction::INVOKE_DIRECT_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002934 bool is_range = (inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08002935 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range);
Ian Rogers46685432012-06-03 22:26:43 -07002936 const char* return_type_descriptor;
2937 bool is_constructor;
Ian Rogersd8f69b02014-09-10 21:43:52 +00002938 const RegType* return_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07002939 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002940 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers46685432012-06-03 22:26:43 -07002941 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002942 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0;
Andreas Gampea5b09a62016-11-17 15:21:22 -08002943 dex::TypeIndex return_type_idx =
2944 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogers46685432012-06-03 22:26:43 -07002945 return_type_descriptor = dex_file_->StringByTypeIdx(return_type_idx);
2946 } else {
2947 is_constructor = called_method->IsConstructor();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002948 return_type_descriptor = called_method->GetReturnTypeDescriptor();
Vladimir Marko942fd312017-01-16 20:52:19 +00002949 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002950 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07002951 return_type = &FromClass(return_type_descriptor,
2952 return_type_class,
2953 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogers1ff3c982014-08-12 02:30:58 -07002954 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002955 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2956 self_->ClearException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002957 }
Ian Rogers46685432012-06-03 22:26:43 -07002958 }
2959 if (is_constructor) {
jeffhaobdb76512011-09-07 11:43:16 -07002960 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002961 * Some additional checks when calling a constructor. We know from the invocation arg check
2962 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2963 * that to require that called_method->klass is the same as this->klass or this->super,
2964 * allowing the latter only if the "this" argument is the same as the "this" argument to
2965 * this method (which implies that we're in a constructor ourselves).
jeffhaobdb76512011-09-07 11:43:16 -07002966 */
Orion Hodsoncfa325e2016-10-13 10:25:54 +01002967 const RegType& this_type = work_line_->GetInvocationThis(this, inst);
jeffhaob57e9522012-04-26 18:08:21 -07002968 if (this_type.IsConflict()) // failure.
2969 break;
jeffhaobdb76512011-09-07 11:43:16 -07002970
jeffhaob57e9522012-04-26 18:08:21 -07002971 /* no null refs allowed (?) */
2972 if (this_type.IsZero()) {
2973 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unable to initialize null ref";
2974 break;
jeffhao2a8a90e2011-09-26 14:25:31 -07002975 }
jeffhaob57e9522012-04-26 18:08:21 -07002976
2977 /* must be in same class or in superclass */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002978 // const RegType& this_super_klass = this_type.GetSuperClass(&reg_types_);
Ian Rogers46685432012-06-03 22:26:43 -07002979 // TODO: re-enable constructor type verification
2980 // if (this_super_klass.IsConflict()) {
jeffhaob57e9522012-04-26 18:08:21 -07002981 // Unknown super class, fail so we re-check at runtime.
Ian Rogers46685432012-06-03 22:26:43 -07002982 // Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "super class unknown for '" << this_type << "'";
2983 // break;
2984 // }
jeffhaob57e9522012-04-26 18:08:21 -07002985
2986 /* arg must be an uninitialized reference */
2987 if (!this_type.IsUninitializedTypes()) {
2988 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Expected initialization on uninitialized reference "
2989 << this_type;
2990 break;
2991 }
2992
2993 /*
2994 * Replace the uninitialized reference with an initialized one. We need to do this for all
2995 * registers that have the same object instance in them, not just the "this" register.
2996 */
Nicolas Geoffray98e6ce42016-02-16 18:42:15 +00002997 work_line_->MarkRefsAsInitialized(this, this_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002998 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07002999 if (return_type == nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07003000 return_type = &reg_types_.FromDescriptor(GetClassLoader(), return_type_descriptor, false);
Ian Rogers1ff3c982014-08-12 02:30:58 -07003001 }
3002 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003003 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003004 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -07003005 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003006 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003007 just_set_result = true;
3008 break;
3009 }
3010 case Instruction::INVOKE_STATIC:
3011 case Instruction::INVOKE_STATIC_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003012 bool is_range = (inst->Opcode() == Instruction::INVOKE_STATIC_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08003013 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range);
Ian Rogers28ad40d2011-10-27 15:19:26 -07003014 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07003015 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003016 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers28ad40d2011-10-27 15:19:26 -07003017 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Andreas Gampea5b09a62016-11-17 15:21:22 -08003018 dex::TypeIndex return_type_idx =
3019 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07003020 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07003021 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003022 descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07003023 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003024 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003025 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003026 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003027 } else {
3028 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3029 }
jeffhaobdb76512011-09-07 11:43:16 -07003030 just_set_result = true;
3031 }
3032 break;
jeffhaobdb76512011-09-07 11:43:16 -07003033 case Instruction::INVOKE_INTERFACE:
Ian Rogersd81871c2011-10-03 13:57:23 -07003034 case Instruction::INVOKE_INTERFACE_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003035 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08003036 ArtMethod* abs_method = VerifyInvocationArgs(inst, METHOD_INTERFACE, is_range);
Ian Rogers7b078e82014-09-10 14:44:24 -07003037 if (abs_method != nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003038 mirror::Class* called_interface = abs_method->GetDeclaringClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003039 if (!called_interface->IsInterface() && !called_interface->IsObjectClass()) {
3040 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected interface class in invoke-interface '"
David Sehr709b0702016-10-13 09:12:37 -07003041 << abs_method->PrettyMethod() << "'";
Ian Rogersad0b3a32012-04-16 14:50:24 -07003042 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07003043 }
Ian Rogers0d604842012-04-16 14:50:24 -07003044 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003045 /* Get the type of the "this" arg, which should either be a sub-interface of called
3046 * interface or Object (see comments in RegType::JoinClass).
3047 */
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003048 const RegType& this_type = work_line_->GetInvocationThis(this, inst);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003049 if (this_type.IsZero()) {
3050 /* null pointer always passes (and always fails at runtime) */
3051 } else {
3052 if (this_type.IsUninitializedTypes()) {
3053 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface call on uninitialized object "
3054 << this_type;
3055 break;
3056 }
3057 // In the past we have tried to assert that "called_interface" is assignable
3058 // from "this_type.GetClass()", however, as we do an imprecise Join
3059 // (RegType::JoinClass) we don't have full information on what interfaces are
3060 // implemented by "this_type". For example, two classes may implement the same
3061 // interfaces and have a common parent that doesn't implement the interface. The
3062 // join will set "this_type" to the parent class and a test that this implements
3063 // the interface will incorrectly fail.
3064 }
3065 /*
3066 * We don't have an object instance, so we can't find the concrete method. However, all of
3067 * the type information is in the abstract method, so we're good.
3068 */
3069 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07003070 if (abs_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003071 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003072 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Andreas Gampea5b09a62016-11-17 15:21:22 -08003073 dex::TypeIndex return_type_idx =
3074 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartierde40d472015-10-15 17:47:48 -07003075 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003076 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003077 descriptor = abs_method->GetReturnTypeDescriptor();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003078 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003079 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003080 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003081 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003082 } else {
3083 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3084 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003085 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07003086 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07003087 }
Narayan Kamath9823e782016-08-03 12:46:58 +01003088 case Instruction::INVOKE_POLYMORPHIC:
3089 case Instruction::INVOKE_POLYMORPHIC_RANGE: {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003090 bool is_range = (inst->Opcode() == Instruction::INVOKE_POLYMORPHIC_RANGE);
3091 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_POLYMORPHIC, is_range);
3092 if (called_method == nullptr) {
3093 // Convert potential soft failures in VerifyInvocationArgs() to hard errors.
3094 if (failure_messages_.size() > 0) {
3095 std::string message = failure_messages_.back()->str();
3096 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << message;
3097 } else {
3098 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-polymorphic verification failure.";
3099 }
3100 break;
3101 }
3102 if (!CheckSignaturePolymorphicMethod(called_method) ||
3103 !CheckSignaturePolymorphicReceiver(inst)) {
3104 break;
3105 }
3106 const uint32_t proto_idx = (is_range) ? inst->VRegH_4rcc() : inst->VRegH_45cc();
Orion Hodsonac141392017-01-13 11:53:47 +00003107 const char* return_descriptor =
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003108 dex_file_->GetReturnTypeDescriptor(dex_file_->GetProtoId(proto_idx));
3109 const RegType& return_type =
Orion Hodsonac141392017-01-13 11:53:47 +00003110 reg_types_.FromDescriptor(GetClassLoader(), return_descriptor, false);
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003111 if (!return_type.IsLowHalf()) {
3112 work_line_->SetResultRegisterType(this, return_type);
3113 } else {
3114 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3115 }
Orion Hodsonac141392017-01-13 11:53:47 +00003116 just_set_result = true;
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003117 break;
Narayan Kamath9823e782016-08-03 12:46:58 +01003118 }
Orion Hodsonc069a302017-01-18 09:23:12 +00003119 case Instruction::INVOKE_CUSTOM:
3120 case Instruction::INVOKE_CUSTOM_RANGE: {
3121 // Verify registers based on method_type in the call site.
3122 bool is_range = (inst->Opcode() == Instruction::INVOKE_CUSTOM_RANGE);
3123
3124 // Step 1. Check the call site that produces the method handle for invocation
3125 const uint32_t call_site_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
3126 if (!CheckCallSite(call_site_idx)) {
3127 DCHECK(HasFailures());
3128 break;
3129 }
3130
3131 // Step 2. Check the register arguments correspond to the expected arguments for the
3132 // method handle produced by step 1. The dex file verifier has checked ranges for
3133 // the first three arguments and CheckCallSite has checked the method handle type.
3134 CallSiteArrayValueIterator it(*dex_file_, dex_file_->GetCallSiteId(call_site_idx));
3135 it.Next(); // Skip to name.
3136 it.Next(); // Skip to method type of the method handle
3137 const uint32_t proto_idx = static_cast<uint32_t>(it.GetJavaValue().i);
3138 const DexFile::ProtoId& proto_id = dex_file_->GetProtoId(proto_idx);
3139 DexFileParameterIterator param_it(*dex_file_, proto_id);
3140 // Treat method as static as it has yet to be determined.
3141 VerifyInvocationArgsFromIterator(&param_it, inst, METHOD_STATIC, is_range, nullptr);
3142 const char* return_descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
3143
3144 // Step 3. Propagate return type information
3145 const RegType& return_type =
3146 reg_types_.FromDescriptor(GetClassLoader(), return_descriptor, false);
3147 if (!return_type.IsLowHalf()) {
3148 work_line_->SetResultRegisterType(this, return_type);
3149 } else {
3150 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3151 }
3152 just_set_result = true;
3153 // TODO: Add compiler support for invoke-custom (b/35337872).
3154 Fail(VERIFY_ERROR_FORCE_INTERPRETER);
3155 break;
3156 }
jeffhaobdb76512011-09-07 11:43:16 -07003157 case Instruction::NEG_INT:
3158 case Instruction::NOT_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003159 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003160 break;
3161 case Instruction::NEG_LONG:
3162 case Instruction::NOT_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003163 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003164 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003165 break;
3166 case Instruction::NEG_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003167 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003168 break;
3169 case Instruction::NEG_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003170 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003171 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003172 break;
3173 case Instruction::INT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003174 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003175 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003176 break;
3177 case Instruction::INT_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003178 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003179 break;
3180 case Instruction::INT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003181 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003182 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003183 break;
3184 case Instruction::LONG_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003185 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003186 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003187 break;
3188 case Instruction::LONG_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003189 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003190 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003191 break;
3192 case Instruction::LONG_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003193 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003194 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003195 break;
3196 case Instruction::FLOAT_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003197 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003198 break;
3199 case Instruction::FLOAT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003200 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003201 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003202 break;
3203 case Instruction::FLOAT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003204 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003205 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003206 break;
3207 case Instruction::DOUBLE_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003208 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003209 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003210 break;
3211 case Instruction::DOUBLE_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003212 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003213 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003214 break;
3215 case Instruction::DOUBLE_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003216 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003217 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003218 break;
3219 case Instruction::INT_TO_BYTE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003220 work_line_->CheckUnaryOp(this, inst, reg_types_.Byte(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003221 break;
3222 case Instruction::INT_TO_CHAR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003223 work_line_->CheckUnaryOp(this, inst, reg_types_.Char(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003224 break;
3225 case Instruction::INT_TO_SHORT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003226 work_line_->CheckUnaryOp(this, inst, reg_types_.Short(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003227 break;
3228
3229 case Instruction::ADD_INT:
3230 case Instruction::SUB_INT:
3231 case Instruction::MUL_INT:
3232 case Instruction::REM_INT:
3233 case Instruction::DIV_INT:
3234 case Instruction::SHL_INT:
3235 case Instruction::SHR_INT:
3236 case Instruction::USHR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003237 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003238 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003239 break;
3240 case Instruction::AND_INT:
3241 case Instruction::OR_INT:
3242 case Instruction::XOR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003243 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003244 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07003245 break;
3246 case Instruction::ADD_LONG:
3247 case Instruction::SUB_LONG:
3248 case Instruction::MUL_LONG:
3249 case Instruction::DIV_LONG:
3250 case Instruction::REM_LONG:
3251 case Instruction::AND_LONG:
3252 case Instruction::OR_LONG:
3253 case Instruction::XOR_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003254 work_line_->CheckBinaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003255 reg_types_.LongLo(), reg_types_.LongHi(),
3256 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003257 break;
3258 case Instruction::SHL_LONG:
3259 case Instruction::SHR_LONG:
3260 case Instruction::USHR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07003261 /* shift distance is Int, making these different from other binary operations */
Ian Rogers7b078e82014-09-10 14:44:24 -07003262 work_line_->CheckBinaryOpWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003263 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003264 break;
3265 case Instruction::ADD_FLOAT:
3266 case Instruction::SUB_FLOAT:
3267 case Instruction::MUL_FLOAT:
3268 case Instruction::DIV_FLOAT:
3269 case Instruction::REM_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003270 work_line_->CheckBinaryOp(this, inst, reg_types_.Float(), reg_types_.Float(),
3271 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003272 break;
3273 case Instruction::ADD_DOUBLE:
3274 case Instruction::SUB_DOUBLE:
3275 case Instruction::MUL_DOUBLE:
3276 case Instruction::DIV_DOUBLE:
3277 case Instruction::REM_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003278 work_line_->CheckBinaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003279 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
3280 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003281 break;
3282 case Instruction::ADD_INT_2ADDR:
3283 case Instruction::SUB_INT_2ADDR:
3284 case Instruction::MUL_INT_2ADDR:
3285 case Instruction::REM_INT_2ADDR:
3286 case Instruction::SHL_INT_2ADDR:
3287 case Instruction::SHR_INT_2ADDR:
3288 case Instruction::USHR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003289 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3290 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003291 break;
3292 case Instruction::AND_INT_2ADDR:
3293 case Instruction::OR_INT_2ADDR:
3294 case Instruction::XOR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003295 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3296 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07003297 break;
3298 case Instruction::DIV_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003299 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3300 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003301 break;
3302 case Instruction::ADD_LONG_2ADDR:
3303 case Instruction::SUB_LONG_2ADDR:
3304 case Instruction::MUL_LONG_2ADDR:
3305 case Instruction::DIV_LONG_2ADDR:
3306 case Instruction::REM_LONG_2ADDR:
3307 case Instruction::AND_LONG_2ADDR:
3308 case Instruction::OR_LONG_2ADDR:
3309 case Instruction::XOR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003310 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003311 reg_types_.LongLo(), reg_types_.LongHi(),
3312 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003313 break;
3314 case Instruction::SHL_LONG_2ADDR:
3315 case Instruction::SHR_LONG_2ADDR:
3316 case Instruction::USHR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003317 work_line_->CheckBinaryOp2addrWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003318 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003319 break;
3320 case Instruction::ADD_FLOAT_2ADDR:
3321 case Instruction::SUB_FLOAT_2ADDR:
3322 case Instruction::MUL_FLOAT_2ADDR:
3323 case Instruction::DIV_FLOAT_2ADDR:
3324 case Instruction::REM_FLOAT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003325 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Float(), reg_types_.Float(),
3326 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003327 break;
3328 case Instruction::ADD_DOUBLE_2ADDR:
3329 case Instruction::SUB_DOUBLE_2ADDR:
3330 case Instruction::MUL_DOUBLE_2ADDR:
3331 case Instruction::DIV_DOUBLE_2ADDR:
3332 case Instruction::REM_DOUBLE_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003333 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003334 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
3335 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003336 break;
3337 case Instruction::ADD_INT_LIT16:
Ian Rogersf72a11d2014-10-30 15:41:08 -07003338 case Instruction::RSUB_INT_LIT16:
jeffhaobdb76512011-09-07 11:43:16 -07003339 case Instruction::MUL_INT_LIT16:
3340 case Instruction::DIV_INT_LIT16:
3341 case Instruction::REM_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07003342 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
3343 true);
jeffhaobdb76512011-09-07 11:43:16 -07003344 break;
3345 case Instruction::AND_INT_LIT16:
3346 case Instruction::OR_INT_LIT16:
3347 case Instruction::XOR_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07003348 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
3349 true);
jeffhaobdb76512011-09-07 11:43:16 -07003350 break;
3351 case Instruction::ADD_INT_LIT8:
3352 case Instruction::RSUB_INT_LIT8:
3353 case Instruction::MUL_INT_LIT8:
3354 case Instruction::DIV_INT_LIT8:
3355 case Instruction::REM_INT_LIT8:
3356 case Instruction::SHL_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07003357 case Instruction::SHR_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07003358 case Instruction::USHR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07003359 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
3360 false);
jeffhaobdb76512011-09-07 11:43:16 -07003361 break;
3362 case Instruction::AND_INT_LIT8:
3363 case Instruction::OR_INT_LIT8:
3364 case Instruction::XOR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07003365 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
3366 false);
jeffhaobdb76512011-09-07 11:43:16 -07003367 break;
3368
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003369 // Special instructions.
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003370 case Instruction::RETURN_VOID_NO_BARRIER:
3371 if (IsConstructor() && !IsStatic()) {
3372 auto& declaring_class = GetDeclaringClass();
Andreas Gampe68df3202015-06-22 11:35:46 -07003373 if (declaring_class.IsUnresolvedReference()) {
3374 // We must iterate over the fields, even if we cannot use mirror classes to do so. Do it
3375 // manually over the underlying dex file.
3376 uint32_t first_index = GetFirstFinalInstanceFieldIndex(*dex_file_,
3377 dex_file_->GetMethodId(dex_method_idx_).class_idx_);
3378 if (first_index != DexFile::kDexNoIndex) {
3379 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-no-barrier not expected for field "
3380 << first_index;
3381 }
3382 break;
3383 }
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003384 auto* klass = declaring_class.GetClass();
3385 for (uint32_t i = 0, num_fields = klass->NumInstanceFields(); i < num_fields; ++i) {
3386 if (klass->GetInstanceField(i)->IsFinal()) {
Mathieu Chartiere86deef2015-03-19 13:43:37 -07003387 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-no-barrier not expected for "
David Sehr709b0702016-10-13 09:12:37 -07003388 << klass->GetInstanceField(i)->PrettyField();
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003389 break;
3390 }
3391 }
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02003392 }
Andreas Gampeb2917962015-07-31 13:36:10 -07003393 // Handle this like a RETURN_VOID now. Code is duplicated to separate standard from
3394 // quickened opcodes (otherwise this could be a fall-through).
3395 if (!IsConstructor()) {
3396 if (!GetMethodReturnType().IsConflict()) {
3397 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
3398 }
3399 }
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02003400 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003401 // Note: the following instructions encode offsets derived from class linking.
Neil Fuller0e844392016-09-08 13:43:31 +01003402 // As such they use Class*/Field*/Executable* as these offsets only have
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003403 // meaning if the class linking and resolution were successful.
3404 case Instruction::IGET_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003405 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003406 break;
3407 case Instruction::IGET_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003408 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003409 break;
3410 case Instruction::IGET_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003411 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003412 break;
Mathieu Chartierffc605c2014-12-10 10:35:44 -08003413 case Instruction::IGET_BOOLEAN_QUICK:
3414 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true);
3415 break;
3416 case Instruction::IGET_BYTE_QUICK:
3417 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true);
3418 break;
3419 case Instruction::IGET_CHAR_QUICK:
3420 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true);
3421 break;
3422 case Instruction::IGET_SHORT_QUICK:
3423 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true);
3424 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003425 case Instruction::IPUT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003426 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003427 break;
Fred Shih37f05ef2014-07-16 18:38:08 -07003428 case Instruction::IPUT_BOOLEAN_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003429 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003430 break;
3431 case Instruction::IPUT_BYTE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003432 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003433 break;
3434 case Instruction::IPUT_CHAR_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003435 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003436 break;
3437 case Instruction::IPUT_SHORT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003438 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003439 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003440 case Instruction::IPUT_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003441 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003442 break;
3443 case Instruction::IPUT_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003444 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003445 break;
3446 case Instruction::INVOKE_VIRTUAL_QUICK:
3447 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
3448 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003449 ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range);
Ian Rogers7b078e82014-09-10 14:44:24 -07003450 if (called_method != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003451 const char* descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003452 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003453 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003454 work_line_->SetResultRegisterType(this, return_type);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003455 } else {
3456 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3457 }
3458 just_set_result = true;
3459 }
3460 break;
3461 }
3462
Ian Rogersd81871c2011-10-03 13:57:23 -07003463 /* These should never appear during verification. */
Mathieu Chartierffc605c2014-12-10 10:35:44 -08003464 case Instruction::UNUSED_3E ... Instruction::UNUSED_43:
Narayan Kamath8ec3bd22016-08-03 12:46:23 +01003465 case Instruction::UNUSED_F3 ... Instruction::UNUSED_F9:
Orion Hodsonc069a302017-01-18 09:23:12 +00003466 case Instruction::UNUSED_FE ... Instruction::UNUSED_FF:
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003467 case Instruction::UNUSED_79:
3468 case Instruction::UNUSED_7A:
jeffhaod5347e02012-03-22 17:25:05 -07003469 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Unexpected opcode " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07003470 break;
3471
3472 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003473 * DO NOT add a "default" clause here. Without it the compiler will
jeffhaobdb76512011-09-07 11:43:16 -07003474 * complain if an instruction is missing (which is desirable).
3475 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003476 } // end - switch (dec_insn.opcode)
jeffhaobdb76512011-09-07 11:43:16 -07003477
Ian Rogersad0b3a32012-04-16 14:50:24 -07003478 if (have_pending_hard_failure_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08003479 if (Runtime::Current()->IsAotCompiler()) {
3480 /* When AOT compiling, check that the last failure is a hard failure */
Andreas Gampeb588f4c2015-05-26 13:35:39 -07003481 if (failures_[failures_.size() - 1] != VERIFY_ERROR_BAD_CLASS_HARD) {
3482 LOG(ERROR) << "Pending failures:";
3483 for (auto& error : failures_) {
3484 LOG(ERROR) << error;
3485 }
3486 for (auto& error_msg : failure_messages_) {
3487 LOG(ERROR) << error_msg->str();
3488 }
3489 LOG(FATAL) << "Pending hard failure, but last failure not hard.";
3490 }
Ian Rogerse1758fe2012-04-19 11:31:15 -07003491 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003492 /* immediate failure, reject class */
3493 info_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_);
3494 return false;
jeffhaofaf459e2012-08-31 15:32:47 -07003495 } else if (have_pending_runtime_throw_failure_) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07003496 /* checking interpreter will throw, mark following code as unreachable */
jeffhaofaf459e2012-08-31 15:32:47 -07003497 opcode_flags = Instruction::kThrow;
Andreas Gampea727e372015-08-25 09:22:37 -07003498 // Note: the flag must be reset as it is only global to decouple Fail and is semantically per
3499 // instruction. However, RETURN checking may throw LOCKING errors, so we clear at the
3500 // very end.
jeffhaobdb76512011-09-07 11:43:16 -07003501 }
jeffhaobdb76512011-09-07 11:43:16 -07003502 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003503 * If we didn't just set the result register, clear it out. This ensures that you can only use
3504 * "move-result" immediately after the result is set. (We could check this statically, but it's
3505 * not expensive and it makes our debugging output cleaner.)
jeffhaobdb76512011-09-07 11:43:16 -07003506 */
3507 if (!just_set_result) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003508 work_line_->SetResultTypeToUnknown(this);
jeffhaobdb76512011-09-07 11:43:16 -07003509 }
3510
jeffhaobdb76512011-09-07 11:43:16 -07003511 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003512 * Handle "branch". Tag the branch target.
jeffhaobdb76512011-09-07 11:43:16 -07003513 *
3514 * NOTE: instructions like Instruction::EQZ provide information about the
jeffhaod1f0fde2011-09-08 17:25:33 -07003515 * state of the register when the branch is taken or not taken. For example,
jeffhaobdb76512011-09-07 11:43:16 -07003516 * somebody could get a reference field, check it for zero, and if the
3517 * branch is taken immediately store that register in a boolean field
jeffhaod1f0fde2011-09-08 17:25:33 -07003518 * since the value is known to be zero. We do not currently account for
jeffhaobdb76512011-09-07 11:43:16 -07003519 * that, and will reject the code.
3520 *
3521 * TODO: avoid re-fetching the branch target
3522 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003523 if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07003524 bool isConditional, selfOkay;
Ian Rogersd81871c2011-10-03 13:57:23 -07003525 if (!GetBranchOffset(work_insn_idx_, &branch_target, &isConditional, &selfOkay)) {
jeffhaobdb76512011-09-07 11:43:16 -07003526 /* should never happen after static verification */
jeffhaod5347e02012-03-22 17:25:05 -07003527 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad branch";
jeffhaobdb76512011-09-07 11:43:16 -07003528 return false;
3529 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08003530 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0);
Stephen Kyle9bc61992014-09-22 13:53:15 +01003531 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, work_insn_idx_ + branch_target)) {
jeffhaobdb76512011-09-07 11:43:16 -07003532 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003533 }
jeffhaobdb76512011-09-07 11:43:16 -07003534 /* update branch target, set "changed" if appropriate */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003535 if (nullptr != branch_line) {
Ian Rogersebbdd872014-07-07 23:53:08 -07003536 if (!UpdateRegisters(work_insn_idx_ + branch_target, branch_line.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003537 return false;
3538 }
3539 } else {
Ian Rogersebbdd872014-07-07 23:53:08 -07003540 if (!UpdateRegisters(work_insn_idx_ + branch_target, work_line_.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003541 return false;
3542 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003543 }
jeffhaobdb76512011-09-07 11:43:16 -07003544 }
3545
3546 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003547 * Handle "switch". Tag all possible branch targets.
jeffhaobdb76512011-09-07 11:43:16 -07003548 *
3549 * We've already verified that the table is structurally sound, so we
3550 * just need to walk through and tag the targets.
3551 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003552 if ((opcode_flags & Instruction::kSwitch) != 0) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07003553 int offset_to_switch = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
jeffhaobdb76512011-09-07 11:43:16 -07003554 const uint16_t* switch_insns = insns + offset_to_switch;
3555 int switch_count = switch_insns[1];
3556 int offset_to_targets, targ;
3557
3558 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
3559 /* 0 = sig, 1 = count, 2/3 = first key */
3560 offset_to_targets = 4;
3561 } else {
3562 /* 0 = sig, 1 = count, 2..count * 2 = keys */
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003563 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH);
jeffhaobdb76512011-09-07 11:43:16 -07003564 offset_to_targets = 2 + 2 * switch_count;
3565 }
3566
3567 /* verify each switch target */
3568 for (targ = 0; targ < switch_count; targ++) {
3569 int offset;
3570 uint32_t abs_offset;
3571
3572 /* offsets are 32-bit, and only partly endian-swapped */
3573 offset = switch_insns[offset_to_targets + targ * 2] |
Andreas Gampe53de99c2015-08-17 13:43:55 -07003574 (static_cast<int32_t>(switch_insns[offset_to_targets + targ * 2 + 1]) << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07003575 abs_offset = work_insn_idx_ + offset;
3576 DCHECK_LT(abs_offset, code_item_->insns_size_in_code_units_);
Stephen Kyle9bc61992014-09-22 13:53:15 +01003577 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, abs_offset)) {
jeffhaobdb76512011-09-07 11:43:16 -07003578 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003579 }
Ian Rogersebbdd872014-07-07 23:53:08 -07003580 if (!UpdateRegisters(abs_offset, work_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07003581 return false;
Ian Rogersebbdd872014-07-07 23:53:08 -07003582 }
jeffhaobdb76512011-09-07 11:43:16 -07003583 }
3584 }
3585
3586 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003587 * Handle instructions that can throw and that are sitting in a "try" block. (If they're not in a
3588 * "try" block when they throw, control transfers out of the method.)
jeffhaobdb76512011-09-07 11:43:16 -07003589 */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003590 if ((opcode_flags & Instruction::kThrow) != 0 && GetInstructionFlags(work_insn_idx_).IsInTry()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07003591 bool has_catch_all_handler = false;
Ian Rogers0571d352011-11-03 19:51:38 -07003592 CatchHandlerIterator iterator(*code_item_, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07003593
Andreas Gampef91baf12014-07-18 15:41:00 -07003594 // Need the linker to try and resolve the handled class to check if it's Throwable.
3595 ClassLinker* linker = Runtime::Current()->GetClassLinker();
3596
Ian Rogers0571d352011-11-03 19:51:38 -07003597 for (; iterator.HasNext(); iterator.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08003598 dex::TypeIndex handler_type_idx = iterator.GetHandlerTypeIndex();
3599 if (!handler_type_idx.IsValid()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07003600 has_catch_all_handler = true;
3601 } else {
3602 // It is also a catch-all if it is java.lang.Throwable.
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003603 mirror::Class* klass = linker->ResolveType(*dex_file_, handler_type_idx, dex_cache_,
3604 class_loader_);
Andreas Gampef91baf12014-07-18 15:41:00 -07003605 if (klass != nullptr) {
3606 if (klass == mirror::Throwable::GetJavaLangThrowable()) {
3607 has_catch_all_handler = true;
3608 }
3609 } else {
3610 // Clear exception.
Ian Rogers7b078e82014-09-10 14:44:24 -07003611 DCHECK(self_->IsExceptionPending());
3612 self_->ClearException();
Andreas Gampef91baf12014-07-18 15:41:00 -07003613 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003614 }
jeffhaobdb76512011-09-07 11:43:16 -07003615 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003616 * Merge registers into the "catch" block. We want to use the "savedRegs" rather than
3617 * "work_regs", because at runtime the exception will be thrown before the instruction
3618 * modifies any registers.
jeffhaobdb76512011-09-07 11:43:16 -07003619 */
Ian Rogersebbdd872014-07-07 23:53:08 -07003620 if (!UpdateRegisters(iterator.GetHandlerAddress(), saved_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07003621 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003622 }
jeffhaobdb76512011-09-07 11:43:16 -07003623 }
3624
3625 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003626 * If the monitor stack depth is nonzero, there must be a "catch all" handler for this
3627 * instruction. This does apply to monitor-exit because of async exception handling.
jeffhaobdb76512011-09-07 11:43:16 -07003628 */
Andreas Gampef91baf12014-07-18 15:41:00 -07003629 if (work_line_->MonitorStackDepth() > 0 && !has_catch_all_handler) {
jeffhaobdb76512011-09-07 11:43:16 -07003630 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003631 * The state in work_line reflects the post-execution state. If the current instruction is a
3632 * monitor-enter and the monitor stack was empty, we don't need a catch-all (if it throws,
jeffhaobdb76512011-09-07 11:43:16 -07003633 * it will do so before grabbing the lock).
3634 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02003635 if (inst->Opcode() != Instruction::MONITOR_ENTER || work_line_->MonitorStackDepth() != 1) {
jeffhaod5347e02012-03-22 17:25:05 -07003636 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
Ian Rogersd81871c2011-10-03 13:57:23 -07003637 << "expected to be within a catch-all for an instruction where a monitor is held";
jeffhaobdb76512011-09-07 11:43:16 -07003638 return false;
3639 }
3640 }
3641 }
3642
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003643 /* Handle "continue". Tag the next consecutive instruction.
3644 * Note: Keep the code handling "continue" case below the "branch" and "switch" cases,
3645 * because it changes work_line_ when performing peephole optimization
3646 * and this change should not be used in those cases.
3647 */
Ian Rogers6d376ae2013-07-23 15:12:40 -07003648 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003649 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3650 uint32_t next_insn_idx = work_insn_idx_ + inst->SizeInCodeUnits();
Ian Rogers6d376ae2013-07-23 15:12:40 -07003651 if (next_insn_idx >= code_item_->insns_size_in_code_units_) {
3652 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Execution can walk off end of code area";
3653 return false;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003654 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003655 // The only way to get to a move-exception instruction is to get thrown there. Make sure the
3656 // next instruction isn't one.
3657 if (!CheckNotMoveException(code_item_->insns_, next_insn_idx)) {
3658 return false;
3659 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003660 if (nullptr != fallthrough_line) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003661 // Make workline consistent with fallthrough computed from peephole optimization.
3662 work_line_->CopyFromLine(fallthrough_line.get());
3663 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003664 if (GetInstructionFlags(next_insn_idx).IsReturn()) {
Ian Rogersb8c78592013-07-25 23:52:52 +00003665 // For returns we only care about the operand to the return, all other registers are dead.
3666 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn_idx);
Andreas Gampea727e372015-08-25 09:22:37 -07003667 AdjustReturnLine(this, ret_inst, work_line_.get());
Ian Rogersb8c78592013-07-25 23:52:52 +00003668 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003669 RegisterLine* next_line = reg_table_.GetLine(next_insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07003670 if (next_line != nullptr) {
Ian Rogersebbdd872014-07-07 23:53:08 -07003671 // Merge registers into what we have for the next instruction, and set the "changed" flag if
3672 // needed. If the merge changes the state of the registers then the work line will be
3673 // updated.
3674 if (!UpdateRegisters(next_insn_idx, work_line_.get(), true)) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003675 return false;
3676 }
3677 } else {
3678 /*
3679 * We're not recording register data for the next instruction, so we don't know what the
3680 * prior state was. We have to assume that something has changed and re-evaluate it.
3681 */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003682 GetInstructionFlags(next_insn_idx).SetChanged();
Ian Rogers6d376ae2013-07-23 15:12:40 -07003683 }
3684 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003685
jeffhaod1f0fde2011-09-08 17:25:33 -07003686 /* If we're returning from the method, make sure monitor stack is empty. */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003687 if ((opcode_flags & Instruction::kReturn) != 0) {
Andreas Gampea727e372015-08-25 09:22:37 -07003688 work_line_->VerifyMonitorStackEmpty(this);
jeffhaobdb76512011-09-07 11:43:16 -07003689 }
3690
3691 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003692 * Update start_guess. Advance to the next instruction of that's
3693 * possible, otherwise use the branch target if one was found. If
jeffhaobdb76512011-09-07 11:43:16 -07003694 * neither of those exists we're in a return or throw; leave start_guess
3695 * alone and let the caller sort it out.
3696 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003697 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003698 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3699 *start_guess = work_insn_idx_ + inst->SizeInCodeUnits();
Elliott Hughesadb8c672012-03-06 16:49:32 -08003700 } else if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07003701 /* we're still okay if branch_target is zero */
Ian Rogersd81871c2011-10-03 13:57:23 -07003702 *start_guess = work_insn_idx_ + branch_target;
jeffhaobdb76512011-09-07 11:43:16 -07003703 }
3704
Ian Rogersd81871c2011-10-03 13:57:23 -07003705 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
Mathieu Chartierde40d472015-10-15 17:47:48 -07003706 DCHECK(GetInstructionFlags(*start_guess).IsOpcode());
jeffhaobdb76512011-09-07 11:43:16 -07003707
Andreas Gampea727e372015-08-25 09:22:37 -07003708 if (have_pending_runtime_throw_failure_) {
3709 have_any_pending_runtime_throw_failure_ = true;
3710 // Reset the pending_runtime_throw flag now.
3711 have_pending_runtime_throw_failure_ = false;
3712 }
3713
jeffhaobdb76512011-09-07 11:43:16 -07003714 return true;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003715} // NOLINT(readability/fn_size)
jeffhaobdb76512011-09-07 11:43:16 -07003716
Mathieu Chartierde40d472015-10-15 17:47:48 -07003717void MethodVerifier::UninstantiableError(const char* descriptor) {
3718 Fail(VerifyError::VERIFY_ERROR_NO_CLASS) << "Could not create precise reference for "
3719 << "non-instantiable klass " << descriptor;
3720}
3721
3722inline bool MethodVerifier::IsInstantiableOrPrimitive(mirror::Class* klass) {
3723 return klass->IsInstantiable() || klass->IsPrimitive();
3724}
3725
Andreas Gampea5b09a62016-11-17 15:21:22 -08003726const RegType& MethodVerifier::ResolveClassAndCheckAccess(dex::TypeIndex class_idx) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00003727 mirror::Class* klass = can_load_classes_
3728 ? Runtime::Current()->GetClassLinker()->ResolveType(
3729 *dex_file_, class_idx, dex_cache_, class_loader_)
3730 : ClassLinker::LookupResolvedType(class_idx, dex_cache_.Get(), class_loader_.Get()).Ptr();
3731 if (can_load_classes_ && klass == nullptr) {
3732 DCHECK(self_->IsExceptionPending());
3733 self_->ClearException();
3734 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003735 const RegType* result = nullptr;
Vladimir Marko9cb0c462017-04-21 13:31:41 +01003736 if (klass != nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07003737 bool precise = klass->CannotBeAssignedFromOtherTypes();
3738 if (precise && !IsInstantiableOrPrimitive(klass)) {
3739 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3740 UninstantiableError(descriptor);
3741 precise = false;
3742 }
3743 result = reg_types_.FindClass(klass, precise);
3744 if (result == nullptr) {
3745 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3746 result = reg_types_.InsertClass(descriptor, klass, precise);
3747 }
3748 } else {
3749 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3750 result = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003751 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003752 DCHECK(result != nullptr);
3753 if (result->IsConflict()) {
3754 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3755 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "accessing broken descriptor '" << descriptor
3756 << "' in " << GetDeclaringClass();
3757 return *result;
3758 }
David Brazdilca3c8c32016-09-06 14:04:48 +01003759
3760 // Record result of class resolution attempt.
3761 VerifierDeps::MaybeRecordClassResolution(*dex_file_, class_idx, klass);
3762
Ian Rogersad0b3a32012-04-16 14:50:24 -07003763 // Check if access is allowed. Unresolved types use xxxWithAccessCheck to
Jeff Haob24b4a72013-07-31 13:47:31 -07003764 // check at runtime if access is allowed and so pass here. If result is
3765 // primitive, skip the access check.
Mathieu Chartierde40d472015-10-15 17:47:48 -07003766 if (result->IsNonZeroReferenceTypes() && !result->IsUnresolvedTypes()) {
3767 const RegType& referrer = GetDeclaringClass();
3768 if (!referrer.IsUnresolvedTypes() && !referrer.CanAccess(*result)) {
3769 Fail(VERIFY_ERROR_ACCESS_CLASS) << "illegal class access: '"
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +01003770 << referrer << "' -> '" << *result << "'";
Mathieu Chartierde40d472015-10-15 17:47:48 -07003771 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003772 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003773 return *result;
Ian Rogersd81871c2011-10-03 13:57:23 -07003774}
3775
Ian Rogersd8f69b02014-09-10 21:43:52 +00003776const RegType& MethodVerifier::GetCaughtExceptionType() {
Ian Rogers7b078e82014-09-10 14:44:24 -07003777 const RegType* common_super = nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003778 if (code_item_->tries_size_ != 0) {
Ian Rogers13735952014-10-08 12:43:28 -07003779 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
Ian Rogersd81871c2011-10-03 13:57:23 -07003780 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
3781 for (uint32_t i = 0; i < handlers_size; i++) {
Ian Rogers0571d352011-11-03 19:51:38 -07003782 CatchHandlerIterator iterator(handlers_ptr);
3783 for (; iterator.HasNext(); iterator.Next()) {
3784 if (iterator.GetHandlerAddress() == (uint32_t) work_insn_idx_) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08003785 if (!iterator.GetHandlerTypeIndex().IsValid()) {
Ian Rogersb4903572012-10-11 11:52:56 -07003786 common_super = &reg_types_.JavaLangThrowable(false);
Ian Rogersd81871c2011-10-03 13:57:23 -07003787 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00003788 const RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex());
David Brazdilca3c8c32016-09-06 14:04:48 +01003789 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(exception, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00003790 DCHECK(!exception.IsUninitializedTypes()); // Comes from dex, shouldn't be uninit.
Jeff Haoc26a56c2013-11-04 12:00:47 -08003791 if (exception.IsUnresolvedTypes()) {
3792 // We don't know enough about the type. Fail here and let runtime handle it.
3793 Fail(VERIFY_ERROR_NO_CLASS) << "unresolved exception class " << exception;
3794 return exception;
3795 } else {
3796 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unexpected non-exception class " << exception;
3797 return reg_types_.Conflict();
3798 }
Jeff Haob878f212014-04-24 16:25:36 -07003799 } else if (common_super == nullptr) {
3800 common_super = &exception;
Ian Rogers28ad40d2011-10-27 15:19:26 -07003801 } else if (common_super->Equals(exception)) {
Ian Rogersc4762272012-02-01 15:55:55 -08003802 // odd case, but nothing to do
Ian Rogersd81871c2011-10-03 13:57:23 -07003803 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01003804 common_super = &common_super->Merge(exception, &reg_types_, this);
Andreas Gampe7c038102014-10-27 20:08:46 -07003805 if (FailOrAbort(this,
David Brazdilca3c8c32016-09-06 14:04:48 +01003806 reg_types_.JavaLangThrowable(false).IsAssignableFrom(
3807 *common_super, this),
Andreas Gampe7c038102014-10-27 20:08:46 -07003808 "java.lang.Throwable is not assignable-from common_super at ",
3809 work_insn_idx_)) {
3810 break;
3811 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003812 }
3813 }
3814 }
3815 }
Ian Rogers0571d352011-11-03 19:51:38 -07003816 handlers_ptr = iterator.EndDataPointer();
Ian Rogersd81871c2011-10-03 13:57:23 -07003817 }
3818 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003819 if (common_super == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003820 /* no catch blocks, or no catches with classes we can find */
jeffhaod5347e02012-03-22 17:25:05 -07003821 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unable to find exception handler";
Ian Rogersad0b3a32012-04-16 14:50:24 -07003822 return reg_types_.Conflict();
Ian Rogersd81871c2011-10-03 13:57:23 -07003823 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003824 return *common_super;
Ian Rogersd81871c2011-10-03 13:57:23 -07003825}
3826
David Brazdilca3c8c32016-09-06 14:04:48 +01003827inline static MethodResolutionKind GetMethodResolutionKind(
3828 MethodType method_type, bool is_interface) {
3829 if (method_type == METHOD_DIRECT || method_type == METHOD_STATIC) {
3830 return kDirectMethodResolution;
3831 } else if (method_type == METHOD_INTERFACE) {
3832 return kInterfaceMethodResolution;
3833 } else if (method_type == METHOD_SUPER && is_interface) {
3834 return kInterfaceMethodResolution;
3835 } else {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003836 DCHECK(method_type == METHOD_VIRTUAL || method_type == METHOD_SUPER
3837 || method_type == METHOD_POLYMORPHIC);
David Brazdilca3c8c32016-09-06 14:04:48 +01003838 return kVirtualMethodResolution;
3839 }
3840}
3841
Mathieu Chartiere401d142015-04-22 13:56:20 -07003842ArtMethod* MethodVerifier::ResolveMethodAndCheckAccess(
Alex Light7268d472016-01-20 15:50:01 -08003843 uint32_t dex_method_idx, MethodType method_type) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003844 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx);
Ian Rogersd8f69b02014-09-10 21:43:52 +00003845 const RegType& klass_type = ResolveClassAndCheckAccess(method_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003846 if (klass_type.IsConflict()) {
3847 std::string append(" in attempt to access method ");
3848 append += dex_file_->GetMethodName(method_id);
3849 AppendToLastFailMessage(append);
Ian Rogers7b078e82014-09-10 14:44:24 -07003850 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08003851 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003852 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003853 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08003854 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003855 mirror::Class* klass = klass_type.GetClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003856 const RegType& referrer = GetDeclaringClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003857 auto* cl = Runtime::Current()->GetClassLinker();
3858 auto pointer_size = cl->GetImagePointerSize();
David Brazdilca3c8c32016-09-06 14:04:48 +01003859 MethodResolutionKind res_kind = GetMethodResolutionKind(method_type, klass->IsInterface());
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003860
Mathieu Chartiere401d142015-04-22 13:56:20 -07003861 ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx, pointer_size);
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003862 bool stash_method = false;
Ian Rogers7b078e82014-09-10 14:44:24 -07003863 if (res_method == nullptr) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003864 const char* name = dex_file_->GetMethodName(method_id);
Ian Rogersd91d6d62013-09-25 20:26:14 -07003865 const Signature signature = dex_file_->GetMethodSignature(method_id);
jeffhao8cd6dda2012-02-22 10:15:34 -08003866
David Brazdilca3c8c32016-09-06 14:04:48 +01003867 if (res_kind == kDirectMethodResolution) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003868 res_method = klass->FindDirectMethod(name, signature, pointer_size);
David Brazdilca3c8c32016-09-06 14:04:48 +01003869 } else if (res_kind == kVirtualMethodResolution) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003870 res_method = klass->FindVirtualMethod(name, signature, pointer_size);
David Brazdilca3c8c32016-09-06 14:04:48 +01003871 } else {
3872 DCHECK_EQ(res_kind, kInterfaceMethodResolution);
3873 res_method = klass->FindInterfaceMethod(name, signature, pointer_size);
Ian Rogersd81871c2011-10-03 13:57:23 -07003874 }
David Brazdilca3c8c32016-09-06 14:04:48 +01003875
Ian Rogers7b078e82014-09-10 14:44:24 -07003876 if (res_method != nullptr) {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003877 stash_method = true;
Ian Rogersd81871c2011-10-03 13:57:23 -07003878 } else {
jeffhao8cd6dda2012-02-22 10:15:34 -08003879 // If a virtual or interface method wasn't found with the expected type, look in
3880 // the direct methods. This can happen when the wrong invoke type is used or when
3881 // a class has changed, and will be flagged as an error in later checks.
David Brazdilca3c8c32016-09-06 14:04:48 +01003882 // Note that in this case, we do not put the resolved method in the Dex cache
3883 // because it was not discovered using the expected type of method resolution.
3884 if (res_kind != kDirectMethodResolution) {
3885 // Record result of the initial resolution attempt.
3886 VerifierDeps::MaybeRecordMethodResolution(*dex_file_, dex_method_idx, res_kind, nullptr);
3887 // Change resolution type to 'direct' and try to resolve again.
3888 res_kind = kDirectMethodResolution;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003889 res_method = klass->FindDirectMethod(name, signature, pointer_size);
jeffhao8cd6dda2012-02-22 10:15:34 -08003890 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003891 }
3892 }
David Brazdilca3c8c32016-09-06 14:04:48 +01003893
3894 // Record result of method resolution attempt.
3895 VerifierDeps::MaybeRecordMethodResolution(*dex_file_, dex_method_idx, res_kind, res_method);
3896
3897 if (res_method == nullptr) {
3898 Fail(VERIFY_ERROR_NO_METHOD) << "couldn't find method "
David Sehr709b0702016-10-13 09:12:37 -07003899 << klass->PrettyDescriptor() << "."
David Brazdilca3c8c32016-09-06 14:04:48 +01003900 << dex_file_->GetMethodName(method_id) << " "
3901 << dex_file_->GetMethodSignature(method_id);
3902 return nullptr;
3903 }
3904
Ian Rogersd81871c2011-10-03 13:57:23 -07003905 // Make sure calls to constructors are "direct". There are additional restrictions but we don't
3906 // enforce them here.
3907 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) {
jeffhaod5347e02012-03-22 17:25:05 -07003908 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting non-direct call to constructor "
David Sehr709b0702016-10-13 09:12:37 -07003909 << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003910 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003911 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003912 // Disallow any calls to class initializers.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003913 if (res_method->IsClassInitializer()) {
jeffhaod5347e02012-03-22 17:25:05 -07003914 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting call to class initializer "
David Sehr709b0702016-10-13 09:12:37 -07003915 << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003916 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003917 }
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003918
3919 // Check that interface methods are static or match interface classes.
3920 // We only allow statics if we don't have default methods enabled.
3921 //
3922 // Note: this check must be after the initializer check, as those are required to fail a class,
3923 // while this check implies an IncompatibleClassChangeError.
3924 if (klass->IsInterface()) {
Alex Lightb55f1ac2016-04-12 15:50:55 -07003925 // methods called on interfaces should be invoke-interface, invoke-super, invoke-direct (if
3926 // dex file version is 37 or greater), or invoke-static.
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003927 if (method_type != METHOD_INTERFACE &&
Neil Fuller9724c632016-01-07 15:42:47 +00003928 method_type != METHOD_STATIC &&
Alex Lightb55f1ac2016-04-12 15:50:55 -07003929 ((dex_file_->GetVersion() < DexFile::kDefaultMethodsVersion) ||
3930 method_type != METHOD_DIRECT) &&
Neil Fuller9724c632016-01-07 15:42:47 +00003931 method_type != METHOD_SUPER) {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003932 Fail(VERIFY_ERROR_CLASS_CHANGE)
David Sehr709b0702016-10-13 09:12:37 -07003933 << "non-interface method " << dex_file_->PrettyMethod(dex_method_idx)
3934 << " is in an interface class " << klass->PrettyClass();
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003935 return nullptr;
3936 }
3937 } else {
3938 if (method_type == METHOD_INTERFACE) {
3939 Fail(VERIFY_ERROR_CLASS_CHANGE)
David Sehr709b0702016-10-13 09:12:37 -07003940 << "interface method " << dex_file_->PrettyMethod(dex_method_idx)
3941 << " is in a non-interface class " << klass->PrettyClass();
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003942 return nullptr;
3943 }
3944 }
3945
3946 // Only stash after the above passed. Otherwise the method wasn't guaranteed to be correct.
3947 if (stash_method) {
3948 dex_cache_->SetResolvedMethod(dex_method_idx, res_method, pointer_size);
3949 }
3950
jeffhao8cd6dda2012-02-22 10:15:34 -08003951 // Check if access is allowed.
Ian Rogersad0b3a32012-04-16 14:50:24 -07003952 if (!referrer.CanAccessMember(res_method->GetDeclaringClass(), res_method->GetAccessFlags())) {
David Sehr709b0702016-10-13 09:12:37 -07003953 Fail(VERIFY_ERROR_ACCESS_METHOD) << "illegal method access (call "
3954 << res_method->PrettyMethod()
Ian Rogersad0b3a32012-04-16 14:50:24 -07003955 << " from " << referrer << ")";
jeffhaob57e9522012-04-26 18:08:21 -07003956 return res_method;
jeffhao8cd6dda2012-02-22 10:15:34 -08003957 }
jeffhaode0d9c92012-02-27 13:58:13 -08003958 // Check that invoke-virtual and invoke-super are not used on private methods of the same class.
Alex Light7268d472016-01-20 15:50:01 -08003959 if (res_method->IsPrivate() && (method_type == METHOD_VIRTUAL || method_type == METHOD_SUPER)) {
jeffhaod5347e02012-03-22 17:25:05 -07003960 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-super/virtual can't be used on private method "
David Sehr709b0702016-10-13 09:12:37 -07003961 << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003962 return nullptr;
jeffhaode0d9c92012-02-27 13:58:13 -08003963 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003964 // See if the method type implied by the invoke instruction matches the access flags for the
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003965 // target method. The flags for METHOD_POLYMORPHIC are based on there being precisely two
3966 // signature polymorphic methods supported by the run-time which are native methods with variable
3967 // arguments.
Brian Carlstrombe6fa5e2014-12-09 20:15:42 -08003968 if ((method_type == METHOD_DIRECT && (!res_method->IsDirect() || res_method->IsStatic())) ||
Ian Rogersd81871c2011-10-03 13:57:23 -07003969 (method_type == METHOD_STATIC && !res_method->IsStatic()) ||
Alex Light7268d472016-01-20 15:50:01 -08003970 ((method_type == METHOD_SUPER ||
3971 method_type == METHOD_VIRTUAL ||
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003972 method_type == METHOD_INTERFACE) && res_method->IsDirect()) ||
3973 ((method_type == METHOD_POLYMORPHIC) &&
3974 (!res_method->IsNative() || !res_method->IsVarargs()))) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003975 Fail(VERIFY_ERROR_CLASS_CHANGE) << "invoke type (" << method_type << ") does not match method "
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003976 "type of " << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003977 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003978 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003979 return res_method;
3980}
3981
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003982template <class T>
Mathieu Chartiere401d142015-04-22 13:56:20 -07003983ArtMethod* MethodVerifier::VerifyInvocationArgsFromIterator(
3984 T* it, const Instruction* inst, MethodType method_type, bool is_range, ArtMethod* res_method) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003985 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
3986 // match the call to the signature. Also, we might be calling through an abstract method
3987 // definition (which doesn't have register count values).
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003988 const size_t expected_args = inst->VRegA();
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003989 /* caught by static verifier */
3990 DCHECK(is_range || expected_args <= 5);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003991
Orion Hodson7f7a0742016-12-08 14:15:25 +00003992 // TODO(oth): Enable this path for invoke-polymorphic when b/33099829 is resolved.
3993 if (method_type != METHOD_POLYMORPHIC) {
3994 if (expected_args > code_item_->outs_size_) {
3995 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
3996 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
3997 return nullptr;
3998 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003999 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004000
4001 /*
4002 * Check the "this" argument, which must be an instance of the class that declared the method.
4003 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
4004 * rigorous check here (which is okay since we have to do it at runtime).
4005 */
4006 if (method_type != METHOD_STATIC) {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004007 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004008 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
4009 CHECK(have_pending_hard_failure_);
4010 return nullptr;
4011 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00004012 bool is_init = false;
4013 if (actual_arg_type.IsUninitializedTypes()) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004014 if (res_method) {
4015 if (!res_method->IsConstructor()) {
4016 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
4017 return nullptr;
4018 }
4019 } else {
4020 // Check whether the name of the called method is "<init>"
4021 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Jeff Hao0d087272014-08-04 14:47:17 -07004022 if (strcmp(dex_file_->GetMethodName(dex_file_->GetMethodId(method_idx)), "<init>") != 0) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004023 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
4024 return nullptr;
4025 }
4026 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00004027 is_init = true;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004028 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00004029 const RegType& adjusted_type = is_init
4030 ? GetRegTypeCache()->FromUninitialized(actual_arg_type)
4031 : actual_arg_type;
4032 if (method_type != METHOD_INTERFACE && !adjusted_type.IsZero()) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00004033 const RegType* res_method_class;
Andreas Gamped9e23012015-06-04 22:19:58 -07004034 // Miranda methods have the declaring interface as their declaring class, not the abstract
4035 // class. It would be wrong to use this for the type check (interface type checks are
4036 // postponed to runtime).
4037 if (res_method != nullptr && !res_method->IsMiranda()) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004038 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004039 std::string temp;
Andreas Gampef23f33d2015-06-23 14:18:17 -07004040 res_method_class = &FromClass(klass->GetDescriptor(&temp), klass,
4041 klass->CannotBeAssignedFromOtherTypes());
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004042 } else {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004043 const uint32_t method_idx = inst->VRegB();
Andreas Gampea5b09a62016-11-17 15:21:22 -08004044 const dex::TypeIndex class_idx = dex_file_->GetMethodId(method_idx).class_idx_;
Mathieu Chartierde40d472015-10-15 17:47:48 -07004045 res_method_class = &reg_types_.FromDescriptor(
4046 GetClassLoader(),
4047 dex_file_->StringByTypeIdx(class_idx),
4048 false);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004049 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004050 if (!res_method_class->IsAssignableFrom(adjusted_type, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00004051 Fail(adjusted_type.IsUnresolvedTypes()
4052 ? VERIFY_ERROR_NO_CLASS
4053 : VERIFY_ERROR_BAD_CLASS_SOFT)
4054 << "'this' argument '" << actual_arg_type << "' not instance of '"
4055 << *res_method_class << "'";
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004056 // Continue on soft failures. We need to find possible hard failures to avoid problems in
4057 // the compiler.
4058 if (have_pending_hard_failure_) {
4059 return nullptr;
4060 }
4061 }
4062 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004063 }
4064
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004065 uint32_t arg[5];
4066 if (!is_range) {
4067 inst->GetVarArgs(arg);
4068 }
4069 uint32_t sig_registers = (method_type == METHOD_STATIC) ? 0 : 1;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004070 for ( ; it->HasNext(); it->Next()) {
4071 if (sig_registers >= expected_args) {
4072 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << inst->VRegA() <<
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004073 " argument registers, method signature has " << sig_registers + 1 << " or more";
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004074 return nullptr;
4075 }
4076
4077 const char* param_descriptor = it->GetDescriptor();
4078
4079 if (param_descriptor == nullptr) {
4080 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation because of missing signature "
4081 "component";
4082 return nullptr;
4083 }
4084
Ian Rogersd8f69b02014-09-10 21:43:52 +00004085 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), param_descriptor, false);
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004086 uint32_t get_reg = is_range ? inst->VRegC() + static_cast<uint32_t>(sig_registers) :
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004087 arg[sig_registers];
4088 if (reg_type.IsIntegralTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004089 const RegType& src_type = work_line_->GetRegisterType(this, get_reg);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004090 if (!src_type.IsIntegralTypes()) {
4091 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << get_reg << " has type " << src_type
4092 << " but expected " << reg_type;
Andreas Gampeb588f4c2015-05-26 13:35:39 -07004093 return nullptr;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004094 }
Andreas Gampeda9badb2015-06-05 20:22:12 -07004095 } else {
4096 if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
4097 // Continue on soft failures. We need to find possible hard failures to avoid problems in
4098 // the compiler.
4099 if (have_pending_hard_failure_) {
4100 return nullptr;
4101 }
4102 } else if (reg_type.IsLongOrDoubleTypes()) {
4103 // Check that registers are consecutive (for non-range invokes). Invokes are the only
4104 // instructions not specifying register pairs by the first component, but require them
4105 // nonetheless. Only check when there's an actual register in the parameters. If there's
4106 // none, this will fail below.
4107 if (!is_range && sig_registers + 1 < expected_args) {
4108 uint32_t second_reg = arg[sig_registers + 1];
4109 if (second_reg != get_reg + 1) {
4110 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, long or double parameter "
4111 "at index " << sig_registers << " is not a pair: " << get_reg << " + "
4112 << second_reg << ".";
4113 return nullptr;
4114 }
4115 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004116 }
4117 }
4118 sig_registers += reg_type.IsLongOrDoubleTypes() ? 2 : 1;
4119 }
4120 if (expected_args != sig_registers) {
4121 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << expected_args <<
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004122 " argument registers, method signature has " << sig_registers;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004123 return nullptr;
4124 }
4125 return res_method;
4126}
4127
4128void MethodVerifier::VerifyInvocationArgsUnresolvedMethod(const Instruction* inst,
4129 MethodType method_type,
4130 bool is_range) {
4131 // As the method may not have been resolved, make this static check against what we expect.
4132 // The main reason for this code block is to fail hard when we find an illegal use, e.g.,
4133 // wrong number of arguments or wrong primitive types, even if the method could not be resolved.
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004134 const uint32_t method_idx = inst->VRegB();
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004135 DexFileParameterIterator it(*dex_file_,
4136 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_));
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004137 VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, nullptr);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004138}
4139
Orion Hodsonc069a302017-01-18 09:23:12 +00004140bool MethodVerifier::CheckCallSite(uint32_t call_site_idx) {
Orion Hodson3a842f52017-04-21 15:24:10 +01004141 if (call_site_idx >= dex_file_->NumCallSiteIds()) {
4142 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Bad call site id #" << call_site_idx
4143 << " >= " << dex_file_->NumCallSiteIds();
4144 return false;
4145 }
4146
Orion Hodsonc069a302017-01-18 09:23:12 +00004147 CallSiteArrayValueIterator it(*dex_file_, dex_file_->GetCallSiteId(call_site_idx));
4148 // Check essential arguments are provided. The dex file verifier has verified indicies of the
4149 // main values (method handle, name, method_type).
4150 if (it.Size() < 3) {
4151 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4152 << " has too few arguments: "
4153 << it.Size() << "< 3";
4154 return false;
4155 }
4156
Orion Hodson3a842f52017-04-21 15:24:10 +01004157 // Get and check the first argument: the method handle (index range
4158 // checked by the dex file verifier).
Orion Hodsonc069a302017-01-18 09:23:12 +00004159 uint32_t method_handle_idx = static_cast<uint32_t>(it.GetJavaValue().i);
4160 it.Next();
Orion Hodson3a842f52017-04-21 15:24:10 +01004161
Orion Hodsonc069a302017-01-18 09:23:12 +00004162 const DexFile::MethodHandleItem& mh = dex_file_->GetMethodHandle(method_handle_idx);
4163 if (mh.method_handle_type_ != static_cast<uint16_t>(DexFile::MethodHandleType::kInvokeStatic)) {
4164 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4165 << " argument 0 method handle type is not InvokeStatic";
4166 return false;
4167 }
4168
4169 // Skip the second argument, the name to resolve, as checked by the
4170 // dex file verifier.
4171 it.Next();
4172
4173 // Skip the third argument, the method type expected, as checked by
4174 // the dex file verifier.
4175 it.Next();
4176
4177 // Check the bootstrap method handle and remaining arguments.
4178 const DexFile::MethodId& method_id = dex_file_->GetMethodId(mh.field_or_method_idx_);
4179 uint32_t length;
4180 const char* shorty = dex_file_->GetMethodShorty(method_id, &length);
4181
4182 if (it.Size() < length - 1) {
4183 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4184 << " too few arguments for bootstrap method: "
4185 << it.Size() << " < " << (length - 1);
4186 return false;
4187 }
4188
4189 // Check the return type and first 3 arguments are references
4190 // (CallSite, Lookup, String, MethodType). If they are not of the
4191 // expected types (or subtypes), it will trigger a
4192 // WrongMethodTypeException during execution.
4193 if (shorty[0] != 'L') {
4194 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4195 << " bootstrap return type is not a reference";
4196 return false;
4197 }
4198
4199 for (uint32_t i = 1; i < 4; ++i) {
4200 if (shorty[i] != 'L') {
4201 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4202 << " bootstrap method argument " << (i - 1)
4203 << " is not a reference";
4204 return false;
4205 }
4206 }
4207
4208 // Check the optional arguments.
4209 for (uint32_t i = 4; i < length; ++i, it.Next()) {
4210 bool match = false;
4211 switch (it.GetValueType()) {
4212 case EncodedArrayValueIterator::ValueType::kBoolean:
4213 case EncodedArrayValueIterator::ValueType::kByte:
4214 case EncodedArrayValueIterator::ValueType::kShort:
4215 case EncodedArrayValueIterator::ValueType::kChar:
4216 case EncodedArrayValueIterator::ValueType::kInt:
4217 // These all fit within one register and encoders do not seem
4218 // too exacting on the encoding type they use (ie using
4219 // integer for all of these).
4220 match = (strchr("ZBCSI", shorty[i]) != nullptr);
4221 break;
4222 case EncodedArrayValueIterator::ValueType::kLong:
4223 match = ('J' == shorty[i]);
4224 break;
4225 case EncodedArrayValueIterator::ValueType::kFloat:
4226 match = ('F' == shorty[i]);
4227 break;
4228 case EncodedArrayValueIterator::ValueType::kDouble:
4229 match = ('D' == shorty[i]);
4230 break;
4231 case EncodedArrayValueIterator::ValueType::kMethodType:
4232 case EncodedArrayValueIterator::ValueType::kMethodHandle:
4233 case EncodedArrayValueIterator::ValueType::kString:
4234 case EncodedArrayValueIterator::ValueType::kType:
4235 case EncodedArrayValueIterator::ValueType::kNull:
4236 match = ('L' == shorty[i]);
4237 break;
4238 case EncodedArrayValueIterator::ValueType::kField:
4239 case EncodedArrayValueIterator::ValueType::kMethod:
4240 case EncodedArrayValueIterator::ValueType::kEnum:
4241 case EncodedArrayValueIterator::ValueType::kArray:
4242 case EncodedArrayValueIterator::ValueType::kAnnotation:
4243 // Unreachable based on current EncodedArrayValueIterator::Next().
4244 UNREACHABLE();
4245 }
4246
4247 if (!match) {
4248 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4249 << " bootstrap method argument " << (i - 1)
4250 << " expected " << shorty[i]
4251 << " got value type: " << it.GetValueType();
4252 return false;
4253 }
4254 }
4255 return true;
4256}
4257
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004258class MethodParamListDescriptorIterator {
4259 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -07004260 explicit MethodParamListDescriptorIterator(ArtMethod* res_method) :
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004261 res_method_(res_method), pos_(0), params_(res_method->GetParameterTypeList()),
4262 params_size_(params_ == nullptr ? 0 : params_->Size()) {
4263 }
4264
4265 bool HasNext() {
4266 return pos_ < params_size_;
4267 }
4268
4269 void Next() {
4270 ++pos_;
4271 }
4272
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004273 const char* GetDescriptor() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004274 return res_method_->GetTypeDescriptorFromTypeIdx(params_->GetTypeItem(pos_).type_idx_);
4275 }
4276
4277 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -07004278 ArtMethod* res_method_;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004279 size_t pos_;
4280 const DexFile::TypeList* params_;
4281 const size_t params_size_;
4282};
4283
Mathieu Chartiere401d142015-04-22 13:56:20 -07004284ArtMethod* MethodVerifier::VerifyInvocationArgs(
Alex Light7268d472016-01-20 15:50:01 -08004285 const Instruction* inst, MethodType method_type, bool is_range) {
jeffhao8cd6dda2012-02-22 10:15:34 -08004286 // Resolve the method. This could be an abstract or concrete method depending on what sort of call
4287 // we're making.
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004288 const uint32_t method_idx = inst->VRegB();
Alex Light7268d472016-01-20 15:50:01 -08004289 ArtMethod* res_method = ResolveMethodAndCheckAccess(method_idx, method_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07004290 if (res_method == nullptr) { // error or class is unresolved
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004291 // Check what we can statically.
4292 if (!have_pending_hard_failure_) {
4293 VerifyInvocationArgsUnresolvedMethod(inst, method_type, is_range);
4294 }
4295 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08004296 }
4297
Ian Rogersd81871c2011-10-03 13:57:23 -07004298 // If we're using invoke-super(method), make sure that the executing method's class' superclass
Alex Light705ad492015-09-21 11:36:30 -07004299 // has a vtable entry for the target method. Or the target is on a interface.
Alex Light7268d472016-01-20 15:50:01 -08004300 if (method_type == METHOD_SUPER) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08004301 dex::TypeIndex class_idx = dex_file_->GetMethodId(method_idx).class_idx_;
David Brazdilca3c8c32016-09-06 14:04:48 +01004302 const RegType& reference_type = reg_types_.FromDescriptor(
4303 GetClassLoader(),
4304 dex_file_->StringByTypeIdx(class_idx),
4305 false);
4306 if (reference_type.IsUnresolvedTypes()) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004307 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Unable to find referenced class from invoke-super";
4308 return nullptr;
4309 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004310 if (reference_type.GetClass()->IsInterface()) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004311 // TODO Can we verify anything else.
David Brazdil15fc7292016-09-02 14:13:18 +01004312 if (class_idx == class_def_.class_idx_) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004313 Fail(VERIFY_ERROR_CLASS_CHANGE) << "Cannot invoke-super on self as interface";
Alex Light55ea94d2016-03-15 09:50:26 -07004314 return nullptr;
Alex Lightfedd91d2016-01-07 14:49:16 -08004315 }
4316 // TODO Revisit whether we want to allow invoke-super on direct interfaces only like the JLS
4317 // does.
Alex Light55ea94d2016-03-15 09:50:26 -07004318 if (!GetDeclaringClass().HasClass()) {
4319 Fail(VERIFY_ERROR_NO_CLASS) << "Unable to resolve the full class of 'this' used in an"
4320 << "interface invoke-super";
4321 return nullptr;
David Brazdilca3c8c32016-09-06 14:04:48 +01004322 } else if (!reference_type.IsStrictlyAssignableFrom(GetDeclaringClass(), this)) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004323 Fail(VERIFY_ERROR_CLASS_CHANGE)
David Sehr709b0702016-10-13 09:12:37 -07004324 << "invoke-super in " << mirror::Class::PrettyClass(GetDeclaringClass().GetClass())
4325 << " in method "
4326 << dex_file_->PrettyMethod(dex_method_idx_) << " to method "
4327 << dex_file_->PrettyMethod(method_idx) << " references "
4328 << "non-super-interface type " << mirror::Class::PrettyClass(reference_type.GetClass());
Alex Lightfedd91d2016-01-07 14:49:16 -08004329 return nullptr;
Alex Light705ad492015-09-21 11:36:30 -07004330 }
4331 } else {
4332 const RegType& super = GetDeclaringClass().GetSuperClass(&reg_types_);
4333 if (super.IsUnresolvedTypes()) {
4334 Fail(VERIFY_ERROR_NO_METHOD) << "unknown super class in invoke-super from "
David Sehr709b0702016-10-13 09:12:37 -07004335 << dex_file_->PrettyMethod(dex_method_idx_)
4336 << " to super " << res_method->PrettyMethod();
Alex Light705ad492015-09-21 11:36:30 -07004337 return nullptr;
4338 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004339 if (!reference_type.IsStrictlyAssignableFrom(GetDeclaringClass(), this) ||
Aart Bikf663e342016-04-04 17:28:59 -07004340 (res_method->GetMethodIndex() >= super.GetClass()->GetVTableLength())) {
Alex Light705ad492015-09-21 11:36:30 -07004341 Fail(VERIFY_ERROR_NO_METHOD) << "invalid invoke-super from "
David Sehr709b0702016-10-13 09:12:37 -07004342 << dex_file_->PrettyMethod(dex_method_idx_)
Alex Light705ad492015-09-21 11:36:30 -07004343 << " to super " << super
4344 << "." << res_method->GetName()
4345 << res_method->GetSignature();
4346 return nullptr;
4347 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004348 }
4349 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08004350
Andreas Gampe74979b12017-05-16 09:28:06 -07004351 if (UNLIKELY(method_type == METHOD_POLYMORPHIC)) {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004352 // Process the signature of the calling site that is invoking the method handle.
4353 DexFileParameterIterator it(*dex_file_, dex_file_->GetProtoId(inst->VRegH()));
4354 return VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, res_method);
4355 } else {
4356 // Process the target method's signature.
4357 MethodParamListDescriptorIterator it(res_method);
4358 return VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, res_method);
4359 }
4360}
4361
4362bool MethodVerifier::CheckSignaturePolymorphicMethod(ArtMethod* method) {
4363 mirror::Class* klass = method->GetDeclaringClass();
4364 if (klass != mirror::MethodHandle::StaticClass()) {
4365 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4366 << "Signature polymorphic method must be declared in java.lang.invoke.MethodClass";
4367 return false;
4368 }
4369
4370 const char* method_name = method->GetName();
4371 if (strcmp(method_name, "invoke") != 0 && strcmp(method_name, "invokeExact") != 0) {
4372 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4373 << "Signature polymorphic method name invalid: " << method_name;
4374 return false;
4375 }
4376
4377 const DexFile::TypeList* types = method->GetParameterTypeList();
4378 if (types->Size() != 1) {
4379 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4380 << "Signature polymorphic method has too many arguments " << types->Size() << " != 1";
4381 return false;
4382 }
4383
4384 const dex::TypeIndex argument_type_index = types->GetTypeItem(0).type_idx_;
4385 const char* argument_descriptor = method->GetTypeDescriptorFromTypeIdx(argument_type_index);
4386 if (strcmp(argument_descriptor, "[Ljava/lang/Object;") != 0) {
4387 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4388 << "Signature polymorphic method has unexpected argument type: " << argument_descriptor;
4389 return false;
4390 }
4391
4392 const char* return_descriptor = method->GetReturnTypeDescriptor();
4393 if (strcmp(return_descriptor, "Ljava/lang/Object;") != 0) {
4394 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4395 << "Signature polymorphic method has unexpected return type: " << return_descriptor;
4396 return false;
4397 }
4398
4399 return true;
4400}
4401
4402bool MethodVerifier::CheckSignaturePolymorphicReceiver(const Instruction* inst) {
4403 const RegType& this_type = work_line_->GetInvocationThis(this, inst);
4404 if (this_type.IsZero()) {
4405 /* null pointer always passes (and always fails at run time) */
4406 return true;
4407 } else if (!this_type.IsNonZeroReferenceTypes()) {
4408 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4409 << "invoke-polymorphic receiver is not a reference: "
4410 << this_type;
4411 return false;
4412 } else if (this_type.IsUninitializedReference()) {
4413 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4414 << "invoke-polymorphic receiver is uninitialized: "
4415 << this_type;
4416 return false;
4417 } else if (!this_type.HasClass()) {
4418 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4419 << "invoke-polymorphic receiver has no class: "
4420 << this_type;
4421 return false;
4422 } else if (!this_type.GetClass()->IsSubClass(mirror::MethodHandle::StaticClass())) {
4423 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4424 << "invoke-polymorphic receiver is not a subclass of MethodHandle: "
4425 << this_type;
4426 return false;
4427 }
4428 return true;
Ian Rogersd81871c2011-10-03 13:57:23 -07004429}
4430
Mathieu Chartiere401d142015-04-22 13:56:20 -07004431ArtMethod* MethodVerifier::GetQuickInvokedMethod(const Instruction* inst, RegisterLine* reg_line,
4432 bool is_range, bool allow_failure) {
Mathieu Chartier091d2382015-03-06 10:59:06 -08004433 if (is_range) {
4434 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
4435 } else {
4436 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_QUICK);
4437 }
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004438 const RegType& actual_arg_type = reg_line->GetInvocationThis(this, inst, allow_failure);
Ian Rogers9bc54402014-04-17 16:40:01 -07004439 if (!actual_arg_type.HasClass()) {
4440 VLOG(verifier) << "Failed to get mirror::Class* from '" << actual_arg_type << "'";
Andreas Gampe63981562014-04-17 12:28:43 -07004441 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004442 }
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004443 mirror::Class* klass = actual_arg_type.GetClass();
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004444 mirror::Class* dispatch_class;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004445 if (klass->IsInterface()) {
4446 // Derive Object.class from Class.class.getSuperclass().
4447 mirror::Class* object_klass = klass->GetClass()->GetSuperClass();
Andreas Gampe7c038102014-10-27 20:08:46 -07004448 if (FailOrAbort(this, object_klass->IsObjectClass(),
Mathieu Chartier091d2382015-03-06 10:59:06 -08004449 "Failed to find Object class in quickened invoke receiver", work_insn_idx_)) {
Andreas Gampe7c038102014-10-27 20:08:46 -07004450 return nullptr;
4451 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004452 dispatch_class = object_klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004453 } else {
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004454 dispatch_class = klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004455 }
Mathieu Chartier091d2382015-03-06 10:59:06 -08004456 if (!dispatch_class->HasVTable()) {
4457 FailOrAbort(this, allow_failure, "Receiver class has no vtable for quickened invoke at ",
4458 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004459 return nullptr;
4460 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004461 uint16_t vtable_index = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
Mathieu Chartiere401d142015-04-22 13:56:20 -07004462 auto* cl = Runtime::Current()->GetClassLinker();
4463 auto pointer_size = cl->GetImagePointerSize();
Mathieu Chartier091d2382015-03-06 10:59:06 -08004464 if (static_cast<int32_t>(vtable_index) >= dispatch_class->GetVTableLength()) {
4465 FailOrAbort(this, allow_failure,
4466 "Receiver class has not enough vtable slots for quickened invoke at ",
4467 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004468 return nullptr;
4469 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07004470 ArtMethod* res_method = dispatch_class->GetVTableEntry(vtable_index, pointer_size);
Mathieu Chartier091d2382015-03-06 10:59:06 -08004471 if (self_->IsExceptionPending()) {
4472 FailOrAbort(this, allow_failure, "Unexpected exception pending for quickened invoke at ",
4473 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004474 return nullptr;
4475 }
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004476 return res_method;
4477}
4478
Mathieu Chartiere401d142015-04-22 13:56:20 -07004479ArtMethod* MethodVerifier::VerifyInvokeVirtualQuickArgs(const Instruction* inst, bool is_range) {
Andreas Gampe76bd8802014-12-10 16:43:58 -08004480 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_)
David Sehr709b0702016-10-13 09:12:37 -07004481 << dex_file_->PrettyMethod(dex_method_idx_, true) << "@" << work_insn_idx_;
Andreas Gampe76bd8802014-12-10 16:43:58 -08004482
Mathieu Chartiere401d142015-04-22 13:56:20 -07004483 ArtMethod* res_method = GetQuickInvokedMethod(inst, work_line_.get(), is_range, false);
Ian Rogers7b078e82014-09-10 14:44:24 -07004484 if (res_method == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004485 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer method from " << inst->Name();
Ian Rogers7b078e82014-09-10 14:44:24 -07004486 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004487 }
Andreas Gampe7c038102014-10-27 20:08:46 -07004488 if (FailOrAbort(this, !res_method->IsDirect(), "Quick-invoked method is direct at ",
4489 work_insn_idx_)) {
4490 return nullptr;
4491 }
4492 if (FailOrAbort(this, !res_method->IsStatic(), "Quick-invoked method is static at ",
4493 work_insn_idx_)) {
4494 return nullptr;
4495 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004496
4497 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
4498 // match the call to the signature. Also, we might be calling through an abstract method
4499 // definition (which doesn't have register count values).
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004500 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst);
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004501 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
Ian Rogers7b078e82014-09-10 14:44:24 -07004502 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004503 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004504 const size_t expected_args = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
4505 /* caught by static verifier */
4506 DCHECK(is_range || expected_args <= 5);
4507 if (expected_args > code_item_->outs_size_) {
4508 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
4509 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
Ian Rogers7b078e82014-09-10 14:44:24 -07004510 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004511 }
4512
4513 /*
4514 * Check the "this" argument, which must be an instance of the class that declared the method.
4515 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
4516 * rigorous check here (which is okay since we have to do it at runtime).
4517 */
David Brazdil68b5c0b2016-01-19 14:25:29 +00004518 // Note: given an uninitialized type, this should always fail. Constructors aren't virtual.
4519 if (actual_arg_type.IsUninitializedTypes() && !res_method->IsConstructor()) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004520 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
Ian Rogers7b078e82014-09-10 14:44:24 -07004521 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004522 }
4523 if (!actual_arg_type.IsZero()) {
4524 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004525 std::string temp;
Ian Rogersd8f69b02014-09-10 21:43:52 +00004526 const RegType& res_method_class =
Andreas Gampef23f33d2015-06-23 14:18:17 -07004527 FromClass(klass->GetDescriptor(&temp), klass, klass->CannotBeAssignedFromOtherTypes());
David Brazdilca3c8c32016-09-06 14:04:48 +01004528 if (!res_method_class.IsAssignableFrom(actual_arg_type, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00004529 Fail(actual_arg_type.IsUninitializedTypes() // Just overcautious - should have never
4530 ? VERIFY_ERROR_BAD_CLASS_HARD // quickened this.
4531 : actual_arg_type.IsUnresolvedTypes()
4532 ? VERIFY_ERROR_NO_CLASS
4533 : VERIFY_ERROR_BAD_CLASS_SOFT) << "'this' argument '" << actual_arg_type
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004534 << "' not instance of '" << res_method_class << "'";
Ian Rogers7b078e82014-09-10 14:44:24 -07004535 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004536 }
4537 }
4538 /*
4539 * Process the target method's signature. This signature may or may not
4540 * have been verified, so we can't assume it's properly formed.
4541 */
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004542 const DexFile::TypeList* params = res_method->GetParameterTypeList();
Ian Rogers7b078e82014-09-10 14:44:24 -07004543 size_t params_size = params == nullptr ? 0 : params->Size();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004544 uint32_t arg[5];
4545 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07004546 inst->GetVarArgs(arg);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004547 }
4548 size_t actual_args = 1;
4549 for (size_t param_index = 0; param_index < params_size; param_index++) {
4550 if (actual_args >= expected_args) {
David Sehr709b0702016-10-13 09:12:37 -07004551 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invalid call to '"
4552 << res_method->PrettyMethod()
Brian Carlstrom93c33962013-07-26 10:37:43 -07004553 << "'. Expected " << expected_args
4554 << " arguments, processing argument " << actual_args
4555 << " (where longs/doubles count twice).";
Ian Rogers7b078e82014-09-10 14:44:24 -07004556 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004557 }
4558 const char* descriptor =
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004559 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);
Ian Rogers7b078e82014-09-10 14:44:24 -07004560 if (descriptor == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07004561 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of "
4562 << res_method->PrettyMethod()
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004563 << " missing signature component";
Ian Rogers7b078e82014-09-10 14:44:24 -07004564 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004565 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004566 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004567 uint32_t get_reg = is_range ? inst->VRegC_3rc() + actual_args : arg[actual_args];
Ian Rogers7b078e82014-09-10 14:44:24 -07004568 if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004569 return res_method;
4570 }
4571 actual_args = reg_type.IsLongOrDoubleTypes() ? actual_args + 2 : actual_args + 1;
4572 }
4573 if (actual_args != expected_args) {
David Sehr709b0702016-10-13 09:12:37 -07004574 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of "
4575 << res_method->PrettyMethod() << " expected "
4576 << expected_args << " arguments, found " << actual_args;
Ian Rogers7b078e82014-09-10 14:44:24 -07004577 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004578 } else {
4579 return res_method;
4580 }
4581}
4582
Ian Rogers62342ec2013-06-11 10:26:37 -07004583void MethodVerifier::VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08004584 dex::TypeIndex type_idx;
Sebastien Hertz5243e912013-05-21 10:55:07 +02004585 if (!is_filled) {
4586 DCHECK_EQ(inst->Opcode(), Instruction::NEW_ARRAY);
Andreas Gampea5b09a62016-11-17 15:21:22 -08004587 type_idx = dex::TypeIndex(inst->VRegC_22c());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004588 } else if (!is_range) {
4589 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY);
Andreas Gampea5b09a62016-11-17 15:21:22 -08004590 type_idx = dex::TypeIndex(inst->VRegB_35c());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004591 } else {
4592 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY_RANGE);
Andreas Gampea5b09a62016-11-17 15:21:22 -08004593 type_idx = dex::TypeIndex(inst->VRegB_3rc());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004594 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004595 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004596 if (res_type.IsConflict()) { // bad class
4597 DCHECK_NE(failures_.size(), 0U);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004598 } else {
4599 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
4600 if (!res_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004601 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "new-array on non-array class " << res_type;
Ian Rogers0c4a5062012-02-03 15:18:59 -08004602 } else if (!is_filled) {
4603 /* make sure "size" register is valid type */
Ian Rogers7b078e82014-09-10 14:44:24 -07004604 work_line_->VerifyRegisterType(this, inst->VRegB_22c(), reg_types_.Integer());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004605 /* set register type to array class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00004606 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Andreas Gampead238ce2015-08-24 21:13:08 -07004607 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_22c(), precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004608 } else {
Andreas Gampebb18a032016-03-22 20:34:25 -07004609 DCHECK(!res_type.IsUnresolvedMergedReference());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004610 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
4611 // the list and fail. It's legal, if silly, for arg_count to be zero.
Ian Rogersd8f69b02014-09-10 21:43:52 +00004612 const RegType& expected_type = reg_types_.GetComponentType(res_type, GetClassLoader());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004613 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
4614 uint32_t arg[5];
4615 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07004616 inst->GetVarArgs(arg);
Sebastien Hertz5243e912013-05-21 10:55:07 +02004617 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08004618 for (size_t ui = 0; ui < arg_count; ui++) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02004619 uint32_t get_reg = is_range ? inst->VRegC_3rc() + ui : arg[ui];
Ian Rogers7b078e82014-09-10 14:44:24 -07004620 if (!work_line_->VerifyRegisterType(this, get_reg, expected_type)) {
4621 work_line_->SetResultRegisterType(this, reg_types_.Conflict());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004622 return;
4623 }
4624 }
4625 // filled-array result goes into "result" register
Ian Rogersd8f69b02014-09-10 21:43:52 +00004626 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07004627 work_line_->SetResultRegisterType(this, precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004628 }
4629 }
4630}
4631
Sebastien Hertz5243e912013-05-21 10:55:07 +02004632void MethodVerifier::VerifyAGet(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00004633 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004634 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07004635 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004636 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07004637 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004638 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08004639 if (array_type.IsZero()) {
Nicolas Geoffray4824c272015-06-24 15:53:03 +01004640 have_pending_runtime_throw_failure_ = true;
Ian Rogers89310de2012-02-01 13:47:30 -08004641 // Null array class; this code path will fail at runtime. Infer a merge-able type from the
4642 // instruction type. TODO: have a proper notion of bottom here.
4643 if (!is_primitive || insn_type.IsCategory1Types()) {
4644 // Reference or category 1
Andreas Gampead238ce2015-08-24 21:13:08 -07004645 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Zero());
Ian Rogersd81871c2011-10-03 13:57:23 -07004646 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08004647 // Category 2
Ian Rogers7b078e82014-09-10 14:44:24 -07004648 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(),
4649 reg_types_.FromCat2ConstLo(0, false),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004650 reg_types_.FromCat2ConstHi(0, false));
Ian Rogers89310de2012-02-01 13:47:30 -08004651 }
jeffhaofc3144e2012-02-01 17:21:15 -08004652 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004653 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aget";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004654 } else if (array_type.IsUnresolvedMergedReference()) {
Andreas Gampebb18a032016-03-22 20:34:25 -07004655 // Unresolved array types must be reference array types.
4656 if (is_primitive) {
4657 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
4658 << " source for category 1 aget";
4659 } else {
4660 Fail(VERIFY_ERROR_NO_CLASS) << "cannot verify aget for " << array_type
4661 << " because of missing class";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004662 // Approximate with java.lang.Object[].
4663 work_line_->SetRegisterType<LockOp::kClear>(this,
4664 inst->VRegA_23x(),
4665 reg_types_.JavaLangObject(false));
Andreas Gampebb18a032016-03-22 20:34:25 -07004666 }
Ian Rogers89310de2012-02-01 13:47:30 -08004667 } else {
4668 /* verify the class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00004669 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
jeffhaofc3144e2012-02-01 17:21:15 -08004670 if (!component_type.IsReferenceTypes() && !is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07004671 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08004672 << " source for aget-object";
4673 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07004674 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08004675 << " source for category 1 aget";
4676 } else if (is_primitive && !insn_type.Equals(component_type) &&
4677 !((insn_type.IsInteger() && component_type.IsFloat()) ||
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004678 (insn_type.IsLong() && component_type.IsDouble()))) {
4679 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array type " << array_type
4680 << " incompatible with aget of type " << insn_type;
Ian Rogers89310de2012-02-01 13:47:30 -08004681 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004682 // Use knowledge of the field type which is stronger than the type inferred from the
4683 // instruction, which can't differentiate object types and ints from floats, longs from
4684 // doubles.
4685 if (!component_type.IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07004686 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), component_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004687 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004688 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(), component_type,
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004689 component_type.HighHalf(&reg_types_));
4690 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004691 }
4692 }
4693 }
4694}
4695
Ian Rogersd8f69b02014-09-10 21:43:52 +00004696void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
Jeff Haofe1f7c82013-08-01 14:50:24 -07004697 const uint32_t vregA) {
4698 // Primitive assignability rules are weaker than regular assignability rules.
4699 bool instruction_compatible;
4700 bool value_compatible;
Ian Rogers7b078e82014-09-10 14:44:24 -07004701 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
Jeff Haofe1f7c82013-08-01 14:50:24 -07004702 if (target_type.IsIntegralTypes()) {
Jeff Haoa4647482013-08-06 15:35:47 -07004703 instruction_compatible = target_type.Equals(insn_type);
Jeff Haofe1f7c82013-08-01 14:50:24 -07004704 value_compatible = value_type.IsIntegralTypes();
4705 } else if (target_type.IsFloat()) {
4706 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int
4707 value_compatible = value_type.IsFloatTypes();
4708 } else if (target_type.IsLong()) {
4709 instruction_compatible = insn_type.IsLong();
Andreas Gampe376fa682014-09-07 13:06:12 -07004710 // Additional register check: this is not checked statically (as part of VerifyInstructions),
4711 // as target_type depends on the resolved type of the field.
4712 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004713 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07004714 value_compatible = value_type.IsLongTypes() && value_type.CheckWidePair(value_type_hi);
4715 } else {
4716 value_compatible = false;
4717 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07004718 } else if (target_type.IsDouble()) {
4719 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long
Andreas Gampe376fa682014-09-07 13:06:12 -07004720 // Additional register check: this is not checked statically (as part of VerifyInstructions),
4721 // as target_type depends on the resolved type of the field.
4722 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004723 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07004724 value_compatible = value_type.IsDoubleTypes() && value_type.CheckWidePair(value_type_hi);
4725 } else {
4726 value_compatible = false;
4727 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07004728 } else {
4729 instruction_compatible = false; // reference with primitive store
4730 value_compatible = false; // unused
4731 }
4732 if (!instruction_compatible) {
4733 // This is a global failure rather than a class change failure as the instructions and
4734 // the descriptors for the type should have been consistent within the same file at
4735 // compile time.
4736 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
4737 << "' but expected type '" << target_type << "'";
4738 return;
4739 }
4740 if (!value_compatible) {
4741 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
4742 << " of type " << value_type << " but expected " << target_type << " for put";
4743 return;
4744 }
4745}
4746
Sebastien Hertz5243e912013-05-21 10:55:07 +02004747void MethodVerifier::VerifyAPut(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00004748 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004749 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07004750 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004751 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07004752 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004753 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08004754 if (array_type.IsZero()) {
Nicolas Geoffray66389fb2015-06-19 10:35:42 +01004755 // Null array type; this code path will fail at runtime.
4756 // Still check that the given value matches the instruction's type.
Andreas Gampe4bf4c782015-08-14 14:07:43 -07004757 // Note: this is, as usual, complicated by the fact the the instruction isn't fully typed
4758 // and fits multiple register types.
4759 const RegType* modified_reg_type = &insn_type;
4760 if ((modified_reg_type == &reg_types_.Integer()) ||
4761 (modified_reg_type == &reg_types_.LongLo())) {
4762 // May be integer or float | long or double. Overwrite insn_type accordingly.
4763 const RegType& value_type = work_line_->GetRegisterType(this, inst->VRegA_23x());
4764 if (modified_reg_type == &reg_types_.Integer()) {
4765 if (&value_type == &reg_types_.Float()) {
4766 modified_reg_type = &value_type;
4767 }
4768 } else {
4769 if (&value_type == &reg_types_.DoubleLo()) {
4770 modified_reg_type = &value_type;
4771 }
4772 }
4773 }
4774 work_line_->VerifyRegisterType(this, inst->VRegA_23x(), *modified_reg_type);
jeffhaofc3144e2012-02-01 17:21:15 -08004775 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004776 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aput";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004777 } else if (array_type.IsUnresolvedMergedReference()) {
Andreas Gampebb18a032016-03-22 20:34:25 -07004778 // Unresolved array types must be reference array types.
4779 if (is_primitive) {
4780 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
4781 << "' but unresolved type '" << array_type << "'";
4782 } else {
4783 Fail(VERIFY_ERROR_NO_CLASS) << "cannot verify aput for " << array_type
4784 << " because of missing class";
4785 }
Ian Rogers89310de2012-02-01 13:47:30 -08004786 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00004787 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
Jeff Haofe1f7c82013-08-01 14:50:24 -07004788 const uint32_t vregA = inst->VRegA_23x();
Jeff Haob24b4a72013-07-31 13:47:31 -07004789 if (is_primitive) {
Jeff Haofe1f7c82013-08-01 14:50:24 -07004790 VerifyPrimitivePut(component_type, insn_type, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07004791 } else {
Jeff Haob24b4a72013-07-31 13:47:31 -07004792 if (!component_type.IsReferenceTypes()) {
4793 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
4794 << " source for aput-object";
4795 } else {
4796 // The instruction agrees with the type of array, confirm the value to be stored does too
4797 // Note: we use the instruction type (rather than the component type) for aput-object as
4798 // incompatible classes will be caught at runtime as an array store exception
Ian Rogers7b078e82014-09-10 14:44:24 -07004799 work_line_->VerifyRegisterType(this, vregA, insn_type);
Jeff Haob24b4a72013-07-31 13:47:31 -07004800 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004801 }
4802 }
4803 }
4804}
4805
Mathieu Chartierc7853442015-03-27 14:35:38 -07004806ArtField* MethodVerifier::GetStaticField(int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08004807 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
4808 // Check access to class
Ian Rogersd8f69b02014-09-10 21:43:52 +00004809 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004810 if (klass_type.IsConflict()) { // bad class
Ian Rogersad0b3a32012-04-16 14:50:24 -07004811 AppendToLastFailMessage(StringPrintf(" in attempt to access static field %d (%s) in %s",
4812 field_idx, dex_file_->GetFieldName(field_id),
4813 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07004814 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08004815 }
Elliott Hughesb25c3f62012-03-26 16:35:06 -07004816 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004817 return nullptr; // Can't resolve Class so no more to do here, will do checking at runtime.
Ian Rogers90040192011-12-16 08:54:29 -08004818 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004819 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
David Brazdilca3c8c32016-09-06 14:04:48 +01004820 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_, class_loader_);
4821
4822 // Record result of the field resolution attempt.
4823 VerifierDeps::MaybeRecordFieldResolution(*dex_file_, field_idx, field);
4824
Ian Rogers7b078e82014-09-10 14:44:24 -07004825 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07004826 VLOG(verifier) << "Unable to resolve static field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07004827 << dex_file_->GetFieldName(field_id) << ") in "
4828 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07004829 DCHECK(self_->IsExceptionPending());
4830 self_->ClearException();
4831 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004832 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
4833 field->GetAccessFlags())) {
David Sehr709b0702016-10-13 09:12:37 -07004834 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access static field " << field->PrettyField()
Ian Rogersad0b3a32012-04-16 14:50:24 -07004835 << " from " << GetDeclaringClass();
Ian Rogers7b078e82014-09-10 14:44:24 -07004836 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004837 } else if (!field->IsStatic()) {
David Sehr709b0702016-10-13 09:12:37 -07004838 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << field->PrettyField() << " to be static";
Ian Rogers7b078e82014-09-10 14:44:24 -07004839 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004840 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004841 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07004842}
4843
Mathieu Chartierc7853442015-03-27 14:35:38 -07004844ArtField* MethodVerifier::GetInstanceField(const RegType& obj_type, int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08004845 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
Aart Bik31883642016-06-06 15:02:44 -07004846 // Check access to class.
Ian Rogersd8f69b02014-09-10 21:43:52 +00004847 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004848 if (klass_type.IsConflict()) {
4849 AppendToLastFailMessage(StringPrintf(" in attempt to access instance field %d (%s) in %s",
4850 field_idx, dex_file_->GetFieldName(field_id),
4851 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07004852 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08004853 }
jeffhao8cd6dda2012-02-22 10:15:34 -08004854 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004855 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08004856 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004857 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
David Brazdilca3c8c32016-09-06 14:04:48 +01004858 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_, class_loader_);
4859
4860 // Record result of the field resolution attempt.
4861 VerifierDeps::MaybeRecordFieldResolution(*dex_file_, field_idx, field);
4862
Ian Rogers7b078e82014-09-10 14:44:24 -07004863 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07004864 VLOG(verifier) << "Unable to resolve instance field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07004865 << dex_file_->GetFieldName(field_id) << ") in "
4866 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07004867 DCHECK(self_->IsExceptionPending());
4868 self_->ClearException();
4869 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004870 } else if (obj_type.IsZero()) {
Aart Bik31883642016-06-06 15:02:44 -07004871 // Cannot infer and check type, however, access will cause null pointer exception.
4872 // Fall through into a few last soft failure checks below.
Stephen Kyle695c5982014-08-22 15:03:07 +01004873 } else if (!obj_type.IsReferenceTypes()) {
Aart Bik31883642016-06-06 15:02:44 -07004874 // Trying to read a field from something that isn't a reference.
Stephen Kyle695c5982014-08-22 15:03:07 +01004875 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance field access on object that has "
4876 << "non-reference type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07004877 return nullptr;
Ian Rogerse1758fe2012-04-19 11:31:15 -07004878 } else {
David Brazdil0d638bb2016-07-27 15:29:25 +01004879 std::string temp;
Mathieu Chartier3398c782016-09-30 10:27:43 -07004880 ObjPtr<mirror::Class> klass = field->GetDeclaringClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00004881 const RegType& field_klass =
Mathieu Chartier3398c782016-09-30 10:27:43 -07004882 FromClass(klass->GetDescriptor(&temp),
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07004883 klass.Ptr(),
Mathieu Chartier3398c782016-09-30 10:27:43 -07004884 klass->CannotBeAssignedFromOtherTypes());
David Brazdil68b5c0b2016-01-19 14:25:29 +00004885 if (obj_type.IsUninitializedTypes()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07004886 // Field accesses through uninitialized references are only allowable for constructors where
David Brazdil68b5c0b2016-01-19 14:25:29 +00004887 // the field is declared in this class.
4888 // Note: this IsConstructor check is technically redundant, as UninitializedThis should only
4889 // appear in constructors.
4890 if (!obj_type.IsUninitializedThisReference() ||
4891 !IsConstructor() ||
4892 !field_klass.Equals(GetDeclaringClass())) {
David Sehr709b0702016-10-13 09:12:37 -07004893 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access instance field " << field->PrettyField()
David Brazdil68b5c0b2016-01-19 14:25:29 +00004894 << " of a not fully initialized object within the context"
David Sehr709b0702016-10-13 09:12:37 -07004895 << " of " << dex_file_->PrettyMethod(dex_method_idx_);
David Brazdil68b5c0b2016-01-19 14:25:29 +00004896 return nullptr;
4897 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004898 } else if (!field_klass.IsAssignableFrom(obj_type, this)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07004899 // Trying to access C1.field1 using reference of type C2, which is neither C1 or a sub-class
4900 // of C1. For resolution to occur the declared class of the field must be compatible with
4901 // obj_type, we've discovered this wasn't so, so report the field didn't exist.
Andreas Gampe66596242016-04-14 10:55:04 -07004902 VerifyError type;
4903 bool is_aot = Runtime::Current()->IsAotCompiler();
4904 if (is_aot && (field_klass.IsUnresolvedTypes() || obj_type.IsUnresolvedTypes())) {
4905 // Compiler & unresolved types involved, retry at runtime.
4906 type = VerifyError::VERIFY_ERROR_NO_CLASS;
4907 } else {
Andreas Gampe8f4ade02016-04-15 10:09:16 -07004908 // Classes known (resolved; and thus assignability check is precise), or we are at runtime
4909 // and still missing classes. This is a hard failure.
Andreas Gampe66596242016-04-14 10:55:04 -07004910 type = VerifyError::VERIFY_ERROR_BAD_CLASS_HARD;
4911 }
David Sehr709b0702016-10-13 09:12:37 -07004912 Fail(type) << "cannot access instance field " << field->PrettyField()
Andreas Gampe66596242016-04-14 10:55:04 -07004913 << " from object of type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07004914 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004915 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004916 }
Aart Bik31883642016-06-06 15:02:44 -07004917
4918 // Few last soft failure checks.
4919 if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
4920 field->GetAccessFlags())) {
David Sehr709b0702016-10-13 09:12:37 -07004921 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access instance field " << field->PrettyField()
Aart Bik31883642016-06-06 15:02:44 -07004922 << " from " << GetDeclaringClass();
4923 return nullptr;
4924 } else if (field->IsStatic()) {
David Sehr709b0702016-10-13 09:12:37 -07004925 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << field->PrettyField()
Aart Bik31883642016-06-06 15:02:44 -07004926 << " to not be static";
4927 return nullptr;
4928 }
4929
4930 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07004931}
4932
Andreas Gampe896df402014-10-20 22:25:29 -07004933template <MethodVerifier::FieldAccessType kAccType>
4934void MethodVerifier::VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type,
4935 bool is_primitive, bool is_static) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02004936 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
Mathieu Chartierc7853442015-03-27 14:35:38 -07004937 ArtField* field;
Ian Rogersb94a27b2011-10-26 00:33:41 -07004938 if (is_static) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07004939 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07004940 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004941 const RegType& object_type = work_line_->GetRegisterType(this, inst->VRegB_22c());
David Brazdil68b5c0b2016-01-19 14:25:29 +00004942
4943 // One is not allowed to access fields on uninitialized references, except to write to
4944 // fields in the constructor (before calling another constructor).
4945 // GetInstanceField does an assignability check which will fail for uninitialized types.
4946 // We thus modify the type if the uninitialized reference is a "this" reference (this also
4947 // checks at the same time that we're verifying a constructor).
4948 bool should_adjust = (kAccType == FieldAccessType::kAccPut) &&
4949 object_type.IsUninitializedThisReference();
4950 const RegType& adjusted_type = should_adjust
4951 ? GetRegTypeCache()->FromUninitialized(object_type)
4952 : object_type;
4953 field = GetInstanceField(adjusted_type, field_idx);
Andreas Gampe896df402014-10-20 22:25:29 -07004954 if (UNLIKELY(have_pending_hard_failure_)) {
4955 return;
4956 }
Alex Light4a2c8fc2016-02-12 11:01:54 -08004957 if (should_adjust) {
4958 if (field == nullptr) {
4959 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Might be accessing a superclass instance field prior "
4960 << "to the superclass being initialized in "
David Sehr709b0702016-10-13 09:12:37 -07004961 << dex_file_->PrettyMethod(dex_method_idx_);
Alex Light4a2c8fc2016-02-12 11:01:54 -08004962 } else if (field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
4963 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access superclass instance field "
David Sehr709b0702016-10-13 09:12:37 -07004964 << field->PrettyField() << " of a not fully initialized "
Alex Light4a2c8fc2016-02-12 11:01:54 -08004965 << "object within the context of "
David Sehr709b0702016-10-13 09:12:37 -07004966 << dex_file_->PrettyMethod(dex_method_idx_);
Alex Light4a2c8fc2016-02-12 11:01:54 -08004967 return;
4968 }
4969 }
Ian Rogersb94a27b2011-10-26 00:33:41 -07004970 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004971 const RegType* field_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07004972 if (field != nullptr) {
Andreas Gampe896df402014-10-20 22:25:29 -07004973 if (kAccType == FieldAccessType::kAccPut) {
4974 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
David Sehr709b0702016-10-13 09:12:37 -07004975 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << field->PrettyField()
Andreas Gampe896df402014-10-20 22:25:29 -07004976 << " from other class " << GetDeclaringClass();
Aart Bikc2bc2652016-05-23 14:58:49 -07004977 // Keep hunting for possible hard fails.
Andreas Gampe896df402014-10-20 22:25:29 -07004978 }
4979 }
4980
Mathieu Chartier3398c782016-09-30 10:27:43 -07004981 ObjPtr<mirror::Class> field_type_class =
Mathieu Chartierc7853442015-03-27 14:35:38 -07004982 can_load_classes_ ? field->GetType<true>() : field->GetType<false>();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004983 if (field_type_class != nullptr) {
Mathieu Chartier3398c782016-09-30 10:27:43 -07004984 field_type = &FromClass(field->GetTypeDescriptor(),
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07004985 field_type_class.Ptr(),
Andreas Gampef23f33d2015-06-23 14:18:17 -07004986 field_type_class->CannotBeAssignedFromOtherTypes());
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08004987 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004988 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
4989 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004990 }
Ian Rogers0d604842012-04-16 14:50:24 -07004991 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004992 if (field_type == nullptr) {
4993 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
4994 const char* descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07004995 field_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004996 }
Sebastien Hertz757b3042014-03-28 14:34:28 +01004997 DCHECK(field_type != nullptr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02004998 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c();
Andreas Gampe896df402014-10-20 22:25:29 -07004999 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
5000 "Unexpected third access type");
5001 if (kAccType == FieldAccessType::kAccPut) {
5002 // sput or iput.
5003 if (is_primitive) {
5004 VerifyPrimitivePut(*field_type, insn_type, vregA);
Ian Rogersad0b3a32012-04-16 14:50:24 -07005005 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005006 if (!insn_type.IsAssignableFrom(*field_type, this)) {
Vladimir Marko414000e2015-06-23 17:45:21 +01005007 // If the field type is not a reference, this is a global failure rather than
5008 // a class change failure as the instructions and the descriptors for the type
5009 // should have been consistent within the same file at compile time.
5010 VerifyError error = field_type->IsReferenceTypes() ? VERIFY_ERROR_BAD_CLASS_SOFT
5011 : VERIFY_ERROR_BAD_CLASS_HARD;
David Sehr709b0702016-10-13 09:12:37 -07005012 Fail(error) << "expected field " << ArtField::PrettyField(field)
Vladimir Marko414000e2015-06-23 17:45:21 +01005013 << " to be compatible with type '" << insn_type
5014 << "' but found type '" << *field_type
5015 << "' in put-object";
Andreas Gampe896df402014-10-20 22:25:29 -07005016 return;
5017 }
5018 work_line_->VerifyRegisterType(this, vregA, *field_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07005019 }
Andreas Gampe896df402014-10-20 22:25:29 -07005020 } else if (kAccType == FieldAccessType::kAccGet) {
5021 // sget or iget.
5022 if (is_primitive) {
5023 if (field_type->Equals(insn_type) ||
5024 (field_type->IsFloat() && insn_type.IsInteger()) ||
5025 (field_type->IsDouble() && insn_type.IsLong())) {
5026 // expected that read is of the correct primitive type or that int reads are reading
5027 // floats or long reads are reading doubles
5028 } else {
5029 // This is a global failure rather than a class change failure as the instructions and
5030 // the descriptors for the type should have been consistent within the same file at
5031 // compile time
David Sehr709b0702016-10-13 09:12:37 -07005032 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005033 << " to be of type '" << insn_type
5034 << "' but found type '" << *field_type << "' in get";
5035 return;
5036 }
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08005037 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005038 if (!insn_type.IsAssignableFrom(*field_type, this)) {
Vladimir Marko414000e2015-06-23 17:45:21 +01005039 // If the field type is not a reference, this is a global failure rather than
5040 // a class change failure as the instructions and the descriptors for the type
5041 // should have been consistent within the same file at compile time.
5042 VerifyError error = field_type->IsReferenceTypes() ? VERIFY_ERROR_BAD_CLASS_SOFT
5043 : VERIFY_ERROR_BAD_CLASS_HARD;
David Sehr709b0702016-10-13 09:12:37 -07005044 Fail(error) << "expected field " << ArtField::PrettyField(field)
Vladimir Marko414000e2015-06-23 17:45:21 +01005045 << " to be compatible with type '" << insn_type
5046 << "' but found type '" << *field_type
5047 << "' in get-object";
Andreas Gampe890da292015-07-06 17:20:18 -07005048 if (error != VERIFY_ERROR_BAD_CLASS_HARD) {
Andreas Gampead238ce2015-08-24 21:13:08 -07005049 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, reg_types_.Conflict());
Andreas Gampe890da292015-07-06 17:20:18 -07005050 }
Andreas Gampe896df402014-10-20 22:25:29 -07005051 return;
5052 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005053 }
Andreas Gampe896df402014-10-20 22:25:29 -07005054 if (!field_type->IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07005055 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, *field_type);
Andreas Gampe896df402014-10-20 22:25:29 -07005056 } else {
5057 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
5058 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07005059 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07005060 LOG(FATAL) << "Unexpected case.";
Ian Rogersd81871c2011-10-03 13:57:23 -07005061 }
5062}
5063
Mathieu Chartierc7853442015-03-27 14:35:38 -07005064ArtField* MethodVerifier::GetQuickFieldAccess(const Instruction* inst,
Ian Rogers98379392014-02-24 16:53:16 -08005065 RegisterLine* reg_line) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08005066 DCHECK(IsInstructionIGetQuickOrIPutQuick(inst->Opcode())) << inst->Opcode();
Ian Rogers7b078e82014-09-10 14:44:24 -07005067 const RegType& object_type = reg_line->GetRegisterType(this, inst->VRegB_22c());
Ian Rogers9bc54402014-04-17 16:40:01 -07005068 if (!object_type.HasClass()) {
5069 VLOG(verifier) << "Failed to get mirror::Class* from '" << object_type << "'";
5070 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02005071 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005072 uint32_t field_offset = static_cast<uint32_t>(inst->VRegC_22c());
Mathieu Chartierc7853442015-03-27 14:35:38 -07005073 ArtField* const f = ArtField::FindInstanceFieldWithOffset(object_type.GetClass(), field_offset);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08005074 DCHECK_EQ(f->GetOffset().Uint32Value(), field_offset);
Sebastien Hertz479fc1e2014-04-04 17:51:34 +02005075 if (f == nullptr) {
5076 VLOG(verifier) << "Failed to find instance field at offset '" << field_offset
David Sehr709b0702016-10-13 09:12:37 -07005077 << "' from '" << mirror::Class::PrettyDescriptor(object_type.GetClass()) << "'";
Sebastien Hertz479fc1e2014-04-04 17:51:34 +02005078 }
5079 return f;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02005080}
5081
Andreas Gampe896df402014-10-20 22:25:29 -07005082template <MethodVerifier::FieldAccessType kAccType>
5083void MethodVerifier::VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type,
5084 bool is_primitive) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07005085 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005086
Mathieu Chartierc7853442015-03-27 14:35:38 -07005087 ArtField* field = GetQuickFieldAccess(inst, work_line_.get());
Ian Rogers7b078e82014-09-10 14:44:24 -07005088 if (field == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02005089 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field from " << inst->Name();
5090 return;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005091 }
Andreas Gampe896df402014-10-20 22:25:29 -07005092
5093 // For an IPUT_QUICK, we now test for final flag of the field.
5094 if (kAccType == FieldAccessType::kAccPut) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005095 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
David Sehr709b0702016-10-13 09:12:37 -07005096 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << field->PrettyField()
Sebastien Hertzc15853b2013-06-25 17:36:27 +02005097 << " from other class " << GetDeclaringClass();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005098 return;
5099 }
5100 }
Andreas Gampe896df402014-10-20 22:25:29 -07005101
5102 // Get the field type.
5103 const RegType* field_type;
5104 {
Mathieu Chartier3398c782016-09-30 10:27:43 -07005105 ObjPtr<mirror::Class> field_type_class = can_load_classes_ ? field->GetType<true>() :
Mathieu Chartierc7853442015-03-27 14:35:38 -07005106 field->GetType<false>();
Andreas Gampe896df402014-10-20 22:25:29 -07005107
5108 if (field_type_class != nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005109 field_type = &FromClass(field->GetTypeDescriptor(),
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07005110 field_type_class.Ptr(),
Andreas Gampef23f33d2015-06-23 14:18:17 -07005111 field_type_class->CannotBeAssignedFromOtherTypes());
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005112 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07005113 Thread* self = Thread::Current();
5114 DCHECK(!can_load_classes_ || self->IsExceptionPending());
5115 self->ClearException();
5116 field_type = &reg_types_.FromDescriptor(field->GetDeclaringClass()->GetClassLoader(),
Mathieu Chartierde40d472015-10-15 17:47:48 -07005117 field->GetTypeDescriptor(),
5118 false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005119 }
Andreas Gampe896df402014-10-20 22:25:29 -07005120 if (field_type == nullptr) {
5121 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field type from " << inst->Name();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005122 return;
5123 }
Andreas Gampe896df402014-10-20 22:25:29 -07005124 }
5125
5126 const uint32_t vregA = inst->VRegA_22c();
5127 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
5128 "Unexpected third access type");
5129 if (kAccType == FieldAccessType::kAccPut) {
5130 if (is_primitive) {
5131 // Primitive field assignability rules are weaker than regular assignability rules
5132 bool instruction_compatible;
5133 bool value_compatible;
5134 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
5135 if (field_type->IsIntegralTypes()) {
5136 instruction_compatible = insn_type.IsIntegralTypes();
5137 value_compatible = value_type.IsIntegralTypes();
5138 } else if (field_type->IsFloat()) {
5139 instruction_compatible = insn_type.IsInteger(); // no [is]put-float, so expect [is]put-int
5140 value_compatible = value_type.IsFloatTypes();
5141 } else if (field_type->IsLong()) {
5142 instruction_compatible = insn_type.IsLong();
5143 value_compatible = value_type.IsLongTypes();
5144 } else if (field_type->IsDouble()) {
5145 instruction_compatible = insn_type.IsLong(); // no [is]put-double, so expect [is]put-long
5146 value_compatible = value_type.IsDoubleTypes();
5147 } else {
5148 instruction_compatible = false; // reference field with primitive store
5149 value_compatible = false; // unused
5150 }
5151 if (!instruction_compatible) {
5152 // This is a global failure rather than a class change failure as the instructions and
5153 // the descriptors for the type should have been consistent within the same file at
5154 // compile time
David Sehr709b0702016-10-13 09:12:37 -07005155 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005156 << " to be of type '" << insn_type
5157 << "' but found type '" << *field_type
5158 << "' in put";
5159 return;
5160 }
5161 if (!value_compatible) {
5162 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
5163 << " of type " << value_type
5164 << " but expected " << *field_type
David Sehr709b0702016-10-13 09:12:37 -07005165 << " for store to " << ArtField::PrettyField(field) << " in put";
Andreas Gampe896df402014-10-20 22:25:29 -07005166 return;
5167 }
5168 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005169 if (!insn_type.IsAssignableFrom(*field_type, this)) {
David Sehr709b0702016-10-13 09:12:37 -07005170 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005171 << " to be compatible with type '" << insn_type
5172 << "' but found type '" << *field_type
5173 << "' in put-object";
5174 return;
5175 }
5176 work_line_->VerifyRegisterType(this, vregA, *field_type);
5177 }
5178 } else if (kAccType == FieldAccessType::kAccGet) {
5179 if (is_primitive) {
5180 if (field_type->Equals(insn_type) ||
5181 (field_type->IsFloat() && insn_type.IsIntegralTypes()) ||
5182 (field_type->IsDouble() && insn_type.IsLongTypes())) {
5183 // expected that read is of the correct primitive type or that int reads are reading
5184 // floats or long reads are reading doubles
5185 } else {
5186 // This is a global failure rather than a class change failure as the instructions and
5187 // the descriptors for the type should have been consistent within the same file at
5188 // compile time
David Sehr709b0702016-10-13 09:12:37 -07005189 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005190 << " to be of type '" << insn_type
5191 << "' but found type '" << *field_type << "' in Get";
5192 return;
5193 }
5194 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005195 if (!insn_type.IsAssignableFrom(*field_type, this)) {
David Sehr709b0702016-10-13 09:12:37 -07005196 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005197 << " to be compatible with type '" << insn_type
5198 << "' but found type '" << *field_type
5199 << "' in get-object";
Andreas Gampead238ce2015-08-24 21:13:08 -07005200 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, reg_types_.Conflict());
Andreas Gampe896df402014-10-20 22:25:29 -07005201 return;
5202 }
5203 }
5204 if (!field_type->IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07005205 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, *field_type);
Andreas Gampe896df402014-10-20 22:25:29 -07005206 } else {
5207 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005208 }
5209 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07005210 LOG(FATAL) << "Unexpected case.";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005211 }
5212}
5213
Ian Rogers776ac1f2012-04-13 23:36:36 -07005214bool MethodVerifier::CheckNotMoveException(const uint16_t* insns, int insn_idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07005215 if ((insns[insn_idx] & 0xff) == Instruction::MOVE_EXCEPTION) {
jeffhaod5347e02012-03-22 17:25:05 -07005216 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-exception";
Ian Rogersd81871c2011-10-03 13:57:23 -07005217 return false;
5218 }
5219 return true;
5220}
5221
Stephen Kyle9bc61992014-09-22 13:53:15 +01005222bool MethodVerifier::CheckNotMoveResult(const uint16_t* insns, int insn_idx) {
5223 if (((insns[insn_idx] & 0xff) >= Instruction::MOVE_RESULT) &&
5224 ((insns[insn_idx] & 0xff) <= Instruction::MOVE_RESULT_OBJECT)) {
5225 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-result*";
5226 return false;
5227 }
5228 return true;
5229}
5230
5231bool MethodVerifier::CheckNotMoveExceptionOrMoveResult(const uint16_t* insns, int insn_idx) {
5232 return (CheckNotMoveException(insns, insn_idx) && CheckNotMoveResult(insns, insn_idx));
5233}
5234
Ian Rogersebbdd872014-07-07 23:53:08 -07005235bool MethodVerifier::UpdateRegisters(uint32_t next_insn, RegisterLine* merge_line,
5236 bool update_merge_line) {
Ian Rogersd81871c2011-10-03 13:57:23 -07005237 bool changed = true;
5238 RegisterLine* target_line = reg_table_.GetLine(next_insn);
Mathieu Chartierde40d472015-10-15 17:47:48 -07005239 if (!GetInstructionFlags(next_insn).IsVisitedOrChanged()) {
jeffhaobdb76512011-09-07 11:43:16 -07005240 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07005241 * We haven't processed this instruction before, and we haven't touched the registers here, so
5242 * there's nothing to "merge". Copy the registers over and mark it as changed. (This is the
5243 * only way a register can transition out of "unknown", so this is not just an optimization.)
jeffhaobdb76512011-09-07 11:43:16 -07005244 */
Andreas Gampea727e372015-08-25 09:22:37 -07005245 target_line->CopyFromLine(merge_line);
Mathieu Chartierde40d472015-10-15 17:47:48 -07005246 if (GetInstructionFlags(next_insn).IsReturn()) {
Jeff Haob24b4a72013-07-31 13:47:31 -07005247 // Verify that the monitor stack is empty on return.
Andreas Gampea727e372015-08-25 09:22:37 -07005248 merge_line->VerifyMonitorStackEmpty(this);
5249
Ian Rogersb8c78592013-07-25 23:52:52 +00005250 // For returns we only care about the operand to the return, all other registers are dead.
5251 // Initialize them as conflicts so they don't add to GC and deoptimization information.
5252 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn);
Andreas Gampea727e372015-08-25 09:22:37 -07005253 AdjustReturnLine(this, ret_inst, target_line);
Aart Bik31883642016-06-06 15:02:44 -07005254 // Directly bail if a hard failure was found.
Aart Bikb0526322016-06-01 14:06:00 -07005255 if (have_pending_hard_failure_) {
5256 return false;
5257 }
Ian Rogersb8c78592013-07-25 23:52:52 +00005258 }
jeffhaobdb76512011-09-07 11:43:16 -07005259 } else {
Mathieu Chartier361e04a2016-02-16 14:06:35 -08005260 RegisterLineArenaUniquePtr copy;
Andreas Gampeec6e6c12015-11-05 20:39:56 -08005261 if (kDebugVerify) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005262 copy.reset(RegisterLine::Create(target_line->NumRegs(), this));
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005263 copy->CopyFromLine(target_line);
5264 }
Ian Rogers7b078e82014-09-10 14:44:24 -07005265 changed = target_line->MergeRegisters(this, merge_line);
Ian Rogersad0b3a32012-04-16 14:50:24 -07005266 if (have_pending_hard_failure_) {
Ian Rogersd81871c2011-10-03 13:57:23 -07005267 return false;
jeffhaobdb76512011-09-07 11:43:16 -07005268 }
Andreas Gampeec6e6c12015-11-05 20:39:56 -08005269 if (kDebugVerify && changed) {
Elliott Hughes398f64b2012-03-26 18:05:48 -07005270 LogVerifyInfo() << "Merging at [" << reinterpret_cast<void*>(work_insn_idx_) << "]"
Elliott Hughesc073b072012-05-24 19:29:17 -07005271 << " to [" << reinterpret_cast<void*>(next_insn) << "]: " << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07005272 << copy->Dump(this) << " MERGE\n"
5273 << merge_line->Dump(this) << " ==\n"
5274 << target_line->Dump(this) << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07005275 }
Ian Rogersebbdd872014-07-07 23:53:08 -07005276 if (update_merge_line && changed) {
5277 merge_line->CopyFromLine(target_line);
5278 }
jeffhaobdb76512011-09-07 11:43:16 -07005279 }
Ian Rogersd81871c2011-10-03 13:57:23 -07005280 if (changed) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005281 GetInstructionFlags(next_insn).SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07005282 }
5283 return true;
5284}
5285
Ian Rogers7b3ddd22013-02-21 15:19:52 -08005286InstructionFlags* MethodVerifier::CurrentInsnFlags() {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005287 return &GetInstructionFlags(work_insn_idx_);
Ian Rogers776ac1f2012-04-13 23:36:36 -07005288}
5289
Ian Rogersd8f69b02014-09-10 21:43:52 +00005290const RegType& MethodVerifier::GetMethodReturnType() {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005291 if (return_type_ == nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005292 if (mirror_method_ != nullptr) {
Vladimir Marko942fd312017-01-16 20:52:19 +00005293 mirror::Class* return_type_class = mirror_method_->GetReturnType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005294 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07005295 return_type_ = &FromClass(mirror_method_->GetReturnTypeDescriptor(),
5296 return_type_class,
5297 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005298 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07005299 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
5300 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005301 }
5302 }
5303 if (return_type_ == nullptr) {
5304 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
5305 const DexFile::ProtoId& proto_id = dex_file_->GetMethodPrototype(method_id);
Andreas Gampea5b09a62016-11-17 15:21:22 -08005306 dex::TypeIndex return_type_idx = proto_id.return_type_idx_;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005307 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx));
Mathieu Chartierbf99f772014-08-23 16:37:27 -07005308 return_type_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005309 }
5310 }
5311 return *return_type_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07005312}
5313
Ian Rogersd8f69b02014-09-10 21:43:52 +00005314const RegType& MethodVerifier::GetDeclaringClass() {
Ian Rogers7b078e82014-09-10 14:44:24 -07005315 if (declaring_class_ == nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005316 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
Brian Carlstrom93c33962013-07-26 10:37:43 -07005317 const char* descriptor
5318 = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
Mathieu Chartiere401d142015-04-22 13:56:20 -07005319 if (mirror_method_ != nullptr) {
Ian Rogers637c65b2013-05-31 11:46:00 -07005320 mirror::Class* klass = mirror_method_->GetDeclaringClass();
Mathieu Chartierde40d472015-10-15 17:47:48 -07005321 declaring_class_ = &FromClass(descriptor, klass, klass->CannotBeAssignedFromOtherTypes());
Ian Rogers637c65b2013-05-31 11:46:00 -07005322 } else {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07005323 declaring_class_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers637c65b2013-05-31 11:46:00 -07005324 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07005325 }
Ian Rogers637c65b2013-05-31 11:46:00 -07005326 return *declaring_class_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07005327}
5328
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005329std::vector<int32_t> MethodVerifier::DescribeVRegs(uint32_t dex_pc) {
5330 RegisterLine* line = reg_table_.GetLine(dex_pc);
Sebastien Hertzaa0c00c2014-03-14 17:58:54 +01005331 DCHECK(line != nullptr) << "No register line at DEX pc " << StringPrintf("0x%x", dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005332 std::vector<int32_t> result;
5333 for (size_t i = 0; i < line->NumRegs(); ++i) {
Ian Rogers7b078e82014-09-10 14:44:24 -07005334 const RegType& type = line->GetRegisterType(this, i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005335 if (type.IsConstant()) {
5336 result.push_back(type.IsPreciseConstant() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07005337 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
5338 result.push_back(const_val->ConstantValue());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005339 } else if (type.IsConstantLo()) {
5340 result.push_back(type.IsPreciseConstantLo() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07005341 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
5342 result.push_back(const_val->ConstantValueLo());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005343 } else if (type.IsConstantHi()) {
5344 result.push_back(type.IsPreciseConstantHi() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07005345 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
5346 result.push_back(const_val->ConstantValueHi());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005347 } else if (type.IsIntegralTypes()) {
5348 result.push_back(kIntVReg);
5349 result.push_back(0);
5350 } else if (type.IsFloat()) {
5351 result.push_back(kFloatVReg);
5352 result.push_back(0);
5353 } else if (type.IsLong()) {
5354 result.push_back(kLongLoVReg);
5355 result.push_back(0);
5356 result.push_back(kLongHiVReg);
5357 result.push_back(0);
5358 ++i;
5359 } else if (type.IsDouble()) {
5360 result.push_back(kDoubleLoVReg);
5361 result.push_back(0);
5362 result.push_back(kDoubleHiVReg);
5363 result.push_back(0);
5364 ++i;
5365 } else if (type.IsUndefined() || type.IsConflict() || type.IsHighHalf()) {
5366 result.push_back(kUndefined);
5367 result.push_back(0);
5368 } else {
Ian Rogers7b3ddd22013-02-21 15:19:52 -08005369 CHECK(type.IsNonZeroReferenceTypes());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005370 result.push_back(kReferenceVReg);
5371 result.push_back(0);
5372 }
5373 }
5374 return result;
5375}
5376
Ian Rogersd8f69b02014-09-10 21:43:52 +00005377const RegType& MethodVerifier::DetermineCat1Constant(int32_t value, bool precise) {
Sebastien Hertz849600b2013-12-20 10:28:08 +01005378 if (precise) {
5379 // Precise constant type.
5380 return reg_types_.FromCat1Const(value, true);
5381 } else {
5382 // Imprecise constant type.
5383 if (value < -32768) {
5384 return reg_types_.IntConstant();
5385 } else if (value < -128) {
5386 return reg_types_.ShortConstant();
5387 } else if (value < 0) {
5388 return reg_types_.ByteConstant();
5389 } else if (value == 0) {
5390 return reg_types_.Zero();
5391 } else if (value == 1) {
5392 return reg_types_.One();
5393 } else if (value < 128) {
5394 return reg_types_.PosByteConstant();
5395 } else if (value < 32768) {
5396 return reg_types_.PosShortConstant();
5397 } else if (value < 65536) {
5398 return reg_types_.CharConstant();
5399 } else {
5400 return reg_types_.IntConstant();
5401 }
5402 }
5403}
5404
Elliott Hughes0a1038b2012-06-14 16:24:17 -07005405void MethodVerifier::Init() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08005406 art::verifier::RegTypeCache::Init();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08005407}
5408
Elliott Hughes0a1038b2012-06-14 16:24:17 -07005409void MethodVerifier::Shutdown() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08005410 verifier::RegTypeCache::ShutDown();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08005411}
jeffhaod1224c72012-02-29 13:43:08 -08005412
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07005413void MethodVerifier::VisitStaticRoots(RootVisitor* visitor) {
5414 RegTypeCache::VisitStaticRoots(visitor);
Mathieu Chartier7c438b12014-09-12 17:01:24 -07005415}
5416
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07005417void MethodVerifier::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
5418 reg_types_.VisitRoots(visitor, root_info);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08005419}
5420
Andreas Gampef23f33d2015-06-23 14:18:17 -07005421const RegType& MethodVerifier::FromClass(const char* descriptor,
5422 mirror::Class* klass,
5423 bool precise) {
5424 DCHECK(klass != nullptr);
5425 if (precise && !klass->IsInstantiable() && !klass->IsPrimitive()) {
5426 Fail(VerifyError::VERIFY_ERROR_NO_CLASS) << "Could not create precise reference for "
5427 << "non-instantiable klass " << descriptor;
5428 precise = false;
5429 }
5430 return reg_types_.FromClass(descriptor, klass, precise);
5431}
5432
Ian Rogersd81871c2011-10-03 13:57:23 -07005433} // namespace verifier
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005434} // namespace art