blob: b915457557dd016a52e31aecb020b450e8da59b8 [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"
Brian Carlstrom1f870082011-08-23 16:02:11 -070036#include "dex_instruction_visitor.h"
Alex Lighteb7c1442015-08-31 13:17:42 -070037#include "experimental_flags.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070038#include "gc/accounting/card_table-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"
Vladimir Marko80afd022015-05-19 18:08:00 +010053#include "utils.h"
David Brazdilca3c8c32016-09-06 14:04:48 +010054#include "verifier_deps.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070055#include "handle_scope-inl.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070056
57namespace art {
Ian Rogersd81871c2011-10-03 13:57:23 -070058namespace verifier {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070059
Andreas Gampe46ee31b2016-12-14 10:11:49 -080060using android::base::StringPrintf;
61
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070062static constexpr bool kTimeVerifyMethod = !kIsDebugBuild;
Andreas Gampeec6e6c12015-11-05 20:39:56 -080063static constexpr bool kDebugVerify = false;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -070064// TODO: Add a constant to method_verifier to turn on verbose logging?
Ian Rogers2c8a8572011-10-24 17:11:36 -070065
Andreas Gampeebf850c2015-08-14 15:37:35 -070066// On VLOG(verifier), should we dump the whole state when we run into a hard failure?
67static constexpr bool kDumpRegLinesOnHardFailureIfVLOG = true;
68
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -080069// We print a warning blurb about "dx --no-optimize" when we find monitor-locking issues. Make
70// sure we only print this once.
71static bool gPrintedDxMonitorText = false;
72
Mathieu Chartierde40d472015-10-15 17:47:48 -070073PcToRegisterLineTable::PcToRegisterLineTable(ScopedArenaAllocator& arena)
74 : register_lines_(arena.Adapter(kArenaAllocVerifier)) {}
75
Ian Rogers7b3ddd22013-02-21 15:19:52 -080076void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InstructionFlags* flags,
Ian Rogersd81871c2011-10-03 13:57:23 -070077 uint32_t insns_size, uint16_t registers_size,
Ian Rogers776ac1f2012-04-13 23:36:36 -070078 MethodVerifier* verifier) {
Ian Rogersd81871c2011-10-03 13:57:23 -070079 DCHECK_GT(insns_size, 0U);
Mathieu Chartierde40d472015-10-15 17:47:48 -070080 register_lines_.resize(insns_size);
Ian Rogersd81871c2011-10-03 13:57:23 -070081 for (uint32_t i = 0; i < insns_size; i++) {
82 bool interesting = false;
83 switch (mode) {
84 case kTrackRegsAll:
85 interesting = flags[i].IsOpcode();
86 break;
Sameer Abu Asal02c42232013-04-30 12:09:45 -070087 case kTrackCompilerInterestPoints:
Brian Carlstrom02c8cc62013-07-18 15:54:44 -070088 interesting = flags[i].IsCompileTimeInfoPoint() || flags[i].IsBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -070089 break;
90 case kTrackRegsBranches:
91 interesting = flags[i].IsBranchTarget();
92 break;
93 default:
94 break;
95 }
96 if (interesting) {
Mathieu Chartierde40d472015-10-15 17:47:48 -070097 register_lines_[i].reset(RegisterLine::Create(registers_size, verifier));
Ian Rogersd0fbd852013-09-24 18:17:04 -070098 }
99 }
100}
101
Mathieu Chartierde40d472015-10-15 17:47:48 -0700102PcToRegisterLineTable::~PcToRegisterLineTable() {}
Ian Rogersd81871c2011-10-03 13:57:23 -0700103
Andreas Gampe7c038102014-10-27 20:08:46 -0700104// Note: returns true on failure.
105ALWAYS_INLINE static inline bool FailOrAbort(MethodVerifier* verifier, bool condition,
106 const char* error_msg, uint32_t work_insn_idx) {
107 if (kIsDebugBuild) {
Andreas Gampef8f36c22016-11-19 14:51:52 -0800108 // In a debug build, abort if the error condition is wrong. Only warn if
109 // we are already aborting (as this verification is likely run to print
110 // lock information).
111 if (LIKELY(gAborting == 0)) {
112 DCHECK(condition) << error_msg << work_insn_idx;
113 } else {
114 if (!condition) {
115 LOG(ERROR) << error_msg << work_insn_idx;
116 verifier->Fail(VERIFY_ERROR_BAD_CLASS_HARD) << error_msg << work_insn_idx;
117 return true;
118 }
119 }
Andreas Gampe7c038102014-10-27 20:08:46 -0700120 } else {
121 // In a non-debug build, just fail the class.
122 if (!condition) {
123 verifier->Fail(VERIFY_ERROR_BAD_CLASS_HARD) << error_msg << work_insn_idx;
124 return true;
125 }
126 }
127
128 return false;
129}
130
Stephen Kyle7e541c92014-12-17 17:10:02 +0000131static void SafelyMarkAllRegistersAsConflicts(MethodVerifier* verifier, RegisterLine* reg_line) {
Andreas Gampef10b6e12015-08-12 10:48:12 -0700132 if (verifier->IsInstanceConstructor()) {
Stephen Kyle7e541c92014-12-17 17:10:02 +0000133 // Before we mark all regs as conflicts, check that we don't have an uninitialized this.
134 reg_line->CheckConstructorReturn(verifier);
135 }
136 reg_line->MarkAllRegistersAsConflicts(verifier);
137}
138
Ian Rogers7b078e82014-09-10 14:44:24 -0700139MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
140 mirror::Class* klass,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800141 CompilerCallbacks* callbacks,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700142 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700143 HardFailLogMode log_level,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700144 std::string* error) {
jeffhaobdb76512011-09-07 11:43:16 -0700145 if (klass->IsVerified()) {
jeffhaof1e6b7c2012-06-05 18:33:30 -0700146 return kNoFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700147 }
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800148 bool early_failure = false;
149 std::string failure_message;
Mathieu Chartierf8322842014-05-16 10:59:25 -0700150 const DexFile& dex_file = klass->GetDexFile();
151 const DexFile::ClassDef* class_def = klass->GetClassDef();
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800152 mirror::Class* super = klass->GetSuperClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -0700153 std::string temp;
Ian Rogers7b078e82014-09-10 14:44:24 -0700154 if (super == nullptr && strcmp("Ljava/lang/Object;", klass->GetDescriptor(&temp)) != 0) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800155 early_failure = true;
156 failure_message = " that has no super class";
Ian Rogers7b078e82014-09-10 14:44:24 -0700157 } else if (super != nullptr && super->IsFinal()) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800158 early_failure = true;
David Sehr709b0702016-10-13 09:12:37 -0700159 failure_message = " that attempts to sub-class final class " + super->PrettyDescriptor();
Ian Rogers7b078e82014-09-10 14:44:24 -0700160 } else if (class_def == nullptr) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800161 early_failure = true;
162 failure_message = " that isn't present in dex file " + dex_file.GetLocation();
163 }
164 if (early_failure) {
David Sehr709b0702016-10-13 09:12:37 -0700165 *error = "Verifier rejected class " + klass->PrettyDescriptor() + failure_message;
Andreas Gampe53e32d12015-12-09 21:03:23 -0800166 if (callbacks != nullptr) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800167 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
Andreas Gampe53e32d12015-12-09 21:03:23 -0800168 callbacks->ClassRejected(ref);
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800169 }
jeffhaof1e6b7c2012-06-05 18:33:30 -0700170 return kHardFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700171 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700172 StackHandleScope<2> hs(self);
Mathieu Chartierf8322842014-05-16 10:59:25 -0700173 Handle<mirror::DexCache> dex_cache(hs.NewHandle(klass->GetDexCache()));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700174 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(klass->GetClassLoader()));
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800175 return VerifyClass(self,
176 &dex_file,
177 dex_cache,
178 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100179 *class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800180 callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800181 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700182 log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800183 error);
184}
185
186template <bool kDirect>
187static bool HasNextMethod(ClassDataItemIterator* it) {
188 return kDirect ? it->HasNextDirectMethod() : it->HasNextVirtualMethod();
189}
190
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800191static MethodVerifier::FailureKind FailureKindMax(MethodVerifier::FailureKind fk1,
192 MethodVerifier::FailureKind fk2) {
193 static_assert(MethodVerifier::FailureKind::kNoFailure <
194 MethodVerifier::FailureKind::kSoftFailure
195 && MethodVerifier::FailureKind::kSoftFailure <
196 MethodVerifier::FailureKind::kHardFailure,
197 "Unexpected FailureKind order");
198 return std::max(fk1, fk2);
199}
200
201void MethodVerifier::FailureData::Merge(const MethodVerifier::FailureData& fd) {
202 kind = FailureKindMax(kind, fd.kind);
203 types |= fd.types;
204}
205
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800206template <bool kDirect>
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800207MethodVerifier::FailureData MethodVerifier::VerifyMethods(Thread* self,
208 ClassLinker* linker,
209 const DexFile* dex_file,
David Brazdil15fc7292016-09-02 14:13:18 +0100210 const DexFile::ClassDef& class_def,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800211 ClassDataItemIterator* it,
212 Handle<mirror::DexCache> dex_cache,
213 Handle<mirror::ClassLoader> class_loader,
214 CompilerCallbacks* callbacks,
215 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700216 HardFailLogMode log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800217 bool need_precise_constants,
218 std::string* error_string) {
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800219 DCHECK(it != nullptr);
220
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800221 MethodVerifier::FailureData failure_data;
222
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800223 int64_t previous_method_idx = -1;
224 while (HasNextMethod<kDirect>(it)) {
225 self->AllowThreadSuspension();
226 uint32_t method_idx = it->GetMemberIndex();
227 if (method_idx == previous_method_idx) {
228 // smali can create dex files with two encoded_methods sharing the same method_idx
229 // http://code.google.com/p/smali/issues/detail?id=119
230 it->Next();
231 continue;
232 }
233 previous_method_idx = method_idx;
David Brazdil15fc7292016-09-02 14:13:18 +0100234 InvokeType type = it->GetMethodInvokeType(class_def);
Andreas Gampe42ef8ab2015-12-03 17:27:32 -0800235 ArtMethod* method = linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800236 *dex_file, method_idx, dex_cache, class_loader, nullptr, type);
237 if (method == nullptr) {
238 DCHECK(self->IsExceptionPending());
239 // We couldn't resolve the method, but continue regardless.
240 self->ClearException();
241 } else {
242 DCHECK(method->GetDeclaringClassUnchecked() != nullptr) << type;
243 }
244 StackHandleScope<1> hs(self);
245 std::string hard_failure_msg;
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800246 MethodVerifier::FailureData result = VerifyMethod(self,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800247 method_idx,
248 dex_file,
249 dex_cache,
250 class_loader,
251 class_def,
252 it->GetMethodCodeItem(),
253 method,
254 it->GetMethodAccessFlags(),
Andreas Gampe53e32d12015-12-09 21:03:23 -0800255 callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800256 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700257 log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800258 need_precise_constants,
259 &hard_failure_msg);
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800260 if (result.kind == kHardFailure) {
261 if (failure_data.kind == kHardFailure) {
262 // If we logged an error before, we need a newline.
263 *error_string += "\n";
264 } else {
265 // If we didn't log a hard failure before, print the header of the message.
266 *error_string += "Verifier rejected class ";
David Brazdil15fc7292016-09-02 14:13:18 +0100267 *error_string += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800268 *error_string += ":";
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800269 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800270 *error_string += " ";
271 *error_string += hard_failure_msg;
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800272 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800273 failure_data.Merge(result);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800274 it->Next();
275 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800276
277 return failure_data;
Shih-wei Liao371814f2011-10-27 16:52:10 -0700278}
279
Ian Rogers7b078e82014-09-10 14:44:24 -0700280MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
281 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700282 Handle<mirror::DexCache> dex_cache,
283 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100284 const DexFile::ClassDef& class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800285 CompilerCallbacks* callbacks,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700286 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700287 HardFailLogMode log_level,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700288 std::string* error) {
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800289 ScopedTrace trace(__FUNCTION__);
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700290
291 // A class must not be abstract and final.
David Brazdil15fc7292016-09-02 14:13:18 +0100292 if ((class_def.access_flags_ & (kAccAbstract | kAccFinal)) == (kAccAbstract | kAccFinal)) {
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700293 *error = "Verifier rejected class ";
David Brazdil15fc7292016-09-02 14:13:18 +0100294 *error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700295 *error += ": class is abstract and final.";
296 return kHardFailure;
297 }
298
David Brazdil15fc7292016-09-02 14:13:18 +0100299 const uint8_t* class_data = dex_file->GetClassData(class_def);
Ian Rogers7b078e82014-09-10 14:44:24 -0700300 if (class_data == nullptr) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700301 // empty class, probably a marker interface
jeffhaof1e6b7c2012-06-05 18:33:30 -0700302 return kNoFailure;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700303 }
jeffhaof56197c2012-03-05 18:01:54 -0800304 ClassDataItemIterator it(*dex_file, class_data);
305 while (it.HasNextStaticField() || it.HasNextInstanceField()) {
306 it.Next();
307 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700308 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800309 // Direct methods.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800310 MethodVerifier::FailureData data1 = VerifyMethods<true>(self,
311 linker,
312 dex_file,
313 class_def,
314 &it,
315 dex_cache,
316 class_loader,
317 callbacks,
318 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700319 log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800320 false /* need precise constants */,
321 error);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800322 // Virtual methods.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800323 MethodVerifier::FailureData data2 = VerifyMethods<false>(self,
324 linker,
325 dex_file,
326 class_def,
327 &it,
328 dex_cache,
329 class_loader,
330 callbacks,
331 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700332 log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800333 false /* need precise constants */,
334 error);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800335
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800336 data1.Merge(data2);
337
338 if (data1.kind == kNoFailure) {
jeffhaof1e6b7c2012-06-05 18:33:30 -0700339 return kNoFailure;
340 } else {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800341 if ((data1.types & VERIFY_ERROR_LOCKING) != 0) {
342 // Print a warning about expected slow-down. Use a string temporary to print one contiguous
343 // warning.
344 std::string tmp =
345 StringPrintf("Class %s failed lock verification and will run slower.",
David Brazdil15fc7292016-09-02 14:13:18 +0100346 PrettyDescriptor(dex_file->GetClassDescriptor(class_def)).c_str());
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800347 if (!gPrintedDxMonitorText) {
348 tmp = tmp + "\nCommon causes for lock verification issues are non-optimized dex code\n"
349 "and incorrect proguard optimizations.";
350 gPrintedDxMonitorText = true;
351 }
352 LOG(WARNING) << tmp;
353 }
354 return data1.kind;
jeffhaof1e6b7c2012-06-05 18:33:30 -0700355 }
jeffhaof56197c2012-03-05 18:01:54 -0800356}
357
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700358static bool IsLargeMethod(const DexFile::CodeItem* const code_item) {
Andreas Gampe3c651fc2015-05-21 14:06:46 -0700359 if (code_item == nullptr) {
360 return false;
361 }
362
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700363 uint16_t registers_size = code_item->registers_size_;
364 uint32_t insns_size = code_item->insns_size_in_code_units_;
365
366 return registers_size * insns_size > 4*1024*1024;
367}
368
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800369MethodVerifier::FailureData MethodVerifier::VerifyMethod(Thread* self,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800370 uint32_t method_idx,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800371 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700372 Handle<mirror::DexCache> dex_cache,
373 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100374 const DexFile::ClassDef& class_def,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800375 const DexFile::CodeItem* code_item,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700376 ArtMethod* method,
Jeff Haoee988952013-04-16 14:23:47 -0700377 uint32_t method_access_flags,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800378 CompilerCallbacks* callbacks,
Ian Rogers46960fe2014-05-23 10:43:43 -0700379 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700380 HardFailLogMode log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800381 bool need_precise_constants,
382 std::string* hard_failure_msg) {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800383 MethodVerifier::FailureData result;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700384 uint64_t start_ns = kTimeVerifyMethod ? NanoTime() : 0;
Ian Rogersc8982582012-09-07 16:53:25 -0700385
Andreas Gampebf9611f2016-03-25 16:58:00 -0700386 MethodVerifier verifier(self,
387 dex_file,
388 dex_cache,
389 class_loader,
390 class_def,
391 code_item,
392 method_idx,
393 method,
394 method_access_flags,
395 true /* can_load_classes */,
396 allow_soft_failures,
397 need_precise_constants,
398 false /* verify to dump */,
399 true /* allow_thread_suspension */);
Ian Rogers46960fe2014-05-23 10:43:43 -0700400 if (verifier.Verify()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700401 // Verification completed, however failures may be pending that didn't cause the verification
402 // to hard fail.
Ian Rogers46960fe2014-05-23 10:43:43 -0700403 CHECK(!verifier.have_pending_hard_failure_);
Andreas Gampe53e32d12015-12-09 21:03:23 -0800404
405 if (code_item != nullptr && callbacks != nullptr) {
406 // Let the interested party know that the method was verified.
407 callbacks->MethodVerified(&verifier);
408 }
409
Ian Rogers46960fe2014-05-23 10:43:43 -0700410 if (verifier.failures_.size() != 0) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700411 if (VLOG_IS_ON(verifier)) {
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800412 verifier.DumpFailures(VLOG_STREAM(verifier) << "Soft verification failures in "
David Sehr709b0702016-10-13 09:12:37 -0700413 << dex_file->PrettyMethod(method_idx) << "\n");
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700414 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800415 result.kind = kSoftFailure;
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100416 if (method != nullptr &&
417 !CanCompilerHandleVerificationFailure(verifier.encountered_failure_types_)) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700418 method->AddAccessFlags(kAccCompileDontBother);
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100419 }
420 }
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700421 if (method != nullptr) {
422 if (verifier.HasInstructionThatWillThrow()) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700423 method->AddAccessFlags(kAccCompileDontBother);
Calin Juravle857f0582016-12-20 14:36:59 +0000424 if (Runtime::Current()->IsAotCompiler() &&
425 (callbacks != nullptr) && !callbacks->IsBootImage()) {
426 // When compiling apps, make HasInstructionThatWillThrow a soft error to trigger
427 // re-verification at runtime.
428 // The dead code after the throw is not verified and might be invalid. This may cause
429 // the JIT compiler to crash since it assumes that all the code is valid.
430 //
431 // There's a strong assumption that the entire boot image is verified and all its dex
432 // code is valid (even the dead and unverified one). As such this is done only for apps.
433 // (CompilerDriver DCHECKs in VerifyClassVisitor that methods from boot image are
434 // fully verified).
435 result.kind = kSoftFailure;
436 }
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700437 }
438 if ((verifier.encountered_failure_types_ & VerifyError::VERIFY_ERROR_LOCKING) != 0) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700439 method->AddAccessFlags(kAccMustCountLocks);
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700440 }
jeffhaof56197c2012-03-05 18:01:54 -0800441 }
442 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700443 // Bad method data.
Ian Rogers46960fe2014-05-23 10:43:43 -0700444 CHECK_NE(verifier.failures_.size(), 0U);
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700445
446 if (UNLIKELY(verifier.have_pending_experimental_failure_)) {
447 // Failed due to being forced into interpreter. This is ok because
448 // we just want to skip verification.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800449 result.kind = kSoftFailure;
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700450 } else {
451 CHECK(verifier.have_pending_hard_failure_);
Andreas Gampe7fe30232016-03-25 16:58:00 -0700452 if (VLOG_IS_ON(verifier)) {
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700453 log_level = std::max(HardFailLogMode::kLogVerbose, log_level);
Andreas Gampe7fe30232016-03-25 16:58:00 -0700454 }
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700455 if (log_level >= HardFailLogMode::kLogVerbose) {
456 LogSeverity severity;
457 switch (log_level) {
458 case HardFailLogMode::kLogVerbose:
459 severity = LogSeverity::VERBOSE;
460 break;
461 case HardFailLogMode::kLogWarning:
462 severity = LogSeverity::WARNING;
463 break;
464 case HardFailLogMode::kLogInternalFatal:
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700465 severity = LogSeverity::FATAL_WITHOUT_ABORT;
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700466 break;
467 default:
468 LOG(FATAL) << "Unsupported log-level " << static_cast<uint32_t>(log_level);
469 UNREACHABLE();
470 }
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700471 verifier.DumpFailures(LOG_STREAM(severity) << "Verification error in "
David Sehr709b0702016-10-13 09:12:37 -0700472 << dex_file->PrettyMethod(method_idx)
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700473 << "\n");
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800474 }
475 if (hard_failure_msg != nullptr) {
476 CHECK(!verifier.failure_messages_.empty());
477 *hard_failure_msg =
478 verifier.failure_messages_[verifier.failure_messages_.size() - 1]->str();
479 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800480 result.kind = kHardFailure;
Andreas Gampe53e32d12015-12-09 21:03:23 -0800481
482 if (callbacks != nullptr) {
483 // Let the interested party know that we failed the class.
David Brazdil15fc7292016-09-02 14:13:18 +0100484 ClassReference ref(dex_file, dex_file->GetIndexForClassDef(class_def));
Andreas Gampe53e32d12015-12-09 21:03:23 -0800485 callbacks->ClassRejected(ref);
486 }
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700487 }
Andreas Gampe53e32d12015-12-09 21:03:23 -0800488 if (VLOG_IS_ON(verifier)) {
Ian Rogers46960fe2014-05-23 10:43:43 -0700489 std::cout << "\n" << verifier.info_messages_.str();
490 verifier.Dump(std::cout);
jeffhaof56197c2012-03-05 18:01:54 -0800491 }
jeffhaof56197c2012-03-05 18:01:54 -0800492 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700493 if (kTimeVerifyMethod) {
494 uint64_t duration_ns = NanoTime() - start_ns;
495 if (duration_ns > MsToNs(100)) {
David Sehr709b0702016-10-13 09:12:37 -0700496 LOG(WARNING) << "Verification of " << dex_file->PrettyMethod(method_idx)
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700497 << " took " << PrettyDuration(duration_ns)
498 << (IsLargeMethod(code_item) ? " (large method)" : "");
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700499 }
Ian Rogersc8982582012-09-07 16:53:25 -0700500 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800501 result.types = verifier.encountered_failure_types_;
Ian Rogersc8982582012-09-07 16:53:25 -0700502 return result;
jeffhaof56197c2012-03-05 18:01:54 -0800503}
504
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100505MethodVerifier* MethodVerifier::VerifyMethodAndDump(Thread* self,
506 VariableIndentationOutputStream* vios,
507 uint32_t dex_method_idx,
508 const DexFile* dex_file,
509 Handle<mirror::DexCache> dex_cache,
510 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100511 const DexFile::ClassDef& class_def,
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100512 const DexFile::CodeItem* code_item,
513 ArtMethod* method,
514 uint32_t method_access_flags) {
Andreas Gampebf9611f2016-03-25 16:58:00 -0700515 MethodVerifier* verifier = new MethodVerifier(self,
516 dex_file,
517 dex_cache,
518 class_loader,
519 class_def,
520 code_item,
521 dex_method_idx,
522 method,
523 method_access_flags,
524 true /* can_load_classes */,
525 true /* allow_soft_failures */,
526 true /* need_precise_constants */,
527 true /* verify_to_dump */,
528 true /* allow_thread_suspension */);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700529 verifier->Verify();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100530 verifier->DumpFailures(vios->Stream());
531 vios->Stream() << verifier->info_messages_.str();
Andreas Gampe5cbcde22014-09-16 14:59:49 -0700532 // Only dump and return if no hard failures. Otherwise the verifier may be not fully initialized
533 // and querying any info is dangerous/can abort.
534 if (verifier->have_pending_hard_failure_) {
535 delete verifier;
536 return nullptr;
537 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100538 verifier->Dump(vios);
Andreas Gampe5cbcde22014-09-16 14:59:49 -0700539 return verifier;
540 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800541}
542
Ian Rogers7b078e82014-09-10 14:44:24 -0700543MethodVerifier::MethodVerifier(Thread* self,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800544 const DexFile* dex_file,
545 Handle<mirror::DexCache> dex_cache,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700546 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100547 const DexFile::ClassDef& class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800548 const DexFile::CodeItem* code_item,
549 uint32_t dex_method_idx,
550 ArtMethod* method,
551 uint32_t method_access_flags,
552 bool can_load_classes,
553 bool allow_soft_failures,
554 bool need_precise_constants,
555 bool verify_to_dump,
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800556 bool allow_thread_suspension)
Ian Rogers7b078e82014-09-10 14:44:24 -0700557 : self_(self),
Mathieu Chartierde40d472015-10-15 17:47:48 -0700558 arena_stack_(Runtime::Current()->GetArenaPool()),
559 arena_(&arena_stack_),
560 reg_types_(can_load_classes, arena_),
561 reg_table_(arena_),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700562 work_insn_idx_(DexFile::kDexNoIndex),
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800563 dex_method_idx_(dex_method_idx),
Ian Rogers637c65b2013-05-31 11:46:00 -0700564 mirror_method_(method),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700565 method_access_flags_(method_access_flags),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700566 return_type_(nullptr),
jeffhaof56197c2012-03-05 18:01:54 -0800567 dex_file_(dex_file),
568 dex_cache_(dex_cache),
569 class_loader_(class_loader),
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700570 class_def_(class_def),
jeffhaof56197c2012-03-05 18:01:54 -0800571 code_item_(code_item),
Ian Rogers7b078e82014-09-10 14:44:24 -0700572 declaring_class_(nullptr),
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700573 interesting_dex_pc_(-1),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700574 monitor_enter_dex_pcs_(nullptr),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700575 have_pending_hard_failure_(false),
jeffhaofaf459e2012-08-31 15:32:47 -0700576 have_pending_runtime_throw_failure_(false),
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700577 have_pending_experimental_failure_(false),
Andreas Gamped12e7822015-06-25 10:26:40 -0700578 have_any_pending_runtime_throw_failure_(false),
jeffhaof56197c2012-03-05 18:01:54 -0800579 new_instance_count_(0),
Elliott Hughes80537bb2013-01-04 16:37:26 -0800580 monitor_enter_count_(0),
Andreas Gampe0760a812015-08-26 17:12:51 -0700581 encountered_failure_types_(0),
Jeff Haoee988952013-04-16 14:23:47 -0700582 can_load_classes_(can_load_classes),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200583 allow_soft_failures_(allow_soft_failures),
Ian Rogers46960fe2014-05-23 10:43:43 -0700584 need_precise_constants_(need_precise_constants),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200585 has_check_casts_(false),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700586 has_virtual_or_interface_invokes_(false),
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800587 verify_to_dump_(verify_to_dump),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700588 allow_thread_suspension_(allow_thread_suspension),
Andreas Gampee6215c02015-08-31 18:54:38 -0700589 is_constructor_(false),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700590 link_(nullptr) {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700591 self->PushVerifier(this);
jeffhaof56197c2012-03-05 18:01:54 -0800592}
593
Mathieu Chartier590fee92013-09-13 13:46:47 -0700594MethodVerifier::~MethodVerifier() {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700595 Thread::Current()->PopVerifier(this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700596 STLDeleteElements(&failure_messages_);
597}
598
Mathieu Chartiere401d142015-04-22 13:56:20 -0700599void MethodVerifier::FindLocksAtDexPc(ArtMethod* m, uint32_t dex_pc,
Ian Rogers46960fe2014-05-23 10:43:43 -0700600 std::vector<uint32_t>* monitor_enter_dex_pcs) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700601 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700602 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
603 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700604 MethodVerifier verifier(hs.Self(),
605 m->GetDexFile(),
606 dex_cache,
607 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100608 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700609 m->GetCodeItem(),
610 m->GetDexMethodIndex(),
611 m,
612 m->GetAccessFlags(),
613 false /* can_load_classes */,
614 true /* allow_soft_failures */,
615 false /* need_precise_constants */,
616 false /* verify_to_dump */,
617 false /* allow_thread_suspension */);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700618 verifier.interesting_dex_pc_ = dex_pc;
Ian Rogers46960fe2014-05-23 10:43:43 -0700619 verifier.monitor_enter_dex_pcs_ = monitor_enter_dex_pcs;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700620 verifier.FindLocksAtDexPc();
621}
622
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700623static bool HasMonitorEnterInstructions(const DexFile::CodeItem* const code_item) {
624 const Instruction* inst = Instruction::At(code_item->insns_);
625
626 uint32_t insns_size = code_item->insns_size_in_code_units_;
627 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
628 if (inst->Opcode() == Instruction::MONITOR_ENTER) {
629 return true;
630 }
631
632 dex_pc += inst->SizeInCodeUnits();
633 inst = inst->Next();
634 }
635
636 return false;
637}
638
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700639void MethodVerifier::FindLocksAtDexPc() {
Ian Rogers7b078e82014-09-10 14:44:24 -0700640 CHECK(monitor_enter_dex_pcs_ != nullptr);
641 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700642
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700643 // Quick check whether there are any monitor_enter instructions at all.
644 if (!HasMonitorEnterInstructions(code_item_)) {
645 return;
646 }
647
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700648 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
649 // verification. In practice, the phase we want relies on data structures set up by all the
650 // earlier passes, so we just run the full method verification and bail out early when we've
651 // got what we wanted.
652 Verify();
653}
654
Mathieu Chartiere401d142015-04-22 13:56:20 -0700655ArtField* MethodVerifier::FindAccessedFieldAtDexPc(ArtMethod* m, uint32_t dex_pc) {
656 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700657 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
658 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700659 MethodVerifier verifier(hs.Self(),
660 m->GetDexFile(),
661 dex_cache,
662 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100663 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700664 m->GetCodeItem(),
665 m->GetDexMethodIndex(),
666 m,
667 m->GetAccessFlags(),
668 true /* can_load_classes */,
669 true /* allow_soft_failures */,
670 false /* need_precise_constants */,
671 false /* verify_to_dump */,
672 true /* allow_thread_suspension */);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200673 return verifier.FindAccessedFieldAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200674}
675
Mathieu Chartierc7853442015-03-27 14:35:38 -0700676ArtField* MethodVerifier::FindAccessedFieldAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700677 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200678
679 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
680 // verification. In practice, the phase we want relies on data structures set up by all the
681 // earlier passes, so we just run the full method verification and bail out early when we've
682 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200683 bool success = Verify();
684 if (!success) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700685 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200686 }
687 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700688 if (register_line == nullptr) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700689 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200690 }
691 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
692 return GetQuickFieldAccess(inst, register_line);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200693}
694
Mathieu Chartiere401d142015-04-22 13:56:20 -0700695ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(ArtMethod* m, uint32_t dex_pc) {
696 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700697 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
698 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700699 MethodVerifier verifier(hs.Self(),
700 m->GetDexFile(),
701 dex_cache,
702 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100703 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700704 m->GetCodeItem(),
705 m->GetDexMethodIndex(),
706 m,
707 m->GetAccessFlags(),
708 true /* can_load_classes */,
709 true /* allow_soft_failures */,
710 false /* need_precise_constants */,
711 false /* verify_to_dump */,
712 true /* allow_thread_suspension */);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200713 return verifier.FindInvokedMethodAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200714}
715
Mathieu Chartiere401d142015-04-22 13:56:20 -0700716ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700717 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200718
719 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
720 // verification. In practice, the phase we want relies on data structures set up by all the
721 // earlier passes, so we just run the full method verification and bail out early when we've
722 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200723 bool success = Verify();
724 if (!success) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700725 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200726 }
727 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700728 if (register_line == nullptr) {
729 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200730 }
731 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
732 const bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Mathieu Chartier091d2382015-03-06 10:59:06 -0800733 return GetQuickInvokedMethod(inst, register_line, is_range, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200734}
735
Ian Rogersad0b3a32012-04-16 14:50:24 -0700736bool MethodVerifier::Verify() {
Andreas Gampee6215c02015-08-31 18:54:38 -0700737 // Some older code doesn't correctly mark constructors as such. Test for this case by looking at
738 // the name.
739 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
740 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
741 bool instance_constructor_by_name = strcmp("<init>", method_name) == 0;
742 bool static_constructor_by_name = strcmp("<clinit>", method_name) == 0;
743 bool constructor_by_name = instance_constructor_by_name || static_constructor_by_name;
744 // Check that only constructors are tagged, and check for bad code that doesn't tag constructors.
745 if ((method_access_flags_ & kAccConstructor) != 0) {
746 if (!constructor_by_name) {
747 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
748 << "method is marked as constructor, but not named accordingly";
jeffhaobdb76512011-09-07 11:43:16 -0700749 return false;
Andreas Gampee6215c02015-08-31 18:54:38 -0700750 }
751 is_constructor_ = true;
752 } else if (constructor_by_name) {
David Sehr709b0702016-10-13 09:12:37 -0700753 LOG(WARNING) << "Method " << dex_file_->PrettyMethod(dex_method_idx_)
Andreas Gampee6215c02015-08-31 18:54:38 -0700754 << " not marked as constructor.";
755 is_constructor_ = true;
756 }
757 // If it's a constructor, check whether IsStatic() matches the name.
758 // This should have been rejected by the dex file verifier. Only do in debug build.
759 if (kIsDebugBuild) {
760 if (IsConstructor()) {
761 if (IsStatic() ^ static_constructor_by_name) {
762 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
763 << "constructor name doesn't match static flag";
764 return false;
765 }
jeffhaobdb76512011-09-07 11:43:16 -0700766 }
jeffhaobdb76512011-09-07 11:43:16 -0700767 }
Andreas Gampee6215c02015-08-31 18:54:38 -0700768
769 // Methods may only have one of public/protected/private.
770 // This should have been rejected by the dex file verifier. Only do in debug build.
771 if (kIsDebugBuild) {
772 size_t access_mod_count =
773 (((method_access_flags_ & kAccPublic) == 0) ? 0 : 1) +
774 (((method_access_flags_ & kAccProtected) == 0) ? 0 : 1) +
775 (((method_access_flags_ & kAccPrivate) == 0) ? 0 : 1);
776 if (access_mod_count > 1) {
777 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "method has more than one of public/protected/private";
778 return false;
779 }
780 }
781
782 // If there aren't any instructions, make sure that's expected, then exit successfully.
783 if (code_item_ == nullptr) {
Andreas Gampe76ed99d2016-03-28 18:31:29 -0700784 // Only native or abstract methods may not have code.
785 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) {
786 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "zero-length code in concrete non-native method";
787 return false;
788 }
789
Andreas Gampee6215c02015-08-31 18:54:38 -0700790 // This should have been rejected by the dex file verifier. Only do in debug build.
Andreas Gampe76ed99d2016-03-28 18:31:29 -0700791 // Note: the above will also be rejected in the dex file verifier, starting in dex version 37.
Andreas Gampee6215c02015-08-31 18:54:38 -0700792 if (kIsDebugBuild) {
Andreas Gampee6215c02015-08-31 18:54:38 -0700793 if ((method_access_flags_ & kAccAbstract) != 0) {
794 // Abstract methods are not allowed to have the following flags.
795 static constexpr uint32_t kForbidden =
796 kAccPrivate |
797 kAccStatic |
798 kAccFinal |
799 kAccNative |
800 kAccStrict |
801 kAccSynchronized;
802 if ((method_access_flags_ & kForbidden) != 0) {
803 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
804 << "method can't be abstract and private/static/final/native/strict/synchronized";
805 return false;
806 }
807 }
David Brazdil15fc7292016-09-02 14:13:18 +0100808 if ((class_def_.GetJavaAccessFlags() & kAccInterface) != 0) {
Alex Lighteb7c1442015-08-31 13:17:42 -0700809 // Interface methods must be public and abstract (if default methods are disabled).
Neil Fuller9724c632016-01-07 15:42:47 +0000810 uint32_t kRequired = kAccPublic;
Alex Lighteb7c1442015-08-31 13:17:42 -0700811 if ((method_access_flags_ & kRequired) != kRequired) {
Neil Fuller9724c632016-01-07 15:42:47 +0000812 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface methods must be public";
Andreas Gampee6215c02015-08-31 18:54:38 -0700813 return false;
814 }
815 // In addition to the above, interface methods must not be protected.
816 static constexpr uint32_t kForbidden = kAccProtected;
817 if ((method_access_flags_ & kForbidden) != 0) {
818 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface methods can't be protected";
819 return false;
820 }
821 }
822 // We also don't allow constructors to be abstract or native.
823 if (IsConstructor()) {
824 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "constructors can't be abstract or native";
825 return false;
826 }
827 }
828 return true;
829 }
830
831 // This should have been rejected by the dex file verifier. Only do in debug build.
832 if (kIsDebugBuild) {
833 // When there's code, the method must not be native or abstract.
834 if ((method_access_flags_ & (kAccNative | kAccAbstract)) != 0) {
835 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "non-zero-length code in abstract or native method";
836 return false;
837 }
838
David Brazdil15fc7292016-09-02 14:13:18 +0100839 if ((class_def_.GetJavaAccessFlags() & kAccInterface) != 0) {
Alex Lighteb7c1442015-08-31 13:17:42 -0700840 // Interfaces may always have static initializers for their fields. If we are running with
841 // default methods enabled we also allow other public, static, non-final methods to have code.
842 // Otherwise that is the only type of method allowed.
Alex Light0db36b32015-10-27 14:06:34 -0700843 if (!(IsConstructor() && IsStatic())) {
Neil Fuller9724c632016-01-07 15:42:47 +0000844 if (IsInstanceConstructor()) {
845 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interfaces may not have non-static constructor";
846 return false;
847 } else if (method_access_flags_ & kAccFinal) {
848 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interfaces may not have final methods";
849 return false;
Alex Lightb55f1ac2016-04-12 15:50:55 -0700850 } else {
851 uint32_t access_flag_options = kAccPublic;
852 if (dex_file_->GetVersion() >= DexFile::kDefaultMethodsVersion) {
853 access_flag_options |= kAccPrivate;
854 }
855 if (!(method_access_flags_ & access_flag_options)) {
856 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
857 << "interfaces may not have protected or package-private members";
858 return false;
859 }
Alex Lighteb7c1442015-08-31 13:17:42 -0700860 }
Andreas Gampee6215c02015-08-31 18:54:38 -0700861 }
862 }
863
864 // Instance constructors must not be synchronized.
865 if (IsInstanceConstructor()) {
866 static constexpr uint32_t kForbidden = kAccSynchronized;
867 if ((method_access_flags_ & kForbidden) != 0) {
868 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "constructors can't be synchronized";
869 return false;
870 }
871 }
872 }
873
Ian Rogersd81871c2011-10-03 13:57:23 -0700874 // Sanity-check the register counts. ins + locals = registers, so make sure that ins <= registers.
875 if (code_item_->ins_size_ > code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700876 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad register counts (ins=" << code_item_->ins_size_
877 << " regs=" << code_item_->registers_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700878 return false;
jeffhaobdb76512011-09-07 11:43:16 -0700879 }
Alex Lighteb7c1442015-08-31 13:17:42 -0700880
Ian Rogersd81871c2011-10-03 13:57:23 -0700881 // Allocate and initialize an array to hold instruction data.
Mathieu Chartierde40d472015-10-15 17:47:48 -0700882 insn_flags_.reset(arena_.AllocArray<InstructionFlags>(code_item_->insns_size_in_code_units_));
883 DCHECK(insn_flags_ != nullptr);
884 std::uninitialized_fill_n(insn_flags_.get(),
885 code_item_->insns_size_in_code_units_,
886 InstructionFlags());
Ian Rogersd81871c2011-10-03 13:57:23 -0700887 // Run through the instructions and see if the width checks out.
888 bool result = ComputeWidthsAndCountOps();
889 // Flag instructions guarded by a "try" block and check exception handlers.
890 result = result && ScanTryCatchBlocks();
891 // Perform static instruction verification.
892 result = result && VerifyInstructions();
Ian Rogersad0b3a32012-04-16 14:50:24 -0700893 // Perform code-flow analysis and return.
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000894 result = result && VerifyCodeFlow();
Andreas Gampe53e32d12015-12-09 21:03:23 -0800895
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000896 return result;
jeffhaoba5ebb92011-08-25 17:24:37 -0700897}
898
Ian Rogers776ac1f2012-04-13 23:36:36 -0700899std::ostream& MethodVerifier::Fail(VerifyError error) {
Andreas Gampe0760a812015-08-26 17:12:51 -0700900 // Mark the error type as encountered.
Andreas Gampea727e372015-08-25 09:22:37 -0700901 encountered_failure_types_ |= static_cast<uint32_t>(error);
Andreas Gampe0760a812015-08-26 17:12:51 -0700902
Ian Rogersad0b3a32012-04-16 14:50:24 -0700903 switch (error) {
904 case VERIFY_ERROR_NO_CLASS:
905 case VERIFY_ERROR_NO_FIELD:
906 case VERIFY_ERROR_NO_METHOD:
907 case VERIFY_ERROR_ACCESS_CLASS:
908 case VERIFY_ERROR_ACCESS_FIELD:
909 case VERIFY_ERROR_ACCESS_METHOD:
Ian Rogers08f753d2012-08-24 14:35:25 -0700910 case VERIFY_ERROR_INSTANTIATION:
911 case VERIFY_ERROR_CLASS_CHANGE:
Igor Murashkin158f35c2015-06-10 15:55:30 -0700912 case VERIFY_ERROR_FORCE_INTERPRETER:
Andreas Gampea727e372015-08-25 09:22:37 -0700913 case VERIFY_ERROR_LOCKING:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800914 if (Runtime::Current()->IsAotCompiler() || !can_load_classes_) {
jeffhaofaf459e2012-08-31 15:32:47 -0700915 // If we're optimistically running verification at compile time, turn NO_xxx, ACCESS_xxx,
916 // class change and instantiation errors into soft verification errors so that we re-verify
917 // at runtime. We may fail to find or to agree on access because of not yet available class
918 // loaders, or class loaders that will differ at runtime. In these cases, we don't want to
919 // affect the soundness of the code being compiled. Instead, the generated code runs "slow
920 // paths" that dynamically perform the verification and cause the behavior to be that akin
921 // to an interpreter.
922 error = VERIFY_ERROR_BAD_CLASS_SOFT;
923 } else {
Jeff Haoa3faaf42013-09-03 19:07:00 -0700924 // If we fail again at runtime, mark that this instruction would throw and force this
925 // method to be executed using the interpreter with checks.
jeffhaofaf459e2012-08-31 15:32:47 -0700926 have_pending_runtime_throw_failure_ = true;
Andreas Gamped7f8d052015-03-12 11:05:47 -0700927
928 // We need to save the work_line if the instruction wasn't throwing before. Otherwise we'll
929 // try to merge garbage.
930 // Note: this assumes that Fail is called before we do any work_line modifications.
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700931 // Note: this can fail before we touch any instruction, for the signature of a method. So
932 // add a check.
933 if (work_insn_idx_ < DexFile::kDexNoIndex) {
934 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
935 const Instruction* inst = Instruction::At(insns);
936 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
Andreas Gamped7f8d052015-03-12 11:05:47 -0700937
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700938 if ((opcode_flags & Instruction::kThrow) == 0 && CurrentInsnFlags()->IsInTry()) {
939 saved_line_->CopyFromLine(work_line_.get());
940 }
Andreas Gamped7f8d052015-03-12 11:05:47 -0700941 }
jeffhaofaf459e2012-08-31 15:32:47 -0700942 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700943 break;
Andreas Gampea727e372015-08-25 09:22:37 -0700944
Ian Rogersad0b3a32012-04-16 14:50:24 -0700945 // Indication that verification should be retried at runtime.
946 case VERIFY_ERROR_BAD_CLASS_SOFT:
Jeff Haoee988952013-04-16 14:23:47 -0700947 if (!allow_soft_failures_) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700948 have_pending_hard_failure_ = true;
949 }
950 break;
Andreas Gampea727e372015-08-25 09:22:37 -0700951
jeffhaod5347e02012-03-22 17:25:05 -0700952 // Hard verification failures at compile time will still fail at runtime, so the class is
953 // marked as rejected to prevent it from being compiled.
Ian Rogersad0b3a32012-04-16 14:50:24 -0700954 case VERIFY_ERROR_BAD_CLASS_HARD: {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700955 have_pending_hard_failure_ = true;
Andreas Gampeebf850c2015-08-14 15:37:35 -0700956 if (VLOG_IS_ON(verifier) && kDumpRegLinesOnHardFailureIfVLOG) {
957 ScopedObjectAccess soa(Thread::Current());
958 std::ostringstream oss;
959 Dump(oss);
960 LOG(ERROR) << oss.str();
961 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700962 break;
Ian Rogers47a05882012-02-03 12:23:33 -0800963 }
964 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700965 failures_.push_back(error);
David Sehr709b0702016-10-13 09:12:37 -0700966 std::string location(StringPrintf("%s: [0x%X] ", dex_file_->PrettyMethod(dex_method_idx_).c_str(),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700967 work_insn_idx_));
Elena Sayapina78480ec2014-08-15 15:52:42 +0700968 std::ostringstream* failure_message = new std::ostringstream(location, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700969 failure_messages_.push_back(failure_message);
970 return *failure_message;
971}
972
Ian Rogers576ca0c2014-06-06 15:58:22 -0700973std::ostream& MethodVerifier::LogVerifyInfo() {
David Sehr709b0702016-10-13 09:12:37 -0700974 return info_messages_ << "VFY: " << dex_file_->PrettyMethod(dex_method_idx_)
Ian Rogers576ca0c2014-06-06 15:58:22 -0700975 << '[' << reinterpret_cast<void*>(work_insn_idx_) << "] : ";
976}
977
Ian Rogersad0b3a32012-04-16 14:50:24 -0700978void MethodVerifier::PrependToLastFailMessage(std::string prepend) {
979 size_t failure_num = failure_messages_.size();
980 DCHECK_NE(failure_num, 0U);
981 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
982 prepend += last_fail_message->str();
Elena Sayapina78480ec2014-08-15 15:52:42 +0700983 failure_messages_[failure_num - 1] = new std::ostringstream(prepend, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700984 delete last_fail_message;
985}
986
Vladimir Marko5c657fe2016-11-03 15:12:29 +0000987void MethodVerifier::AppendToLastFailMessage(const std::string& append) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700988 size_t failure_num = failure_messages_.size();
989 DCHECK_NE(failure_num, 0U);
990 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
991 (*last_fail_message) << append;
Ian Rogers47a05882012-02-03 12:23:33 -0800992}
993
Ian Rogers776ac1f2012-04-13 23:36:36 -0700994bool MethodVerifier::ComputeWidthsAndCountOps() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700995 const uint16_t* insns = code_item_->insns_;
996 size_t insns_size = code_item_->insns_size_in_code_units_;
997 const Instruction* inst = Instruction::At(insns);
jeffhaobdb76512011-09-07 11:43:16 -0700998 size_t new_instance_count = 0;
999 size_t monitor_enter_count = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -07001000 size_t dex_pc = 0;
jeffhaobdb76512011-09-07 11:43:16 -07001001
Ian Rogersd81871c2011-10-03 13:57:23 -07001002 while (dex_pc < insns_size) {
jeffhaobdb76512011-09-07 11:43:16 -07001003 Instruction::Code opcode = inst->Opcode();
Ian Rogersa9a82542013-10-04 11:17:26 -07001004 switch (opcode) {
1005 case Instruction::APUT_OBJECT:
1006 case Instruction::CHECK_CAST:
1007 has_check_casts_ = true;
1008 break;
1009 case Instruction::INVOKE_VIRTUAL:
1010 case Instruction::INVOKE_VIRTUAL_RANGE:
1011 case Instruction::INVOKE_INTERFACE:
1012 case Instruction::INVOKE_INTERFACE_RANGE:
1013 has_virtual_or_interface_invokes_ = true;
1014 break;
1015 case Instruction::MONITOR_ENTER:
1016 monitor_enter_count++;
1017 break;
1018 case Instruction::NEW_INSTANCE:
1019 new_instance_count++;
1020 break;
1021 default:
1022 break;
jeffhaobdb76512011-09-07 11:43:16 -07001023 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001024 size_t inst_size = inst->SizeInCodeUnits();
Mathieu Chartierde40d472015-10-15 17:47:48 -07001025 GetInstructionFlags(dex_pc).SetIsOpcode();
Ian Rogersd81871c2011-10-03 13:57:23 -07001026 dex_pc += inst_size;
Ian Rogers7b078e82014-09-10 14:44:24 -07001027 inst = inst->RelativeAt(inst_size);
jeffhaobdb76512011-09-07 11:43:16 -07001028 }
1029
Ian Rogersd81871c2011-10-03 13:57:23 -07001030 if (dex_pc != insns_size) {
jeffhaod5347e02012-03-22 17:25:05 -07001031 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "code did not end where expected ("
1032 << dex_pc << " vs. " << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001033 return false;
1034 }
1035
Ian Rogersd81871c2011-10-03 13:57:23 -07001036 new_instance_count_ = new_instance_count;
1037 monitor_enter_count_ = monitor_enter_count;
jeffhaobdb76512011-09-07 11:43:16 -07001038 return true;
1039}
1040
Ian Rogers776ac1f2012-04-13 23:36:36 -07001041bool MethodVerifier::ScanTryCatchBlocks() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001042 uint32_t tries_size = code_item_->tries_size_;
jeffhaobdb76512011-09-07 11:43:16 -07001043 if (tries_size == 0) {
1044 return true;
1045 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001046 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Ian Rogers0571d352011-11-03 19:51:38 -07001047 const DexFile::TryItem* tries = DexFile::GetTryItems(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001048
1049 for (uint32_t idx = 0; idx < tries_size; idx++) {
1050 const DexFile::TryItem* try_item = &tries[idx];
1051 uint32_t start = try_item->start_addr_;
1052 uint32_t end = start + try_item->insn_count_;
jeffhaobdb76512011-09-07 11:43:16 -07001053 if ((start >= end) || (start >= insns_size) || (end > insns_size)) {
jeffhaod5347e02012-03-22 17:25:05 -07001054 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad exception entry: startAddr=" << start
1055 << " endAddr=" << end << " (size=" << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001056 return false;
1057 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001058 if (!GetInstructionFlags(start).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001059 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1060 << "'try' block starts inside an instruction (" << start << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001061 return false;
1062 }
Ian Rogers7b078e82014-09-10 14:44:24 -07001063 uint32_t dex_pc = start;
1064 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
1065 while (dex_pc < end) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001066 GetInstructionFlags(dex_pc).SetInTry();
Ian Rogers7b078e82014-09-10 14:44:24 -07001067 size_t insn_size = inst->SizeInCodeUnits();
1068 dex_pc += insn_size;
1069 inst = inst->RelativeAt(insn_size);
jeffhaobdb76512011-09-07 11:43:16 -07001070 }
1071 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001072 // Iterate over each of the handlers to verify target addresses.
Ian Rogers13735952014-10-08 12:43:28 -07001073 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001074 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001075 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhaobdb76512011-09-07 11:43:16 -07001076 for (uint32_t idx = 0; idx < handlers_size; idx++) {
Ian Rogers0571d352011-11-03 19:51:38 -07001077 CatchHandlerIterator iterator(handlers_ptr);
1078 for (; iterator.HasNext(); iterator.Next()) {
1079 uint32_t dex_pc= iterator.GetHandlerAddress();
Mathieu Chartierde40d472015-10-15 17:47:48 -07001080 if (!GetInstructionFlags(dex_pc).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001081 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1082 << "exception handler starts at bad address (" << dex_pc << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001083 return false;
1084 }
Stephen Kyle9bc61992014-09-22 13:53:15 +01001085 if (!CheckNotMoveResult(code_item_->insns_, dex_pc)) {
1086 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1087 << "exception handler begins with move-result* (" << dex_pc << ")";
1088 return false;
1089 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001090 GetInstructionFlags(dex_pc).SetBranchTarget();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001091 // Ensure exception types are resolved so that they don't need resolution to be delivered,
1092 // unresolved exception types will be ignored by exception delivery
Andreas Gampea5b09a62016-11-17 15:21:22 -08001093 if (iterator.GetHandlerTypeIndex().IsValid()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001094 mirror::Class* exception_type = linker->ResolveType(*dex_file_,
1095 iterator.GetHandlerTypeIndex(),
Mathieu Chartierbf99f772014-08-23 16:37:27 -07001096 dex_cache_, class_loader_);
Ian Rogers7b078e82014-09-10 14:44:24 -07001097 if (exception_type == nullptr) {
1098 DCHECK(self_->IsExceptionPending());
1099 self_->ClearException();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001100 }
1101 }
jeffhaobdb76512011-09-07 11:43:16 -07001102 }
Ian Rogers0571d352011-11-03 19:51:38 -07001103 handlers_ptr = iterator.EndDataPointer();
jeffhaobdb76512011-09-07 11:43:16 -07001104 }
jeffhaobdb76512011-09-07 11:43:16 -07001105 return true;
1106}
1107
Ian Rogers776ac1f2012-04-13 23:36:36 -07001108bool MethodVerifier::VerifyInstructions() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001109 const Instruction* inst = Instruction::At(code_item_->insns_);
jeffhaoba5ebb92011-08-25 17:24:37 -07001110
Ian Rogers0c7abda2012-09-19 13:33:42 -07001111 /* 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 -07001112 GetInstructionFlags(0).SetBranchTarget();
1113 GetInstructionFlags(0).SetCompileTimeInfoPoint();
Ian Rogersd81871c2011-10-03 13:57:23 -07001114
1115 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Elliott Hughesb25c3f62012-03-26 16:35:06 -07001116 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001117 if (!VerifyInstruction(inst, dex_pc)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001118 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001119 return false;
1120 }
1121 /* Flag instructions that are garbage collection points */
Sameer Abu Asal02c42232013-04-30 12:09:45 -07001122 // All invoke points are marked as "Throw" points already.
1123 // We are relying on this to also count all the invokes as interesting.
Vladimir Marko8b858e12014-11-27 14:52:37 +00001124 if (inst->IsBranch()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001125 GetInstructionFlags(dex_pc).SetCompileTimeInfoPoint();
Vladimir Marko8b858e12014-11-27 14:52:37 +00001126 // The compiler also needs safepoints for fall-through to loop heads.
1127 // Such a loop head must be a target of a branch.
1128 int32_t offset = 0;
1129 bool cond, self_ok;
1130 bool target_ok = GetBranchOffset(dex_pc, &offset, &cond, &self_ok);
1131 DCHECK(target_ok);
Mathieu Chartierde40d472015-10-15 17:47:48 -07001132 GetInstructionFlags(dex_pc + offset).SetCompileTimeInfoPoint();
Vladimir Marko8b858e12014-11-27 14:52:37 +00001133 } else if (inst->IsSwitch() || inst->IsThrow()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001134 GetInstructionFlags(dex_pc).SetCompileTimeInfoPoint();
Ian Rogersb8c78592013-07-25 23:52:52 +00001135 } else if (inst->IsReturn()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001136 GetInstructionFlags(dex_pc).SetCompileTimeInfoPointAndReturn();
Ian Rogersd81871c2011-10-03 13:57:23 -07001137 }
1138 dex_pc += inst->SizeInCodeUnits();
1139 inst = inst->Next();
1140 }
1141 return true;
1142}
1143
Ian Rogers776ac1f2012-04-13 23:36:36 -07001144bool MethodVerifier::VerifyInstruction(const Instruction* inst, uint32_t code_offset) {
Igor Murashkin4d7b75f2015-07-21 17:03:36 -07001145 if (UNLIKELY(inst->IsExperimental())) {
1146 // Experimental instructions don't yet have verifier support implementation.
1147 // While it is possible to use them by themselves, when we try to use stable instructions
1148 // with a virtual register that was created by an experimental instruction,
1149 // the data flow analysis will fail.
1150 Fail(VERIFY_ERROR_FORCE_INTERPRETER)
1151 << "experimental instruction is not supported by verifier; skipping verification";
1152 have_pending_experimental_failure_ = true;
1153 return false;
1154 }
1155
Ian Rogersd81871c2011-10-03 13:57:23 -07001156 bool result = true;
1157 switch (inst->GetVerifyTypeArgumentA()) {
1158 case Instruction::kVerifyRegA:
Ian Rogers29a26482014-05-02 15:27:29 -07001159 result = result && CheckRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -07001160 break;
1161 case Instruction::kVerifyRegAWide:
Ian Rogers29a26482014-05-02 15:27:29 -07001162 result = result && CheckWideRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -07001163 break;
1164 }
1165 switch (inst->GetVerifyTypeArgumentB()) {
1166 case Instruction::kVerifyRegB:
Ian Rogers29a26482014-05-02 15:27:29 -07001167 result = result && CheckRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001168 break;
1169 case Instruction::kVerifyRegBField:
Ian Rogers29a26482014-05-02 15:27:29 -07001170 result = result && CheckFieldIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001171 break;
1172 case Instruction::kVerifyRegBMethod:
Ian Rogers29a26482014-05-02 15:27:29 -07001173 result = result && CheckMethodIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001174 break;
1175 case Instruction::kVerifyRegBNewInstance:
Andreas Gampea5b09a62016-11-17 15:21:22 -08001176 result = result && CheckNewInstance(dex::TypeIndex(inst->VRegB()));
Ian Rogersd81871c2011-10-03 13:57:23 -07001177 break;
1178 case Instruction::kVerifyRegBString:
Ian Rogers29a26482014-05-02 15:27:29 -07001179 result = result && CheckStringIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001180 break;
1181 case Instruction::kVerifyRegBType:
Andreas Gampea5b09a62016-11-17 15:21:22 -08001182 result = result && CheckTypeIndex(dex::TypeIndex(inst->VRegB()));
Ian Rogersd81871c2011-10-03 13:57:23 -07001183 break;
1184 case Instruction::kVerifyRegBWide:
Ian Rogers29a26482014-05-02 15:27:29 -07001185 result = result && CheckWideRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001186 break;
1187 }
1188 switch (inst->GetVerifyTypeArgumentC()) {
1189 case Instruction::kVerifyRegC:
Ian Rogers29a26482014-05-02 15:27:29 -07001190 result = result && CheckRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001191 break;
1192 case Instruction::kVerifyRegCField:
Ian Rogers29a26482014-05-02 15:27:29 -07001193 result = result && CheckFieldIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001194 break;
1195 case Instruction::kVerifyRegCNewArray:
Andreas Gampea5b09a62016-11-17 15:21:22 -08001196 result = result && CheckNewArray(dex::TypeIndex(inst->VRegC()));
Ian Rogersd81871c2011-10-03 13:57:23 -07001197 break;
1198 case Instruction::kVerifyRegCType:
Andreas Gampea5b09a62016-11-17 15:21:22 -08001199 result = result && CheckTypeIndex(dex::TypeIndex(inst->VRegC()));
Ian Rogersd81871c2011-10-03 13:57:23 -07001200 break;
1201 case Instruction::kVerifyRegCWide:
Ian Rogers29a26482014-05-02 15:27:29 -07001202 result = result && CheckWideRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001203 break;
1204 }
Orion Hodsoncfa325e2016-10-13 10:25:54 +01001205 switch (inst->GetVerifyTypeArgumentH()) {
1206 case Instruction::kVerifyRegHPrototype:
1207 result = result && CheckPrototypeIndex(inst->VRegH());
1208 break;
1209 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001210 switch (inst->GetVerifyExtraFlags()) {
1211 case Instruction::kVerifyArrayData:
1212 result = result && CheckArrayData(code_offset);
1213 break;
1214 case Instruction::kVerifyBranchTarget:
1215 result = result && CheckBranchTarget(code_offset);
1216 break;
1217 case Instruction::kVerifySwitchTargets:
1218 result = result && CheckSwitchTargets(code_offset);
1219 break;
Andreas Gampec3314312014-06-19 18:13:29 -07001220 case Instruction::kVerifyVarArgNonZero:
1221 // Fall-through.
Ian Rogers29a26482014-05-02 15:27:29 -07001222 case Instruction::kVerifyVarArg: {
Taiju Tsuiki29498a22015-04-13 14:21:00 +09001223 // Instructions that can actually return a negative value shouldn't have this flag.
1224 uint32_t v_a = dchecked_integral_cast<uint32_t>(inst->VRegA());
1225 if ((inst->GetVerifyExtraFlags() == Instruction::kVerifyVarArgNonZero && v_a == 0) ||
1226 v_a > Instruction::kMaxVarArgRegs) {
1227 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << v_a << ") in "
Andreas Gampec3314312014-06-19 18:13:29 -07001228 "non-range invoke";
1229 return false;
1230 }
Taiju Tsuiki29498a22015-04-13 14:21:00 +09001231
Ian Rogers29a26482014-05-02 15:27:29 -07001232 uint32_t args[Instruction::kMaxVarArgRegs];
1233 inst->GetVarArgs(args);
Taiju Tsuiki29498a22015-04-13 14:21:00 +09001234 result = result && CheckVarArgRegs(v_a, args);
Ian Rogersd81871c2011-10-03 13:57:23 -07001235 break;
Ian Rogers29a26482014-05-02 15:27:29 -07001236 }
Andreas Gampec3314312014-06-19 18:13:29 -07001237 case Instruction::kVerifyVarArgRangeNonZero:
1238 // Fall-through.
Ian Rogersd81871c2011-10-03 13:57:23 -07001239 case Instruction::kVerifyVarArgRange:
Andreas Gampec3314312014-06-19 18:13:29 -07001240 if (inst->GetVerifyExtraFlags() == Instruction::kVerifyVarArgRangeNonZero &&
1241 inst->VRegA() <= 0) {
1242 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << inst->VRegA() << ") in "
1243 "range invoke";
1244 return false;
1245 }
Ian Rogers29a26482014-05-02 15:27:29 -07001246 result = result && CheckVarArgRangeRegs(inst->VRegA(), inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001247 break;
1248 case Instruction::kVerifyError:
jeffhaod5347e02012-03-22 17:25:05 -07001249 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected opcode " << inst->Name();
Ian Rogersd81871c2011-10-03 13:57:23 -07001250 result = false;
1251 break;
1252 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001253 if (inst->GetVerifyIsRuntimeOnly() && Runtime::Current()->IsAotCompiler() && !verify_to_dump_) {
Ian Rogers5fb22a92014-06-13 10:31:28 -07001254 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "opcode only expected at runtime " << inst->Name();
1255 result = false;
1256 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001257 return result;
1258}
1259
Ian Rogers7b078e82014-09-10 14:44:24 -07001260inline bool MethodVerifier::CheckRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001261 if (idx >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001262 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register index out of range (" << idx << " >= "
1263 << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001264 return false;
1265 }
1266 return true;
1267}
1268
Ian Rogers7b078e82014-09-10 14:44:24 -07001269inline bool MethodVerifier::CheckWideRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001270 if (idx + 1 >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001271 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "wide register index out of range (" << idx
1272 << "+1 >= " << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001273 return false;
1274 }
1275 return true;
1276}
1277
Ian Rogers7b078e82014-09-10 14:44:24 -07001278inline bool MethodVerifier::CheckFieldIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001279 if (idx >= dex_file_->GetHeader().field_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001280 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad field index " << idx << " (max "
1281 << dex_file_->GetHeader().field_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001282 return false;
1283 }
1284 return true;
1285}
1286
Ian Rogers7b078e82014-09-10 14:44:24 -07001287inline bool MethodVerifier::CheckMethodIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001288 if (idx >= dex_file_->GetHeader().method_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001289 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad method index " << idx << " (max "
1290 << dex_file_->GetHeader().method_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001291 return false;
1292 }
1293 return true;
1294}
1295
Andreas Gampea5b09a62016-11-17 15:21:22 -08001296inline bool MethodVerifier::CheckNewInstance(dex::TypeIndex idx) {
1297 if (idx.index_ >= dex_file_->GetHeader().type_ids_size_) {
1298 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx.index_ << " (max "
jeffhaod5347e02012-03-22 17:25:05 -07001299 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001300 return false;
1301 }
1302 // We don't need the actual class, just a pointer to the class name.
Ian Rogers0571d352011-11-03 19:51:38 -07001303 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -07001304 if (descriptor[0] != 'L') {
jeffhaod5347e02012-03-22 17:25:05 -07001305 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "can't call new-instance on type '" << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001306 return false;
Aart Bikdb698f12016-07-25 17:52:22 -07001307 } else if (strcmp(descriptor, "Ljava/lang/Class;") == 0) {
1308 // An unlikely new instance on Class is not allowed. Fall back to interpreter to ensure an
1309 // exception is thrown when this statement is executed (compiled code would not do that).
1310 Fail(VERIFY_ERROR_INSTANTIATION);
Ian Rogersd81871c2011-10-03 13:57:23 -07001311 }
1312 return true;
1313}
1314
Orion Hodsoncfa325e2016-10-13 10:25:54 +01001315inline bool MethodVerifier::CheckPrototypeIndex(uint32_t idx) {
1316 if (idx >= dex_file_->GetHeader().proto_ids_size_) {
1317 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad prototype index " << idx << " (max "
1318 << dex_file_->GetHeader().proto_ids_size_ << ")";
1319 return false;
1320 }
1321 return true;
1322}
1323
Ian Rogers7b078e82014-09-10 14:44:24 -07001324inline bool MethodVerifier::CheckStringIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001325 if (idx >= dex_file_->GetHeader().string_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001326 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad string index " << idx << " (max "
1327 << dex_file_->GetHeader().string_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001328 return false;
1329 }
1330 return true;
1331}
1332
Andreas Gampea5b09a62016-11-17 15:21:22 -08001333inline bool MethodVerifier::CheckTypeIndex(dex::TypeIndex idx) {
1334 if (idx.index_ >= dex_file_->GetHeader().type_ids_size_) {
1335 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx.index_ << " (max "
jeffhaod5347e02012-03-22 17:25:05 -07001336 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001337 return false;
1338 }
1339 return true;
1340}
1341
Andreas Gampea5b09a62016-11-17 15:21:22 -08001342bool MethodVerifier::CheckNewArray(dex::TypeIndex idx) {
1343 if (idx.index_ >= dex_file_->GetHeader().type_ids_size_) {
1344 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx.index_ << " (max "
jeffhaod5347e02012-03-22 17:25:05 -07001345 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001346 return false;
1347 }
1348 int bracket_count = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001349 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -07001350 const char* cp = descriptor;
1351 while (*cp++ == '[') {
1352 bracket_count++;
1353 }
1354 if (bracket_count == 0) {
1355 /* The given class must be an array type. */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001356 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1357 << "can't new-array class '" << descriptor << "' (not an array)";
Ian Rogersd81871c2011-10-03 13:57:23 -07001358 return false;
1359 } else if (bracket_count > 255) {
1360 /* It is illegal to create an array of more than 255 dimensions. */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001361 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1362 << "can't new-array class '" << descriptor << "' (exceeds limit)";
Ian Rogersd81871c2011-10-03 13:57:23 -07001363 return false;
1364 }
1365 return true;
1366}
1367
Ian Rogers776ac1f2012-04-13 23:36:36 -07001368bool MethodVerifier::CheckArrayData(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001369 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
1370 const uint16_t* insns = code_item_->insns_ + cur_offset;
1371 const uint16_t* array_data;
1372 int32_t array_data_offset;
1373
1374 DCHECK_LT(cur_offset, insn_count);
1375 /* make sure the start of the array data table is in range */
Andreas Gampe53de99c2015-08-17 13:43:55 -07001376 array_data_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
1377 if (static_cast<int32_t>(cur_offset) + array_data_offset < 0 ||
Ian Rogersd81871c2011-10-03 13:57:23 -07001378 cur_offset + array_data_offset + 2 >= insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -07001379 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -07001380 << ", data offset " << array_data_offset
1381 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -07001382 return false;
1383 }
1384 /* offset to array data table is a relative branch-style offset */
1385 array_data = insns + array_data_offset;
Andreas Gampe57c47582015-07-01 22:05:59 -07001386 // Make sure the table is at an even dex pc, that is, 32-bit aligned.
1387 if (!IsAligned<4>(array_data)) {
jeffhaod5347e02012-03-22 17:25:05 -07001388 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned array data table: at " << cur_offset
1389 << ", data offset " << array_data_offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001390 return false;
1391 }
Andreas Gampe57c47582015-07-01 22:05:59 -07001392 // Make sure the array-data is marked as an opcode. This ensures that it was reached when
1393 // traversing the code item linearly. It is an approximation for a by-spec padding value.
Mathieu Chartierde40d472015-10-15 17:47:48 -07001394 if (!GetInstructionFlags(cur_offset + array_data_offset).IsOpcode()) {
Andreas Gampe57c47582015-07-01 22:05:59 -07001395 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array data table at " << cur_offset
1396 << ", data offset " << array_data_offset
1397 << " not correctly visited, probably bad padding.";
1398 return false;
1399 }
1400
Ian Rogersd81871c2011-10-03 13:57:23 -07001401 uint32_t value_width = array_data[1];
Elliott Hughes398f64b2012-03-26 18:05:48 -07001402 uint32_t value_count = *reinterpret_cast<const uint32_t*>(&array_data[2]);
Ian Rogersd81871c2011-10-03 13:57:23 -07001403 uint32_t table_size = 4 + (value_width * value_count + 1) / 2;
1404 /* make sure the end of the switch is in range */
1405 if (cur_offset + array_data_offset + table_size > insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -07001406 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data end: at " << cur_offset
1407 << ", data offset " << array_data_offset << ", end "
1408 << cur_offset + array_data_offset + table_size
1409 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -07001410 return false;
1411 }
1412 return true;
1413}
1414
Ian Rogers776ac1f2012-04-13 23:36:36 -07001415bool MethodVerifier::CheckBranchTarget(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001416 int32_t offset;
1417 bool isConditional, selfOkay;
1418 if (!GetBranchOffset(cur_offset, &offset, &isConditional, &selfOkay)) {
1419 return false;
1420 }
1421 if (!selfOkay && offset == 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001422 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch offset of zero not allowed at"
1423 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -07001424 return false;
1425 }
Elliott Hughes81ff3182012-03-23 20:35:56 -07001426 // Check for 32-bit overflow. This isn't strictly necessary if we can depend on the runtime
1427 // to have identical "wrap-around" behavior, but it's unwise to depend on that.
Ian Rogersd81871c2011-10-03 13:57:23 -07001428 if (((int64_t) cur_offset + (int64_t) offset) != (int64_t) (cur_offset + offset)) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001429 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch target overflow "
1430 << reinterpret_cast<void*>(cur_offset) << " +" << offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001431 return false;
1432 }
1433 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
1434 int32_t abs_offset = cur_offset + offset;
Brian Carlstrom93c33962013-07-26 10:37:43 -07001435 if (abs_offset < 0 ||
1436 (uint32_t) abs_offset >= insn_count ||
Mathieu Chartierde40d472015-10-15 17:47:48 -07001437 !GetInstructionFlags(abs_offset).IsOpcode()) {
jeffhaod5347e02012-03-22 17:25:05 -07001438 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid branch target " << offset << " (-> "
Elliott Hughes398f64b2012-03-26 18:05:48 -07001439 << reinterpret_cast<void*>(abs_offset) << ") at "
1440 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -07001441 return false;
1442 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001443 GetInstructionFlags(abs_offset).SetBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -07001444 return true;
1445}
1446
Ian Rogers776ac1f2012-04-13 23:36:36 -07001447bool MethodVerifier::GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
Ian Rogersd81871c2011-10-03 13:57:23 -07001448 bool* selfOkay) {
1449 const uint16_t* insns = code_item_->insns_ + cur_offset;
1450 *pConditional = false;
1451 *selfOkay = false;
jeffhaoba5ebb92011-08-25 17:24:37 -07001452 switch (*insns & 0xff) {
1453 case Instruction::GOTO:
1454 *pOffset = ((int16_t) *insns) >> 8;
jeffhaoba5ebb92011-08-25 17:24:37 -07001455 break;
1456 case Instruction::GOTO_32:
1457 *pOffset = insns[1] | (((uint32_t) insns[2]) << 16);
jeffhaoba5ebb92011-08-25 17:24:37 -07001458 *selfOkay = true;
1459 break;
1460 case Instruction::GOTO_16:
1461 *pOffset = (int16_t) insns[1];
jeffhaoba5ebb92011-08-25 17:24:37 -07001462 break;
1463 case Instruction::IF_EQ:
1464 case Instruction::IF_NE:
1465 case Instruction::IF_LT:
1466 case Instruction::IF_GE:
1467 case Instruction::IF_GT:
1468 case Instruction::IF_LE:
1469 case Instruction::IF_EQZ:
1470 case Instruction::IF_NEZ:
1471 case Instruction::IF_LTZ:
1472 case Instruction::IF_GEZ:
1473 case Instruction::IF_GTZ:
1474 case Instruction::IF_LEZ:
1475 *pOffset = (int16_t) insns[1];
1476 *pConditional = true;
jeffhaoba5ebb92011-08-25 17:24:37 -07001477 break;
1478 default:
1479 return false;
jeffhaoba5ebb92011-08-25 17:24:37 -07001480 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001481 return true;
1482}
1483
Ian Rogers776ac1f2012-04-13 23:36:36 -07001484bool MethodVerifier::CheckSwitchTargets(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001485 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001486 DCHECK_LT(cur_offset, insn_count);
Ian Rogersd81871c2011-10-03 13:57:23 -07001487 const uint16_t* insns = code_item_->insns_ + cur_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001488 /* make sure the start of the switch is in range */
Andreas Gampe53de99c2015-08-17 13:43:55 -07001489 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
1490 if (static_cast<int32_t>(cur_offset) + switch_offset < 0 ||
1491 cur_offset + switch_offset + 2 > insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -07001492 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -07001493 << ", switch offset " << switch_offset
1494 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001495 return false;
1496 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001497 /* offset to switch table is a relative branch-style offset */
Ian Rogersd81871c2011-10-03 13:57:23 -07001498 const uint16_t* switch_insns = insns + switch_offset;
Andreas Gampe57c47582015-07-01 22:05:59 -07001499 // Make sure the table is at an even dex pc, that is, 32-bit aligned.
1500 if (!IsAligned<4>(switch_insns)) {
jeffhaod5347e02012-03-22 17:25:05 -07001501 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned switch table: at " << cur_offset
1502 << ", switch offset " << switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001503 return false;
1504 }
Andreas Gampe57c47582015-07-01 22:05:59 -07001505 // Make sure the switch data is marked as an opcode. This ensures that it was reached when
1506 // traversing the code item linearly. It is an approximation for a by-spec padding value.
Mathieu Chartierde40d472015-10-15 17:47:48 -07001507 if (!GetInstructionFlags(cur_offset + switch_offset).IsOpcode()) {
Andreas Gampe57c47582015-07-01 22:05:59 -07001508 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "switch table at " << cur_offset
1509 << ", switch offset " << switch_offset
1510 << " not correctly visited, probably bad padding.";
1511 return false;
1512 }
1513
David Brazdil5469d342015-09-25 16:57:53 +01001514 bool is_packed_switch = (*insns & 0xff) == Instruction::PACKED_SWITCH;
1515
Ian Rogersd81871c2011-10-03 13:57:23 -07001516 uint32_t switch_count = switch_insns[1];
David Brazdil5469d342015-09-25 16:57:53 +01001517 int32_t targets_offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001518 uint16_t expected_signature;
David Brazdil5469d342015-09-25 16:57:53 +01001519 if (is_packed_switch) {
jeffhaoba5ebb92011-08-25 17:24:37 -07001520 /* 0=sig, 1=count, 2/3=firstKey */
1521 targets_offset = 4;
jeffhaoba5ebb92011-08-25 17:24:37 -07001522 expected_signature = Instruction::kPackedSwitchSignature;
1523 } else {
1524 /* 0=sig, 1=count, 2..count*2 = keys */
jeffhaoba5ebb92011-08-25 17:24:37 -07001525 targets_offset = 2 + 2 * switch_count;
1526 expected_signature = Instruction::kSparseSwitchSignature;
1527 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001528 uint32_t table_size = targets_offset + switch_count * 2;
jeffhaoba5ebb92011-08-25 17:24:37 -07001529 if (switch_insns[0] != expected_signature) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001530 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1531 << StringPrintf("wrong signature for switch table (%x, wanted %x)",
1532 switch_insns[0], expected_signature);
jeffhaoba5ebb92011-08-25 17:24:37 -07001533 return false;
1534 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001535 /* make sure the end of the switch is in range */
1536 if (cur_offset + switch_offset + table_size > (uint32_t) insn_count) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001537 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch end: at " << cur_offset
1538 << ", switch offset " << switch_offset
1539 << ", end " << (cur_offset + switch_offset + table_size)
jeffhaod5347e02012-03-22 17:25:05 -07001540 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001541 return false;
1542 }
David Brazdil5469d342015-09-25 16:57:53 +01001543
1544 constexpr int32_t keys_offset = 2;
1545 if (switch_count > 1) {
1546 if (is_packed_switch) {
1547 /* for a packed switch, verify that keys do not overflow int32 */
1548 int32_t first_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1549 int32_t max_first_key =
1550 std::numeric_limits<int32_t>::max() - (static_cast<int32_t>(switch_count) - 1);
1551 if (first_key > max_first_key) {
1552 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid packed switch: first_key=" << first_key
1553 << ", switch_count=" << switch_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001554 return false;
1555 }
David Brazdil5469d342015-09-25 16:57:53 +01001556 } else {
1557 /* for a sparse switch, verify the keys are in ascending order */
1558 int32_t last_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1559 for (uint32_t targ = 1; targ < switch_count; targ++) {
1560 int32_t key =
1561 static_cast<int32_t>(switch_insns[keys_offset + targ * 2]) |
1562 static_cast<int32_t>(switch_insns[keys_offset + targ * 2 + 1] << 16);
1563 if (key <= last_key) {
1564 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid sparse switch: last key=" << last_key
1565 << ", this=" << key;
1566 return false;
1567 }
1568 last_key = key;
1569 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001570 }
1571 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001572 /* verify each switch target */
Ian Rogersd81871c2011-10-03 13:57:23 -07001573 for (uint32_t targ = 0; targ < switch_count; targ++) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07001574 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
1575 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07001576 int32_t abs_offset = cur_offset + offset;
Brian Carlstrom93c33962013-07-26 10:37:43 -07001577 if (abs_offset < 0 ||
Andreas Gampe53de99c2015-08-17 13:43:55 -07001578 abs_offset >= static_cast<int32_t>(insn_count) ||
Mathieu Chartierde40d472015-10-15 17:47:48 -07001579 !GetInstructionFlags(abs_offset).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001580 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch target " << offset
1581 << " (-> " << reinterpret_cast<void*>(abs_offset) << ") at "
1582 << reinterpret_cast<void*>(cur_offset)
1583 << "[" << targ << "]";
jeffhaoba5ebb92011-08-25 17:24:37 -07001584 return false;
1585 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001586 GetInstructionFlags(abs_offset).SetBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -07001587 }
1588 return true;
1589}
1590
Ian Rogers776ac1f2012-04-13 23:36:36 -07001591bool MethodVerifier::CheckVarArgRegs(uint32_t vA, uint32_t arg[]) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001592 uint16_t registers_size = code_item_->registers_size_;
1593 for (uint32_t idx = 0; idx < vA; idx++) {
jeffhao457cc512012-02-02 16:55:13 -08001594 if (arg[idx] >= registers_size) {
jeffhaod5347e02012-03-22 17:25:05 -07001595 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index (" << arg[idx]
1596 << ") in non-range invoke (>= " << registers_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001597 return false;
1598 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001599 }
1600
1601 return true;
1602}
1603
Ian Rogers776ac1f2012-04-13 23:36:36 -07001604bool MethodVerifier::CheckVarArgRangeRegs(uint32_t vA, uint32_t vC) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001605 uint16_t registers_size = code_item_->registers_size_;
1606 // vA/vC are unsigned 8-bit/16-bit quantities for /range instructions, so there's no risk of
1607 // integer overflow when adding them here.
1608 if (vA + vC > registers_size) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001609 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index " << vA << "+" << vC
1610 << " in range invoke (> " << registers_size << ")";
jeffhaoba5ebb92011-08-25 17:24:37 -07001611 return false;
1612 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001613 return true;
1614}
1615
Ian Rogers776ac1f2012-04-13 23:36:36 -07001616bool MethodVerifier::VerifyCodeFlow() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001617 uint16_t registers_size = code_item_->registers_size_;
1618 uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaobdb76512011-09-07 11:43:16 -07001619
Ian Rogersd81871c2011-10-03 13:57:23 -07001620 /* Create and initialize table holding register status */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001621 reg_table_.Init(kTrackCompilerInterestPoints,
1622 insn_flags_.get(),
1623 insns_size,
1624 registers_size,
1625 this);
Sameer Abu Asal02c42232013-04-30 12:09:45 -07001626
Ian Rogersd0fbd852013-09-24 18:17:04 -07001627 work_line_.reset(RegisterLine::Create(registers_size, this));
1628 saved_line_.reset(RegisterLine::Create(registers_size, this));
jeffhaobdb76512011-09-07 11:43:16 -07001629
Ian Rogersd81871c2011-10-03 13:57:23 -07001630 /* Initialize register types of method arguments. */
1631 if (!SetTypesFromSignature()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001632 DCHECK_NE(failures_.size(), 0U);
1633 std::string prepend("Bad signature in ");
David Sehr709b0702016-10-13 09:12:37 -07001634 prepend += dex_file_->PrettyMethod(dex_method_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001635 PrependToLastFailMessage(prepend);
Ian Rogersd81871c2011-10-03 13:57:23 -07001636 return false;
1637 }
Andreas Gamped5ad72f2015-06-26 17:33:47 -07001638 // We may have a runtime failure here, clear.
1639 have_pending_runtime_throw_failure_ = false;
1640
Ian Rogersd81871c2011-10-03 13:57:23 -07001641 /* Perform code flow verification. */
1642 if (!CodeFlowVerifyMethod()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001643 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001644 return false;
jeffhaobdb76512011-09-07 11:43:16 -07001645 }
jeffhaobdb76512011-09-07 11:43:16 -07001646 return true;
1647}
1648
Ian Rogersad0b3a32012-04-16 14:50:24 -07001649std::ostream& MethodVerifier::DumpFailures(std::ostream& os) {
1650 DCHECK_EQ(failures_.size(), failure_messages_.size());
Jeff Hao4137f482013-11-22 11:44:57 -08001651 for (size_t i = 0; i < failures_.size(); ++i) {
1652 os << failure_messages_[i]->str() << "\n";
Ian Rogersad0b3a32012-04-16 14:50:24 -07001653 }
1654 return os;
1655}
1656
Ian Rogers776ac1f2012-04-13 23:36:36 -07001657void MethodVerifier::Dump(std::ostream& os) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001658 VariableIndentationOutputStream vios(&os);
1659 Dump(&vios);
1660}
1661
1662void MethodVerifier::Dump(VariableIndentationOutputStream* vios) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001663 if (code_item_ == nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001664 vios->Stream() << "Native method\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001665 return;
jeffhaobdb76512011-09-07 11:43:16 -07001666 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001667 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001668 vios->Stream() << "Register Types:\n";
1669 ScopedIndentation indent1(vios);
1670 reg_types_.Dump(vios->Stream());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001671 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001672 vios->Stream() << "Dumping instructions and register lines:\n";
1673 ScopedIndentation indent1(vios);
Ian Rogersd81871c2011-10-03 13:57:23 -07001674 const Instruction* inst = Instruction::At(code_item_->insns_);
1675 for (size_t dex_pc = 0; dex_pc < code_item_->insns_size_in_code_units_;
Andreas Gampeebf850c2015-08-14 15:37:35 -07001676 dex_pc += inst->SizeInCodeUnits(), inst = inst->Next()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001677 RegisterLine* reg_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -07001678 if (reg_line != nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001679 vios->Stream() << reg_line->Dump(this) << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07001680 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001681 vios->Stream()
Mathieu Chartierde40d472015-10-15 17:47:48 -07001682 << StringPrintf("0x%04zx", dex_pc) << ": " << GetInstructionFlags(dex_pc).ToString() << " ";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001683 const bool kDumpHexOfInstruction = false;
1684 if (kDumpHexOfInstruction) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001685 vios->Stream() << inst->DumpHex(5) << " ";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001686 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001687 vios->Stream() << inst->DumpString(dex_file_) << "\n";
jeffhaoba5ebb92011-08-25 17:24:37 -07001688 }
jeffhaobdb76512011-09-07 11:43:16 -07001689}
1690
Ian Rogersd81871c2011-10-03 13:57:23 -07001691static bool IsPrimitiveDescriptor(char descriptor) {
1692 switch (descriptor) {
jeffhaobdb76512011-09-07 11:43:16 -07001693 case 'I':
1694 case 'C':
1695 case 'S':
1696 case 'B':
1697 case 'Z':
jeffhaobdb76512011-09-07 11:43:16 -07001698 case 'F':
1699 case 'D':
1700 case 'J':
Ian Rogersd81871c2011-10-03 13:57:23 -07001701 return true;
jeffhaobdb76512011-09-07 11:43:16 -07001702 default:
1703 return false;
1704 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001705}
1706
Ian Rogers776ac1f2012-04-13 23:36:36 -07001707bool MethodVerifier::SetTypesFromSignature() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001708 RegisterLine* reg_line = reg_table_.GetLine(0);
Andreas Gampeef0b1a12015-06-19 20:37:46 -07001709
1710 // Should have been verified earlier.
1711 DCHECK_GE(code_item_->registers_size_, code_item_->ins_size_);
1712
1713 uint32_t arg_start = code_item_->registers_size_ - code_item_->ins_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -07001714 size_t expected_args = code_item_->ins_size_; /* long/double count as two */
jeffhaobdb76512011-09-07 11:43:16 -07001715
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001716 // Include the "this" pointer.
Ian Rogersd81871c2011-10-03 13:57:23 -07001717 size_t cur_arg = 0;
Ian Rogersad0b3a32012-04-16 14:50:24 -07001718 if (!IsStatic()) {
Andreas Gampeef0b1a12015-06-19 20:37:46 -07001719 if (expected_args == 0) {
1720 // Expect at least a receiver.
1721 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected 0 args, but method is not static";
1722 return false;
1723 }
1724
Ian Rogersd81871c2011-10-03 13:57:23 -07001725 // If this is a constructor for a class other than java.lang.Object, mark the first ("this")
1726 // argument as uninitialized. This restricts field access until the superclass constructor is
1727 // called.
Ian Rogersd8f69b02014-09-10 21:43:52 +00001728 const RegType& declaring_class = GetDeclaringClass();
Andreas Gampef10b6e12015-08-12 10:48:12 -07001729 if (IsConstructor()) {
1730 if (declaring_class.IsJavaLangObject()) {
1731 // "this" is implicitly initialized.
1732 reg_line->SetThisInitialized();
Andreas Gampead238ce2015-08-24 21:13:08 -07001733 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, declaring_class);
Andreas Gampef10b6e12015-08-12 10:48:12 -07001734 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07001735 reg_line->SetRegisterType<LockOp::kClear>(
1736 this,
1737 arg_start + cur_arg,
1738 reg_types_.UninitializedThisArgument(declaring_class));
Andreas Gampef10b6e12015-08-12 10:48:12 -07001739 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001740 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07001741 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, declaring_class);
jeffhaobdb76512011-09-07 11:43:16 -07001742 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001743 cur_arg++;
jeffhaobdb76512011-09-07 11:43:16 -07001744 }
1745
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001746 const DexFile::ProtoId& proto_id =
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001747 dex_file_->GetMethodPrototype(dex_file_->GetMethodId(dex_method_idx_));
Ian Rogers0571d352011-11-03 19:51:38 -07001748 DexFileParameterIterator iterator(*dex_file_, proto_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07001749
1750 for (; iterator.HasNext(); iterator.Next()) {
1751 const char* descriptor = iterator.GetDescriptor();
Ian Rogers7b078e82014-09-10 14:44:24 -07001752 if (descriptor == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001753 LOG(FATAL) << "Null descriptor";
1754 }
1755 if (cur_arg >= expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07001756 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1757 << " args, found more (" << descriptor << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001758 return false;
1759 }
1760 switch (descriptor[0]) {
1761 case 'L':
1762 case '[':
1763 // We assume that reference arguments are initialized. The only way it could be otherwise
1764 // (assuming the caller was verified) is if the current method is <init>, but in that case
1765 // it's effectively considered initialized the instant we reach here (in the sense that we
1766 // can return without doing anything or call virtual methods).
1767 {
Ian Rogersd8f69b02014-09-10 21:43:52 +00001768 const RegType& reg_type = ResolveClassAndCheckAccess(iterator.GetTypeIdx());
Sebastien Hertz2ed76f92014-04-22 17:11:08 +02001769 if (!reg_type.IsNonZeroReferenceTypes()) {
1770 DCHECK(HasFailures());
1771 return false;
1772 }
Andreas Gampead238ce2015-08-24 21:13:08 -07001773 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001774 }
1775 break;
1776 case 'Z':
Andreas Gampead238ce2015-08-24 21:13:08 -07001777 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Boolean());
Ian Rogersd81871c2011-10-03 13:57:23 -07001778 break;
1779 case 'C':
Andreas Gampead238ce2015-08-24 21:13:08 -07001780 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Char());
Ian Rogersd81871c2011-10-03 13:57:23 -07001781 break;
1782 case 'B':
Andreas Gampead238ce2015-08-24 21:13:08 -07001783 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Byte());
Ian Rogersd81871c2011-10-03 13:57:23 -07001784 break;
1785 case 'I':
Andreas Gampead238ce2015-08-24 21:13:08 -07001786 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07001787 break;
1788 case 'S':
Andreas Gampead238ce2015-08-24 21:13:08 -07001789 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Short());
Ian Rogersd81871c2011-10-03 13:57:23 -07001790 break;
1791 case 'F':
Andreas Gampead238ce2015-08-24 21:13:08 -07001792 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Float());
Ian Rogersd81871c2011-10-03 13:57:23 -07001793 break;
1794 case 'J':
1795 case 'D': {
Andreas Gampe77cd4d62014-06-19 17:29:48 -07001796 if (cur_arg + 1 >= expected_args) {
1797 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1798 << " args, found more (" << descriptor << ")";
1799 return false;
1800 }
1801
Ian Rogers7b078e82014-09-10 14:44:24 -07001802 const RegType* lo_half;
1803 const RegType* hi_half;
1804 if (descriptor[0] == 'J') {
1805 lo_half = &reg_types_.LongLo();
1806 hi_half = &reg_types_.LongHi();
1807 } else {
1808 lo_half = &reg_types_.DoubleLo();
1809 hi_half = &reg_types_.DoubleHi();
1810 }
1811 reg_line->SetRegisterTypeWide(this, arg_start + cur_arg, *lo_half, *hi_half);
Ian Rogersd81871c2011-10-03 13:57:23 -07001812 cur_arg++;
1813 break;
1814 }
1815 default:
Brian Carlstrom93c33962013-07-26 10:37:43 -07001816 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected signature type char '"
1817 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001818 return false;
1819 }
1820 cur_arg++;
1821 }
1822 if (cur_arg != expected_args) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001823 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1824 << " arguments, found " << cur_arg;
Ian Rogersd81871c2011-10-03 13:57:23 -07001825 return false;
1826 }
1827 const char* descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
1828 // Validate return type. We don't do the type lookup; just want to make sure that it has the right
1829 // format. Only major difference from the method argument format is that 'V' is supported.
1830 bool result;
1831 if (IsPrimitiveDescriptor(descriptor[0]) || descriptor[0] == 'V') {
1832 result = descriptor[1] == '\0';
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001833 } else if (descriptor[0] == '[') { // single/multi-dimensional array of object/primitive
Ian Rogersd81871c2011-10-03 13:57:23 -07001834 size_t i = 0;
1835 do {
1836 i++;
1837 } while (descriptor[i] == '['); // process leading [
1838 if (descriptor[i] == 'L') { // object array
1839 do {
1840 i++; // find closing ;
1841 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1842 result = descriptor[i] == ';';
1843 } else { // primitive array
1844 result = IsPrimitiveDescriptor(descriptor[i]) && descriptor[i + 1] == '\0';
1845 }
1846 } else if (descriptor[0] == 'L') {
1847 // could be more thorough here, but shouldn't be required
1848 size_t i = 0;
1849 do {
1850 i++;
1851 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1852 result = descriptor[i] == ';';
1853 } else {
1854 result = false;
1855 }
1856 if (!result) {
jeffhaod5347e02012-03-22 17:25:05 -07001857 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected char in return type descriptor '"
1858 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001859 }
1860 return result;
jeffhaobdb76512011-09-07 11:43:16 -07001861}
1862
Ian Rogers776ac1f2012-04-13 23:36:36 -07001863bool MethodVerifier::CodeFlowVerifyMethod() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001864 const uint16_t* insns = code_item_->insns_;
1865 const uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaoba5ebb92011-08-25 17:24:37 -07001866
jeffhaobdb76512011-09-07 11:43:16 -07001867 /* Begin by marking the first instruction as "changed". */
Mathieu Chartierde40d472015-10-15 17:47:48 -07001868 GetInstructionFlags(0).SetChanged();
Ian Rogersd81871c2011-10-03 13:57:23 -07001869 uint32_t start_guess = 0;
jeffhaoba5ebb92011-08-25 17:24:37 -07001870
jeffhaobdb76512011-09-07 11:43:16 -07001871 /* Continue until no instructions are marked "changed". */
1872 while (true) {
Mathieu Chartier4306ef82014-12-19 18:41:47 -08001873 if (allow_thread_suspension_) {
1874 self_->AllowThreadSuspension();
1875 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001876 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1877 uint32_t insn_idx = start_guess;
1878 for (; insn_idx < insns_size; insn_idx++) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001879 if (GetInstructionFlags(insn_idx).IsChanged())
jeffhaobdb76512011-09-07 11:43:16 -07001880 break;
1881 }
jeffhaobdb76512011-09-07 11:43:16 -07001882 if (insn_idx == insns_size) {
1883 if (start_guess != 0) {
1884 /* try again, starting from the top */
1885 start_guess = 0;
1886 continue;
1887 } else {
1888 /* all flags are clear */
1889 break;
1890 }
1891 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001892 // We carry the working set of registers from instruction to instruction. If this address can
1893 // be the target of a branch (or throw) instruction, or if we're skipping around chasing
1894 // "changed" flags, we need to load the set of registers from the table.
1895 // Because we always prefer to continue on to the next instruction, we should never have a
1896 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1897 // target.
1898 work_insn_idx_ = insn_idx;
Mathieu Chartierde40d472015-10-15 17:47:48 -07001899 if (GetInstructionFlags(insn_idx).IsBranchTarget()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001900 work_line_->CopyFromLine(reg_table_.GetLine(insn_idx));
Ian Rogersebbdd872014-07-07 23:53:08 -07001901 } else if (kIsDebugBuild) {
jeffhaobdb76512011-09-07 11:43:16 -07001902 /*
1903 * Sanity check: retrieve the stored register line (assuming
1904 * a full table) and make sure it actually matches.
1905 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001906 RegisterLine* register_line = reg_table_.GetLine(insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07001907 if (register_line != nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001908 if (work_line_->CompareLine(register_line) != 0) {
1909 Dump(std::cout);
1910 std::cout << info_messages_.str();
David Sehr709b0702016-10-13 09:12:37 -07001911 LOG(FATAL) << "work_line diverged in " << dex_file_->PrettyMethod(dex_method_idx_)
Elliott Hughesc073b072012-05-24 19:29:17 -07001912 << "@" << reinterpret_cast<void*>(work_insn_idx_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07001913 << " work_line=" << work_line_->Dump(this) << "\n"
1914 << " expected=" << register_line->Dump(this);
Ian Rogersd81871c2011-10-03 13:57:23 -07001915 }
jeffhaobdb76512011-09-07 11:43:16 -07001916 }
jeffhaobdb76512011-09-07 11:43:16 -07001917 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001918 if (!CodeFlowVerifyInstruction(&start_guess)) {
David Sehr709b0702016-10-13 09:12:37 -07001919 std::string prepend(dex_file_->PrettyMethod(dex_method_idx_));
Ian Rogersad0b3a32012-04-16 14:50:24 -07001920 prepend += " failed to verify: ";
1921 PrependToLastFailMessage(prepend);
jeffhaoba5ebb92011-08-25 17:24:37 -07001922 return false;
1923 }
jeffhaobdb76512011-09-07 11:43:16 -07001924 /* Clear "changed" and mark as visited. */
Mathieu Chartierde40d472015-10-15 17:47:48 -07001925 GetInstructionFlags(insn_idx).SetVisited();
1926 GetInstructionFlags(insn_idx).ClearChanged();
jeffhaobdb76512011-09-07 11:43:16 -07001927 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001928
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001929 if (kDebugVerify) {
jeffhaobdb76512011-09-07 11:43:16 -07001930 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001931 * Scan for dead code. There's nothing "evil" about dead code
jeffhaobdb76512011-09-07 11:43:16 -07001932 * (besides the wasted space), but it indicates a flaw somewhere
1933 * down the line, possibly in the verifier.
1934 *
1935 * If we've substituted "always throw" instructions into the stream,
1936 * we are almost certainly going to have some dead code.
1937 */
1938 int dead_start = -1;
Ian Rogersd81871c2011-10-03 13:57:23 -07001939 uint32_t insn_idx = 0;
Ian Rogers7b078e82014-09-10 14:44:24 -07001940 for (; insn_idx < insns_size;
1941 insn_idx += Instruction::At(code_item_->insns_ + insn_idx)->SizeInCodeUnits()) {
jeffhaobdb76512011-09-07 11:43:16 -07001942 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001943 * Switch-statement data doesn't get "visited" by scanner. It
jeffhaobdb76512011-09-07 11:43:16 -07001944 * may or may not be preceded by a padding NOP (for alignment).
1945 */
1946 if (insns[insn_idx] == Instruction::kPackedSwitchSignature ||
1947 insns[insn_idx] == Instruction::kSparseSwitchSignature ||
1948 insns[insn_idx] == Instruction::kArrayDataSignature ||
Elliott Hughes380aaa72012-07-09 14:33:15 -07001949 (insns[insn_idx] == Instruction::NOP && (insn_idx + 1 < insns_size) &&
jeffhaobdb76512011-09-07 11:43:16 -07001950 (insns[insn_idx + 1] == Instruction::kPackedSwitchSignature ||
1951 insns[insn_idx + 1] == Instruction::kSparseSwitchSignature ||
1952 insns[insn_idx + 1] == Instruction::kArrayDataSignature))) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001953 GetInstructionFlags(insn_idx).SetVisited();
jeffhaobdb76512011-09-07 11:43:16 -07001954 }
1955
Mathieu Chartierde40d472015-10-15 17:47:48 -07001956 if (!GetInstructionFlags(insn_idx).IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001957 if (dead_start < 0)
1958 dead_start = insn_idx;
1959 } else if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001960 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1961 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaobdb76512011-09-07 11:43:16 -07001962 dead_start = -1;
1963 }
1964 }
1965 if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001966 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1967 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaoba5ebb92011-08-25 17:24:37 -07001968 }
Ian Rogersc9e463c2013-06-05 16:52:26 -07001969 // To dump the state of the verify after a method, do something like:
David Sehr709b0702016-10-13 09:12:37 -07001970 // if (dex_file_->PrettyMethod(dex_method_idx_) ==
Ian Rogersc9e463c2013-06-05 16:52:26 -07001971 // "boolean java.lang.String.equals(java.lang.Object)") {
1972 // LOG(INFO) << info_messages_.str();
1973 // }
jeffhaoba5ebb92011-08-25 17:24:37 -07001974 }
jeffhaobdb76512011-09-07 11:43:16 -07001975 return true;
1976}
1977
Andreas Gampe68df3202015-06-22 11:35:46 -07001978// Returns the index of the first final instance field of the given class, or kDexNoIndex if there
1979// is no such field.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001980static uint32_t GetFirstFinalInstanceFieldIndex(const DexFile& dex_file, dex::TypeIndex type_idx) {
Andreas Gampe68df3202015-06-22 11:35:46 -07001981 const DexFile::ClassDef* class_def = dex_file.FindClassDef(type_idx);
1982 DCHECK(class_def != nullptr);
1983 const uint8_t* class_data = dex_file.GetClassData(*class_def);
1984 DCHECK(class_data != nullptr);
1985 ClassDataItemIterator it(dex_file, class_data);
1986 // Skip static fields.
1987 while (it.HasNextStaticField()) {
1988 it.Next();
1989 }
1990 while (it.HasNextInstanceField()) {
1991 if ((it.GetFieldAccessFlags() & kAccFinal) != 0) {
1992 return it.GetMemberIndex();
1993 }
1994 it.Next();
1995 }
1996 return DexFile::kDexNoIndex;
1997}
1998
Andreas Gampea727e372015-08-25 09:22:37 -07001999// Setup a register line for the given return instruction.
2000static void AdjustReturnLine(MethodVerifier* verifier,
2001 const Instruction* ret_inst,
2002 RegisterLine* line) {
2003 Instruction::Code opcode = ret_inst->Opcode();
2004
2005 switch (opcode) {
2006 case Instruction::RETURN_VOID:
2007 case Instruction::RETURN_VOID_NO_BARRIER:
2008 SafelyMarkAllRegistersAsConflicts(verifier, line);
2009 break;
2010
2011 case Instruction::RETURN:
2012 case Instruction::RETURN_OBJECT:
2013 line->MarkAllRegistersAsConflictsExcept(verifier, ret_inst->VRegA_11x());
2014 break;
2015
2016 case Instruction::RETURN_WIDE:
2017 line->MarkAllRegistersAsConflictsExceptWide(verifier, ret_inst->VRegA_11x());
2018 break;
2019
2020 default:
2021 LOG(FATAL) << "Unknown return opcode " << opcode;
2022 UNREACHABLE();
2023 }
2024}
2025
Ian Rogers776ac1f2012-04-13 23:36:36 -07002026bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002027 // If we're doing FindLocksAtDexPc, check whether we're at the dex pc we care about.
2028 // We want the state _before_ the instruction, for the case where the dex pc we're
2029 // interested in is itself a monitor-enter instruction (which is a likely place
2030 // for a thread to be suspended).
Ian Rogers7b078e82014-09-10 14:44:24 -07002031 if (monitor_enter_dex_pcs_ != nullptr && work_insn_idx_ == interesting_dex_pc_) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002032 monitor_enter_dex_pcs_->clear(); // The new work line is more accurate than the previous one.
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002033 for (size_t i = 0; i < work_line_->GetMonitorEnterCount(); ++i) {
2034 monitor_enter_dex_pcs_->push_back(work_line_->GetMonitorEnterDexPc(i));
2035 }
2036 }
2037
jeffhaobdb76512011-09-07 11:43:16 -07002038 /*
2039 * Once we finish decoding the instruction, we need to figure out where
jeffhaod1f0fde2011-09-08 17:25:33 -07002040 * we can go from here. There are three possible ways to transfer
jeffhaobdb76512011-09-07 11:43:16 -07002041 * control to another statement:
2042 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002043 * (1) Continue to the next instruction. Applies to all but
jeffhaobdb76512011-09-07 11:43:16 -07002044 * unconditional branches, method returns, and exception throws.
jeffhaod1f0fde2011-09-08 17:25:33 -07002045 * (2) Branch to one or more possible locations. Applies to branches
jeffhaobdb76512011-09-07 11:43:16 -07002046 * and switch statements.
jeffhaod1f0fde2011-09-08 17:25:33 -07002047 * (3) Exception handlers. Applies to any instruction that can
jeffhaobdb76512011-09-07 11:43:16 -07002048 * throw an exception that is handled by an encompassing "try"
2049 * block.
2050 *
2051 * We can also return, in which case there is no successor instruction
2052 * from this point.
2053 *
Elliott Hughesadb8c672012-03-06 16:49:32 -08002054 * The behavior can be determined from the opcode flags.
jeffhaobdb76512011-09-07 11:43:16 -07002055 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002056 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
2057 const Instruction* inst = Instruction::At(insns);
Ian Rogersa75a0132012-09-28 11:41:42 -07002058 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
jeffhaobdb76512011-09-07 11:43:16 -07002059
jeffhaobdb76512011-09-07 11:43:16 -07002060 int32_t branch_target = 0;
jeffhaobdb76512011-09-07 11:43:16 -07002061 bool just_set_result = false;
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002062 if (kDebugVerify) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002063 // Generate processing back trace to debug verifier
Elliott Hughesc073b072012-05-24 19:29:17 -07002064 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07002065 << work_line_->Dump(this) << "\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07002066 }
jeffhaobdb76512011-09-07 11:43:16 -07002067
2068 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002069 * Make a copy of the previous register state. If the instruction
jeffhaobdb76512011-09-07 11:43:16 -07002070 * can throw an exception, we will copy/merge this into the "catch"
2071 * address rather than work_line, because we don't want the result
2072 * from the "successful" code path (e.g. a check-cast that "improves"
2073 * a type) to be visible to the exception handler.
2074 */
Ian Rogers776ac1f2012-04-13 23:36:36 -07002075 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002076 saved_line_->CopyFromLine(work_line_.get());
Ian Rogers1ff3c982014-08-12 02:30:58 -07002077 } else if (kIsDebugBuild) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002078 saved_line_->FillWithGarbage();
jeffhaobdb76512011-09-07 11:43:16 -07002079 }
Andreas Gamped12e7822015-06-25 10:26:40 -07002080 DCHECK(!have_pending_runtime_throw_failure_); // Per-instruction flag, should not be set here.
jeffhaobdb76512011-09-07 11:43:16 -07002081
Dragos Sbirlea980d16b2013-06-04 15:01:40 -07002082
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002083 // We need to ensure the work line is consistent while performing validation. When we spot a
2084 // peephole pattern we compute a new line for either the fallthrough instruction or the
2085 // branch target.
Mathieu Chartier361e04a2016-02-16 14:06:35 -08002086 RegisterLineArenaUniquePtr branch_line;
2087 RegisterLineArenaUniquePtr fallthrough_line;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002088
Sebastien Hertz5243e912013-05-21 10:55:07 +02002089 switch (inst->Opcode()) {
jeffhaobdb76512011-09-07 11:43:16 -07002090 case Instruction::NOP:
2091 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002092 * A "pure" NOP has no effect on anything. Data tables start with
jeffhaobdb76512011-09-07 11:43:16 -07002093 * a signature that looks like a NOP; if we see one of these in
2094 * the course of executing code then we have a problem.
2095 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002096 if (inst->VRegA_10x() != 0) {
jeffhaod5347e02012-03-22 17:25:05 -07002097 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "encountered data table in instruction stream";
jeffhaobdb76512011-09-07 11:43:16 -07002098 }
2099 break;
2100
2101 case Instruction::MOVE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002102 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002103 break;
jeffhaobdb76512011-09-07 11:43:16 -07002104 case Instruction::MOVE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002105 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002106 break;
jeffhaobdb76512011-09-07 11:43:16 -07002107 case Instruction::MOVE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002108 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategory1nr);
jeffhaobdb76512011-09-07 11:43:16 -07002109 break;
2110 case Instruction::MOVE_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002111 work_line_->CopyRegister2(this, inst->VRegA_12x(), inst->VRegB_12x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002112 break;
jeffhaobdb76512011-09-07 11:43:16 -07002113 case Instruction::MOVE_WIDE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002114 work_line_->CopyRegister2(this, inst->VRegA_22x(), inst->VRegB_22x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002115 break;
jeffhaobdb76512011-09-07 11:43:16 -07002116 case Instruction::MOVE_WIDE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002117 work_line_->CopyRegister2(this, inst->VRegA_32x(), inst->VRegB_32x());
jeffhaobdb76512011-09-07 11:43:16 -07002118 break;
2119 case Instruction::MOVE_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002120 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002121 break;
jeffhaobdb76512011-09-07 11:43:16 -07002122 case Instruction::MOVE_OBJECT_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002123 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002124 break;
jeffhaobdb76512011-09-07 11:43:16 -07002125 case Instruction::MOVE_OBJECT_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002126 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategoryRef);
jeffhaobdb76512011-09-07 11:43:16 -07002127 break;
2128
2129 /*
2130 * The move-result instructions copy data out of a "pseudo-register"
jeffhaod1f0fde2011-09-08 17:25:33 -07002131 * with the results from the last method invocation. In practice we
jeffhaobdb76512011-09-07 11:43:16 -07002132 * might want to hold the result in an actual CPU register, so the
2133 * Dalvik spec requires that these only appear immediately after an
2134 * invoke or filled-new-array.
2135 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002136 * These calls invalidate the "result" register. (This is now
jeffhaobdb76512011-09-07 11:43:16 -07002137 * redundant with the reset done below, but it can make the debug info
2138 * easier to read in some cases.)
2139 */
2140 case Instruction::MOVE_RESULT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002141 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002142 break;
2143 case Instruction::MOVE_RESULT_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002144 work_line_->CopyResultRegister2(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07002145 break;
2146 case Instruction::MOVE_RESULT_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002147 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002148 break;
2149
Ian Rogersd81871c2011-10-03 13:57:23 -07002150 case Instruction::MOVE_EXCEPTION: {
Sebastien Hertz270a0e12015-01-16 19:49:09 +01002151 // We do not allow MOVE_EXCEPTION as the first instruction in a method. This is a simple case
2152 // where one entrypoint to the catch block is not actually an exception path.
2153 if (work_insn_idx_ == 0) {
2154 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "move-exception at pc 0x0";
2155 break;
2156 }
jeffhaobdb76512011-09-07 11:43:16 -07002157 /*
jeffhao60f83e32012-02-13 17:16:30 -08002158 * This statement can only appear as the first instruction in an exception handler. We verify
2159 * that as part of extracting the exception type from the catch block list.
jeffhaobdb76512011-09-07 11:43:16 -07002160 */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002161 const RegType& res_type = GetCaughtExceptionType();
Andreas Gampead238ce2015-08-24 21:13:08 -07002162 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_11x(), res_type);
jeffhaobdb76512011-09-07 11:43:16 -07002163 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002164 }
jeffhaobdb76512011-09-07 11:43:16 -07002165 case Instruction::RETURN_VOID:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002166 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002167 if (!GetMethodReturnType().IsConflict()) {
jeffhaod5347e02012-03-22 17:25:05 -07002168 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002169 }
jeffhaobdb76512011-09-07 11:43:16 -07002170 }
2171 break;
2172 case Instruction::RETURN:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002173 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07002174 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002175 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002176 if (!return_type.IsCategory1Types()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002177 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected non-category 1 return type "
2178 << return_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002179 } else {
2180 // Compilers may generate synthetic functions that write byte values into boolean fields.
2181 // Also, it may use integer values for boolean, byte, short, and character return types.
Sebastien Hertz5243e912013-05-21 10:55:07 +02002182 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002183 const RegType& src_type = work_line_->GetRegisterType(this, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07002184 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) ||
2185 ((return_type.IsBoolean() || return_type.IsByte() ||
2186 return_type.IsShort() || return_type.IsChar()) &&
2187 src_type.IsInteger()));
2188 /* check the register contents */
Ian Rogersad0b3a32012-04-16 14:50:24 -07002189 bool success =
Ian Rogers7b078e82014-09-10 14:44:24 -07002190 work_line_->VerifyRegisterType(this, vregA, use_src ? src_type : return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002191 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002192 AppendToLastFailMessage(StringPrintf(" return-1nr on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07002193 }
jeffhaobdb76512011-09-07 11:43:16 -07002194 }
2195 }
2196 break;
2197 case Instruction::RETURN_WIDE:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002198 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07002199 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002200 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002201 if (!return_type.IsCategory2Types()) {
jeffhaod5347e02012-03-22 17:25:05 -07002202 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-wide not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002203 } else {
2204 /* check the register contents */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002205 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002206 bool success = work_line_->VerifyRegisterType(this, vregA, return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002207 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002208 AppendToLastFailMessage(StringPrintf(" return-wide on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07002209 }
jeffhaobdb76512011-09-07 11:43:16 -07002210 }
2211 }
2212 break;
2213 case Instruction::RETURN_OBJECT:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002214 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00002215 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002216 if (!return_type.IsReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002217 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002218 } else {
2219 /* return_type is the *expected* return type, not register value */
2220 DCHECK(!return_type.IsZero());
2221 DCHECK(!return_type.IsUninitializedReference());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002222 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002223 const RegType& reg_type = work_line_->GetRegisterType(this, vregA);
Andreas Gampea32210c2015-06-24 10:26:13 -07002224 // Disallow returning undefined, conflict & uninitialized values and verify that the
2225 // reference in vAA is an instance of the "return_type."
2226 if (reg_type.IsUndefined()) {
2227 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning undefined register";
2228 } else if (reg_type.IsConflict()) {
2229 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning register with conflict";
2230 } else if (reg_type.IsUninitializedTypes()) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00002231 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning uninitialized object '"
Brian Carlstrom93c33962013-07-26 10:37:43 -07002232 << reg_type << "'";
Andreas Gampea4c98f22015-11-06 16:24:49 -08002233 } else if (!reg_type.IsReferenceTypes()) {
2234 // We really do expect a reference here.
2235 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object returns a non-reference type "
2236 << reg_type;
David Brazdilca3c8c32016-09-06 14:04:48 +01002237 } else if (!return_type.IsAssignableFrom(reg_type, this)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07002238 if (reg_type.IsUnresolvedTypes() || return_type.IsUnresolvedTypes()) {
2239 Fail(VERIFY_ERROR_NO_CLASS) << " can't resolve returned type '" << return_type
2240 << "' or '" << reg_type << "'";
2241 } else {
Andreas Gampe16f149c2015-03-23 10:10:20 -07002242 bool soft_error = false;
2243 // Check whether arrays are involved. They will show a valid class status, even
2244 // if their components are erroneous.
2245 if (reg_type.IsArrayTypes() && return_type.IsArrayTypes()) {
David Brazdilca3c8c32016-09-06 14:04:48 +01002246 return_type.CanAssignArray(reg_type, reg_types_, class_loader_, this, &soft_error);
Andreas Gampe16f149c2015-03-23 10:10:20 -07002247 if (soft_error) {
2248 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "array with erroneous component type: "
2249 << reg_type << " vs " << return_type;
2250 }
2251 }
2252
2253 if (!soft_error) {
2254 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning '" << reg_type
2255 << "', but expected from declaration '" << return_type << "'";
2256 }
Jeff Haoa3faaf42013-09-03 19:07:00 -07002257 }
jeffhaobdb76512011-09-07 11:43:16 -07002258 }
2259 }
2260 }
2261 break;
2262
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002263 /* could be boolean, int, float, or a null reference */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002264 case Instruction::CONST_4: {
2265 int32_t val = static_cast<int32_t>(inst->VRegB_11n() << 28) >> 28;
Andreas Gampead238ce2015-08-24 21:13:08 -07002266 work_line_->SetRegisterType<LockOp::kClear>(
2267 this, inst->VRegA_11n(), DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002268 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02002269 }
2270 case Instruction::CONST_16: {
2271 int16_t val = static_cast<int16_t>(inst->VRegB_21s());
Andreas Gampead238ce2015-08-24 21:13:08 -07002272 work_line_->SetRegisterType<LockOp::kClear>(
2273 this, inst->VRegA_21s(), DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002274 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02002275 }
Sebastien Hertz849600b2013-12-20 10:28:08 +01002276 case Instruction::CONST: {
2277 int32_t val = inst->VRegB_31i();
Andreas Gampead238ce2015-08-24 21:13:08 -07002278 work_line_->SetRegisterType<LockOp::kClear>(
2279 this, inst->VRegA_31i(), DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07002280 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01002281 }
2282 case Instruction::CONST_HIGH16: {
2283 int32_t val = static_cast<int32_t>(inst->VRegB_21h() << 16);
Andreas Gampead238ce2015-08-24 21:13:08 -07002284 work_line_->SetRegisterType<LockOp::kClear>(
2285 this, inst->VRegA_21h(), DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07002286 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01002287 }
jeffhaobdb76512011-09-07 11:43:16 -07002288 /* could be long or double; resolved upon use */
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002289 case Instruction::CONST_WIDE_16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002290 int64_t val = static_cast<int16_t>(inst->VRegB_21s());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002291 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2292 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002293 work_line_->SetRegisterTypeWide(this, inst->VRegA_21s(), lo, hi);
jeffhaobdb76512011-09-07 11:43:16 -07002294 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002295 }
2296 case Instruction::CONST_WIDE_32: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002297 int64_t val = static_cast<int32_t>(inst->VRegB_31i());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002298 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2299 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002300 work_line_->SetRegisterTypeWide(this, inst->VRegA_31i(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002301 break;
2302 }
2303 case Instruction::CONST_WIDE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002304 int64_t val = inst->VRegB_51l();
Ian Rogersd8f69b02014-09-10 21:43:52 +00002305 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2306 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002307 work_line_->SetRegisterTypeWide(this, inst->VRegA_51l(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002308 break;
2309 }
2310 case Instruction::CONST_WIDE_HIGH16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002311 int64_t val = static_cast<uint64_t>(inst->VRegB_21h()) << 48;
Ian Rogersd8f69b02014-09-10 21:43:52 +00002312 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2313 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002314 work_line_->SetRegisterTypeWide(this, inst->VRegA_21h(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002315 break;
2316 }
jeffhaobdb76512011-09-07 11:43:16 -07002317 case Instruction::CONST_STRING:
Andreas Gampead238ce2015-08-24 21:13:08 -07002318 work_line_->SetRegisterType<LockOp::kClear>(
2319 this, inst->VRegA_21c(), reg_types_.JavaLangString());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002320 break;
jeffhaobdb76512011-09-07 11:43:16 -07002321 case Instruction::CONST_STRING_JUMBO:
Andreas Gampead238ce2015-08-24 21:13:08 -07002322 work_line_->SetRegisterType<LockOp::kClear>(
2323 this, inst->VRegA_31c(), reg_types_.JavaLangString());
jeffhaobdb76512011-09-07 11:43:16 -07002324 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002325 case Instruction::CONST_CLASS: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002326 // Get type from instruction if unresolved then we need an access check
2327 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Andreas Gampea5b09a62016-11-17 15:21:22 -08002328 const RegType& res_type = ResolveClassAndCheckAccess(dex::TypeIndex(inst->VRegB_21c()));
Ian Rogersad0b3a32012-04-16 14:50:24 -07002329 // Register holds class, ie its type is class, on error it will hold Conflict.
Andreas Gampead238ce2015-08-24 21:13:08 -07002330 work_line_->SetRegisterType<LockOp::kClear>(
2331 this, inst->VRegA_21c(), res_type.IsConflict() ? res_type
2332 : reg_types_.JavaLangClass());
jeffhaobdb76512011-09-07 11:43:16 -07002333 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002334 }
jeffhaobdb76512011-09-07 11:43:16 -07002335 case Instruction::MONITOR_ENTER:
Ian Rogers7b078e82014-09-10 14:44:24 -07002336 work_line_->PushMonitor(this, inst->VRegA_11x(), work_insn_idx_);
Andreas Gampec1474102015-08-18 08:57:44 -07002337 // Check whether the previous instruction is a move-object with vAA as a source, creating
2338 // untracked lock aliasing.
Mathieu Chartierde40d472015-10-15 17:47:48 -07002339 if (0 != work_insn_idx_ && !GetInstructionFlags(work_insn_idx_).IsBranchTarget()) {
Andreas Gampec1474102015-08-18 08:57:44 -07002340 uint32_t prev_idx = work_insn_idx_ - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002341 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) {
Andreas Gampec1474102015-08-18 08:57:44 -07002342 prev_idx--;
2343 }
2344 const Instruction* prev_inst = Instruction::At(code_item_->insns_ + prev_idx);
2345 switch (prev_inst->Opcode()) {
2346 case Instruction::MOVE_OBJECT:
2347 case Instruction::MOVE_OBJECT_16:
2348 case Instruction::MOVE_OBJECT_FROM16:
2349 if (prev_inst->VRegB() == inst->VRegA_11x()) {
2350 // Redo the copy. This won't change the register types, but update the lock status
2351 // for the aliased register.
2352 work_line_->CopyRegister1(this,
2353 prev_inst->VRegA(),
2354 prev_inst->VRegB(),
2355 kTypeCategoryRef);
2356 }
2357 break;
2358
2359 default: // Other instruction types ignored.
2360 break;
2361 }
2362 }
jeffhaobdb76512011-09-07 11:43:16 -07002363 break;
2364 case Instruction::MONITOR_EXIT:
2365 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002366 * monitor-exit instructions are odd. They can throw exceptions,
jeffhaobdb76512011-09-07 11:43:16 -07002367 * but when they do they act as if they succeeded and the PC is
jeffhaod1f0fde2011-09-08 17:25:33 -07002368 * pointing to the following instruction. (This behavior goes back
jeffhaobdb76512011-09-07 11:43:16 -07002369 * to the need to handle asynchronous exceptions, a now-deprecated
2370 * feature that Dalvik doesn't support.)
2371 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002372 * In practice we don't need to worry about this. The only
jeffhaobdb76512011-09-07 11:43:16 -07002373 * exceptions that can be thrown from monitor-exit are for a
jeffhaod1f0fde2011-09-08 17:25:33 -07002374 * null reference and -exit without a matching -enter. If the
jeffhaobdb76512011-09-07 11:43:16 -07002375 * structured locking checks are working, the former would have
2376 * failed on the -enter instruction, and the latter is impossible.
2377 *
2378 * This is fortunate, because issue 3221411 prevents us from
2379 * chasing the "can throw" path when monitor verification is
jeffhaod1f0fde2011-09-08 17:25:33 -07002380 * enabled. If we can fully verify the locking we can ignore
jeffhaobdb76512011-09-07 11:43:16 -07002381 * some catch blocks (which will show up as "dead" code when
2382 * we skip them here); if we can't, then the code path could be
2383 * "live" so we still need to check it.
2384 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002385 opcode_flags &= ~Instruction::kThrow;
Ian Rogers7b078e82014-09-10 14:44:24 -07002386 work_line_->PopMonitor(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07002387 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07002388 case Instruction::CHECK_CAST:
Ian Rogersd81871c2011-10-03 13:57:23 -07002389 case Instruction::INSTANCE_OF: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002390 /*
2391 * If this instruction succeeds, we will "downcast" register vA to the type in vB. (This
2392 * could be a "upcast" -- not expected, so we don't try to address it.)
2393 *
2394 * If it fails, an exception is thrown, which we deal with later by ignoring the update to
Elliott Hughesadb8c672012-03-06 16:49:32 -08002395 * dec_insn.vA when branching to a handler.
Ian Rogers28ad40d2011-10-27 15:19:26 -07002396 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002397 const bool is_checkcast = (inst->Opcode() == Instruction::CHECK_CAST);
Andreas Gampea5b09a62016-11-17 15:21:22 -08002398 const dex::TypeIndex type_idx((is_checkcast) ? inst->VRegB_21c() : inst->VRegC_22c());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002399 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002400 if (res_type.IsConflict()) {
Andreas Gampe00633eb2014-07-17 16:13:35 -07002401 // If this is a primitive type, fail HARD.
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002402 mirror::Class* klass = dex_cache_->GetResolvedType(type_idx);
Andreas Gampe00633eb2014-07-17 16:13:35 -07002403 if (klass != nullptr && klass->IsPrimitive()) {
2404 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "using primitive type "
2405 << dex_file_->StringByTypeIdx(type_idx) << " in instanceof in "
2406 << GetDeclaringClass();
2407 break;
2408 }
2409
Ian Rogersad0b3a32012-04-16 14:50:24 -07002410 DCHECK_NE(failures_.size(), 0U);
2411 if (!is_checkcast) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002412 work_line_->SetRegisterType<LockOp::kClear>(this,
2413 inst->VRegA_22c(),
2414 reg_types_.Boolean());
Ian Rogersad0b3a32012-04-16 14:50:24 -07002415 }
2416 break; // bad class
Ian Rogers9f1ab122011-12-12 08:52:43 -08002417 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002418 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Sebastien Hertz5243e912013-05-21 10:55:07 +02002419 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c();
Ian Rogers7b078e82014-09-10 14:44:24 -07002420 const RegType& orig_type = work_line_->GetRegisterType(this, orig_type_reg);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002421 if (!res_type.IsNonZeroReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002422 if (is_checkcast) {
2423 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on unexpected class " << res_type;
2424 } else {
2425 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on unexpected class " << res_type;
2426 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002427 } else if (!orig_type.IsReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002428 if (is_checkcast) {
2429 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on non-reference in v" << orig_type_reg;
2430 } else {
2431 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on non-reference in v" << orig_type_reg;
2432 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00002433 } else if (orig_type.IsUninitializedTypes()) {
2434 if (is_checkcast) {
2435 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on uninitialized reference in v"
2436 << orig_type_reg;
2437 } else {
2438 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on uninitialized reference in v"
2439 << orig_type_reg;
2440 }
jeffhao2a8a90e2011-09-26 14:25:31 -07002441 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002442 if (is_checkcast) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002443 work_line_->SetRegisterType<LockOp::kKeep>(this, inst->VRegA_21c(), res_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002444 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07002445 work_line_->SetRegisterType<LockOp::kClear>(this,
2446 inst->VRegA_22c(),
2447 reg_types_.Boolean());
jeffhaobdb76512011-09-07 11:43:16 -07002448 }
jeffhaobdb76512011-09-07 11:43:16 -07002449 }
jeffhao2a8a90e2011-09-26 14:25:31 -07002450 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002451 }
2452 case Instruction::ARRAY_LENGTH: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002453 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegB_12x());
Ian Rogers28ad40d2011-10-27 15:19:26 -07002454 if (res_type.IsReferenceTypes()) {
Ian Rogers89310de2012-02-01 13:47:30 -08002455 if (!res_type.IsArrayTypes() && !res_type.IsZero()) { // ie not an array or null
jeffhaod5347e02012-03-22 17:25:05 -07002456 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002457 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07002458 work_line_->SetRegisterType<LockOp::kClear>(this,
2459 inst->VRegA_12x(),
2460 reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07002461 }
Andreas Gampe65c9db82014-07-28 13:14:34 -07002462 } else {
2463 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002464 }
2465 break;
2466 }
2467 case Instruction::NEW_INSTANCE: {
Andreas Gampea5b09a62016-11-17 15:21:22 -08002468 const RegType& res_type = ResolveClassAndCheckAccess(dex::TypeIndex(inst->VRegB_21c()));
Ian Rogersad0b3a32012-04-16 14:50:24 -07002469 if (res_type.IsConflict()) {
2470 DCHECK_NE(failures_.size(), 0U);
2471 break; // bad class
jeffhao8cd6dda2012-02-22 10:15:34 -08002472 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002473 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
2474 // can't create an instance of an interface or abstract class */
2475 if (!res_type.IsInstantiableTypes()) {
2476 Fail(VERIFY_ERROR_INSTANTIATION)
2477 << "new-instance on primitive, interface or abstract class" << res_type;
Ian Rogers08f753d2012-08-24 14:35:25 -07002478 // Soft failure so carry on to set register type.
Ian Rogersd81871c2011-10-03 13:57:23 -07002479 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00002480 const RegType& uninit_type = reg_types_.Uninitialized(res_type, work_insn_idx_);
Ian Rogers08f753d2012-08-24 14:35:25 -07002481 // Any registers holding previous allocations from this address that have not yet been
2482 // initialized must be marked invalid.
Ian Rogers7b078e82014-09-10 14:44:24 -07002483 work_line_->MarkUninitRefsAsInvalid(this, uninit_type);
Ian Rogers08f753d2012-08-24 14:35:25 -07002484 // add the new uninitialized reference to the register state
Andreas Gampead238ce2015-08-24 21:13:08 -07002485 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_21c(), uninit_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002486 break;
2487 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08002488 case Instruction::NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002489 VerifyNewArray(inst, false, false);
jeffhaobdb76512011-09-07 11:43:16 -07002490 break;
2491 case Instruction::FILLED_NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002492 VerifyNewArray(inst, true, false);
Ian Rogers0c4a5062012-02-03 15:18:59 -08002493 just_set_result = true; // Filled new array sets result register
jeffhaobdb76512011-09-07 11:43:16 -07002494 break;
Ian Rogers0c4a5062012-02-03 15:18:59 -08002495 case Instruction::FILLED_NEW_ARRAY_RANGE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002496 VerifyNewArray(inst, true, true);
Ian Rogers0c4a5062012-02-03 15:18:59 -08002497 just_set_result = true; // Filled new array range sets result register
2498 break;
jeffhaobdb76512011-09-07 11:43:16 -07002499 case Instruction::CMPL_FLOAT:
2500 case Instruction::CMPG_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002501 if (!work_line_->VerifyRegisterType(this, inst->VRegB_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08002502 break;
2503 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002504 if (!work_line_->VerifyRegisterType(this, inst->VRegC_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08002505 break;
2506 }
Andreas Gampead238ce2015-08-24 21:13:08 -07002507 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002508 break;
2509 case Instruction::CMPL_DOUBLE:
2510 case Instruction::CMPG_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002511 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegB_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002512 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002513 break;
2514 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002515 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002516 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002517 break;
2518 }
Andreas Gampead238ce2015-08-24 21:13:08 -07002519 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002520 break;
2521 case Instruction::CMP_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07002522 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegB_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002523 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002524 break;
2525 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002526 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002527 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002528 break;
2529 }
Andreas Gampead238ce2015-08-24 21:13:08 -07002530 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002531 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002532 case Instruction::THROW: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002533 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegA_11x());
David Brazdilca3c8c32016-09-06 14:04:48 +01002534 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(res_type, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00002535 if (res_type.IsUninitializedTypes()) {
2536 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "thrown exception not initialized";
Pavel Vyssotski980027c2016-02-11 20:28:11 +06002537 } else if (!res_type.IsReferenceTypes()) {
2538 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "thrown value of non-reference type " << res_type;
David Brazdil68b5c0b2016-01-19 14:25:29 +00002539 } else {
2540 Fail(res_type.IsUnresolvedTypes() ? VERIFY_ERROR_NO_CLASS : VERIFY_ERROR_BAD_CLASS_SOFT)
2541 << "thrown class " << res_type << " not instanceof Throwable";
2542 }
jeffhaobdb76512011-09-07 11:43:16 -07002543 }
2544 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002545 }
jeffhaobdb76512011-09-07 11:43:16 -07002546 case Instruction::GOTO:
2547 case Instruction::GOTO_16:
2548 case Instruction::GOTO_32:
2549 /* no effect on or use of registers */
2550 break;
2551
2552 case Instruction::PACKED_SWITCH:
2553 case Instruction::SPARSE_SWITCH:
2554 /* verify that vAA is an integer, or can be converted to one */
Ian Rogers7b078e82014-09-10 14:44:24 -07002555 work_line_->VerifyRegisterType(this, inst->VRegA_31t(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002556 break;
2557
Ian Rogersd81871c2011-10-03 13:57:23 -07002558 case Instruction::FILL_ARRAY_DATA: {
2559 /* Similar to the verification done for APUT */
Ian Rogers7b078e82014-09-10 14:44:24 -07002560 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t());
Ian Rogers89310de2012-02-01 13:47:30 -08002561 /* array_type can be null if the reg type is Zero */
2562 if (!array_type.IsZero()) {
jeffhao457cc512012-02-02 16:55:13 -08002563 if (!array_type.IsArrayTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002564 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with array type "
2565 << array_type;
Andreas Gampebb18a032016-03-22 20:34:25 -07002566 } else if (array_type.IsUnresolvedTypes()) {
2567 // If it's an unresolved array type, it must be non-primitive.
2568 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data for array of type "
2569 << array_type;
Ian Rogers89310de2012-02-01 13:47:30 -08002570 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00002571 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
Ian Rogersad0b3a32012-04-16 14:50:24 -07002572 DCHECK(!component_type.IsConflict());
jeffhao457cc512012-02-02 16:55:13 -08002573 if (component_type.IsNonZeroReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002574 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with component type "
2575 << component_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002576 } else {
jeffhao457cc512012-02-02 16:55:13 -08002577 // Now verify if the element width in the table matches the element width declared in
2578 // the array
Andreas Gampe53de99c2015-08-17 13:43:55 -07002579 const uint16_t* array_data =
2580 insns + (insns[1] | (static_cast<int32_t>(insns[2]) << 16));
jeffhao457cc512012-02-02 16:55:13 -08002581 if (array_data[0] != Instruction::kArrayDataSignature) {
jeffhaod5347e02012-03-22 17:25:05 -07002582 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid magic for array-data";
jeffhao457cc512012-02-02 16:55:13 -08002583 } else {
2584 size_t elem_width = Primitive::ComponentSize(component_type.GetPrimitiveType());
2585 // Since we don't compress the data in Dex, expect to see equal width of data stored
2586 // in the table and expected from the array class.
2587 if (array_data[1] != elem_width) {
jeffhaod5347e02012-03-22 17:25:05 -07002588 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-data size mismatch (" << array_data[1]
2589 << " vs " << elem_width << ")";
jeffhao457cc512012-02-02 16:55:13 -08002590 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002591 }
2592 }
jeffhaobdb76512011-09-07 11:43:16 -07002593 }
2594 }
2595 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002596 }
jeffhaobdb76512011-09-07 11:43:16 -07002597 case Instruction::IF_EQ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002598 case Instruction::IF_NE: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002599 const RegType& reg_type1 = work_line_->GetRegisterType(this, inst->VRegA_22t());
2600 const RegType& reg_type2 = work_line_->GetRegisterType(this, inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002601 bool mismatch = false;
2602 if (reg_type1.IsZero()) { // zero then integral or reference expected
2603 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes();
2604 } else if (reg_type1.IsReferenceTypes()) { // both references?
2605 mismatch = !reg_type2.IsReferenceTypes();
2606 } else { // both integral?
2607 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes();
2608 }
2609 if (mismatch) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002610 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to if-eq/if-ne (" << reg_type1 << ","
2611 << reg_type2 << ") must both be references or integral";
jeffhaobdb76512011-09-07 11:43:16 -07002612 }
2613 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002614 }
jeffhaobdb76512011-09-07 11:43:16 -07002615 case Instruction::IF_LT:
2616 case Instruction::IF_GE:
2617 case Instruction::IF_GT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002618 case Instruction::IF_LE: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002619 const RegType& reg_type1 = work_line_->GetRegisterType(this, inst->VRegA_22t());
2620 const RegType& reg_type2 = work_line_->GetRegisterType(this, inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002621 if (!reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002622 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to 'if' (" << reg_type1 << ","
2623 << reg_type2 << ") must be integral";
jeffhaobdb76512011-09-07 11:43:16 -07002624 }
2625 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002626 }
jeffhaobdb76512011-09-07 11:43:16 -07002627 case Instruction::IF_EQZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002628 case Instruction::IF_NEZ: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002629 const RegType& reg_type = work_line_->GetRegisterType(this, inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002630 if (!reg_type.IsReferenceTypes() && !reg_type.IsIntegralTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002631 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
2632 << " unexpected as arg to if-eqz/if-nez";
Ian Rogersd81871c2011-10-03 13:57:23 -07002633 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002634
2635 // Find previous instruction - its existence is a precondition to peephole optimization.
Ian Rogers9b360392013-06-06 14:45:07 -07002636 uint32_t instance_of_idx = 0;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002637 if (0 != work_insn_idx_) {
Ian Rogers9b360392013-06-06 14:45:07 -07002638 instance_of_idx = work_insn_idx_ - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002639 while (0 != instance_of_idx && !GetInstructionFlags(instance_of_idx).IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07002640 instance_of_idx--;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002641 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07002642 if (FailOrAbort(this, GetInstructionFlags(instance_of_idx).IsOpcode(),
Andreas Gampe7c038102014-10-27 20:08:46 -07002643 "Unable to get previous instruction of if-eqz/if-nez for work index ",
2644 work_insn_idx_)) {
2645 break;
2646 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002647 } else {
2648 break;
2649 }
2650
Ian Rogers9b360392013-06-06 14:45:07 -07002651 const Instruction* instance_of_inst = Instruction::At(code_item_->insns_ + instance_of_idx);
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002652
2653 /* Check for peep-hole pattern of:
2654 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002655 * instance-of vX, vY, T;
2656 * ifXXX vX, label ;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002657 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002658 * label:
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002659 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002660 * and sharpen the type of vY to be type T.
2661 * Note, this pattern can't be if:
2662 * - if there are other branches to this branch,
2663 * - when vX == vY.
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002664 */
Ian Rogersfae370a2013-06-05 08:33:27 -07002665 if (!CurrentInsnFlags()->IsBranchTarget() &&
Ian Rogers9b360392013-06-06 14:45:07 -07002666 (Instruction::INSTANCE_OF == instance_of_inst->Opcode()) &&
2667 (inst->VRegA_21t() == instance_of_inst->VRegA_22c()) &&
2668 (instance_of_inst->VRegA_22c() != instance_of_inst->VRegB_22c())) {
Ian Rogersebbdd872014-07-07 23:53:08 -07002669 // Check the type of the instance-of is different than that of registers type, as if they
2670 // are the same there is no work to be done here. Check that the conversion is not to or
2671 // from an unresolved type as type information is imprecise. If the instance-of is to an
2672 // interface then ignore the type information as interfaces can only be treated as Objects
2673 // and we don't want to disallow field and other operations on the object. If the value
2674 // being instance-of checked against is known null (zero) then allow the optimization as
2675 // we didn't have type information. If the merge of the instance-of type with the original
2676 // type is assignable to the original then allow optimization. This check is performed to
2677 // ensure that subsequent merges don't lose type information - such as becoming an
2678 // interface from a class that would lose information relevant to field checks.
Ian Rogers7b078e82014-09-10 14:44:24 -07002679 const RegType& orig_type = work_line_->GetRegisterType(this, instance_of_inst->VRegB_22c());
Andreas Gampea5b09a62016-11-17 15:21:22 -08002680 const RegType& cast_type = ResolveClassAndCheckAccess(
2681 dex::TypeIndex(instance_of_inst->VRegC_22c()));
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002682
Ian Rogersebbdd872014-07-07 23:53:08 -07002683 if (!orig_type.Equals(cast_type) &&
2684 !cast_type.IsUnresolvedTypes() && !orig_type.IsUnresolvedTypes() &&
Andreas Gampe00633eb2014-07-17 16:13:35 -07002685 cast_type.HasClass() && // Could be conflict type, make sure it has a class.
Ian Rogersebbdd872014-07-07 23:53:08 -07002686 !cast_type.GetClass()->IsInterface() &&
2687 (orig_type.IsZero() ||
David Brazdilca3c8c32016-09-06 14:04:48 +01002688 orig_type.IsStrictlyAssignableFrom(
2689 cast_type.Merge(orig_type, &reg_types_, this), this))) {
Ian Rogersd0fbd852013-09-24 18:17:04 -07002690 RegisterLine* update_line = RegisterLine::Create(code_item_->registers_size_, this);
Ian Rogersfae370a2013-06-05 08:33:27 -07002691 if (inst->Opcode() == Instruction::IF_EQZ) {
Ian Rogers9b360392013-06-06 14:45:07 -07002692 fallthrough_line.reset(update_line);
Ian Rogersfae370a2013-06-05 08:33:27 -07002693 } else {
Ian Rogers9b360392013-06-06 14:45:07 -07002694 branch_line.reset(update_line);
2695 }
2696 update_line->CopyFromLine(work_line_.get());
Andreas Gampead238ce2015-08-24 21:13:08 -07002697 update_line->SetRegisterType<LockOp::kKeep>(this,
2698 instance_of_inst->VRegB_22c(),
2699 cast_type);
Mathieu Chartierde40d472015-10-15 17:47:48 -07002700 if (!GetInstructionFlags(instance_of_idx).IsBranchTarget() && 0 != instance_of_idx) {
Ian Rogers9b360392013-06-06 14:45:07 -07002701 // See if instance-of was preceded by a move-object operation, common due to the small
2702 // register encoding space of instance-of, and propagate type information to the source
2703 // of the move-object.
2704 uint32_t move_idx = instance_of_idx - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002705 while (0 != move_idx && !GetInstructionFlags(move_idx).IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07002706 move_idx--;
2707 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07002708 if (FailOrAbort(this, GetInstructionFlags(move_idx).IsOpcode(),
Andreas Gampe7c038102014-10-27 20:08:46 -07002709 "Unable to get previous instruction of if-eqz/if-nez for work index ",
2710 work_insn_idx_)) {
2711 break;
2712 }
Ian Rogers9b360392013-06-06 14:45:07 -07002713 const Instruction* move_inst = Instruction::At(code_item_->insns_ + move_idx);
2714 switch (move_inst->Opcode()) {
2715 case Instruction::MOVE_OBJECT:
2716 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002717 update_line->SetRegisterType<LockOp::kKeep>(this,
2718 move_inst->VRegB_12x(),
2719 cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002720 }
2721 break;
2722 case Instruction::MOVE_OBJECT_FROM16:
2723 if (move_inst->VRegA_22x() == instance_of_inst->VRegB_22c()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002724 update_line->SetRegisterType<LockOp::kKeep>(this,
2725 move_inst->VRegB_22x(),
2726 cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002727 }
2728 break;
2729 case Instruction::MOVE_OBJECT_16:
2730 if (move_inst->VRegA_32x() == instance_of_inst->VRegB_22c()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002731 update_line->SetRegisterType<LockOp::kKeep>(this,
2732 move_inst->VRegB_32x(),
2733 cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002734 }
2735 break;
2736 default:
2737 break;
2738 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002739 }
2740 }
2741 }
2742
jeffhaobdb76512011-09-07 11:43:16 -07002743 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002744 }
jeffhaobdb76512011-09-07 11:43:16 -07002745 case Instruction::IF_LTZ:
2746 case Instruction::IF_GEZ:
2747 case Instruction::IF_GTZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002748 case Instruction::IF_LEZ: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002749 const RegType& reg_type = work_line_->GetRegisterType(this, inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002750 if (!reg_type.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002751 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
2752 << " unexpected as arg to if-ltz/if-gez/if-gtz/if-lez";
Ian Rogersd81871c2011-10-03 13:57:23 -07002753 }
jeffhaobdb76512011-09-07 11:43:16 -07002754 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002755 }
jeffhaobdb76512011-09-07 11:43:16 -07002756 case Instruction::AGET_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002757 VerifyAGet(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002758 break;
jeffhaobdb76512011-09-07 11:43:16 -07002759 case Instruction::AGET_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002760 VerifyAGet(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002761 break;
jeffhaobdb76512011-09-07 11:43:16 -07002762 case Instruction::AGET_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002763 VerifyAGet(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002764 break;
jeffhaobdb76512011-09-07 11:43:16 -07002765 case Instruction::AGET_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002766 VerifyAGet(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002767 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002768 case Instruction::AGET:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002769 VerifyAGet(inst, reg_types_.Integer(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002770 break;
jeffhaobdb76512011-09-07 11:43:16 -07002771 case Instruction::AGET_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002772 VerifyAGet(inst, reg_types_.LongLo(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002773 break;
2774 case Instruction::AGET_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002775 VerifyAGet(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002776 break;
2777
Ian Rogersd81871c2011-10-03 13:57:23 -07002778 case Instruction::APUT_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002779 VerifyAPut(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002780 break;
2781 case Instruction::APUT_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002782 VerifyAPut(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002783 break;
2784 case Instruction::APUT_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002785 VerifyAPut(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002786 break;
2787 case Instruction::APUT_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002788 VerifyAPut(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002789 break;
2790 case Instruction::APUT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002791 VerifyAPut(inst, reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002792 break;
2793 case Instruction::APUT_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002794 VerifyAPut(inst, reg_types_.LongLo(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002795 break;
2796 case Instruction::APUT_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002797 VerifyAPut(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002798 break;
2799
jeffhaobdb76512011-09-07 11:43:16 -07002800 case Instruction::IGET_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002801 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002802 break;
jeffhaobdb76512011-09-07 11:43:16 -07002803 case Instruction::IGET_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002804 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002805 break;
jeffhaobdb76512011-09-07 11:43:16 -07002806 case Instruction::IGET_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002807 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002808 break;
jeffhaobdb76512011-09-07 11:43:16 -07002809 case Instruction::IGET_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002810 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002811 break;
2812 case Instruction::IGET:
Andreas Gampe896df402014-10-20 22:25:29 -07002813 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002814 break;
2815 case Instruction::IGET_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002816 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002817 break;
2818 case Instruction::IGET_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002819 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false,
2820 false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002821 break;
jeffhaobdb76512011-09-07 11:43:16 -07002822
Ian Rogersd81871c2011-10-03 13:57:23 -07002823 case Instruction::IPUT_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002824 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002825 break;
2826 case Instruction::IPUT_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002827 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002828 break;
2829 case Instruction::IPUT_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002830 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002831 break;
2832 case Instruction::IPUT_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002833 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002834 break;
2835 case Instruction::IPUT:
Andreas Gampe896df402014-10-20 22:25:29 -07002836 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002837 break;
2838 case Instruction::IPUT_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002839 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002840 break;
jeffhaobdb76512011-09-07 11:43:16 -07002841 case Instruction::IPUT_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002842 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false,
2843 false);
jeffhaobdb76512011-09-07 11:43:16 -07002844 break;
2845
jeffhaobdb76512011-09-07 11:43:16 -07002846 case Instruction::SGET_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002847 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002848 break;
jeffhaobdb76512011-09-07 11:43:16 -07002849 case Instruction::SGET_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002850 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002851 break;
jeffhaobdb76512011-09-07 11:43:16 -07002852 case Instruction::SGET_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002853 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002854 break;
jeffhaobdb76512011-09-07 11:43:16 -07002855 case Instruction::SGET_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002856 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002857 break;
2858 case Instruction::SGET:
Andreas Gampe896df402014-10-20 22:25:29 -07002859 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002860 break;
2861 case Instruction::SGET_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002862 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002863 break;
2864 case Instruction::SGET_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002865 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false,
2866 true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002867 break;
2868
2869 case Instruction::SPUT_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002870 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002871 break;
2872 case Instruction::SPUT_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002873 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002874 break;
2875 case Instruction::SPUT_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002876 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002877 break;
2878 case Instruction::SPUT_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002879 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002880 break;
2881 case Instruction::SPUT:
Andreas Gampe896df402014-10-20 22:25:29 -07002882 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002883 break;
2884 case Instruction::SPUT_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002885 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002886 break;
2887 case Instruction::SPUT_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002888 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false,
2889 true);
jeffhaobdb76512011-09-07 11:43:16 -07002890 break;
2891
2892 case Instruction::INVOKE_VIRTUAL:
2893 case Instruction::INVOKE_VIRTUAL_RANGE:
2894 case Instruction::INVOKE_SUPER:
Ian Rogersd81871c2011-10-03 13:57:23 -07002895 case Instruction::INVOKE_SUPER_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002896 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE ||
2897 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002898 bool is_super = (inst->Opcode() == Instruction::INVOKE_SUPER ||
2899 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08002900 MethodType type = is_super ? METHOD_SUPER : METHOD_VIRTUAL;
2901 ArtMethod* called_method = VerifyInvocationArgs(inst, type, is_range);
Ian Rogersd8f69b02014-09-10 21:43:52 +00002902 const RegType* return_type = nullptr;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002903 if (called_method != nullptr) {
Vladimir Marko942fd312017-01-16 20:52:19 +00002904 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002905 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07002906 return_type = &FromClass(called_method->GetReturnTypeDescriptor(),
2907 return_type_class,
2908 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002909 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002910 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2911 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002912 }
2913 }
2914 if (return_type == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002915 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002916 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Andreas Gampea5b09a62016-11-17 15:21:22 -08002917 dex::TypeIndex return_type_idx =
2918 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002919 const char* descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002920 return_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
jeffhaobdb76512011-09-07 11:43:16 -07002921 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002922 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002923 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002924 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002925 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002926 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002927 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07002928 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002929 }
jeffhaobdb76512011-09-07 11:43:16 -07002930 case Instruction::INVOKE_DIRECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002931 case Instruction::INVOKE_DIRECT_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002932 bool is_range = (inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08002933 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range);
Ian Rogers46685432012-06-03 22:26:43 -07002934 const char* return_type_descriptor;
2935 bool is_constructor;
Ian Rogersd8f69b02014-09-10 21:43:52 +00002936 const RegType* return_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07002937 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002938 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers46685432012-06-03 22:26:43 -07002939 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002940 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0;
Andreas Gampea5b09a62016-11-17 15:21:22 -08002941 dex::TypeIndex return_type_idx =
2942 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogers46685432012-06-03 22:26:43 -07002943 return_type_descriptor = dex_file_->StringByTypeIdx(return_type_idx);
2944 } else {
2945 is_constructor = called_method->IsConstructor();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002946 return_type_descriptor = called_method->GetReturnTypeDescriptor();
Vladimir Marko942fd312017-01-16 20:52:19 +00002947 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002948 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07002949 return_type = &FromClass(return_type_descriptor,
2950 return_type_class,
2951 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogers1ff3c982014-08-12 02:30:58 -07002952 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002953 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2954 self_->ClearException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002955 }
Ian Rogers46685432012-06-03 22:26:43 -07002956 }
2957 if (is_constructor) {
jeffhaobdb76512011-09-07 11:43:16 -07002958 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002959 * Some additional checks when calling a constructor. We know from the invocation arg check
2960 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2961 * that to require that called_method->klass is the same as this->klass or this->super,
2962 * allowing the latter only if the "this" argument is the same as the "this" argument to
2963 * this method (which implies that we're in a constructor ourselves).
jeffhaobdb76512011-09-07 11:43:16 -07002964 */
Orion Hodsoncfa325e2016-10-13 10:25:54 +01002965 const RegType& this_type = work_line_->GetInvocationThis(this, inst);
jeffhaob57e9522012-04-26 18:08:21 -07002966 if (this_type.IsConflict()) // failure.
2967 break;
jeffhaobdb76512011-09-07 11:43:16 -07002968
jeffhaob57e9522012-04-26 18:08:21 -07002969 /* no null refs allowed (?) */
2970 if (this_type.IsZero()) {
2971 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unable to initialize null ref";
2972 break;
jeffhao2a8a90e2011-09-26 14:25:31 -07002973 }
jeffhaob57e9522012-04-26 18:08:21 -07002974
2975 /* must be in same class or in superclass */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002976 // const RegType& this_super_klass = this_type.GetSuperClass(&reg_types_);
Ian Rogers46685432012-06-03 22:26:43 -07002977 // TODO: re-enable constructor type verification
2978 // if (this_super_klass.IsConflict()) {
jeffhaob57e9522012-04-26 18:08:21 -07002979 // Unknown super class, fail so we re-check at runtime.
Ian Rogers46685432012-06-03 22:26:43 -07002980 // Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "super class unknown for '" << this_type << "'";
2981 // break;
2982 // }
jeffhaob57e9522012-04-26 18:08:21 -07002983
2984 /* arg must be an uninitialized reference */
2985 if (!this_type.IsUninitializedTypes()) {
2986 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Expected initialization on uninitialized reference "
2987 << this_type;
2988 break;
2989 }
2990
2991 /*
2992 * Replace the uninitialized reference with an initialized one. We need to do this for all
2993 * registers that have the same object instance in them, not just the "this" register.
2994 */
Nicolas Geoffray98e6ce42016-02-16 18:42:15 +00002995 work_line_->MarkRefsAsInitialized(this, this_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002996 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07002997 if (return_type == nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07002998 return_type = &reg_types_.FromDescriptor(GetClassLoader(), return_type_descriptor, false);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002999 }
3000 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003001 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003002 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -07003003 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003004 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003005 just_set_result = true;
3006 break;
3007 }
3008 case Instruction::INVOKE_STATIC:
3009 case Instruction::INVOKE_STATIC_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003010 bool is_range = (inst->Opcode() == Instruction::INVOKE_STATIC_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08003011 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range);
Ian Rogers28ad40d2011-10-27 15:19:26 -07003012 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07003013 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003014 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers28ad40d2011-10-27 15:19:26 -07003015 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Andreas Gampea5b09a62016-11-17 15:21:22 -08003016 dex::TypeIndex return_type_idx =
3017 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07003018 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07003019 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003020 descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07003021 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003022 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003023 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003024 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003025 } else {
3026 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3027 }
jeffhaobdb76512011-09-07 11:43:16 -07003028 just_set_result = true;
3029 }
3030 break;
jeffhaobdb76512011-09-07 11:43:16 -07003031 case Instruction::INVOKE_INTERFACE:
Ian Rogersd81871c2011-10-03 13:57:23 -07003032 case Instruction::INVOKE_INTERFACE_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003033 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08003034 ArtMethod* abs_method = VerifyInvocationArgs(inst, METHOD_INTERFACE, is_range);
Ian Rogers7b078e82014-09-10 14:44:24 -07003035 if (abs_method != nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003036 mirror::Class* called_interface = abs_method->GetDeclaringClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003037 if (!called_interface->IsInterface() && !called_interface->IsObjectClass()) {
3038 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected interface class in invoke-interface '"
David Sehr709b0702016-10-13 09:12:37 -07003039 << abs_method->PrettyMethod() << "'";
Ian Rogersad0b3a32012-04-16 14:50:24 -07003040 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07003041 }
Ian Rogers0d604842012-04-16 14:50:24 -07003042 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003043 /* Get the type of the "this" arg, which should either be a sub-interface of called
3044 * interface or Object (see comments in RegType::JoinClass).
3045 */
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003046 const RegType& this_type = work_line_->GetInvocationThis(this, inst);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003047 if (this_type.IsZero()) {
3048 /* null pointer always passes (and always fails at runtime) */
3049 } else {
3050 if (this_type.IsUninitializedTypes()) {
3051 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface call on uninitialized object "
3052 << this_type;
3053 break;
3054 }
3055 // In the past we have tried to assert that "called_interface" is assignable
3056 // from "this_type.GetClass()", however, as we do an imprecise Join
3057 // (RegType::JoinClass) we don't have full information on what interfaces are
3058 // implemented by "this_type". For example, two classes may implement the same
3059 // interfaces and have a common parent that doesn't implement the interface. The
3060 // join will set "this_type" to the parent class and a test that this implements
3061 // the interface will incorrectly fail.
3062 }
3063 /*
3064 * We don't have an object instance, so we can't find the concrete method. However, all of
3065 * the type information is in the abstract method, so we're good.
3066 */
3067 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07003068 if (abs_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003069 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003070 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Andreas Gampea5b09a62016-11-17 15:21:22 -08003071 dex::TypeIndex return_type_idx =
3072 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartierde40d472015-10-15 17:47:48 -07003073 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003074 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003075 descriptor = abs_method->GetReturnTypeDescriptor();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003076 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003077 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003078 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003079 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003080 } else {
3081 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3082 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003083 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07003084 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07003085 }
Narayan Kamath9823e782016-08-03 12:46:58 +01003086 case Instruction::INVOKE_POLYMORPHIC:
3087 case Instruction::INVOKE_POLYMORPHIC_RANGE: {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003088 bool is_range = (inst->Opcode() == Instruction::INVOKE_POLYMORPHIC_RANGE);
3089 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_POLYMORPHIC, is_range);
3090 if (called_method == nullptr) {
3091 // Convert potential soft failures in VerifyInvocationArgs() to hard errors.
3092 if (failure_messages_.size() > 0) {
3093 std::string message = failure_messages_.back()->str();
3094 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << message;
3095 } else {
3096 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-polymorphic verification failure.";
3097 }
3098 break;
3099 }
3100 if (!CheckSignaturePolymorphicMethod(called_method) ||
3101 !CheckSignaturePolymorphicReceiver(inst)) {
3102 break;
3103 }
3104 const uint32_t proto_idx = (is_range) ? inst->VRegH_4rcc() : inst->VRegH_45cc();
Orion Hodsonac141392017-01-13 11:53:47 +00003105 const char* return_descriptor =
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003106 dex_file_->GetReturnTypeDescriptor(dex_file_->GetProtoId(proto_idx));
3107 const RegType& return_type =
Orion Hodsonac141392017-01-13 11:53:47 +00003108 reg_types_.FromDescriptor(GetClassLoader(), return_descriptor, false);
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003109 if (!return_type.IsLowHalf()) {
3110 work_line_->SetResultRegisterType(this, return_type);
3111 } else {
3112 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3113 }
Orion Hodsonac141392017-01-13 11:53:47 +00003114 just_set_result = true;
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003115 break;
Narayan Kamath9823e782016-08-03 12:46:58 +01003116 }
jeffhaobdb76512011-09-07 11:43:16 -07003117 case Instruction::NEG_INT:
3118 case Instruction::NOT_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003119 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003120 break;
3121 case Instruction::NEG_LONG:
3122 case Instruction::NOT_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003123 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003124 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003125 break;
3126 case Instruction::NEG_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003127 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003128 break;
3129 case Instruction::NEG_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003130 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003131 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003132 break;
3133 case Instruction::INT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003134 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003135 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003136 break;
3137 case Instruction::INT_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003138 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003139 break;
3140 case Instruction::INT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003141 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003142 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003143 break;
3144 case Instruction::LONG_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003145 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003146 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003147 break;
3148 case Instruction::LONG_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003149 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003150 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003151 break;
3152 case Instruction::LONG_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003153 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003154 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003155 break;
3156 case Instruction::FLOAT_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003157 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003158 break;
3159 case Instruction::FLOAT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003160 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003161 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003162 break;
3163 case Instruction::FLOAT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003164 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003165 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003166 break;
3167 case Instruction::DOUBLE_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003168 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003169 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003170 break;
3171 case Instruction::DOUBLE_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003172 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003173 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003174 break;
3175 case Instruction::DOUBLE_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003176 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003177 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003178 break;
3179 case Instruction::INT_TO_BYTE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003180 work_line_->CheckUnaryOp(this, inst, reg_types_.Byte(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003181 break;
3182 case Instruction::INT_TO_CHAR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003183 work_line_->CheckUnaryOp(this, inst, reg_types_.Char(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003184 break;
3185 case Instruction::INT_TO_SHORT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003186 work_line_->CheckUnaryOp(this, inst, reg_types_.Short(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003187 break;
3188
3189 case Instruction::ADD_INT:
3190 case Instruction::SUB_INT:
3191 case Instruction::MUL_INT:
3192 case Instruction::REM_INT:
3193 case Instruction::DIV_INT:
3194 case Instruction::SHL_INT:
3195 case Instruction::SHR_INT:
3196 case Instruction::USHR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003197 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003198 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003199 break;
3200 case Instruction::AND_INT:
3201 case Instruction::OR_INT:
3202 case Instruction::XOR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003203 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003204 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07003205 break;
3206 case Instruction::ADD_LONG:
3207 case Instruction::SUB_LONG:
3208 case Instruction::MUL_LONG:
3209 case Instruction::DIV_LONG:
3210 case Instruction::REM_LONG:
3211 case Instruction::AND_LONG:
3212 case Instruction::OR_LONG:
3213 case Instruction::XOR_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003214 work_line_->CheckBinaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003215 reg_types_.LongLo(), reg_types_.LongHi(),
3216 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003217 break;
3218 case Instruction::SHL_LONG:
3219 case Instruction::SHR_LONG:
3220 case Instruction::USHR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07003221 /* shift distance is Int, making these different from other binary operations */
Ian Rogers7b078e82014-09-10 14:44:24 -07003222 work_line_->CheckBinaryOpWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003223 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003224 break;
3225 case Instruction::ADD_FLOAT:
3226 case Instruction::SUB_FLOAT:
3227 case Instruction::MUL_FLOAT:
3228 case Instruction::DIV_FLOAT:
3229 case Instruction::REM_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003230 work_line_->CheckBinaryOp(this, inst, reg_types_.Float(), reg_types_.Float(),
3231 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003232 break;
3233 case Instruction::ADD_DOUBLE:
3234 case Instruction::SUB_DOUBLE:
3235 case Instruction::MUL_DOUBLE:
3236 case Instruction::DIV_DOUBLE:
3237 case Instruction::REM_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003238 work_line_->CheckBinaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003239 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
3240 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003241 break;
3242 case Instruction::ADD_INT_2ADDR:
3243 case Instruction::SUB_INT_2ADDR:
3244 case Instruction::MUL_INT_2ADDR:
3245 case Instruction::REM_INT_2ADDR:
3246 case Instruction::SHL_INT_2ADDR:
3247 case Instruction::SHR_INT_2ADDR:
3248 case Instruction::USHR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003249 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3250 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003251 break;
3252 case Instruction::AND_INT_2ADDR:
3253 case Instruction::OR_INT_2ADDR:
3254 case Instruction::XOR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003255 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3256 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07003257 break;
3258 case Instruction::DIV_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003259 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3260 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003261 break;
3262 case Instruction::ADD_LONG_2ADDR:
3263 case Instruction::SUB_LONG_2ADDR:
3264 case Instruction::MUL_LONG_2ADDR:
3265 case Instruction::DIV_LONG_2ADDR:
3266 case Instruction::REM_LONG_2ADDR:
3267 case Instruction::AND_LONG_2ADDR:
3268 case Instruction::OR_LONG_2ADDR:
3269 case Instruction::XOR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003270 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003271 reg_types_.LongLo(), reg_types_.LongHi(),
3272 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003273 break;
3274 case Instruction::SHL_LONG_2ADDR:
3275 case Instruction::SHR_LONG_2ADDR:
3276 case Instruction::USHR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003277 work_line_->CheckBinaryOp2addrWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003278 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003279 break;
3280 case Instruction::ADD_FLOAT_2ADDR:
3281 case Instruction::SUB_FLOAT_2ADDR:
3282 case Instruction::MUL_FLOAT_2ADDR:
3283 case Instruction::DIV_FLOAT_2ADDR:
3284 case Instruction::REM_FLOAT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003285 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Float(), reg_types_.Float(),
3286 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003287 break;
3288 case Instruction::ADD_DOUBLE_2ADDR:
3289 case Instruction::SUB_DOUBLE_2ADDR:
3290 case Instruction::MUL_DOUBLE_2ADDR:
3291 case Instruction::DIV_DOUBLE_2ADDR:
3292 case Instruction::REM_DOUBLE_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003293 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003294 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
3295 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003296 break;
3297 case Instruction::ADD_INT_LIT16:
Ian Rogersf72a11d2014-10-30 15:41:08 -07003298 case Instruction::RSUB_INT_LIT16:
jeffhaobdb76512011-09-07 11:43:16 -07003299 case Instruction::MUL_INT_LIT16:
3300 case Instruction::DIV_INT_LIT16:
3301 case Instruction::REM_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07003302 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
3303 true);
jeffhaobdb76512011-09-07 11:43:16 -07003304 break;
3305 case Instruction::AND_INT_LIT16:
3306 case Instruction::OR_INT_LIT16:
3307 case Instruction::XOR_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07003308 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
3309 true);
jeffhaobdb76512011-09-07 11:43:16 -07003310 break;
3311 case Instruction::ADD_INT_LIT8:
3312 case Instruction::RSUB_INT_LIT8:
3313 case Instruction::MUL_INT_LIT8:
3314 case Instruction::DIV_INT_LIT8:
3315 case Instruction::REM_INT_LIT8:
3316 case Instruction::SHL_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07003317 case Instruction::SHR_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07003318 case Instruction::USHR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07003319 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
3320 false);
jeffhaobdb76512011-09-07 11:43:16 -07003321 break;
3322 case Instruction::AND_INT_LIT8:
3323 case Instruction::OR_INT_LIT8:
3324 case Instruction::XOR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07003325 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
3326 false);
jeffhaobdb76512011-09-07 11:43:16 -07003327 break;
3328
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003329 // Special instructions.
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003330 case Instruction::RETURN_VOID_NO_BARRIER:
3331 if (IsConstructor() && !IsStatic()) {
3332 auto& declaring_class = GetDeclaringClass();
Andreas Gampe68df3202015-06-22 11:35:46 -07003333 if (declaring_class.IsUnresolvedReference()) {
3334 // We must iterate over the fields, even if we cannot use mirror classes to do so. Do it
3335 // manually over the underlying dex file.
3336 uint32_t first_index = GetFirstFinalInstanceFieldIndex(*dex_file_,
3337 dex_file_->GetMethodId(dex_method_idx_).class_idx_);
3338 if (first_index != DexFile::kDexNoIndex) {
3339 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-no-barrier not expected for field "
3340 << first_index;
3341 }
3342 break;
3343 }
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003344 auto* klass = declaring_class.GetClass();
3345 for (uint32_t i = 0, num_fields = klass->NumInstanceFields(); i < num_fields; ++i) {
3346 if (klass->GetInstanceField(i)->IsFinal()) {
Mathieu Chartiere86deef2015-03-19 13:43:37 -07003347 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-no-barrier not expected for "
David Sehr709b0702016-10-13 09:12:37 -07003348 << klass->GetInstanceField(i)->PrettyField();
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003349 break;
3350 }
3351 }
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02003352 }
Andreas Gampeb29179612015-07-31 13:36:10 -07003353 // Handle this like a RETURN_VOID now. Code is duplicated to separate standard from
3354 // quickened opcodes (otherwise this could be a fall-through).
3355 if (!IsConstructor()) {
3356 if (!GetMethodReturnType().IsConflict()) {
3357 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
3358 }
3359 }
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02003360 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003361 // Note: the following instructions encode offsets derived from class linking.
Neil Fuller0e844392016-09-08 13:43:31 +01003362 // As such they use Class*/Field*/Executable* as these offsets only have
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003363 // meaning if the class linking and resolution were successful.
3364 case Instruction::IGET_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003365 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003366 break;
3367 case Instruction::IGET_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003368 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003369 break;
3370 case Instruction::IGET_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003371 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003372 break;
Mathieu Chartierffc605c2014-12-10 10:35:44 -08003373 case Instruction::IGET_BOOLEAN_QUICK:
3374 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true);
3375 break;
3376 case Instruction::IGET_BYTE_QUICK:
3377 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true);
3378 break;
3379 case Instruction::IGET_CHAR_QUICK:
3380 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true);
3381 break;
3382 case Instruction::IGET_SHORT_QUICK:
3383 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true);
3384 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003385 case Instruction::IPUT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003386 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003387 break;
Fred Shih37f05ef2014-07-16 18:38:08 -07003388 case Instruction::IPUT_BOOLEAN_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003389 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003390 break;
3391 case Instruction::IPUT_BYTE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003392 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003393 break;
3394 case Instruction::IPUT_CHAR_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003395 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003396 break;
3397 case Instruction::IPUT_SHORT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003398 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003399 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003400 case Instruction::IPUT_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003401 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003402 break;
3403 case Instruction::IPUT_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003404 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003405 break;
3406 case Instruction::INVOKE_VIRTUAL_QUICK:
3407 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
3408 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003409 ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range);
Ian Rogers7b078e82014-09-10 14:44:24 -07003410 if (called_method != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003411 const char* descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003412 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003413 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003414 work_line_->SetResultRegisterType(this, return_type);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003415 } else {
3416 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3417 }
3418 just_set_result = true;
3419 }
3420 break;
3421 }
3422
Ian Rogersd81871c2011-10-03 13:57:23 -07003423 /* These should never appear during verification. */
Mathieu Chartierffc605c2014-12-10 10:35:44 -08003424 case Instruction::UNUSED_3E ... Instruction::UNUSED_43:
Narayan Kamath8ec3bd22016-08-03 12:46:23 +01003425 case Instruction::UNUSED_F3 ... Instruction::UNUSED_F9:
3426 case Instruction::UNUSED_FC ... Instruction::UNUSED_FF:
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003427 case Instruction::UNUSED_79:
3428 case Instruction::UNUSED_7A:
jeffhaod5347e02012-03-22 17:25:05 -07003429 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Unexpected opcode " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07003430 break;
3431
3432 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003433 * DO NOT add a "default" clause here. Without it the compiler will
jeffhaobdb76512011-09-07 11:43:16 -07003434 * complain if an instruction is missing (which is desirable).
3435 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003436 } // end - switch (dec_insn.opcode)
jeffhaobdb76512011-09-07 11:43:16 -07003437
Ian Rogersad0b3a32012-04-16 14:50:24 -07003438 if (have_pending_hard_failure_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08003439 if (Runtime::Current()->IsAotCompiler()) {
3440 /* When AOT compiling, check that the last failure is a hard failure */
Andreas Gampeb588f4c2015-05-26 13:35:39 -07003441 if (failures_[failures_.size() - 1] != VERIFY_ERROR_BAD_CLASS_HARD) {
3442 LOG(ERROR) << "Pending failures:";
3443 for (auto& error : failures_) {
3444 LOG(ERROR) << error;
3445 }
3446 for (auto& error_msg : failure_messages_) {
3447 LOG(ERROR) << error_msg->str();
3448 }
3449 LOG(FATAL) << "Pending hard failure, but last failure not hard.";
3450 }
Ian Rogerse1758fe2012-04-19 11:31:15 -07003451 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003452 /* immediate failure, reject class */
3453 info_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_);
3454 return false;
jeffhaofaf459e2012-08-31 15:32:47 -07003455 } else if (have_pending_runtime_throw_failure_) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07003456 /* checking interpreter will throw, mark following code as unreachable */
jeffhaofaf459e2012-08-31 15:32:47 -07003457 opcode_flags = Instruction::kThrow;
Andreas Gampea727e372015-08-25 09:22:37 -07003458 // Note: the flag must be reset as it is only global to decouple Fail and is semantically per
3459 // instruction. However, RETURN checking may throw LOCKING errors, so we clear at the
3460 // very end.
jeffhaobdb76512011-09-07 11:43:16 -07003461 }
jeffhaobdb76512011-09-07 11:43:16 -07003462 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003463 * If we didn't just set the result register, clear it out. This ensures that you can only use
3464 * "move-result" immediately after the result is set. (We could check this statically, but it's
3465 * not expensive and it makes our debugging output cleaner.)
jeffhaobdb76512011-09-07 11:43:16 -07003466 */
3467 if (!just_set_result) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003468 work_line_->SetResultTypeToUnknown(this);
jeffhaobdb76512011-09-07 11:43:16 -07003469 }
3470
jeffhaobdb76512011-09-07 11:43:16 -07003471 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003472 * Handle "branch". Tag the branch target.
jeffhaobdb76512011-09-07 11:43:16 -07003473 *
3474 * NOTE: instructions like Instruction::EQZ provide information about the
jeffhaod1f0fde2011-09-08 17:25:33 -07003475 * state of the register when the branch is taken or not taken. For example,
jeffhaobdb76512011-09-07 11:43:16 -07003476 * somebody could get a reference field, check it for zero, and if the
3477 * branch is taken immediately store that register in a boolean field
jeffhaod1f0fde2011-09-08 17:25:33 -07003478 * since the value is known to be zero. We do not currently account for
jeffhaobdb76512011-09-07 11:43:16 -07003479 * that, and will reject the code.
3480 *
3481 * TODO: avoid re-fetching the branch target
3482 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003483 if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07003484 bool isConditional, selfOkay;
Ian Rogersd81871c2011-10-03 13:57:23 -07003485 if (!GetBranchOffset(work_insn_idx_, &branch_target, &isConditional, &selfOkay)) {
jeffhaobdb76512011-09-07 11:43:16 -07003486 /* should never happen after static verification */
jeffhaod5347e02012-03-22 17:25:05 -07003487 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad branch";
jeffhaobdb76512011-09-07 11:43:16 -07003488 return false;
3489 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08003490 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0);
Stephen Kyle9bc61992014-09-22 13:53:15 +01003491 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, work_insn_idx_ + branch_target)) {
jeffhaobdb76512011-09-07 11:43:16 -07003492 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003493 }
jeffhaobdb76512011-09-07 11:43:16 -07003494 /* update branch target, set "changed" if appropriate */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003495 if (nullptr != branch_line) {
Ian Rogersebbdd872014-07-07 23:53:08 -07003496 if (!UpdateRegisters(work_insn_idx_ + branch_target, branch_line.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003497 return false;
3498 }
3499 } else {
Ian Rogersebbdd872014-07-07 23:53:08 -07003500 if (!UpdateRegisters(work_insn_idx_ + branch_target, work_line_.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003501 return false;
3502 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003503 }
jeffhaobdb76512011-09-07 11:43:16 -07003504 }
3505
3506 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003507 * Handle "switch". Tag all possible branch targets.
jeffhaobdb76512011-09-07 11:43:16 -07003508 *
3509 * We've already verified that the table is structurally sound, so we
3510 * just need to walk through and tag the targets.
3511 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003512 if ((opcode_flags & Instruction::kSwitch) != 0) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07003513 int offset_to_switch = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
jeffhaobdb76512011-09-07 11:43:16 -07003514 const uint16_t* switch_insns = insns + offset_to_switch;
3515 int switch_count = switch_insns[1];
3516 int offset_to_targets, targ;
3517
3518 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
3519 /* 0 = sig, 1 = count, 2/3 = first key */
3520 offset_to_targets = 4;
3521 } else {
3522 /* 0 = sig, 1 = count, 2..count * 2 = keys */
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003523 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH);
jeffhaobdb76512011-09-07 11:43:16 -07003524 offset_to_targets = 2 + 2 * switch_count;
3525 }
3526
3527 /* verify each switch target */
3528 for (targ = 0; targ < switch_count; targ++) {
3529 int offset;
3530 uint32_t abs_offset;
3531
3532 /* offsets are 32-bit, and only partly endian-swapped */
3533 offset = switch_insns[offset_to_targets + targ * 2] |
Andreas Gampe53de99c2015-08-17 13:43:55 -07003534 (static_cast<int32_t>(switch_insns[offset_to_targets + targ * 2 + 1]) << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07003535 abs_offset = work_insn_idx_ + offset;
3536 DCHECK_LT(abs_offset, code_item_->insns_size_in_code_units_);
Stephen Kyle9bc61992014-09-22 13:53:15 +01003537 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, abs_offset)) {
jeffhaobdb76512011-09-07 11:43:16 -07003538 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003539 }
Ian Rogersebbdd872014-07-07 23:53:08 -07003540 if (!UpdateRegisters(abs_offset, work_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07003541 return false;
Ian Rogersebbdd872014-07-07 23:53:08 -07003542 }
jeffhaobdb76512011-09-07 11:43:16 -07003543 }
3544 }
3545
3546 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003547 * Handle instructions that can throw and that are sitting in a "try" block. (If they're not in a
3548 * "try" block when they throw, control transfers out of the method.)
jeffhaobdb76512011-09-07 11:43:16 -07003549 */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003550 if ((opcode_flags & Instruction::kThrow) != 0 && GetInstructionFlags(work_insn_idx_).IsInTry()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07003551 bool has_catch_all_handler = false;
Ian Rogers0571d352011-11-03 19:51:38 -07003552 CatchHandlerIterator iterator(*code_item_, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07003553
Andreas Gampef91baf12014-07-18 15:41:00 -07003554 // Need the linker to try and resolve the handled class to check if it's Throwable.
3555 ClassLinker* linker = Runtime::Current()->GetClassLinker();
3556
Ian Rogers0571d352011-11-03 19:51:38 -07003557 for (; iterator.HasNext(); iterator.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08003558 dex::TypeIndex handler_type_idx = iterator.GetHandlerTypeIndex();
3559 if (!handler_type_idx.IsValid()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07003560 has_catch_all_handler = true;
3561 } else {
3562 // It is also a catch-all if it is java.lang.Throwable.
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003563 mirror::Class* klass = linker->ResolveType(*dex_file_, handler_type_idx, dex_cache_,
3564 class_loader_);
Andreas Gampef91baf12014-07-18 15:41:00 -07003565 if (klass != nullptr) {
3566 if (klass == mirror::Throwable::GetJavaLangThrowable()) {
3567 has_catch_all_handler = true;
3568 }
3569 } else {
3570 // Clear exception.
Ian Rogers7b078e82014-09-10 14:44:24 -07003571 DCHECK(self_->IsExceptionPending());
3572 self_->ClearException();
Andreas Gampef91baf12014-07-18 15:41:00 -07003573 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003574 }
jeffhaobdb76512011-09-07 11:43:16 -07003575 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003576 * Merge registers into the "catch" block. We want to use the "savedRegs" rather than
3577 * "work_regs", because at runtime the exception will be thrown before the instruction
3578 * modifies any registers.
jeffhaobdb76512011-09-07 11:43:16 -07003579 */
Ian Rogersebbdd872014-07-07 23:53:08 -07003580 if (!UpdateRegisters(iterator.GetHandlerAddress(), saved_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07003581 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003582 }
jeffhaobdb76512011-09-07 11:43:16 -07003583 }
3584
3585 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003586 * If the monitor stack depth is nonzero, there must be a "catch all" handler for this
3587 * instruction. This does apply to monitor-exit because of async exception handling.
jeffhaobdb76512011-09-07 11:43:16 -07003588 */
Andreas Gampef91baf12014-07-18 15:41:00 -07003589 if (work_line_->MonitorStackDepth() > 0 && !has_catch_all_handler) {
jeffhaobdb76512011-09-07 11:43:16 -07003590 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003591 * The state in work_line reflects the post-execution state. If the current instruction is a
3592 * monitor-enter and the monitor stack was empty, we don't need a catch-all (if it throws,
jeffhaobdb76512011-09-07 11:43:16 -07003593 * it will do so before grabbing the lock).
3594 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02003595 if (inst->Opcode() != Instruction::MONITOR_ENTER || work_line_->MonitorStackDepth() != 1) {
jeffhaod5347e02012-03-22 17:25:05 -07003596 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
Ian Rogersd81871c2011-10-03 13:57:23 -07003597 << "expected to be within a catch-all for an instruction where a monitor is held";
jeffhaobdb76512011-09-07 11:43:16 -07003598 return false;
3599 }
3600 }
3601 }
3602
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003603 /* Handle "continue". Tag the next consecutive instruction.
3604 * Note: Keep the code handling "continue" case below the "branch" and "switch" cases,
3605 * because it changes work_line_ when performing peephole optimization
3606 * and this change should not be used in those cases.
3607 */
Ian Rogers6d376ae2013-07-23 15:12:40 -07003608 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003609 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3610 uint32_t next_insn_idx = work_insn_idx_ + inst->SizeInCodeUnits();
Ian Rogers6d376ae2013-07-23 15:12:40 -07003611 if (next_insn_idx >= code_item_->insns_size_in_code_units_) {
3612 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Execution can walk off end of code area";
3613 return false;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003614 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003615 // The only way to get to a move-exception instruction is to get thrown there. Make sure the
3616 // next instruction isn't one.
3617 if (!CheckNotMoveException(code_item_->insns_, next_insn_idx)) {
3618 return false;
3619 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003620 if (nullptr != fallthrough_line) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003621 // Make workline consistent with fallthrough computed from peephole optimization.
3622 work_line_->CopyFromLine(fallthrough_line.get());
3623 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003624 if (GetInstructionFlags(next_insn_idx).IsReturn()) {
Ian Rogersb8c78592013-07-25 23:52:52 +00003625 // For returns we only care about the operand to the return, all other registers are dead.
3626 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn_idx);
Andreas Gampea727e372015-08-25 09:22:37 -07003627 AdjustReturnLine(this, ret_inst, work_line_.get());
Ian Rogersb8c78592013-07-25 23:52:52 +00003628 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003629 RegisterLine* next_line = reg_table_.GetLine(next_insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07003630 if (next_line != nullptr) {
Ian Rogersebbdd872014-07-07 23:53:08 -07003631 // Merge registers into what we have for the next instruction, and set the "changed" flag if
3632 // needed. If the merge changes the state of the registers then the work line will be
3633 // updated.
3634 if (!UpdateRegisters(next_insn_idx, work_line_.get(), true)) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003635 return false;
3636 }
3637 } else {
3638 /*
3639 * We're not recording register data for the next instruction, so we don't know what the
3640 * prior state was. We have to assume that something has changed and re-evaluate it.
3641 */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003642 GetInstructionFlags(next_insn_idx).SetChanged();
Ian Rogers6d376ae2013-07-23 15:12:40 -07003643 }
3644 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003645
jeffhaod1f0fde2011-09-08 17:25:33 -07003646 /* If we're returning from the method, make sure monitor stack is empty. */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003647 if ((opcode_flags & Instruction::kReturn) != 0) {
Andreas Gampea727e372015-08-25 09:22:37 -07003648 work_line_->VerifyMonitorStackEmpty(this);
jeffhaobdb76512011-09-07 11:43:16 -07003649 }
3650
3651 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003652 * Update start_guess. Advance to the next instruction of that's
3653 * possible, otherwise use the branch target if one was found. If
jeffhaobdb76512011-09-07 11:43:16 -07003654 * neither of those exists we're in a return or throw; leave start_guess
3655 * alone and let the caller sort it out.
3656 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003657 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003658 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3659 *start_guess = work_insn_idx_ + inst->SizeInCodeUnits();
Elliott Hughesadb8c672012-03-06 16:49:32 -08003660 } else if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07003661 /* we're still okay if branch_target is zero */
Ian Rogersd81871c2011-10-03 13:57:23 -07003662 *start_guess = work_insn_idx_ + branch_target;
jeffhaobdb76512011-09-07 11:43:16 -07003663 }
3664
Ian Rogersd81871c2011-10-03 13:57:23 -07003665 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
Mathieu Chartierde40d472015-10-15 17:47:48 -07003666 DCHECK(GetInstructionFlags(*start_guess).IsOpcode());
jeffhaobdb76512011-09-07 11:43:16 -07003667
Andreas Gampea727e372015-08-25 09:22:37 -07003668 if (have_pending_runtime_throw_failure_) {
3669 have_any_pending_runtime_throw_failure_ = true;
3670 // Reset the pending_runtime_throw flag now.
3671 have_pending_runtime_throw_failure_ = false;
3672 }
3673
jeffhaobdb76512011-09-07 11:43:16 -07003674 return true;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003675} // NOLINT(readability/fn_size)
jeffhaobdb76512011-09-07 11:43:16 -07003676
Mathieu Chartierde40d472015-10-15 17:47:48 -07003677void MethodVerifier::UninstantiableError(const char* descriptor) {
3678 Fail(VerifyError::VERIFY_ERROR_NO_CLASS) << "Could not create precise reference for "
3679 << "non-instantiable klass " << descriptor;
3680}
3681
3682inline bool MethodVerifier::IsInstantiableOrPrimitive(mirror::Class* klass) {
3683 return klass->IsInstantiable() || klass->IsPrimitive();
3684}
3685
Andreas Gampea5b09a62016-11-17 15:21:22 -08003686const RegType& MethodVerifier::ResolveClassAndCheckAccess(dex::TypeIndex class_idx) {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003687 mirror::Class* klass = dex_cache_->GetResolvedType(class_idx);
Mathieu Chartierde40d472015-10-15 17:47:48 -07003688 const RegType* result = nullptr;
3689 if (klass != nullptr) {
3690 bool precise = klass->CannotBeAssignedFromOtherTypes();
3691 if (precise && !IsInstantiableOrPrimitive(klass)) {
3692 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3693 UninstantiableError(descriptor);
3694 precise = false;
3695 }
3696 result = reg_types_.FindClass(klass, precise);
3697 if (result == nullptr) {
3698 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3699 result = reg_types_.InsertClass(descriptor, klass, precise);
3700 }
3701 } else {
3702 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3703 result = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003704 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003705 DCHECK(result != nullptr);
3706 if (result->IsConflict()) {
3707 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3708 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "accessing broken descriptor '" << descriptor
3709 << "' in " << GetDeclaringClass();
3710 return *result;
3711 }
3712 if (klass == nullptr && !result->IsUnresolvedTypes()) {
David Brazdilca3c8c32016-09-06 14:04:48 +01003713 klass = result->GetClass();
3714 dex_cache_->SetResolvedType(class_idx, klass);
Ian Rogerse1758fe2012-04-19 11:31:15 -07003715 }
David Brazdilca3c8c32016-09-06 14:04:48 +01003716
3717 // Record result of class resolution attempt.
3718 VerifierDeps::MaybeRecordClassResolution(*dex_file_, class_idx, klass);
3719
Ian Rogersad0b3a32012-04-16 14:50:24 -07003720 // Check if access is allowed. Unresolved types use xxxWithAccessCheck to
Jeff Haob24b4a72013-07-31 13:47:31 -07003721 // check at runtime if access is allowed and so pass here. If result is
3722 // primitive, skip the access check.
Mathieu Chartierde40d472015-10-15 17:47:48 -07003723 if (result->IsNonZeroReferenceTypes() && !result->IsUnresolvedTypes()) {
3724 const RegType& referrer = GetDeclaringClass();
3725 if (!referrer.IsUnresolvedTypes() && !referrer.CanAccess(*result)) {
3726 Fail(VERIFY_ERROR_ACCESS_CLASS) << "illegal class access: '"
3727 << referrer << "' -> '" << result << "'";
3728 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003729 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003730 return *result;
Ian Rogersd81871c2011-10-03 13:57:23 -07003731}
3732
Ian Rogersd8f69b02014-09-10 21:43:52 +00003733const RegType& MethodVerifier::GetCaughtExceptionType() {
Ian Rogers7b078e82014-09-10 14:44:24 -07003734 const RegType* common_super = nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003735 if (code_item_->tries_size_ != 0) {
Ian Rogers13735952014-10-08 12:43:28 -07003736 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
Ian Rogersd81871c2011-10-03 13:57:23 -07003737 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
3738 for (uint32_t i = 0; i < handlers_size; i++) {
Ian Rogers0571d352011-11-03 19:51:38 -07003739 CatchHandlerIterator iterator(handlers_ptr);
3740 for (; iterator.HasNext(); iterator.Next()) {
3741 if (iterator.GetHandlerAddress() == (uint32_t) work_insn_idx_) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08003742 if (!iterator.GetHandlerTypeIndex().IsValid()) {
Ian Rogersb4903572012-10-11 11:52:56 -07003743 common_super = &reg_types_.JavaLangThrowable(false);
Ian Rogersd81871c2011-10-03 13:57:23 -07003744 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00003745 const RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex());
David Brazdilca3c8c32016-09-06 14:04:48 +01003746 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(exception, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00003747 DCHECK(!exception.IsUninitializedTypes()); // Comes from dex, shouldn't be uninit.
Jeff Haoc26a56c2013-11-04 12:00:47 -08003748 if (exception.IsUnresolvedTypes()) {
3749 // We don't know enough about the type. Fail here and let runtime handle it.
3750 Fail(VERIFY_ERROR_NO_CLASS) << "unresolved exception class " << exception;
3751 return exception;
3752 } else {
3753 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unexpected non-exception class " << exception;
3754 return reg_types_.Conflict();
3755 }
Jeff Haob878f212014-04-24 16:25:36 -07003756 } else if (common_super == nullptr) {
3757 common_super = &exception;
Ian Rogers28ad40d2011-10-27 15:19:26 -07003758 } else if (common_super->Equals(exception)) {
Ian Rogersc4762272012-02-01 15:55:55 -08003759 // odd case, but nothing to do
Ian Rogersd81871c2011-10-03 13:57:23 -07003760 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01003761 common_super = &common_super->Merge(exception, &reg_types_, this);
Andreas Gampe7c038102014-10-27 20:08:46 -07003762 if (FailOrAbort(this,
David Brazdilca3c8c32016-09-06 14:04:48 +01003763 reg_types_.JavaLangThrowable(false).IsAssignableFrom(
3764 *common_super, this),
Andreas Gampe7c038102014-10-27 20:08:46 -07003765 "java.lang.Throwable is not assignable-from common_super at ",
3766 work_insn_idx_)) {
3767 break;
3768 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003769 }
3770 }
3771 }
3772 }
Ian Rogers0571d352011-11-03 19:51:38 -07003773 handlers_ptr = iterator.EndDataPointer();
Ian Rogersd81871c2011-10-03 13:57:23 -07003774 }
3775 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003776 if (common_super == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003777 /* no catch blocks, or no catches with classes we can find */
jeffhaod5347e02012-03-22 17:25:05 -07003778 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unable to find exception handler";
Ian Rogersad0b3a32012-04-16 14:50:24 -07003779 return reg_types_.Conflict();
Ian Rogersd81871c2011-10-03 13:57:23 -07003780 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003781 return *common_super;
Ian Rogersd81871c2011-10-03 13:57:23 -07003782}
3783
David Brazdilca3c8c32016-09-06 14:04:48 +01003784inline static MethodResolutionKind GetMethodResolutionKind(
3785 MethodType method_type, bool is_interface) {
3786 if (method_type == METHOD_DIRECT || method_type == METHOD_STATIC) {
3787 return kDirectMethodResolution;
3788 } else if (method_type == METHOD_INTERFACE) {
3789 return kInterfaceMethodResolution;
3790 } else if (method_type == METHOD_SUPER && is_interface) {
3791 return kInterfaceMethodResolution;
3792 } else {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003793 DCHECK(method_type == METHOD_VIRTUAL || method_type == METHOD_SUPER
3794 || method_type == METHOD_POLYMORPHIC);
David Brazdilca3c8c32016-09-06 14:04:48 +01003795 return kVirtualMethodResolution;
3796 }
3797}
3798
Mathieu Chartiere401d142015-04-22 13:56:20 -07003799ArtMethod* MethodVerifier::ResolveMethodAndCheckAccess(
Alex Light7268d472016-01-20 15:50:01 -08003800 uint32_t dex_method_idx, MethodType method_type) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003801 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx);
Ian Rogersd8f69b02014-09-10 21:43:52 +00003802 const RegType& klass_type = ResolveClassAndCheckAccess(method_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003803 if (klass_type.IsConflict()) {
3804 std::string append(" in attempt to access method ");
3805 append += dex_file_->GetMethodName(method_id);
3806 AppendToLastFailMessage(append);
Ian Rogers7b078e82014-09-10 14:44:24 -07003807 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08003808 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003809 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003810 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08003811 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003812 mirror::Class* klass = klass_type.GetClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003813 const RegType& referrer = GetDeclaringClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003814 auto* cl = Runtime::Current()->GetClassLinker();
3815 auto pointer_size = cl->GetImagePointerSize();
David Brazdilca3c8c32016-09-06 14:04:48 +01003816 MethodResolutionKind res_kind = GetMethodResolutionKind(method_type, klass->IsInterface());
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003817
Mathieu Chartiere401d142015-04-22 13:56:20 -07003818 ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx, pointer_size);
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003819 bool stash_method = false;
Ian Rogers7b078e82014-09-10 14:44:24 -07003820 if (res_method == nullptr) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003821 const char* name = dex_file_->GetMethodName(method_id);
Ian Rogersd91d6d62013-09-25 20:26:14 -07003822 const Signature signature = dex_file_->GetMethodSignature(method_id);
jeffhao8cd6dda2012-02-22 10:15:34 -08003823
David Brazdilca3c8c32016-09-06 14:04:48 +01003824 if (res_kind == kDirectMethodResolution) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003825 res_method = klass->FindDirectMethod(name, signature, pointer_size);
David Brazdilca3c8c32016-09-06 14:04:48 +01003826 } else if (res_kind == kVirtualMethodResolution) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003827 res_method = klass->FindVirtualMethod(name, signature, pointer_size);
David Brazdilca3c8c32016-09-06 14:04:48 +01003828 } else {
3829 DCHECK_EQ(res_kind, kInterfaceMethodResolution);
3830 res_method = klass->FindInterfaceMethod(name, signature, pointer_size);
Ian Rogersd81871c2011-10-03 13:57:23 -07003831 }
David Brazdilca3c8c32016-09-06 14:04:48 +01003832
Ian Rogers7b078e82014-09-10 14:44:24 -07003833 if (res_method != nullptr) {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003834 stash_method = true;
Ian Rogersd81871c2011-10-03 13:57:23 -07003835 } else {
jeffhao8cd6dda2012-02-22 10:15:34 -08003836 // If a virtual or interface method wasn't found with the expected type, look in
3837 // the direct methods. This can happen when the wrong invoke type is used or when
3838 // a class has changed, and will be flagged as an error in later checks.
David Brazdilca3c8c32016-09-06 14:04:48 +01003839 // Note that in this case, we do not put the resolved method in the Dex cache
3840 // because it was not discovered using the expected type of method resolution.
3841 if (res_kind != kDirectMethodResolution) {
3842 // Record result of the initial resolution attempt.
3843 VerifierDeps::MaybeRecordMethodResolution(*dex_file_, dex_method_idx, res_kind, nullptr);
3844 // Change resolution type to 'direct' and try to resolve again.
3845 res_kind = kDirectMethodResolution;
Mathieu Chartiere401d142015-04-22 13:56:20 -07003846 res_method = klass->FindDirectMethod(name, signature, pointer_size);
jeffhao8cd6dda2012-02-22 10:15:34 -08003847 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003848 }
3849 }
David Brazdilca3c8c32016-09-06 14:04:48 +01003850
3851 // Record result of method resolution attempt.
3852 VerifierDeps::MaybeRecordMethodResolution(*dex_file_, dex_method_idx, res_kind, res_method);
3853
3854 if (res_method == nullptr) {
3855 Fail(VERIFY_ERROR_NO_METHOD) << "couldn't find method "
David Sehr709b0702016-10-13 09:12:37 -07003856 << klass->PrettyDescriptor() << "."
David Brazdilca3c8c32016-09-06 14:04:48 +01003857 << dex_file_->GetMethodName(method_id) << " "
3858 << dex_file_->GetMethodSignature(method_id);
3859 return nullptr;
3860 }
3861
Ian Rogersd81871c2011-10-03 13:57:23 -07003862 // Make sure calls to constructors are "direct". There are additional restrictions but we don't
3863 // enforce them here.
3864 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) {
jeffhaod5347e02012-03-22 17:25:05 -07003865 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting non-direct call to constructor "
David Sehr709b0702016-10-13 09:12:37 -07003866 << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003867 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003868 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003869 // Disallow any calls to class initializers.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003870 if (res_method->IsClassInitializer()) {
jeffhaod5347e02012-03-22 17:25:05 -07003871 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting call to class initializer "
David Sehr709b0702016-10-13 09:12:37 -07003872 << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003873 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003874 }
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003875
3876 // Check that interface methods are static or match interface classes.
3877 // We only allow statics if we don't have default methods enabled.
3878 //
3879 // Note: this check must be after the initializer check, as those are required to fail a class,
3880 // while this check implies an IncompatibleClassChangeError.
3881 if (klass->IsInterface()) {
Alex Lightb55f1ac2016-04-12 15:50:55 -07003882 // methods called on interfaces should be invoke-interface, invoke-super, invoke-direct (if
3883 // dex file version is 37 or greater), or invoke-static.
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003884 if (method_type != METHOD_INTERFACE &&
Neil Fuller9724c632016-01-07 15:42:47 +00003885 method_type != METHOD_STATIC &&
Alex Lightb55f1ac2016-04-12 15:50:55 -07003886 ((dex_file_->GetVersion() < DexFile::kDefaultMethodsVersion) ||
3887 method_type != METHOD_DIRECT) &&
Neil Fuller9724c632016-01-07 15:42:47 +00003888 method_type != METHOD_SUPER) {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003889 Fail(VERIFY_ERROR_CLASS_CHANGE)
David Sehr709b0702016-10-13 09:12:37 -07003890 << "non-interface method " << dex_file_->PrettyMethod(dex_method_idx)
3891 << " is in an interface class " << klass->PrettyClass();
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003892 return nullptr;
3893 }
3894 } else {
3895 if (method_type == METHOD_INTERFACE) {
3896 Fail(VERIFY_ERROR_CLASS_CHANGE)
David Sehr709b0702016-10-13 09:12:37 -07003897 << "interface method " << dex_file_->PrettyMethod(dex_method_idx)
3898 << " is in a non-interface class " << klass->PrettyClass();
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003899 return nullptr;
3900 }
3901 }
3902
3903 // Only stash after the above passed. Otherwise the method wasn't guaranteed to be correct.
3904 if (stash_method) {
3905 dex_cache_->SetResolvedMethod(dex_method_idx, res_method, pointer_size);
3906 }
3907
jeffhao8cd6dda2012-02-22 10:15:34 -08003908 // Check if access is allowed.
Ian Rogersad0b3a32012-04-16 14:50:24 -07003909 if (!referrer.CanAccessMember(res_method->GetDeclaringClass(), res_method->GetAccessFlags())) {
David Sehr709b0702016-10-13 09:12:37 -07003910 Fail(VERIFY_ERROR_ACCESS_METHOD) << "illegal method access (call "
3911 << res_method->PrettyMethod()
Ian Rogersad0b3a32012-04-16 14:50:24 -07003912 << " from " << referrer << ")";
jeffhaob57e9522012-04-26 18:08:21 -07003913 return res_method;
jeffhao8cd6dda2012-02-22 10:15:34 -08003914 }
jeffhaode0d9c92012-02-27 13:58:13 -08003915 // Check that invoke-virtual and invoke-super are not used on private methods of the same class.
Alex Light7268d472016-01-20 15:50:01 -08003916 if (res_method->IsPrivate() && (method_type == METHOD_VIRTUAL || method_type == METHOD_SUPER)) {
jeffhaod5347e02012-03-22 17:25:05 -07003917 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-super/virtual can't be used on private method "
David Sehr709b0702016-10-13 09:12:37 -07003918 << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003919 return nullptr;
jeffhaode0d9c92012-02-27 13:58:13 -08003920 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003921 // See if the method type implied by the invoke instruction matches the access flags for the
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003922 // target method. The flags for METHOD_POLYMORPHIC are based on there being precisely two
3923 // signature polymorphic methods supported by the run-time which are native methods with variable
3924 // arguments.
Brian Carlstrombe6fa5e2014-12-09 20:15:42 -08003925 if ((method_type == METHOD_DIRECT && (!res_method->IsDirect() || res_method->IsStatic())) ||
Ian Rogersd81871c2011-10-03 13:57:23 -07003926 (method_type == METHOD_STATIC && !res_method->IsStatic()) ||
Alex Light7268d472016-01-20 15:50:01 -08003927 ((method_type == METHOD_SUPER ||
3928 method_type == METHOD_VIRTUAL ||
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003929 method_type == METHOD_INTERFACE) && res_method->IsDirect()) ||
3930 ((method_type == METHOD_POLYMORPHIC) &&
3931 (!res_method->IsNative() || !res_method->IsVarargs()))) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003932 Fail(VERIFY_ERROR_CLASS_CHANGE) << "invoke type (" << method_type << ") does not match method "
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003933 "type of " << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003934 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003935 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003936 return res_method;
3937}
3938
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003939template <class T>
Mathieu Chartiere401d142015-04-22 13:56:20 -07003940ArtMethod* MethodVerifier::VerifyInvocationArgsFromIterator(
3941 T* it, const Instruction* inst, MethodType method_type, bool is_range, ArtMethod* res_method) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003942 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
3943 // match the call to the signature. Also, we might be calling through an abstract method
3944 // definition (which doesn't have register count values).
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003945 const size_t expected_args = inst->VRegA();
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003946 /* caught by static verifier */
3947 DCHECK(is_range || expected_args <= 5);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003948
Orion Hodson7f7a0742016-12-08 14:15:25 +00003949 // TODO(oth): Enable this path for invoke-polymorphic when b/33099829 is resolved.
3950 if (method_type != METHOD_POLYMORPHIC) {
3951 if (expected_args > code_item_->outs_size_) {
3952 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
3953 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
3954 return nullptr;
3955 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003956 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003957
3958 /*
3959 * Check the "this" argument, which must be an instance of the class that declared the method.
3960 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
3961 * rigorous check here (which is okay since we have to do it at runtime).
3962 */
3963 if (method_type != METHOD_STATIC) {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003964 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003965 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
3966 CHECK(have_pending_hard_failure_);
3967 return nullptr;
3968 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00003969 bool is_init = false;
3970 if (actual_arg_type.IsUninitializedTypes()) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003971 if (res_method) {
3972 if (!res_method->IsConstructor()) {
3973 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
3974 return nullptr;
3975 }
3976 } else {
3977 // Check whether the name of the called method is "<init>"
3978 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Jeff Hao0d087272014-08-04 14:47:17 -07003979 if (strcmp(dex_file_->GetMethodName(dex_file_->GetMethodId(method_idx)), "<init>") != 0) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003980 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
3981 return nullptr;
3982 }
3983 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00003984 is_init = true;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003985 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00003986 const RegType& adjusted_type = is_init
3987 ? GetRegTypeCache()->FromUninitialized(actual_arg_type)
3988 : actual_arg_type;
3989 if (method_type != METHOD_INTERFACE && !adjusted_type.IsZero()) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00003990 const RegType* res_method_class;
Andreas Gamped9e23012015-06-04 22:19:58 -07003991 // Miranda methods have the declaring interface as their declaring class, not the abstract
3992 // class. It would be wrong to use this for the type check (interface type checks are
3993 // postponed to runtime).
3994 if (res_method != nullptr && !res_method->IsMiranda()) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003995 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07003996 std::string temp;
Andreas Gampef23f33d2015-06-23 14:18:17 -07003997 res_method_class = &FromClass(klass->GetDescriptor(&temp), klass,
3998 klass->CannotBeAssignedFromOtherTypes());
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003999 } else {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004000 const uint32_t method_idx = inst->VRegB();
Andreas Gampea5b09a62016-11-17 15:21:22 -08004001 const dex::TypeIndex class_idx = dex_file_->GetMethodId(method_idx).class_idx_;
Mathieu Chartierde40d472015-10-15 17:47:48 -07004002 res_method_class = &reg_types_.FromDescriptor(
4003 GetClassLoader(),
4004 dex_file_->StringByTypeIdx(class_idx),
4005 false);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004006 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004007 if (!res_method_class->IsAssignableFrom(adjusted_type, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00004008 Fail(adjusted_type.IsUnresolvedTypes()
4009 ? VERIFY_ERROR_NO_CLASS
4010 : VERIFY_ERROR_BAD_CLASS_SOFT)
4011 << "'this' argument '" << actual_arg_type << "' not instance of '"
4012 << *res_method_class << "'";
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004013 // Continue on soft failures. We need to find possible hard failures to avoid problems in
4014 // the compiler.
4015 if (have_pending_hard_failure_) {
4016 return nullptr;
4017 }
4018 }
4019 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004020 }
4021
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004022 uint32_t arg[5];
4023 if (!is_range) {
4024 inst->GetVarArgs(arg);
4025 }
4026 uint32_t sig_registers = (method_type == METHOD_STATIC) ? 0 : 1;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004027 for ( ; it->HasNext(); it->Next()) {
4028 if (sig_registers >= expected_args) {
4029 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << inst->VRegA() <<
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004030 " argument registers, method signature has " << sig_registers + 1 << " or more";
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004031 return nullptr;
4032 }
4033
4034 const char* param_descriptor = it->GetDescriptor();
4035
4036 if (param_descriptor == nullptr) {
4037 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation because of missing signature "
4038 "component";
4039 return nullptr;
4040 }
4041
Ian Rogersd8f69b02014-09-10 21:43:52 +00004042 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), param_descriptor, false);
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004043 uint32_t get_reg = is_range ? inst->VRegC() + static_cast<uint32_t>(sig_registers) :
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004044 arg[sig_registers];
4045 if (reg_type.IsIntegralTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004046 const RegType& src_type = work_line_->GetRegisterType(this, get_reg);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004047 if (!src_type.IsIntegralTypes()) {
4048 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << get_reg << " has type " << src_type
4049 << " but expected " << reg_type;
Andreas Gampeb588f4c2015-05-26 13:35:39 -07004050 return nullptr;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004051 }
Andreas Gampeda9badb2015-06-05 20:22:12 -07004052 } else {
4053 if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
4054 // Continue on soft failures. We need to find possible hard failures to avoid problems in
4055 // the compiler.
4056 if (have_pending_hard_failure_) {
4057 return nullptr;
4058 }
4059 } else if (reg_type.IsLongOrDoubleTypes()) {
4060 // Check that registers are consecutive (for non-range invokes). Invokes are the only
4061 // instructions not specifying register pairs by the first component, but require them
4062 // nonetheless. Only check when there's an actual register in the parameters. If there's
4063 // none, this will fail below.
4064 if (!is_range && sig_registers + 1 < expected_args) {
4065 uint32_t second_reg = arg[sig_registers + 1];
4066 if (second_reg != get_reg + 1) {
4067 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, long or double parameter "
4068 "at index " << sig_registers << " is not a pair: " << get_reg << " + "
4069 << second_reg << ".";
4070 return nullptr;
4071 }
4072 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004073 }
4074 }
4075 sig_registers += reg_type.IsLongOrDoubleTypes() ? 2 : 1;
4076 }
4077 if (expected_args != sig_registers) {
4078 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << expected_args <<
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004079 " argument registers, method signature has " << sig_registers;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004080 return nullptr;
4081 }
4082 return res_method;
4083}
4084
4085void MethodVerifier::VerifyInvocationArgsUnresolvedMethod(const Instruction* inst,
4086 MethodType method_type,
4087 bool is_range) {
4088 // As the method may not have been resolved, make this static check against what we expect.
4089 // The main reason for this code block is to fail hard when we find an illegal use, e.g.,
4090 // wrong number of arguments or wrong primitive types, even if the method could not be resolved.
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004091 const uint32_t method_idx = inst->VRegB();
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004092 DexFileParameterIterator it(*dex_file_,
4093 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_));
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004094 VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, nullptr);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004095}
4096
4097class MethodParamListDescriptorIterator {
4098 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -07004099 explicit MethodParamListDescriptorIterator(ArtMethod* res_method) :
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004100 res_method_(res_method), pos_(0), params_(res_method->GetParameterTypeList()),
4101 params_size_(params_ == nullptr ? 0 : params_->Size()) {
4102 }
4103
4104 bool HasNext() {
4105 return pos_ < params_size_;
4106 }
4107
4108 void Next() {
4109 ++pos_;
4110 }
4111
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004112 const char* GetDescriptor() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004113 return res_method_->GetTypeDescriptorFromTypeIdx(params_->GetTypeItem(pos_).type_idx_);
4114 }
4115
4116 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -07004117 ArtMethod* res_method_;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004118 size_t pos_;
4119 const DexFile::TypeList* params_;
4120 const size_t params_size_;
4121};
4122
Mathieu Chartiere401d142015-04-22 13:56:20 -07004123ArtMethod* MethodVerifier::VerifyInvocationArgs(
Alex Light7268d472016-01-20 15:50:01 -08004124 const Instruction* inst, MethodType method_type, bool is_range) {
jeffhao8cd6dda2012-02-22 10:15:34 -08004125 // Resolve the method. This could be an abstract or concrete method depending on what sort of call
4126 // we're making.
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004127 const uint32_t method_idx = inst->VRegB();
Alex Light7268d472016-01-20 15:50:01 -08004128 ArtMethod* res_method = ResolveMethodAndCheckAccess(method_idx, method_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07004129 if (res_method == nullptr) { // error or class is unresolved
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004130 // Check what we can statically.
4131 if (!have_pending_hard_failure_) {
4132 VerifyInvocationArgsUnresolvedMethod(inst, method_type, is_range);
4133 }
4134 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08004135 }
4136
Ian Rogersd81871c2011-10-03 13:57:23 -07004137 // If we're using invoke-super(method), make sure that the executing method's class' superclass
Alex Light705ad492015-09-21 11:36:30 -07004138 // has a vtable entry for the target method. Or the target is on a interface.
Alex Light7268d472016-01-20 15:50:01 -08004139 if (method_type == METHOD_SUPER) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08004140 dex::TypeIndex class_idx = dex_file_->GetMethodId(method_idx).class_idx_;
David Brazdilca3c8c32016-09-06 14:04:48 +01004141 const RegType& reference_type = reg_types_.FromDescriptor(
4142 GetClassLoader(),
4143 dex_file_->StringByTypeIdx(class_idx),
4144 false);
4145 if (reference_type.IsUnresolvedTypes()) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004146 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Unable to find referenced class from invoke-super";
4147 return nullptr;
4148 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004149 if (reference_type.GetClass()->IsInterface()) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004150 // TODO Can we verify anything else.
David Brazdil15fc7292016-09-02 14:13:18 +01004151 if (class_idx == class_def_.class_idx_) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004152 Fail(VERIFY_ERROR_CLASS_CHANGE) << "Cannot invoke-super on self as interface";
Alex Light55ea94d2016-03-15 09:50:26 -07004153 return nullptr;
Alex Lightfedd91d2016-01-07 14:49:16 -08004154 }
4155 // TODO Revisit whether we want to allow invoke-super on direct interfaces only like the JLS
4156 // does.
Alex Light55ea94d2016-03-15 09:50:26 -07004157 if (!GetDeclaringClass().HasClass()) {
4158 Fail(VERIFY_ERROR_NO_CLASS) << "Unable to resolve the full class of 'this' used in an"
4159 << "interface invoke-super";
4160 return nullptr;
David Brazdilca3c8c32016-09-06 14:04:48 +01004161 } else if (!reference_type.IsStrictlyAssignableFrom(GetDeclaringClass(), this)) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004162 Fail(VERIFY_ERROR_CLASS_CHANGE)
David Sehr709b0702016-10-13 09:12:37 -07004163 << "invoke-super in " << mirror::Class::PrettyClass(GetDeclaringClass().GetClass())
4164 << " in method "
4165 << dex_file_->PrettyMethod(dex_method_idx_) << " to method "
4166 << dex_file_->PrettyMethod(method_idx) << " references "
4167 << "non-super-interface type " << mirror::Class::PrettyClass(reference_type.GetClass());
Alex Lightfedd91d2016-01-07 14:49:16 -08004168 return nullptr;
Alex Light705ad492015-09-21 11:36:30 -07004169 }
4170 } else {
4171 const RegType& super = GetDeclaringClass().GetSuperClass(&reg_types_);
4172 if (super.IsUnresolvedTypes()) {
4173 Fail(VERIFY_ERROR_NO_METHOD) << "unknown super class in invoke-super from "
David Sehr709b0702016-10-13 09:12:37 -07004174 << dex_file_->PrettyMethod(dex_method_idx_)
4175 << " to super " << res_method->PrettyMethod();
Alex Light705ad492015-09-21 11:36:30 -07004176 return nullptr;
4177 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004178 if (!reference_type.IsStrictlyAssignableFrom(GetDeclaringClass(), this) ||
Aart Bikf663e342016-04-04 17:28:59 -07004179 (res_method->GetMethodIndex() >= super.GetClass()->GetVTableLength())) {
Alex Light705ad492015-09-21 11:36:30 -07004180 Fail(VERIFY_ERROR_NO_METHOD) << "invalid invoke-super from "
David Sehr709b0702016-10-13 09:12:37 -07004181 << dex_file_->PrettyMethod(dex_method_idx_)
Alex Light705ad492015-09-21 11:36:30 -07004182 << " to super " << super
4183 << "." << res_method->GetName()
4184 << res_method->GetSignature();
4185 return nullptr;
4186 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004187 }
4188 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08004189
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004190 if (method_type == METHOD_POLYMORPHIC) {
4191 // Process the signature of the calling site that is invoking the method handle.
4192 DexFileParameterIterator it(*dex_file_, dex_file_->GetProtoId(inst->VRegH()));
4193 return VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, res_method);
4194 } else {
4195 // Process the target method's signature.
4196 MethodParamListDescriptorIterator it(res_method);
4197 return VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, res_method);
4198 }
4199}
4200
4201bool MethodVerifier::CheckSignaturePolymorphicMethod(ArtMethod* method) {
4202 mirror::Class* klass = method->GetDeclaringClass();
4203 if (klass != mirror::MethodHandle::StaticClass()) {
4204 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4205 << "Signature polymorphic method must be declared in java.lang.invoke.MethodClass";
4206 return false;
4207 }
4208
4209 const char* method_name = method->GetName();
4210 if (strcmp(method_name, "invoke") != 0 && strcmp(method_name, "invokeExact") != 0) {
4211 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4212 << "Signature polymorphic method name invalid: " << method_name;
4213 return false;
4214 }
4215
4216 const DexFile::TypeList* types = method->GetParameterTypeList();
4217 if (types->Size() != 1) {
4218 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4219 << "Signature polymorphic method has too many arguments " << types->Size() << " != 1";
4220 return false;
4221 }
4222
4223 const dex::TypeIndex argument_type_index = types->GetTypeItem(0).type_idx_;
4224 const char* argument_descriptor = method->GetTypeDescriptorFromTypeIdx(argument_type_index);
4225 if (strcmp(argument_descriptor, "[Ljava/lang/Object;") != 0) {
4226 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4227 << "Signature polymorphic method has unexpected argument type: " << argument_descriptor;
4228 return false;
4229 }
4230
4231 const char* return_descriptor = method->GetReturnTypeDescriptor();
4232 if (strcmp(return_descriptor, "Ljava/lang/Object;") != 0) {
4233 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4234 << "Signature polymorphic method has unexpected return type: " << return_descriptor;
4235 return false;
4236 }
4237
4238 return true;
4239}
4240
4241bool MethodVerifier::CheckSignaturePolymorphicReceiver(const Instruction* inst) {
4242 const RegType& this_type = work_line_->GetInvocationThis(this, inst);
4243 if (this_type.IsZero()) {
4244 /* null pointer always passes (and always fails at run time) */
4245 return true;
4246 } else if (!this_type.IsNonZeroReferenceTypes()) {
4247 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4248 << "invoke-polymorphic receiver is not a reference: "
4249 << this_type;
4250 return false;
4251 } else if (this_type.IsUninitializedReference()) {
4252 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4253 << "invoke-polymorphic receiver is uninitialized: "
4254 << this_type;
4255 return false;
4256 } else if (!this_type.HasClass()) {
4257 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4258 << "invoke-polymorphic receiver has no class: "
4259 << this_type;
4260 return false;
4261 } else if (!this_type.GetClass()->IsSubClass(mirror::MethodHandle::StaticClass())) {
4262 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4263 << "invoke-polymorphic receiver is not a subclass of MethodHandle: "
4264 << this_type;
4265 return false;
4266 }
4267 return true;
Ian Rogersd81871c2011-10-03 13:57:23 -07004268}
4269
Mathieu Chartiere401d142015-04-22 13:56:20 -07004270ArtMethod* MethodVerifier::GetQuickInvokedMethod(const Instruction* inst, RegisterLine* reg_line,
4271 bool is_range, bool allow_failure) {
Mathieu Chartier091d2382015-03-06 10:59:06 -08004272 if (is_range) {
4273 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
4274 } else {
4275 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_QUICK);
4276 }
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004277 const RegType& actual_arg_type = reg_line->GetInvocationThis(this, inst, allow_failure);
Ian Rogers9bc54402014-04-17 16:40:01 -07004278 if (!actual_arg_type.HasClass()) {
4279 VLOG(verifier) << "Failed to get mirror::Class* from '" << actual_arg_type << "'";
Andreas Gampe63981562014-04-17 12:28:43 -07004280 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004281 }
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004282 mirror::Class* klass = actual_arg_type.GetClass();
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004283 mirror::Class* dispatch_class;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004284 if (klass->IsInterface()) {
4285 // Derive Object.class from Class.class.getSuperclass().
4286 mirror::Class* object_klass = klass->GetClass()->GetSuperClass();
Andreas Gampe7c038102014-10-27 20:08:46 -07004287 if (FailOrAbort(this, object_klass->IsObjectClass(),
Mathieu Chartier091d2382015-03-06 10:59:06 -08004288 "Failed to find Object class in quickened invoke receiver", work_insn_idx_)) {
Andreas Gampe7c038102014-10-27 20:08:46 -07004289 return nullptr;
4290 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004291 dispatch_class = object_klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004292 } else {
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004293 dispatch_class = klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004294 }
Mathieu Chartier091d2382015-03-06 10:59:06 -08004295 if (!dispatch_class->HasVTable()) {
4296 FailOrAbort(this, allow_failure, "Receiver class has no vtable for quickened invoke at ",
4297 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004298 return nullptr;
4299 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004300 uint16_t vtable_index = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
Mathieu Chartiere401d142015-04-22 13:56:20 -07004301 auto* cl = Runtime::Current()->GetClassLinker();
4302 auto pointer_size = cl->GetImagePointerSize();
Mathieu Chartier091d2382015-03-06 10:59:06 -08004303 if (static_cast<int32_t>(vtable_index) >= dispatch_class->GetVTableLength()) {
4304 FailOrAbort(this, allow_failure,
4305 "Receiver class has not enough vtable slots for quickened invoke at ",
4306 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004307 return nullptr;
4308 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07004309 ArtMethod* res_method = dispatch_class->GetVTableEntry(vtable_index, pointer_size);
Mathieu Chartier091d2382015-03-06 10:59:06 -08004310 if (self_->IsExceptionPending()) {
4311 FailOrAbort(this, allow_failure, "Unexpected exception pending for quickened invoke at ",
4312 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004313 return nullptr;
4314 }
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004315 return res_method;
4316}
4317
Mathieu Chartiere401d142015-04-22 13:56:20 -07004318ArtMethod* MethodVerifier::VerifyInvokeVirtualQuickArgs(const Instruction* inst, bool is_range) {
Andreas Gampe76bd8802014-12-10 16:43:58 -08004319 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_)
David Sehr709b0702016-10-13 09:12:37 -07004320 << dex_file_->PrettyMethod(dex_method_idx_, true) << "@" << work_insn_idx_;
Andreas Gampe76bd8802014-12-10 16:43:58 -08004321
Mathieu Chartiere401d142015-04-22 13:56:20 -07004322 ArtMethod* res_method = GetQuickInvokedMethod(inst, work_line_.get(), is_range, false);
Ian Rogers7b078e82014-09-10 14:44:24 -07004323 if (res_method == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004324 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer method from " << inst->Name();
Ian Rogers7b078e82014-09-10 14:44:24 -07004325 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004326 }
Andreas Gampe7c038102014-10-27 20:08:46 -07004327 if (FailOrAbort(this, !res_method->IsDirect(), "Quick-invoked method is direct at ",
4328 work_insn_idx_)) {
4329 return nullptr;
4330 }
4331 if (FailOrAbort(this, !res_method->IsStatic(), "Quick-invoked method is static at ",
4332 work_insn_idx_)) {
4333 return nullptr;
4334 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004335
4336 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
4337 // match the call to the signature. Also, we might be calling through an abstract method
4338 // definition (which doesn't have register count values).
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004339 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst);
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004340 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
Ian Rogers7b078e82014-09-10 14:44:24 -07004341 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004342 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004343 const size_t expected_args = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
4344 /* caught by static verifier */
4345 DCHECK(is_range || expected_args <= 5);
4346 if (expected_args > code_item_->outs_size_) {
4347 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
4348 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
Ian Rogers7b078e82014-09-10 14:44:24 -07004349 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004350 }
4351
4352 /*
4353 * Check the "this" argument, which must be an instance of the class that declared the method.
4354 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
4355 * rigorous check here (which is okay since we have to do it at runtime).
4356 */
David Brazdil68b5c0b2016-01-19 14:25:29 +00004357 // Note: given an uninitialized type, this should always fail. Constructors aren't virtual.
4358 if (actual_arg_type.IsUninitializedTypes() && !res_method->IsConstructor()) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004359 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
Ian Rogers7b078e82014-09-10 14:44:24 -07004360 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004361 }
4362 if (!actual_arg_type.IsZero()) {
4363 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004364 std::string temp;
Ian Rogersd8f69b02014-09-10 21:43:52 +00004365 const RegType& res_method_class =
Andreas Gampef23f33d2015-06-23 14:18:17 -07004366 FromClass(klass->GetDescriptor(&temp), klass, klass->CannotBeAssignedFromOtherTypes());
David Brazdilca3c8c32016-09-06 14:04:48 +01004367 if (!res_method_class.IsAssignableFrom(actual_arg_type, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00004368 Fail(actual_arg_type.IsUninitializedTypes() // Just overcautious - should have never
4369 ? VERIFY_ERROR_BAD_CLASS_HARD // quickened this.
4370 : actual_arg_type.IsUnresolvedTypes()
4371 ? VERIFY_ERROR_NO_CLASS
4372 : VERIFY_ERROR_BAD_CLASS_SOFT) << "'this' argument '" << actual_arg_type
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004373 << "' not instance of '" << res_method_class << "'";
Ian Rogers7b078e82014-09-10 14:44:24 -07004374 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004375 }
4376 }
4377 /*
4378 * Process the target method's signature. This signature may or may not
4379 * have been verified, so we can't assume it's properly formed.
4380 */
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004381 const DexFile::TypeList* params = res_method->GetParameterTypeList();
Ian Rogers7b078e82014-09-10 14:44:24 -07004382 size_t params_size = params == nullptr ? 0 : params->Size();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004383 uint32_t arg[5];
4384 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07004385 inst->GetVarArgs(arg);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004386 }
4387 size_t actual_args = 1;
4388 for (size_t param_index = 0; param_index < params_size; param_index++) {
4389 if (actual_args >= expected_args) {
David Sehr709b0702016-10-13 09:12:37 -07004390 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invalid call to '"
4391 << res_method->PrettyMethod()
Brian Carlstrom93c33962013-07-26 10:37:43 -07004392 << "'. Expected " << expected_args
4393 << " arguments, processing argument " << actual_args
4394 << " (where longs/doubles count twice).";
Ian Rogers7b078e82014-09-10 14:44:24 -07004395 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004396 }
4397 const char* descriptor =
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004398 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);
Ian Rogers7b078e82014-09-10 14:44:24 -07004399 if (descriptor == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07004400 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of "
4401 << res_method->PrettyMethod()
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004402 << " missing signature component";
Ian Rogers7b078e82014-09-10 14:44:24 -07004403 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004404 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004405 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004406 uint32_t get_reg = is_range ? inst->VRegC_3rc() + actual_args : arg[actual_args];
Ian Rogers7b078e82014-09-10 14:44:24 -07004407 if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004408 return res_method;
4409 }
4410 actual_args = reg_type.IsLongOrDoubleTypes() ? actual_args + 2 : actual_args + 1;
4411 }
4412 if (actual_args != expected_args) {
David Sehr709b0702016-10-13 09:12:37 -07004413 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of "
4414 << res_method->PrettyMethod() << " expected "
4415 << expected_args << " arguments, found " << actual_args;
Ian Rogers7b078e82014-09-10 14:44:24 -07004416 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004417 } else {
4418 return res_method;
4419 }
4420}
4421
Ian Rogers62342ec2013-06-11 10:26:37 -07004422void MethodVerifier::VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08004423 dex::TypeIndex type_idx;
Sebastien Hertz5243e912013-05-21 10:55:07 +02004424 if (!is_filled) {
4425 DCHECK_EQ(inst->Opcode(), Instruction::NEW_ARRAY);
Andreas Gampea5b09a62016-11-17 15:21:22 -08004426 type_idx = dex::TypeIndex(inst->VRegC_22c());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004427 } else if (!is_range) {
4428 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY);
Andreas Gampea5b09a62016-11-17 15:21:22 -08004429 type_idx = dex::TypeIndex(inst->VRegB_35c());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004430 } else {
4431 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY_RANGE);
Andreas Gampea5b09a62016-11-17 15:21:22 -08004432 type_idx = dex::TypeIndex(inst->VRegB_3rc());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004433 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004434 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004435 if (res_type.IsConflict()) { // bad class
4436 DCHECK_NE(failures_.size(), 0U);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004437 } else {
4438 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
4439 if (!res_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004440 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "new-array on non-array class " << res_type;
Ian Rogers0c4a5062012-02-03 15:18:59 -08004441 } else if (!is_filled) {
4442 /* make sure "size" register is valid type */
Ian Rogers7b078e82014-09-10 14:44:24 -07004443 work_line_->VerifyRegisterType(this, inst->VRegB_22c(), reg_types_.Integer());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004444 /* set register type to array class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00004445 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Andreas Gampead238ce2015-08-24 21:13:08 -07004446 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_22c(), precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004447 } else {
Andreas Gampebb18a032016-03-22 20:34:25 -07004448 DCHECK(!res_type.IsUnresolvedMergedReference());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004449 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
4450 // the list and fail. It's legal, if silly, for arg_count to be zero.
Ian Rogersd8f69b02014-09-10 21:43:52 +00004451 const RegType& expected_type = reg_types_.GetComponentType(res_type, GetClassLoader());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004452 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
4453 uint32_t arg[5];
4454 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07004455 inst->GetVarArgs(arg);
Sebastien Hertz5243e912013-05-21 10:55:07 +02004456 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08004457 for (size_t ui = 0; ui < arg_count; ui++) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02004458 uint32_t get_reg = is_range ? inst->VRegC_3rc() + ui : arg[ui];
Ian Rogers7b078e82014-09-10 14:44:24 -07004459 if (!work_line_->VerifyRegisterType(this, get_reg, expected_type)) {
4460 work_line_->SetResultRegisterType(this, reg_types_.Conflict());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004461 return;
4462 }
4463 }
4464 // filled-array result goes into "result" register
Ian Rogersd8f69b02014-09-10 21:43:52 +00004465 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07004466 work_line_->SetResultRegisterType(this, precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004467 }
4468 }
4469}
4470
Sebastien Hertz5243e912013-05-21 10:55:07 +02004471void MethodVerifier::VerifyAGet(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00004472 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004473 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07004474 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004475 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07004476 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004477 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08004478 if (array_type.IsZero()) {
Nicolas Geoffray4824c272015-06-24 15:53:03 +01004479 have_pending_runtime_throw_failure_ = true;
Ian Rogers89310de2012-02-01 13:47:30 -08004480 // Null array class; this code path will fail at runtime. Infer a merge-able type from the
4481 // instruction type. TODO: have a proper notion of bottom here.
4482 if (!is_primitive || insn_type.IsCategory1Types()) {
4483 // Reference or category 1
Andreas Gampead238ce2015-08-24 21:13:08 -07004484 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Zero());
Ian Rogersd81871c2011-10-03 13:57:23 -07004485 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08004486 // Category 2
Ian Rogers7b078e82014-09-10 14:44:24 -07004487 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(),
4488 reg_types_.FromCat2ConstLo(0, false),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004489 reg_types_.FromCat2ConstHi(0, false));
Ian Rogers89310de2012-02-01 13:47:30 -08004490 }
jeffhaofc3144e2012-02-01 17:21:15 -08004491 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004492 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aget";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004493 } else if (array_type.IsUnresolvedMergedReference()) {
Andreas Gampebb18a032016-03-22 20:34:25 -07004494 // Unresolved array types must be reference array types.
4495 if (is_primitive) {
4496 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
4497 << " source for category 1 aget";
4498 } else {
4499 Fail(VERIFY_ERROR_NO_CLASS) << "cannot verify aget for " << array_type
4500 << " because of missing class";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004501 // Approximate with java.lang.Object[].
4502 work_line_->SetRegisterType<LockOp::kClear>(this,
4503 inst->VRegA_23x(),
4504 reg_types_.JavaLangObject(false));
Andreas Gampebb18a032016-03-22 20:34:25 -07004505 }
Ian Rogers89310de2012-02-01 13:47:30 -08004506 } else {
4507 /* verify the class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00004508 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
jeffhaofc3144e2012-02-01 17:21:15 -08004509 if (!component_type.IsReferenceTypes() && !is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07004510 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08004511 << " source for aget-object";
4512 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07004513 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08004514 << " source for category 1 aget";
4515 } else if (is_primitive && !insn_type.Equals(component_type) &&
4516 !((insn_type.IsInteger() && component_type.IsFloat()) ||
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004517 (insn_type.IsLong() && component_type.IsDouble()))) {
4518 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array type " << array_type
4519 << " incompatible with aget of type " << insn_type;
Ian Rogers89310de2012-02-01 13:47:30 -08004520 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004521 // Use knowledge of the field type which is stronger than the type inferred from the
4522 // instruction, which can't differentiate object types and ints from floats, longs from
4523 // doubles.
4524 if (!component_type.IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07004525 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), component_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004526 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004527 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(), component_type,
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004528 component_type.HighHalf(&reg_types_));
4529 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004530 }
4531 }
4532 }
4533}
4534
Ian Rogersd8f69b02014-09-10 21:43:52 +00004535void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
Jeff Haofe1f7c82013-08-01 14:50:24 -07004536 const uint32_t vregA) {
4537 // Primitive assignability rules are weaker than regular assignability rules.
4538 bool instruction_compatible;
4539 bool value_compatible;
Ian Rogers7b078e82014-09-10 14:44:24 -07004540 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
Jeff Haofe1f7c82013-08-01 14:50:24 -07004541 if (target_type.IsIntegralTypes()) {
Jeff Haoa4647482013-08-06 15:35:47 -07004542 instruction_compatible = target_type.Equals(insn_type);
Jeff Haofe1f7c82013-08-01 14:50:24 -07004543 value_compatible = value_type.IsIntegralTypes();
4544 } else if (target_type.IsFloat()) {
4545 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int
4546 value_compatible = value_type.IsFloatTypes();
4547 } else if (target_type.IsLong()) {
4548 instruction_compatible = insn_type.IsLong();
Andreas Gampe376fa682014-09-07 13:06:12 -07004549 // Additional register check: this is not checked statically (as part of VerifyInstructions),
4550 // as target_type depends on the resolved type of the field.
4551 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004552 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07004553 value_compatible = value_type.IsLongTypes() && value_type.CheckWidePair(value_type_hi);
4554 } else {
4555 value_compatible = false;
4556 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07004557 } else if (target_type.IsDouble()) {
4558 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long
Andreas Gampe376fa682014-09-07 13:06:12 -07004559 // Additional register check: this is not checked statically (as part of VerifyInstructions),
4560 // as target_type depends on the resolved type of the field.
4561 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004562 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07004563 value_compatible = value_type.IsDoubleTypes() && value_type.CheckWidePair(value_type_hi);
4564 } else {
4565 value_compatible = false;
4566 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07004567 } else {
4568 instruction_compatible = false; // reference with primitive store
4569 value_compatible = false; // unused
4570 }
4571 if (!instruction_compatible) {
4572 // This is a global failure rather than a class change failure as the instructions and
4573 // the descriptors for the type should have been consistent within the same file at
4574 // compile time.
4575 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
4576 << "' but expected type '" << target_type << "'";
4577 return;
4578 }
4579 if (!value_compatible) {
4580 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
4581 << " of type " << value_type << " but expected " << target_type << " for put";
4582 return;
4583 }
4584}
4585
Sebastien Hertz5243e912013-05-21 10:55:07 +02004586void MethodVerifier::VerifyAPut(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00004587 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004588 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07004589 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004590 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07004591 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004592 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08004593 if (array_type.IsZero()) {
Nicolas Geoffray66389fb2015-06-19 10:35:42 +01004594 // Null array type; this code path will fail at runtime.
4595 // Still check that the given value matches the instruction's type.
Andreas Gampe4bf4c782015-08-14 14:07:43 -07004596 // Note: this is, as usual, complicated by the fact the the instruction isn't fully typed
4597 // and fits multiple register types.
4598 const RegType* modified_reg_type = &insn_type;
4599 if ((modified_reg_type == &reg_types_.Integer()) ||
4600 (modified_reg_type == &reg_types_.LongLo())) {
4601 // May be integer or float | long or double. Overwrite insn_type accordingly.
4602 const RegType& value_type = work_line_->GetRegisterType(this, inst->VRegA_23x());
4603 if (modified_reg_type == &reg_types_.Integer()) {
4604 if (&value_type == &reg_types_.Float()) {
4605 modified_reg_type = &value_type;
4606 }
4607 } else {
4608 if (&value_type == &reg_types_.DoubleLo()) {
4609 modified_reg_type = &value_type;
4610 }
4611 }
4612 }
4613 work_line_->VerifyRegisterType(this, inst->VRegA_23x(), *modified_reg_type);
jeffhaofc3144e2012-02-01 17:21:15 -08004614 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004615 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aput";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004616 } else if (array_type.IsUnresolvedMergedReference()) {
Andreas Gampebb18a032016-03-22 20:34:25 -07004617 // Unresolved array types must be reference array types.
4618 if (is_primitive) {
4619 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
4620 << "' but unresolved type '" << array_type << "'";
4621 } else {
4622 Fail(VERIFY_ERROR_NO_CLASS) << "cannot verify aput for " << array_type
4623 << " because of missing class";
4624 }
Ian Rogers89310de2012-02-01 13:47:30 -08004625 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00004626 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
Jeff Haofe1f7c82013-08-01 14:50:24 -07004627 const uint32_t vregA = inst->VRegA_23x();
Jeff Haob24b4a72013-07-31 13:47:31 -07004628 if (is_primitive) {
Jeff Haofe1f7c82013-08-01 14:50:24 -07004629 VerifyPrimitivePut(component_type, insn_type, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07004630 } else {
Jeff Haob24b4a72013-07-31 13:47:31 -07004631 if (!component_type.IsReferenceTypes()) {
4632 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
4633 << " source for aput-object";
4634 } else {
4635 // The instruction agrees with the type of array, confirm the value to be stored does too
4636 // Note: we use the instruction type (rather than the component type) for aput-object as
4637 // incompatible classes will be caught at runtime as an array store exception
Ian Rogers7b078e82014-09-10 14:44:24 -07004638 work_line_->VerifyRegisterType(this, vregA, insn_type);
Jeff Haob24b4a72013-07-31 13:47:31 -07004639 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004640 }
4641 }
4642 }
4643}
4644
Mathieu Chartierc7853442015-03-27 14:35:38 -07004645ArtField* MethodVerifier::GetStaticField(int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08004646 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
4647 // Check access to class
Ian Rogersd8f69b02014-09-10 21:43:52 +00004648 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004649 if (klass_type.IsConflict()) { // bad class
Ian Rogersad0b3a32012-04-16 14:50:24 -07004650 AppendToLastFailMessage(StringPrintf(" in attempt to access static field %d (%s) in %s",
4651 field_idx, dex_file_->GetFieldName(field_id),
4652 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07004653 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08004654 }
Elliott Hughesb25c3f62012-03-26 16:35:06 -07004655 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004656 return nullptr; // Can't resolve Class so no more to do here, will do checking at runtime.
Ian Rogers90040192011-12-16 08:54:29 -08004657 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004658 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
David Brazdilca3c8c32016-09-06 14:04:48 +01004659 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_, class_loader_);
4660
4661 // Record result of the field resolution attempt.
4662 VerifierDeps::MaybeRecordFieldResolution(*dex_file_, field_idx, field);
4663
Ian Rogers7b078e82014-09-10 14:44:24 -07004664 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07004665 VLOG(verifier) << "Unable to resolve static field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07004666 << dex_file_->GetFieldName(field_id) << ") in "
4667 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07004668 DCHECK(self_->IsExceptionPending());
4669 self_->ClearException();
4670 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004671 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
4672 field->GetAccessFlags())) {
David Sehr709b0702016-10-13 09:12:37 -07004673 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access static field " << field->PrettyField()
Ian Rogersad0b3a32012-04-16 14:50:24 -07004674 << " from " << GetDeclaringClass();
Ian Rogers7b078e82014-09-10 14:44:24 -07004675 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004676 } else if (!field->IsStatic()) {
David Sehr709b0702016-10-13 09:12:37 -07004677 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << field->PrettyField() << " to be static";
Ian Rogers7b078e82014-09-10 14:44:24 -07004678 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004679 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004680 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07004681}
4682
Mathieu Chartierc7853442015-03-27 14:35:38 -07004683ArtField* MethodVerifier::GetInstanceField(const RegType& obj_type, int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08004684 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
Aart Bik31883642016-06-06 15:02:44 -07004685 // Check access to class.
Ian Rogersd8f69b02014-09-10 21:43:52 +00004686 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004687 if (klass_type.IsConflict()) {
4688 AppendToLastFailMessage(StringPrintf(" in attempt to access instance field %d (%s) in %s",
4689 field_idx, dex_file_->GetFieldName(field_id),
4690 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07004691 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08004692 }
jeffhao8cd6dda2012-02-22 10:15:34 -08004693 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004694 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08004695 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004696 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
David Brazdilca3c8c32016-09-06 14:04:48 +01004697 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_, class_loader_);
4698
4699 // Record result of the field resolution attempt.
4700 VerifierDeps::MaybeRecordFieldResolution(*dex_file_, field_idx, field);
4701
Ian Rogers7b078e82014-09-10 14:44:24 -07004702 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07004703 VLOG(verifier) << "Unable to resolve instance field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07004704 << dex_file_->GetFieldName(field_id) << ") in "
4705 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07004706 DCHECK(self_->IsExceptionPending());
4707 self_->ClearException();
4708 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004709 } else if (obj_type.IsZero()) {
Aart Bik31883642016-06-06 15:02:44 -07004710 // Cannot infer and check type, however, access will cause null pointer exception.
4711 // Fall through into a few last soft failure checks below.
Stephen Kyle695c5982014-08-22 15:03:07 +01004712 } else if (!obj_type.IsReferenceTypes()) {
Aart Bik31883642016-06-06 15:02:44 -07004713 // Trying to read a field from something that isn't a reference.
Stephen Kyle695c5982014-08-22 15:03:07 +01004714 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance field access on object that has "
4715 << "non-reference type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07004716 return nullptr;
Ian Rogerse1758fe2012-04-19 11:31:15 -07004717 } else {
David Brazdil0d638bb2016-07-27 15:29:25 +01004718 std::string temp;
Mathieu Chartier3398c782016-09-30 10:27:43 -07004719 ObjPtr<mirror::Class> klass = field->GetDeclaringClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00004720 const RegType& field_klass =
Mathieu Chartier3398c782016-09-30 10:27:43 -07004721 FromClass(klass->GetDescriptor(&temp),
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07004722 klass.Ptr(),
Mathieu Chartier3398c782016-09-30 10:27:43 -07004723 klass->CannotBeAssignedFromOtherTypes());
David Brazdil68b5c0b2016-01-19 14:25:29 +00004724 if (obj_type.IsUninitializedTypes()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07004725 // Field accesses through uninitialized references are only allowable for constructors where
David Brazdil68b5c0b2016-01-19 14:25:29 +00004726 // the field is declared in this class.
4727 // Note: this IsConstructor check is technically redundant, as UninitializedThis should only
4728 // appear in constructors.
4729 if (!obj_type.IsUninitializedThisReference() ||
4730 !IsConstructor() ||
4731 !field_klass.Equals(GetDeclaringClass())) {
David Sehr709b0702016-10-13 09:12:37 -07004732 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access instance field " << field->PrettyField()
David Brazdil68b5c0b2016-01-19 14:25:29 +00004733 << " of a not fully initialized object within the context"
David Sehr709b0702016-10-13 09:12:37 -07004734 << " of " << dex_file_->PrettyMethod(dex_method_idx_);
David Brazdil68b5c0b2016-01-19 14:25:29 +00004735 return nullptr;
4736 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004737 } else if (!field_klass.IsAssignableFrom(obj_type, this)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07004738 // Trying to access C1.field1 using reference of type C2, which is neither C1 or a sub-class
4739 // of C1. For resolution to occur the declared class of the field must be compatible with
4740 // obj_type, we've discovered this wasn't so, so report the field didn't exist.
Andreas Gampe66596242016-04-14 10:55:04 -07004741 VerifyError type;
4742 bool is_aot = Runtime::Current()->IsAotCompiler();
4743 if (is_aot && (field_klass.IsUnresolvedTypes() || obj_type.IsUnresolvedTypes())) {
4744 // Compiler & unresolved types involved, retry at runtime.
4745 type = VerifyError::VERIFY_ERROR_NO_CLASS;
4746 } else {
Andreas Gampe8f4ade02016-04-15 10:09:16 -07004747 // Classes known (resolved; and thus assignability check is precise), or we are at runtime
4748 // and still missing classes. This is a hard failure.
Andreas Gampe66596242016-04-14 10:55:04 -07004749 type = VerifyError::VERIFY_ERROR_BAD_CLASS_HARD;
4750 }
David Sehr709b0702016-10-13 09:12:37 -07004751 Fail(type) << "cannot access instance field " << field->PrettyField()
Andreas Gampe66596242016-04-14 10:55:04 -07004752 << " from object of type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07004753 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004754 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004755 }
Aart Bik31883642016-06-06 15:02:44 -07004756
4757 // Few last soft failure checks.
4758 if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
4759 field->GetAccessFlags())) {
David Sehr709b0702016-10-13 09:12:37 -07004760 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access instance field " << field->PrettyField()
Aart Bik31883642016-06-06 15:02:44 -07004761 << " from " << GetDeclaringClass();
4762 return nullptr;
4763 } else if (field->IsStatic()) {
David Sehr709b0702016-10-13 09:12:37 -07004764 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << field->PrettyField()
Aart Bik31883642016-06-06 15:02:44 -07004765 << " to not be static";
4766 return nullptr;
4767 }
4768
4769 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07004770}
4771
Andreas Gampe896df402014-10-20 22:25:29 -07004772template <MethodVerifier::FieldAccessType kAccType>
4773void MethodVerifier::VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type,
4774 bool is_primitive, bool is_static) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02004775 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
Mathieu Chartierc7853442015-03-27 14:35:38 -07004776 ArtField* field;
Ian Rogersb94a27b2011-10-26 00:33:41 -07004777 if (is_static) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07004778 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07004779 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004780 const RegType& object_type = work_line_->GetRegisterType(this, inst->VRegB_22c());
David Brazdil68b5c0b2016-01-19 14:25:29 +00004781
4782 // One is not allowed to access fields on uninitialized references, except to write to
4783 // fields in the constructor (before calling another constructor).
4784 // GetInstanceField does an assignability check which will fail for uninitialized types.
4785 // We thus modify the type if the uninitialized reference is a "this" reference (this also
4786 // checks at the same time that we're verifying a constructor).
4787 bool should_adjust = (kAccType == FieldAccessType::kAccPut) &&
4788 object_type.IsUninitializedThisReference();
4789 const RegType& adjusted_type = should_adjust
4790 ? GetRegTypeCache()->FromUninitialized(object_type)
4791 : object_type;
4792 field = GetInstanceField(adjusted_type, field_idx);
Andreas Gampe896df402014-10-20 22:25:29 -07004793 if (UNLIKELY(have_pending_hard_failure_)) {
4794 return;
4795 }
Alex Light4a2c8fc2016-02-12 11:01:54 -08004796 if (should_adjust) {
4797 if (field == nullptr) {
4798 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Might be accessing a superclass instance field prior "
4799 << "to the superclass being initialized in "
David Sehr709b0702016-10-13 09:12:37 -07004800 << dex_file_->PrettyMethod(dex_method_idx_);
Alex Light4a2c8fc2016-02-12 11:01:54 -08004801 } else if (field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
4802 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access superclass instance field "
David Sehr709b0702016-10-13 09:12:37 -07004803 << field->PrettyField() << " of a not fully initialized "
Alex Light4a2c8fc2016-02-12 11:01:54 -08004804 << "object within the context of "
David Sehr709b0702016-10-13 09:12:37 -07004805 << dex_file_->PrettyMethod(dex_method_idx_);
Alex Light4a2c8fc2016-02-12 11:01:54 -08004806 return;
4807 }
4808 }
Ian Rogersb94a27b2011-10-26 00:33:41 -07004809 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004810 const RegType* field_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07004811 if (field != nullptr) {
Andreas Gampe896df402014-10-20 22:25:29 -07004812 if (kAccType == FieldAccessType::kAccPut) {
4813 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
David Sehr709b0702016-10-13 09:12:37 -07004814 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << field->PrettyField()
Andreas Gampe896df402014-10-20 22:25:29 -07004815 << " from other class " << GetDeclaringClass();
Aart Bikc2bc2652016-05-23 14:58:49 -07004816 // Keep hunting for possible hard fails.
Andreas Gampe896df402014-10-20 22:25:29 -07004817 }
4818 }
4819
Mathieu Chartier3398c782016-09-30 10:27:43 -07004820 ObjPtr<mirror::Class> field_type_class =
Mathieu Chartierc7853442015-03-27 14:35:38 -07004821 can_load_classes_ ? field->GetType<true>() : field->GetType<false>();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004822 if (field_type_class != nullptr) {
Mathieu Chartier3398c782016-09-30 10:27:43 -07004823 field_type = &FromClass(field->GetTypeDescriptor(),
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07004824 field_type_class.Ptr(),
Andreas Gampef23f33d2015-06-23 14:18:17 -07004825 field_type_class->CannotBeAssignedFromOtherTypes());
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08004826 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004827 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
4828 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004829 }
Ian Rogers0d604842012-04-16 14:50:24 -07004830 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004831 if (field_type == nullptr) {
4832 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
4833 const char* descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07004834 field_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004835 }
Sebastien Hertz757b3042014-03-28 14:34:28 +01004836 DCHECK(field_type != nullptr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02004837 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c();
Andreas Gampe896df402014-10-20 22:25:29 -07004838 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
4839 "Unexpected third access type");
4840 if (kAccType == FieldAccessType::kAccPut) {
4841 // sput or iput.
4842 if (is_primitive) {
4843 VerifyPrimitivePut(*field_type, insn_type, vregA);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004844 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01004845 if (!insn_type.IsAssignableFrom(*field_type, this)) {
Vladimir Marko414000e2015-06-23 17:45:21 +01004846 // If the field type is not a reference, this is a global failure rather than
4847 // a class change failure as the instructions and the descriptors for the type
4848 // should have been consistent within the same file at compile time.
4849 VerifyError error = field_type->IsReferenceTypes() ? VERIFY_ERROR_BAD_CLASS_SOFT
4850 : VERIFY_ERROR_BAD_CLASS_HARD;
David Sehr709b0702016-10-13 09:12:37 -07004851 Fail(error) << "expected field " << ArtField::PrettyField(field)
Vladimir Marko414000e2015-06-23 17:45:21 +01004852 << " to be compatible with type '" << insn_type
4853 << "' but found type '" << *field_type
4854 << "' in put-object";
Andreas Gampe896df402014-10-20 22:25:29 -07004855 return;
4856 }
4857 work_line_->VerifyRegisterType(this, vregA, *field_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004858 }
Andreas Gampe896df402014-10-20 22:25:29 -07004859 } else if (kAccType == FieldAccessType::kAccGet) {
4860 // sget or iget.
4861 if (is_primitive) {
4862 if (field_type->Equals(insn_type) ||
4863 (field_type->IsFloat() && insn_type.IsInteger()) ||
4864 (field_type->IsDouble() && insn_type.IsLong())) {
4865 // expected that read is of the correct primitive type or that int reads are reading
4866 // floats or long reads are reading doubles
4867 } else {
4868 // This is a global failure rather than a class change failure as the instructions and
4869 // the descriptors for the type should have been consistent within the same file at
4870 // compile time
David Sehr709b0702016-10-13 09:12:37 -07004871 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07004872 << " to be of type '" << insn_type
4873 << "' but found type '" << *field_type << "' in get";
4874 return;
4875 }
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08004876 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01004877 if (!insn_type.IsAssignableFrom(*field_type, this)) {
Vladimir Marko414000e2015-06-23 17:45:21 +01004878 // If the field type is not a reference, this is a global failure rather than
4879 // a class change failure as the instructions and the descriptors for the type
4880 // should have been consistent within the same file at compile time.
4881 VerifyError error = field_type->IsReferenceTypes() ? VERIFY_ERROR_BAD_CLASS_SOFT
4882 : VERIFY_ERROR_BAD_CLASS_HARD;
David Sehr709b0702016-10-13 09:12:37 -07004883 Fail(error) << "expected field " << ArtField::PrettyField(field)
Vladimir Marko414000e2015-06-23 17:45:21 +01004884 << " to be compatible with type '" << insn_type
4885 << "' but found type '" << *field_type
4886 << "' in get-object";
Andreas Gampe890da292015-07-06 17:20:18 -07004887 if (error != VERIFY_ERROR_BAD_CLASS_HARD) {
Andreas Gampead238ce2015-08-24 21:13:08 -07004888 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, reg_types_.Conflict());
Andreas Gampe890da292015-07-06 17:20:18 -07004889 }
Andreas Gampe896df402014-10-20 22:25:29 -07004890 return;
4891 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004892 }
Andreas Gampe896df402014-10-20 22:25:29 -07004893 if (!field_type->IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07004894 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, *field_type);
Andreas Gampe896df402014-10-20 22:25:29 -07004895 } else {
4896 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
4897 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07004898 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004899 LOG(FATAL) << "Unexpected case.";
Ian Rogersd81871c2011-10-03 13:57:23 -07004900 }
4901}
4902
Mathieu Chartierc7853442015-03-27 14:35:38 -07004903ArtField* MethodVerifier::GetQuickFieldAccess(const Instruction* inst,
Ian Rogers98379392014-02-24 16:53:16 -08004904 RegisterLine* reg_line) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004905 DCHECK(IsInstructionIGetQuickOrIPutQuick(inst->Opcode())) << inst->Opcode();
Ian Rogers7b078e82014-09-10 14:44:24 -07004906 const RegType& object_type = reg_line->GetRegisterType(this, inst->VRegB_22c());
Ian Rogers9bc54402014-04-17 16:40:01 -07004907 if (!object_type.HasClass()) {
4908 VLOG(verifier) << "Failed to get mirror::Class* from '" << object_type << "'";
4909 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004910 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004911 uint32_t field_offset = static_cast<uint32_t>(inst->VRegC_22c());
Mathieu Chartierc7853442015-03-27 14:35:38 -07004912 ArtField* const f = ArtField::FindInstanceFieldWithOffset(object_type.GetClass(), field_offset);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004913 DCHECK_EQ(f->GetOffset().Uint32Value(), field_offset);
Sebastien Hertz479fc1e2014-04-04 17:51:34 +02004914 if (f == nullptr) {
4915 VLOG(verifier) << "Failed to find instance field at offset '" << field_offset
David Sehr709b0702016-10-13 09:12:37 -07004916 << "' from '" << mirror::Class::PrettyDescriptor(object_type.GetClass()) << "'";
Sebastien Hertz479fc1e2014-04-04 17:51:34 +02004917 }
4918 return f;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004919}
4920
Andreas Gampe896df402014-10-20 22:25:29 -07004921template <MethodVerifier::FieldAccessType kAccType>
4922void MethodVerifier::VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type,
4923 bool is_primitive) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07004924 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004925
Mathieu Chartierc7853442015-03-27 14:35:38 -07004926 ArtField* field = GetQuickFieldAccess(inst, work_line_.get());
Ian Rogers7b078e82014-09-10 14:44:24 -07004927 if (field == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004928 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field from " << inst->Name();
4929 return;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004930 }
Andreas Gampe896df402014-10-20 22:25:29 -07004931
4932 // For an IPUT_QUICK, we now test for final flag of the field.
4933 if (kAccType == FieldAccessType::kAccPut) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004934 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
David Sehr709b0702016-10-13 09:12:37 -07004935 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << field->PrettyField()
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004936 << " from other class " << GetDeclaringClass();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004937 return;
4938 }
4939 }
Andreas Gampe896df402014-10-20 22:25:29 -07004940
4941 // Get the field type.
4942 const RegType* field_type;
4943 {
Mathieu Chartier3398c782016-09-30 10:27:43 -07004944 ObjPtr<mirror::Class> field_type_class = can_load_classes_ ? field->GetType<true>() :
Mathieu Chartierc7853442015-03-27 14:35:38 -07004945 field->GetType<false>();
Andreas Gampe896df402014-10-20 22:25:29 -07004946
4947 if (field_type_class != nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07004948 field_type = &FromClass(field->GetTypeDescriptor(),
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07004949 field_type_class.Ptr(),
Andreas Gampef23f33d2015-06-23 14:18:17 -07004950 field_type_class->CannotBeAssignedFromOtherTypes());
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004951 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004952 Thread* self = Thread::Current();
4953 DCHECK(!can_load_classes_ || self->IsExceptionPending());
4954 self->ClearException();
4955 field_type = &reg_types_.FromDescriptor(field->GetDeclaringClass()->GetClassLoader(),
Mathieu Chartierde40d472015-10-15 17:47:48 -07004956 field->GetTypeDescriptor(),
4957 false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004958 }
Andreas Gampe896df402014-10-20 22:25:29 -07004959 if (field_type == nullptr) {
4960 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field type from " << inst->Name();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004961 return;
4962 }
Andreas Gampe896df402014-10-20 22:25:29 -07004963 }
4964
4965 const uint32_t vregA = inst->VRegA_22c();
4966 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
4967 "Unexpected third access type");
4968 if (kAccType == FieldAccessType::kAccPut) {
4969 if (is_primitive) {
4970 // Primitive field assignability rules are weaker than regular assignability rules
4971 bool instruction_compatible;
4972 bool value_compatible;
4973 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
4974 if (field_type->IsIntegralTypes()) {
4975 instruction_compatible = insn_type.IsIntegralTypes();
4976 value_compatible = value_type.IsIntegralTypes();
4977 } else if (field_type->IsFloat()) {
4978 instruction_compatible = insn_type.IsInteger(); // no [is]put-float, so expect [is]put-int
4979 value_compatible = value_type.IsFloatTypes();
4980 } else if (field_type->IsLong()) {
4981 instruction_compatible = insn_type.IsLong();
4982 value_compatible = value_type.IsLongTypes();
4983 } else if (field_type->IsDouble()) {
4984 instruction_compatible = insn_type.IsLong(); // no [is]put-double, so expect [is]put-long
4985 value_compatible = value_type.IsDoubleTypes();
4986 } else {
4987 instruction_compatible = false; // reference field with primitive store
4988 value_compatible = false; // unused
4989 }
4990 if (!instruction_compatible) {
4991 // This is a global failure rather than a class change failure as the instructions and
4992 // the descriptors for the type should have been consistent within the same file at
4993 // compile time
David Sehr709b0702016-10-13 09:12:37 -07004994 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07004995 << " to be of type '" << insn_type
4996 << "' but found type '" << *field_type
4997 << "' in put";
4998 return;
4999 }
5000 if (!value_compatible) {
5001 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
5002 << " of type " << value_type
5003 << " but expected " << *field_type
David Sehr709b0702016-10-13 09:12:37 -07005004 << " for store to " << ArtField::PrettyField(field) << " in put";
Andreas Gampe896df402014-10-20 22:25:29 -07005005 return;
5006 }
5007 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005008 if (!insn_type.IsAssignableFrom(*field_type, this)) {
David Sehr709b0702016-10-13 09:12:37 -07005009 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005010 << " to be compatible with type '" << insn_type
5011 << "' but found type '" << *field_type
5012 << "' in put-object";
5013 return;
5014 }
5015 work_line_->VerifyRegisterType(this, vregA, *field_type);
5016 }
5017 } else if (kAccType == FieldAccessType::kAccGet) {
5018 if (is_primitive) {
5019 if (field_type->Equals(insn_type) ||
5020 (field_type->IsFloat() && insn_type.IsIntegralTypes()) ||
5021 (field_type->IsDouble() && insn_type.IsLongTypes())) {
5022 // expected that read is of the correct primitive type or that int reads are reading
5023 // floats or long reads are reading doubles
5024 } else {
5025 // This is a global failure rather than a class change failure as the instructions and
5026 // the descriptors for the type should have been consistent within the same file at
5027 // compile time
David Sehr709b0702016-10-13 09:12:37 -07005028 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005029 << " to be of type '" << insn_type
5030 << "' but found type '" << *field_type << "' in Get";
5031 return;
5032 }
5033 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005034 if (!insn_type.IsAssignableFrom(*field_type, this)) {
David Sehr709b0702016-10-13 09:12:37 -07005035 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005036 << " to be compatible with type '" << insn_type
5037 << "' but found type '" << *field_type
5038 << "' in get-object";
Andreas Gampead238ce2015-08-24 21:13:08 -07005039 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, reg_types_.Conflict());
Andreas Gampe896df402014-10-20 22:25:29 -07005040 return;
5041 }
5042 }
5043 if (!field_type->IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07005044 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, *field_type);
Andreas Gampe896df402014-10-20 22:25:29 -07005045 } else {
5046 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005047 }
5048 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07005049 LOG(FATAL) << "Unexpected case.";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005050 }
5051}
5052
Ian Rogers776ac1f2012-04-13 23:36:36 -07005053bool MethodVerifier::CheckNotMoveException(const uint16_t* insns, int insn_idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07005054 if ((insns[insn_idx] & 0xff) == Instruction::MOVE_EXCEPTION) {
jeffhaod5347e02012-03-22 17:25:05 -07005055 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-exception";
Ian Rogersd81871c2011-10-03 13:57:23 -07005056 return false;
5057 }
5058 return true;
5059}
5060
Stephen Kyle9bc61992014-09-22 13:53:15 +01005061bool MethodVerifier::CheckNotMoveResult(const uint16_t* insns, int insn_idx) {
5062 if (((insns[insn_idx] & 0xff) >= Instruction::MOVE_RESULT) &&
5063 ((insns[insn_idx] & 0xff) <= Instruction::MOVE_RESULT_OBJECT)) {
5064 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-result*";
5065 return false;
5066 }
5067 return true;
5068}
5069
5070bool MethodVerifier::CheckNotMoveExceptionOrMoveResult(const uint16_t* insns, int insn_idx) {
5071 return (CheckNotMoveException(insns, insn_idx) && CheckNotMoveResult(insns, insn_idx));
5072}
5073
Ian Rogersebbdd872014-07-07 23:53:08 -07005074bool MethodVerifier::UpdateRegisters(uint32_t next_insn, RegisterLine* merge_line,
5075 bool update_merge_line) {
Ian Rogersd81871c2011-10-03 13:57:23 -07005076 bool changed = true;
5077 RegisterLine* target_line = reg_table_.GetLine(next_insn);
Mathieu Chartierde40d472015-10-15 17:47:48 -07005078 if (!GetInstructionFlags(next_insn).IsVisitedOrChanged()) {
jeffhaobdb76512011-09-07 11:43:16 -07005079 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07005080 * We haven't processed this instruction before, and we haven't touched the registers here, so
5081 * there's nothing to "merge". Copy the registers over and mark it as changed. (This is the
5082 * only way a register can transition out of "unknown", so this is not just an optimization.)
jeffhaobdb76512011-09-07 11:43:16 -07005083 */
Andreas Gampea727e372015-08-25 09:22:37 -07005084 target_line->CopyFromLine(merge_line);
Mathieu Chartierde40d472015-10-15 17:47:48 -07005085 if (GetInstructionFlags(next_insn).IsReturn()) {
Jeff Haob24b4a72013-07-31 13:47:31 -07005086 // Verify that the monitor stack is empty on return.
Andreas Gampea727e372015-08-25 09:22:37 -07005087 merge_line->VerifyMonitorStackEmpty(this);
5088
Ian Rogersb8c78592013-07-25 23:52:52 +00005089 // For returns we only care about the operand to the return, all other registers are dead.
5090 // Initialize them as conflicts so they don't add to GC and deoptimization information.
5091 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn);
Andreas Gampea727e372015-08-25 09:22:37 -07005092 AdjustReturnLine(this, ret_inst, target_line);
Aart Bik31883642016-06-06 15:02:44 -07005093 // Directly bail if a hard failure was found.
Aart Bikb0526322016-06-01 14:06:00 -07005094 if (have_pending_hard_failure_) {
5095 return false;
5096 }
Ian Rogersb8c78592013-07-25 23:52:52 +00005097 }
jeffhaobdb76512011-09-07 11:43:16 -07005098 } else {
Mathieu Chartier361e04a2016-02-16 14:06:35 -08005099 RegisterLineArenaUniquePtr copy;
Andreas Gampeec6e6c12015-11-05 20:39:56 -08005100 if (kDebugVerify) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005101 copy.reset(RegisterLine::Create(target_line->NumRegs(), this));
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005102 copy->CopyFromLine(target_line);
5103 }
Ian Rogers7b078e82014-09-10 14:44:24 -07005104 changed = target_line->MergeRegisters(this, merge_line);
Ian Rogersad0b3a32012-04-16 14:50:24 -07005105 if (have_pending_hard_failure_) {
Ian Rogersd81871c2011-10-03 13:57:23 -07005106 return false;
jeffhaobdb76512011-09-07 11:43:16 -07005107 }
Andreas Gampeec6e6c12015-11-05 20:39:56 -08005108 if (kDebugVerify && changed) {
Elliott Hughes398f64b2012-03-26 18:05:48 -07005109 LogVerifyInfo() << "Merging at [" << reinterpret_cast<void*>(work_insn_idx_) << "]"
Elliott Hughesc073b072012-05-24 19:29:17 -07005110 << " to [" << reinterpret_cast<void*>(next_insn) << "]: " << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07005111 << copy->Dump(this) << " MERGE\n"
5112 << merge_line->Dump(this) << " ==\n"
5113 << target_line->Dump(this) << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07005114 }
Ian Rogersebbdd872014-07-07 23:53:08 -07005115 if (update_merge_line && changed) {
5116 merge_line->CopyFromLine(target_line);
5117 }
jeffhaobdb76512011-09-07 11:43:16 -07005118 }
Ian Rogersd81871c2011-10-03 13:57:23 -07005119 if (changed) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005120 GetInstructionFlags(next_insn).SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07005121 }
5122 return true;
5123}
5124
Ian Rogers7b3ddd22013-02-21 15:19:52 -08005125InstructionFlags* MethodVerifier::CurrentInsnFlags() {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005126 return &GetInstructionFlags(work_insn_idx_);
Ian Rogers776ac1f2012-04-13 23:36:36 -07005127}
5128
Ian Rogersd8f69b02014-09-10 21:43:52 +00005129const RegType& MethodVerifier::GetMethodReturnType() {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005130 if (return_type_ == nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005131 if (mirror_method_ != nullptr) {
Vladimir Marko942fd312017-01-16 20:52:19 +00005132 mirror::Class* return_type_class = mirror_method_->GetReturnType(can_load_classes_);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005133 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07005134 return_type_ = &FromClass(mirror_method_->GetReturnTypeDescriptor(),
5135 return_type_class,
5136 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005137 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07005138 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
5139 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005140 }
5141 }
5142 if (return_type_ == nullptr) {
5143 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
5144 const DexFile::ProtoId& proto_id = dex_file_->GetMethodPrototype(method_id);
Andreas Gampea5b09a62016-11-17 15:21:22 -08005145 dex::TypeIndex return_type_idx = proto_id.return_type_idx_;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005146 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx));
Mathieu Chartierbf99f772014-08-23 16:37:27 -07005147 return_type_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005148 }
5149 }
5150 return *return_type_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07005151}
5152
Ian Rogersd8f69b02014-09-10 21:43:52 +00005153const RegType& MethodVerifier::GetDeclaringClass() {
Ian Rogers7b078e82014-09-10 14:44:24 -07005154 if (declaring_class_ == nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005155 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
Brian Carlstrom93c33962013-07-26 10:37:43 -07005156 const char* descriptor
5157 = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
Mathieu Chartiere401d142015-04-22 13:56:20 -07005158 if (mirror_method_ != nullptr) {
Ian Rogers637c65b2013-05-31 11:46:00 -07005159 mirror::Class* klass = mirror_method_->GetDeclaringClass();
Mathieu Chartierde40d472015-10-15 17:47:48 -07005160 declaring_class_ = &FromClass(descriptor, klass, klass->CannotBeAssignedFromOtherTypes());
Ian Rogers637c65b2013-05-31 11:46:00 -07005161 } else {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07005162 declaring_class_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers637c65b2013-05-31 11:46:00 -07005163 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07005164 }
Ian Rogers637c65b2013-05-31 11:46:00 -07005165 return *declaring_class_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07005166}
5167
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005168std::vector<int32_t> MethodVerifier::DescribeVRegs(uint32_t dex_pc) {
5169 RegisterLine* line = reg_table_.GetLine(dex_pc);
Sebastien Hertzaa0c00c2014-03-14 17:58:54 +01005170 DCHECK(line != nullptr) << "No register line at DEX pc " << StringPrintf("0x%x", dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005171 std::vector<int32_t> result;
5172 for (size_t i = 0; i < line->NumRegs(); ++i) {
Ian Rogers7b078e82014-09-10 14:44:24 -07005173 const RegType& type = line->GetRegisterType(this, i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005174 if (type.IsConstant()) {
5175 result.push_back(type.IsPreciseConstant() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07005176 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
5177 result.push_back(const_val->ConstantValue());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005178 } else if (type.IsConstantLo()) {
5179 result.push_back(type.IsPreciseConstantLo() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07005180 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
5181 result.push_back(const_val->ConstantValueLo());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005182 } else if (type.IsConstantHi()) {
5183 result.push_back(type.IsPreciseConstantHi() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07005184 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
5185 result.push_back(const_val->ConstantValueHi());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005186 } else if (type.IsIntegralTypes()) {
5187 result.push_back(kIntVReg);
5188 result.push_back(0);
5189 } else if (type.IsFloat()) {
5190 result.push_back(kFloatVReg);
5191 result.push_back(0);
5192 } else if (type.IsLong()) {
5193 result.push_back(kLongLoVReg);
5194 result.push_back(0);
5195 result.push_back(kLongHiVReg);
5196 result.push_back(0);
5197 ++i;
5198 } else if (type.IsDouble()) {
5199 result.push_back(kDoubleLoVReg);
5200 result.push_back(0);
5201 result.push_back(kDoubleHiVReg);
5202 result.push_back(0);
5203 ++i;
5204 } else if (type.IsUndefined() || type.IsConflict() || type.IsHighHalf()) {
5205 result.push_back(kUndefined);
5206 result.push_back(0);
5207 } else {
Ian Rogers7b3ddd22013-02-21 15:19:52 -08005208 CHECK(type.IsNonZeroReferenceTypes());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005209 result.push_back(kReferenceVReg);
5210 result.push_back(0);
5211 }
5212 }
5213 return result;
5214}
5215
Ian Rogersd8f69b02014-09-10 21:43:52 +00005216const RegType& MethodVerifier::DetermineCat1Constant(int32_t value, bool precise) {
Sebastien Hertz849600b2013-12-20 10:28:08 +01005217 if (precise) {
5218 // Precise constant type.
5219 return reg_types_.FromCat1Const(value, true);
5220 } else {
5221 // Imprecise constant type.
5222 if (value < -32768) {
5223 return reg_types_.IntConstant();
5224 } else if (value < -128) {
5225 return reg_types_.ShortConstant();
5226 } else if (value < 0) {
5227 return reg_types_.ByteConstant();
5228 } else if (value == 0) {
5229 return reg_types_.Zero();
5230 } else if (value == 1) {
5231 return reg_types_.One();
5232 } else if (value < 128) {
5233 return reg_types_.PosByteConstant();
5234 } else if (value < 32768) {
5235 return reg_types_.PosShortConstant();
5236 } else if (value < 65536) {
5237 return reg_types_.CharConstant();
5238 } else {
5239 return reg_types_.IntConstant();
5240 }
5241 }
5242}
5243
Elliott Hughes0a1038b2012-06-14 16:24:17 -07005244void MethodVerifier::Init() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08005245 art::verifier::RegTypeCache::Init();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08005246}
5247
Elliott Hughes0a1038b2012-06-14 16:24:17 -07005248void MethodVerifier::Shutdown() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08005249 verifier::RegTypeCache::ShutDown();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08005250}
jeffhaod1224c72012-02-29 13:43:08 -08005251
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07005252void MethodVerifier::VisitStaticRoots(RootVisitor* visitor) {
5253 RegTypeCache::VisitStaticRoots(visitor);
Mathieu Chartier7c438b12014-09-12 17:01:24 -07005254}
5255
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07005256void MethodVerifier::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
5257 reg_types_.VisitRoots(visitor, root_info);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08005258}
5259
Andreas Gampef23f33d2015-06-23 14:18:17 -07005260const RegType& MethodVerifier::FromClass(const char* descriptor,
5261 mirror::Class* klass,
5262 bool precise) {
5263 DCHECK(klass != nullptr);
5264 if (precise && !klass->IsInstantiable() && !klass->IsPrimitive()) {
5265 Fail(VerifyError::VERIFY_ERROR_NO_CLASS) << "Could not create precise reference for "
5266 << "non-instantiable klass " << descriptor;
5267 precise = false;
5268 }
5269 return reg_types_.FromClass(descriptor, klass, precise);
5270}
5271
Ian Rogersd81871c2011-10-03 13:57:23 -07005272} // namespace verifier
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005273} // namespace art