blob: e4ad55dda1b157f5d80a23efeb9031295d43faaf [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
Mathieu Chartierc645f1d2014-03-06 18:11:53 -080017#include "method_verifier-inl.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Elliott Hughes1f359b02011-07-17 14:27:17 -070019#include <iostream>
20
Andreas Gampe46ee31b2016-12-14 10:11:49 -080021#include "android-base/stringprintf.h"
22
Mathieu Chartierc7853442015-03-27 14:35:38 -070023#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070024#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070025#include "base/enums.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080026#include "base/logging.h"
Ian Rogers637c65b2013-05-31 11:46:00 -070027#include "base/mutex-inl.h"
Vladimir Marko637ee0b2015-09-04 12:47:41 +010028#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080029#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010030#include "base/time_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070031#include "class_linker.h"
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000032#include "compiler_callbacks.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070033#include "dex_file-inl.h"
Ian Rogersd0583802013-06-01 10:51:46 -070034#include "dex_instruction-inl.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080035#include "dex_instruction_utils.h"
Alex Lighteb7c1442015-08-31 13:17:42 -070036#include "experimental_flags.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070037#include "gc/accounting/card_table-inl.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070038#include "handle_scope-inl.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080039#include "indenter.h"
Ian Rogers84fa0742011-10-25 18:13:30 -070040#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070041#include "leb128.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042#include "mirror/class-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070043#include "mirror/class.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070044#include "mirror/dex_cache-inl.h"
Orion Hodsoncfa325e2016-10-13 10:25:54 +010045#include "mirror/method_handle_impl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080046#include "mirror/object-inl.h"
47#include "mirror/object_array-inl.h"
Ian Rogers7b078e82014-09-10 14:44:24 -070048#include "reg_type-inl.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070049#include "register_line-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070050#include "runtime.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070051#include "scoped_thread_state_change-inl.h"
Andreas Gampe513061a2017-06-01 09:17:34 -070052#include "stack.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010053#include "utils.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070054#include "verifier_compiler_binding.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070055#include "verifier_deps.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
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700139FailureKind MethodVerifier::VerifyClass(Thread* self,
140 mirror::Class* klass,
141 CompilerCallbacks* callbacks,
142 bool allow_soft_failures,
143 HardFailLogMode log_level,
144 std::string* error) {
jeffhaobdb76512011-09-07 11:43:16 -0700145 if (klass->IsVerified()) {
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700146 return FailureKind::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 }
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700170 return FailureKind::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 Gampe6d7abbd2017-04-24 13:19:09 -0700191static FailureKind FailureKindMax(FailureKind fk1, FailureKind fk2) {
192 static_assert(FailureKind::kNoFailure < FailureKind::kSoftFailure
193 && FailureKind::kSoftFailure < FailureKind::kHardFailure,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800194 "Unexpected FailureKind order");
195 return std::max(fk1, fk2);
196}
197
198void MethodVerifier::FailureData::Merge(const MethodVerifier::FailureData& fd) {
199 kind = FailureKindMax(kind, fd.kind);
200 types |= fd.types;
201}
202
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800203template <bool kDirect>
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800204MethodVerifier::FailureData MethodVerifier::VerifyMethods(Thread* self,
205 ClassLinker* linker,
206 const DexFile* dex_file,
David Brazdil15fc7292016-09-02 14:13:18 +0100207 const DexFile::ClassDef& class_def,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800208 ClassDataItemIterator* it,
209 Handle<mirror::DexCache> dex_cache,
210 Handle<mirror::ClassLoader> class_loader,
211 CompilerCallbacks* callbacks,
212 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700213 HardFailLogMode log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800214 bool need_precise_constants,
215 std::string* error_string) {
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800216 DCHECK(it != nullptr);
217
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800218 MethodVerifier::FailureData failure_data;
219
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800220 int64_t previous_method_idx = -1;
221 while (HasNextMethod<kDirect>(it)) {
222 self->AllowThreadSuspension();
223 uint32_t method_idx = it->GetMemberIndex();
224 if (method_idx == previous_method_idx) {
225 // smali can create dex files with two encoded_methods sharing the same method_idx
226 // http://code.google.com/p/smali/issues/detail?id=119
227 it->Next();
228 continue;
229 }
230 previous_method_idx = method_idx;
David Brazdil15fc7292016-09-02 14:13:18 +0100231 InvokeType type = it->GetMethodInvokeType(class_def);
Vladimir Markoba118822017-06-12 15:41:56 +0100232 ArtMethod* method = linker->ResolveMethod<ClassLinker::ResolveMode::kNoChecks>(
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800233 *dex_file, method_idx, dex_cache, class_loader, nullptr, type);
234 if (method == nullptr) {
235 DCHECK(self->IsExceptionPending());
236 // We couldn't resolve the method, but continue regardless.
237 self->ClearException();
238 } else {
239 DCHECK(method->GetDeclaringClassUnchecked() != nullptr) << type;
240 }
241 StackHandleScope<1> hs(self);
242 std::string hard_failure_msg;
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800243 MethodVerifier::FailureData result = VerifyMethod(self,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800244 method_idx,
245 dex_file,
246 dex_cache,
247 class_loader,
248 class_def,
249 it->GetMethodCodeItem(),
250 method,
251 it->GetMethodAccessFlags(),
Andreas Gampe53e32d12015-12-09 21:03:23 -0800252 callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800253 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700254 log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800255 need_precise_constants,
256 &hard_failure_msg);
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700257 if (result.kind == FailureKind::kHardFailure) {
258 if (failure_data.kind == FailureKind::kHardFailure) {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800259 // If we logged an error before, we need a newline.
260 *error_string += "\n";
261 } else {
262 // If we didn't log a hard failure before, print the header of the message.
263 *error_string += "Verifier rejected class ";
David Brazdil15fc7292016-09-02 14:13:18 +0100264 *error_string += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800265 *error_string += ":";
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800266 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800267 *error_string += " ";
268 *error_string += hard_failure_msg;
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800269 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800270 failure_data.Merge(result);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800271 it->Next();
272 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800273
274 return failure_data;
Shih-wei Liao371814f2011-10-27 16:52:10 -0700275}
276
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700277FailureKind MethodVerifier::VerifyClass(Thread* self,
278 const DexFile* dex_file,
279 Handle<mirror::DexCache> dex_cache,
280 Handle<mirror::ClassLoader> class_loader,
281 const DexFile::ClassDef& class_def,
282 CompilerCallbacks* callbacks,
283 bool allow_soft_failures,
284 HardFailLogMode log_level,
285 std::string* error) {
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800286 ScopedTrace trace(__FUNCTION__);
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700287
288 // A class must not be abstract and final.
David Brazdil15fc7292016-09-02 14:13:18 +0100289 if ((class_def.access_flags_ & (kAccAbstract | kAccFinal)) == (kAccAbstract | kAccFinal)) {
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700290 *error = "Verifier rejected class ";
David Brazdil15fc7292016-09-02 14:13:18 +0100291 *error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700292 *error += ": class is abstract and final.";
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700293 return FailureKind::kHardFailure;
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700294 }
295
David Brazdil15fc7292016-09-02 14:13:18 +0100296 const uint8_t* class_data = dex_file->GetClassData(class_def);
Ian Rogers7b078e82014-09-10 14:44:24 -0700297 if (class_data == nullptr) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700298 // empty class, probably a marker interface
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700299 return FailureKind::kNoFailure;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700300 }
jeffhaof56197c2012-03-05 18:01:54 -0800301 ClassDataItemIterator it(*dex_file, class_data);
Mathieu Chartiere17cf242017-06-19 11:05:51 -0700302 it.SkipAllFields();
Ian Rogersad0b3a32012-04-16 14:50:24 -0700303 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800304 // Direct methods.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800305 MethodVerifier::FailureData data1 = VerifyMethods<true>(self,
306 linker,
307 dex_file,
308 class_def,
309 &it,
310 dex_cache,
311 class_loader,
312 callbacks,
313 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700314 log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800315 false /* need precise constants */,
316 error);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800317 // Virtual methods.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800318 MethodVerifier::FailureData data2 = VerifyMethods<false>(self,
319 linker,
320 dex_file,
321 class_def,
322 &it,
323 dex_cache,
324 class_loader,
325 callbacks,
326 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700327 log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800328 false /* need precise constants */,
329 error);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800330
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800331 data1.Merge(data2);
332
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700333 if (data1.kind == FailureKind::kNoFailure) {
334 return FailureKind::kNoFailure;
jeffhaof1e6b7c2012-06-05 18:33:30 -0700335 } else {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800336 if ((data1.types & VERIFY_ERROR_LOCKING) != 0) {
337 // Print a warning about expected slow-down. Use a string temporary to print one contiguous
338 // warning.
339 std::string tmp =
340 StringPrintf("Class %s failed lock verification and will run slower.",
David Brazdil15fc7292016-09-02 14:13:18 +0100341 PrettyDescriptor(dex_file->GetClassDescriptor(class_def)).c_str());
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800342 if (!gPrintedDxMonitorText) {
343 tmp = tmp + "\nCommon causes for lock verification issues are non-optimized dex code\n"
344 "and incorrect proguard optimizations.";
345 gPrintedDxMonitorText = true;
346 }
347 LOG(WARNING) << tmp;
348 }
349 return data1.kind;
jeffhaof1e6b7c2012-06-05 18:33:30 -0700350 }
jeffhaof56197c2012-03-05 18:01:54 -0800351}
352
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700353static bool IsLargeMethod(const DexFile::CodeItem* const code_item) {
Andreas Gampe3c651fc2015-05-21 14:06:46 -0700354 if (code_item == nullptr) {
355 return false;
356 }
357
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700358 uint16_t registers_size = code_item->registers_size_;
359 uint32_t insns_size = code_item->insns_size_in_code_units_;
360
361 return registers_size * insns_size > 4*1024*1024;
362}
363
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800364MethodVerifier::FailureData MethodVerifier::VerifyMethod(Thread* self,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800365 uint32_t method_idx,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800366 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700367 Handle<mirror::DexCache> dex_cache,
368 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100369 const DexFile::ClassDef& class_def,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800370 const DexFile::CodeItem* code_item,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700371 ArtMethod* method,
Jeff Haoee988952013-04-16 14:23:47 -0700372 uint32_t method_access_flags,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800373 CompilerCallbacks* callbacks,
Ian Rogers46960fe2014-05-23 10:43:43 -0700374 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700375 HardFailLogMode log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800376 bool need_precise_constants,
377 std::string* hard_failure_msg) {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800378 MethodVerifier::FailureData result;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700379 uint64_t start_ns = kTimeVerifyMethod ? NanoTime() : 0;
Ian Rogersc8982582012-09-07 16:53:25 -0700380
Andreas Gampebf9611f2016-03-25 16:58:00 -0700381 MethodVerifier verifier(self,
382 dex_file,
383 dex_cache,
384 class_loader,
385 class_def,
386 code_item,
387 method_idx,
388 method,
389 method_access_flags,
390 true /* can_load_classes */,
391 allow_soft_failures,
392 need_precise_constants,
393 false /* verify to dump */,
394 true /* allow_thread_suspension */);
Ian Rogers46960fe2014-05-23 10:43:43 -0700395 if (verifier.Verify()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700396 // Verification completed, however failures may be pending that didn't cause the verification
397 // to hard fail.
Ian Rogers46960fe2014-05-23 10:43:43 -0700398 CHECK(!verifier.have_pending_hard_failure_);
Andreas Gampe53e32d12015-12-09 21:03:23 -0800399
400 if (code_item != nullptr && callbacks != nullptr) {
401 // Let the interested party know that the method was verified.
402 callbacks->MethodVerified(&verifier);
403 }
404
Ian Rogers46960fe2014-05-23 10:43:43 -0700405 if (verifier.failures_.size() != 0) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700406 if (VLOG_IS_ON(verifier)) {
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800407 verifier.DumpFailures(VLOG_STREAM(verifier) << "Soft verification failures in "
David Sehr709b0702016-10-13 09:12:37 -0700408 << dex_file->PrettyMethod(method_idx) << "\n");
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700409 }
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700410 result.kind = FailureKind::kSoftFailure;
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100411 if (method != nullptr &&
412 !CanCompilerHandleVerificationFailure(verifier.encountered_failure_types_)) {
Alex Lightfcbafb32017-02-02 15:09:54 -0800413 method->SetDontCompile();
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100414 }
415 }
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700416 if (method != nullptr) {
417 if (verifier.HasInstructionThatWillThrow()) {
Alex Lightfcbafb32017-02-02 15:09:54 -0800418 method->SetDontCompile();
Calin Juravle857f0582016-12-20 14:36:59 +0000419 if (Runtime::Current()->IsAotCompiler() &&
420 (callbacks != nullptr) && !callbacks->IsBootImage()) {
421 // When compiling apps, make HasInstructionThatWillThrow a soft error to trigger
422 // re-verification at runtime.
423 // The dead code after the throw is not verified and might be invalid. This may cause
424 // the JIT compiler to crash since it assumes that all the code is valid.
425 //
426 // There's a strong assumption that the entire boot image is verified and all its dex
427 // code is valid (even the dead and unverified one). As such this is done only for apps.
428 // (CompilerDriver DCHECKs in VerifyClassVisitor that methods from boot image are
429 // fully verified).
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700430 result.kind = FailureKind::kSoftFailure;
Calin Juravle857f0582016-12-20 14:36:59 +0000431 }
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700432 }
433 if ((verifier.encountered_failure_types_ & VerifyError::VERIFY_ERROR_LOCKING) != 0) {
Mingyao Yang063fc772016-08-02 11:02:54 -0700434 method->AddAccessFlags(kAccMustCountLocks);
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700435 }
jeffhaof56197c2012-03-05 18:01:54 -0800436 }
437 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700438 // Bad method data.
Ian Rogers46960fe2014-05-23 10:43:43 -0700439 CHECK_NE(verifier.failures_.size(), 0U);
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700440
441 if (UNLIKELY(verifier.have_pending_experimental_failure_)) {
442 // Failed due to being forced into interpreter. This is ok because
443 // we just want to skip verification.
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700444 result.kind = FailureKind::kSoftFailure;
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700445 } else {
446 CHECK(verifier.have_pending_hard_failure_);
Andreas Gampe7fe30232016-03-25 16:58:00 -0700447 if (VLOG_IS_ON(verifier)) {
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700448 log_level = std::max(HardFailLogMode::kLogVerbose, log_level);
Andreas Gampe7fe30232016-03-25 16:58:00 -0700449 }
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700450 if (log_level >= HardFailLogMode::kLogVerbose) {
451 LogSeverity severity;
452 switch (log_level) {
453 case HardFailLogMode::kLogVerbose:
454 severity = LogSeverity::VERBOSE;
455 break;
456 case HardFailLogMode::kLogWarning:
457 severity = LogSeverity::WARNING;
458 break;
459 case HardFailLogMode::kLogInternalFatal:
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700460 severity = LogSeverity::FATAL_WITHOUT_ABORT;
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700461 break;
462 default:
463 LOG(FATAL) << "Unsupported log-level " << static_cast<uint32_t>(log_level);
464 UNREACHABLE();
465 }
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700466 verifier.DumpFailures(LOG_STREAM(severity) << "Verification error in "
David Sehr709b0702016-10-13 09:12:37 -0700467 << dex_file->PrettyMethod(method_idx)
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700468 << "\n");
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800469 }
470 if (hard_failure_msg != nullptr) {
471 CHECK(!verifier.failure_messages_.empty());
472 *hard_failure_msg =
473 verifier.failure_messages_[verifier.failure_messages_.size() - 1]->str();
474 }
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700475 result.kind = FailureKind::kHardFailure;
Andreas Gampe53e32d12015-12-09 21:03:23 -0800476
477 if (callbacks != nullptr) {
478 // Let the interested party know that we failed the class.
David Brazdil15fc7292016-09-02 14:13:18 +0100479 ClassReference ref(dex_file, dex_file->GetIndexForClassDef(class_def));
Andreas Gampe53e32d12015-12-09 21:03:23 -0800480 callbacks->ClassRejected(ref);
481 }
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700482 }
Andreas Gampe53e32d12015-12-09 21:03:23 -0800483 if (VLOG_IS_ON(verifier)) {
Ian Rogers46960fe2014-05-23 10:43:43 -0700484 std::cout << "\n" << verifier.info_messages_.str();
485 verifier.Dump(std::cout);
jeffhaof56197c2012-03-05 18:01:54 -0800486 }
jeffhaof56197c2012-03-05 18:01:54 -0800487 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700488 if (kTimeVerifyMethod) {
489 uint64_t duration_ns = NanoTime() - start_ns;
490 if (duration_ns > MsToNs(100)) {
David Sehr709b0702016-10-13 09:12:37 -0700491 LOG(WARNING) << "Verification of " << dex_file->PrettyMethod(method_idx)
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700492 << " took " << PrettyDuration(duration_ns)
493 << (IsLargeMethod(code_item) ? " (large method)" : "");
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700494 }
Ian Rogersc8982582012-09-07 16:53:25 -0700495 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800496 result.types = verifier.encountered_failure_types_;
Ian Rogersc8982582012-09-07 16:53:25 -0700497 return result;
jeffhaof56197c2012-03-05 18:01:54 -0800498}
499
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100500MethodVerifier* MethodVerifier::VerifyMethodAndDump(Thread* self,
501 VariableIndentationOutputStream* vios,
502 uint32_t dex_method_idx,
503 const DexFile* dex_file,
504 Handle<mirror::DexCache> dex_cache,
505 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100506 const DexFile::ClassDef& class_def,
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100507 const DexFile::CodeItem* code_item,
508 ArtMethod* method,
509 uint32_t method_access_flags) {
Andreas Gampebf9611f2016-03-25 16:58:00 -0700510 MethodVerifier* verifier = new MethodVerifier(self,
511 dex_file,
512 dex_cache,
513 class_loader,
514 class_def,
515 code_item,
516 dex_method_idx,
517 method,
518 method_access_flags,
519 true /* can_load_classes */,
520 true /* allow_soft_failures */,
521 true /* need_precise_constants */,
522 true /* verify_to_dump */,
523 true /* allow_thread_suspension */);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700524 verifier->Verify();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100525 verifier->DumpFailures(vios->Stream());
526 vios->Stream() << verifier->info_messages_.str();
Andreas Gampe5cbcde22014-09-16 14:59:49 -0700527 // Only dump and return if no hard failures. Otherwise the verifier may be not fully initialized
528 // and querying any info is dangerous/can abort.
529 if (verifier->have_pending_hard_failure_) {
530 delete verifier;
531 return nullptr;
532 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100533 verifier->Dump(vios);
Andreas Gampe5cbcde22014-09-16 14:59:49 -0700534 return verifier;
535 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800536}
537
Ian Rogers7b078e82014-09-10 14:44:24 -0700538MethodVerifier::MethodVerifier(Thread* self,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800539 const DexFile* dex_file,
540 Handle<mirror::DexCache> dex_cache,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700541 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100542 const DexFile::ClassDef& class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800543 const DexFile::CodeItem* code_item,
544 uint32_t dex_method_idx,
545 ArtMethod* method,
546 uint32_t method_access_flags,
547 bool can_load_classes,
548 bool allow_soft_failures,
549 bool need_precise_constants,
550 bool verify_to_dump,
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800551 bool allow_thread_suspension)
Ian Rogers7b078e82014-09-10 14:44:24 -0700552 : self_(self),
Mathieu Chartierde40d472015-10-15 17:47:48 -0700553 arena_stack_(Runtime::Current()->GetArenaPool()),
554 arena_(&arena_stack_),
555 reg_types_(can_load_classes, arena_),
556 reg_table_(arena_),
Andreas Gampee2abbc62017-09-15 11:59:26 -0700557 work_insn_idx_(dex::kDexNoIndex),
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800558 dex_method_idx_(dex_method_idx),
Ian Rogers637c65b2013-05-31 11:46:00 -0700559 mirror_method_(method),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700560 method_access_flags_(method_access_flags),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700561 return_type_(nullptr),
jeffhaof56197c2012-03-05 18:01:54 -0800562 dex_file_(dex_file),
563 dex_cache_(dex_cache),
564 class_loader_(class_loader),
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700565 class_def_(class_def),
jeffhaof56197c2012-03-05 18:01:54 -0800566 code_item_(code_item),
Ian Rogers7b078e82014-09-10 14:44:24 -0700567 declaring_class_(nullptr),
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700568 interesting_dex_pc_(-1),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700569 monitor_enter_dex_pcs_(nullptr),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700570 have_pending_hard_failure_(false),
jeffhaofaf459e2012-08-31 15:32:47 -0700571 have_pending_runtime_throw_failure_(false),
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700572 have_pending_experimental_failure_(false),
Andreas Gamped12e7822015-06-25 10:26:40 -0700573 have_any_pending_runtime_throw_failure_(false),
jeffhaof56197c2012-03-05 18:01:54 -0800574 new_instance_count_(0),
Elliott Hughes80537bb2013-01-04 16:37:26 -0800575 monitor_enter_count_(0),
Andreas Gampe0760a812015-08-26 17:12:51 -0700576 encountered_failure_types_(0),
Jeff Haoee988952013-04-16 14:23:47 -0700577 can_load_classes_(can_load_classes),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200578 allow_soft_failures_(allow_soft_failures),
Ian Rogers46960fe2014-05-23 10:43:43 -0700579 need_precise_constants_(need_precise_constants),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200580 has_check_casts_(false),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700581 has_virtual_or_interface_invokes_(false),
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800582 verify_to_dump_(verify_to_dump),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700583 allow_thread_suspension_(allow_thread_suspension),
Andreas Gampee6215c02015-08-31 18:54:38 -0700584 is_constructor_(false),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700585 link_(nullptr) {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700586 self->PushVerifier(this);
jeffhaof56197c2012-03-05 18:01:54 -0800587}
588
Mathieu Chartier590fee92013-09-13 13:46:47 -0700589MethodVerifier::~MethodVerifier() {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700590 Thread::Current()->PopVerifier(this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700591 STLDeleteElements(&failure_messages_);
592}
593
Mathieu Chartiere401d142015-04-22 13:56:20 -0700594void MethodVerifier::FindLocksAtDexPc(ArtMethod* m, uint32_t dex_pc,
Ian Rogers46960fe2014-05-23 10:43:43 -0700595 std::vector<uint32_t>* monitor_enter_dex_pcs) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700596 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700597 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
598 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700599 MethodVerifier verifier(hs.Self(),
600 m->GetDexFile(),
601 dex_cache,
602 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100603 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700604 m->GetCodeItem(),
605 m->GetDexMethodIndex(),
606 m,
607 m->GetAccessFlags(),
608 false /* can_load_classes */,
609 true /* allow_soft_failures */,
610 false /* need_precise_constants */,
611 false /* verify_to_dump */,
612 false /* allow_thread_suspension */);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700613 verifier.interesting_dex_pc_ = dex_pc;
Ian Rogers46960fe2014-05-23 10:43:43 -0700614 verifier.monitor_enter_dex_pcs_ = monitor_enter_dex_pcs;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700615 verifier.FindLocksAtDexPc();
616}
617
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700618static bool HasMonitorEnterInstructions(const DexFile::CodeItem* const code_item) {
619 const Instruction* inst = Instruction::At(code_item->insns_);
620
621 uint32_t insns_size = code_item->insns_size_in_code_units_;
622 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
623 if (inst->Opcode() == Instruction::MONITOR_ENTER) {
624 return true;
625 }
626
627 dex_pc += inst->SizeInCodeUnits();
628 inst = inst->Next();
629 }
630
631 return false;
632}
633
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700634void MethodVerifier::FindLocksAtDexPc() {
Ian Rogers7b078e82014-09-10 14:44:24 -0700635 CHECK(monitor_enter_dex_pcs_ != nullptr);
636 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700637
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700638 // Quick check whether there are any monitor_enter instructions at all.
639 if (!HasMonitorEnterInstructions(code_item_)) {
640 return;
641 }
642
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700643 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
644 // verification. In practice, the phase we want relies on data structures set up by all the
645 // earlier passes, so we just run the full method verification and bail out early when we've
646 // got what we wanted.
647 Verify();
648}
649
Mathieu Chartiere401d142015-04-22 13:56:20 -0700650ArtField* MethodVerifier::FindAccessedFieldAtDexPc(ArtMethod* m, uint32_t dex_pc) {
651 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700652 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
653 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700654 MethodVerifier verifier(hs.Self(),
655 m->GetDexFile(),
656 dex_cache,
657 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100658 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700659 m->GetCodeItem(),
660 m->GetDexMethodIndex(),
661 m,
662 m->GetAccessFlags(),
663 true /* can_load_classes */,
664 true /* allow_soft_failures */,
665 false /* need_precise_constants */,
666 false /* verify_to_dump */,
667 true /* allow_thread_suspension */);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200668 return verifier.FindAccessedFieldAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200669}
670
Mathieu Chartierc7853442015-03-27 14:35:38 -0700671ArtField* MethodVerifier::FindAccessedFieldAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700672 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200673
674 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
675 // verification. In practice, the phase we want relies on data structures set up by all the
676 // earlier passes, so we just run the full method verification and bail out early when we've
677 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200678 bool success = Verify();
679 if (!success) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700680 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200681 }
682 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700683 if (register_line == nullptr) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700684 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200685 }
686 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
687 return GetQuickFieldAccess(inst, register_line);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200688}
689
Mathieu Chartiere401d142015-04-22 13:56:20 -0700690ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(ArtMethod* m, uint32_t dex_pc) {
691 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700692 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
693 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700694 MethodVerifier verifier(hs.Self(),
695 m->GetDexFile(),
696 dex_cache,
697 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100698 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700699 m->GetCodeItem(),
700 m->GetDexMethodIndex(),
701 m,
702 m->GetAccessFlags(),
703 true /* can_load_classes */,
704 true /* allow_soft_failures */,
705 false /* need_precise_constants */,
706 false /* verify_to_dump */,
707 true /* allow_thread_suspension */);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200708 return verifier.FindInvokedMethodAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200709}
710
Mathieu Chartiere401d142015-04-22 13:56:20 -0700711ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700712 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200713
714 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
715 // verification. In practice, the phase we want relies on data structures set up by all the
716 // earlier passes, so we just run the full method verification and bail out early when we've
717 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200718 bool success = Verify();
719 if (!success) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700720 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200721 }
722 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700723 if (register_line == nullptr) {
724 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200725 }
726 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
727 const bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Mathieu Chartier091d2382015-03-06 10:59:06 -0800728 return GetQuickInvokedMethod(inst, register_line, is_range, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200729}
730
Ian Rogersad0b3a32012-04-16 14:50:24 -0700731bool MethodVerifier::Verify() {
Andreas Gampee6215c02015-08-31 18:54:38 -0700732 // Some older code doesn't correctly mark constructors as such. Test for this case by looking at
733 // the name.
734 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
735 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
736 bool instance_constructor_by_name = strcmp("<init>", method_name) == 0;
737 bool static_constructor_by_name = strcmp("<clinit>", method_name) == 0;
738 bool constructor_by_name = instance_constructor_by_name || static_constructor_by_name;
739 // Check that only constructors are tagged, and check for bad code that doesn't tag constructors.
740 if ((method_access_flags_ & kAccConstructor) != 0) {
741 if (!constructor_by_name) {
742 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
743 << "method is marked as constructor, but not named accordingly";
jeffhaobdb76512011-09-07 11:43:16 -0700744 return false;
Andreas Gampee6215c02015-08-31 18:54:38 -0700745 }
746 is_constructor_ = true;
747 } else if (constructor_by_name) {
David Sehr709b0702016-10-13 09:12:37 -0700748 LOG(WARNING) << "Method " << dex_file_->PrettyMethod(dex_method_idx_)
Andreas Gampee6215c02015-08-31 18:54:38 -0700749 << " not marked as constructor.";
750 is_constructor_ = true;
751 }
752 // If it's a constructor, check whether IsStatic() matches the name.
753 // This should have been rejected by the dex file verifier. Only do in debug build.
754 if (kIsDebugBuild) {
755 if (IsConstructor()) {
756 if (IsStatic() ^ static_constructor_by_name) {
757 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
758 << "constructor name doesn't match static flag";
759 return false;
760 }
jeffhaobdb76512011-09-07 11:43:16 -0700761 }
jeffhaobdb76512011-09-07 11:43:16 -0700762 }
Andreas Gampee6215c02015-08-31 18:54:38 -0700763
764 // Methods may only have one of public/protected/private.
765 // This should have been rejected by the dex file verifier. Only do in debug build.
766 if (kIsDebugBuild) {
767 size_t access_mod_count =
768 (((method_access_flags_ & kAccPublic) == 0) ? 0 : 1) +
769 (((method_access_flags_ & kAccProtected) == 0) ? 0 : 1) +
770 (((method_access_flags_ & kAccPrivate) == 0) ? 0 : 1);
771 if (access_mod_count > 1) {
772 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "method has more than one of public/protected/private";
773 return false;
774 }
775 }
776
777 // If there aren't any instructions, make sure that's expected, then exit successfully.
778 if (code_item_ == nullptr) {
Andreas Gampe76ed99d2016-03-28 18:31:29 -0700779 // Only native or abstract methods may not have code.
780 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) {
781 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "zero-length code in concrete non-native method";
782 return false;
783 }
784
Andreas Gampee6215c02015-08-31 18:54:38 -0700785 // This should have been rejected by the dex file verifier. Only do in debug build.
Andreas Gampe76ed99d2016-03-28 18:31:29 -0700786 // Note: the above will also be rejected in the dex file verifier, starting in dex version 37.
Andreas Gampee6215c02015-08-31 18:54:38 -0700787 if (kIsDebugBuild) {
Andreas Gampee6215c02015-08-31 18:54:38 -0700788 if ((method_access_flags_ & kAccAbstract) != 0) {
789 // Abstract methods are not allowed to have the following flags.
790 static constexpr uint32_t kForbidden =
791 kAccPrivate |
792 kAccStatic |
793 kAccFinal |
794 kAccNative |
795 kAccStrict |
796 kAccSynchronized;
797 if ((method_access_flags_ & kForbidden) != 0) {
798 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
799 << "method can't be abstract and private/static/final/native/strict/synchronized";
800 return false;
801 }
802 }
David Brazdil15fc7292016-09-02 14:13:18 +0100803 if ((class_def_.GetJavaAccessFlags() & kAccInterface) != 0) {
Alex Lighteb7c1442015-08-31 13:17:42 -0700804 // Interface methods must be public and abstract (if default methods are disabled).
Neil Fuller9724c632016-01-07 15:42:47 +0000805 uint32_t kRequired = kAccPublic;
Alex Lighteb7c1442015-08-31 13:17:42 -0700806 if ((method_access_flags_ & kRequired) != kRequired) {
Neil Fuller9724c632016-01-07 15:42:47 +0000807 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface methods must be public";
Andreas Gampee6215c02015-08-31 18:54:38 -0700808 return false;
809 }
810 // In addition to the above, interface methods must not be protected.
811 static constexpr uint32_t kForbidden = kAccProtected;
812 if ((method_access_flags_ & kForbidden) != 0) {
813 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface methods can't be protected";
814 return false;
815 }
816 }
817 // We also don't allow constructors to be abstract or native.
818 if (IsConstructor()) {
819 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "constructors can't be abstract or native";
820 return false;
821 }
822 }
823 return true;
824 }
825
826 // This should have been rejected by the dex file verifier. Only do in debug build.
827 if (kIsDebugBuild) {
828 // When there's code, the method must not be native or abstract.
829 if ((method_access_flags_ & (kAccNative | kAccAbstract)) != 0) {
830 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "non-zero-length code in abstract or native method";
831 return false;
832 }
833
David Brazdil15fc7292016-09-02 14:13:18 +0100834 if ((class_def_.GetJavaAccessFlags() & kAccInterface) != 0) {
Alex Lighteb7c1442015-08-31 13:17:42 -0700835 // Interfaces may always have static initializers for their fields. If we are running with
836 // default methods enabled we also allow other public, static, non-final methods to have code.
837 // Otherwise that is the only type of method allowed.
Alex Light0db36b32015-10-27 14:06:34 -0700838 if (!(IsConstructor() && IsStatic())) {
Neil Fuller9724c632016-01-07 15:42:47 +0000839 if (IsInstanceConstructor()) {
840 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interfaces may not have non-static constructor";
841 return false;
842 } else if (method_access_flags_ & kAccFinal) {
843 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interfaces may not have final methods";
844 return false;
Alex Lightb55f1ac2016-04-12 15:50:55 -0700845 } else {
846 uint32_t access_flag_options = kAccPublic;
847 if (dex_file_->GetVersion() >= DexFile::kDefaultMethodsVersion) {
848 access_flag_options |= kAccPrivate;
849 }
850 if (!(method_access_flags_ & access_flag_options)) {
851 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
852 << "interfaces may not have protected or package-private members";
853 return false;
854 }
Alex Lighteb7c1442015-08-31 13:17:42 -0700855 }
Andreas Gampee6215c02015-08-31 18:54:38 -0700856 }
857 }
858
859 // Instance constructors must not be synchronized.
860 if (IsInstanceConstructor()) {
861 static constexpr uint32_t kForbidden = kAccSynchronized;
862 if ((method_access_flags_ & kForbidden) != 0) {
863 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "constructors can't be synchronized";
864 return false;
865 }
866 }
867 }
868
Ian Rogersd81871c2011-10-03 13:57:23 -0700869 // Sanity-check the register counts. ins + locals = registers, so make sure that ins <= registers.
870 if (code_item_->ins_size_ > code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700871 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad register counts (ins=" << code_item_->ins_size_
872 << " regs=" << code_item_->registers_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700873 return false;
jeffhaobdb76512011-09-07 11:43:16 -0700874 }
Alex Lighteb7c1442015-08-31 13:17:42 -0700875
Ian Rogersd81871c2011-10-03 13:57:23 -0700876 // Allocate and initialize an array to hold instruction data.
Mathieu Chartierde40d472015-10-15 17:47:48 -0700877 insn_flags_.reset(arena_.AllocArray<InstructionFlags>(code_item_->insns_size_in_code_units_));
878 DCHECK(insn_flags_ != nullptr);
879 std::uninitialized_fill_n(insn_flags_.get(),
880 code_item_->insns_size_in_code_units_,
881 InstructionFlags());
Ian Rogersd81871c2011-10-03 13:57:23 -0700882 // Run through the instructions and see if the width checks out.
883 bool result = ComputeWidthsAndCountOps();
Andreas Gampebf1cb772017-05-15 15:39:00 -0700884 bool allow_runtime_only_instructions = !Runtime::Current()->IsAotCompiler() || verify_to_dump_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700885 // Flag instructions guarded by a "try" block and check exception handlers.
886 result = result && ScanTryCatchBlocks();
887 // Perform static instruction verification.
Andreas Gampebf1cb772017-05-15 15:39:00 -0700888 result = result && (allow_runtime_only_instructions
889 ? VerifyInstructions<true>()
890 : VerifyInstructions<false>());
Ian Rogersad0b3a32012-04-16 14:50:24 -0700891 // Perform code-flow analysis and return.
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000892 result = result && VerifyCodeFlow();
Andreas Gampe53e32d12015-12-09 21:03:23 -0800893
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000894 return result;
jeffhaoba5ebb92011-08-25 17:24:37 -0700895}
896
Ian Rogers776ac1f2012-04-13 23:36:36 -0700897std::ostream& MethodVerifier::Fail(VerifyError error) {
Andreas Gampe0760a812015-08-26 17:12:51 -0700898 // Mark the error type as encountered.
Andreas Gampea727e372015-08-25 09:22:37 -0700899 encountered_failure_types_ |= static_cast<uint32_t>(error);
Andreas Gampe0760a812015-08-26 17:12:51 -0700900
Ian Rogersad0b3a32012-04-16 14:50:24 -0700901 switch (error) {
902 case VERIFY_ERROR_NO_CLASS:
903 case VERIFY_ERROR_NO_FIELD:
904 case VERIFY_ERROR_NO_METHOD:
905 case VERIFY_ERROR_ACCESS_CLASS:
906 case VERIFY_ERROR_ACCESS_FIELD:
907 case VERIFY_ERROR_ACCESS_METHOD:
Ian Rogers08f753d2012-08-24 14:35:25 -0700908 case VERIFY_ERROR_INSTANTIATION:
909 case VERIFY_ERROR_CLASS_CHANGE:
Igor Murashkin158f35c2015-06-10 15:55:30 -0700910 case VERIFY_ERROR_FORCE_INTERPRETER:
Andreas Gampea727e372015-08-25 09:22:37 -0700911 case VERIFY_ERROR_LOCKING:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800912 if (Runtime::Current()->IsAotCompiler() || !can_load_classes_) {
jeffhaofaf459e2012-08-31 15:32:47 -0700913 // If we're optimistically running verification at compile time, turn NO_xxx, ACCESS_xxx,
914 // class change and instantiation errors into soft verification errors so that we re-verify
915 // at runtime. We may fail to find or to agree on access because of not yet available class
916 // loaders, or class loaders that will differ at runtime. In these cases, we don't want to
917 // affect the soundness of the code being compiled. Instead, the generated code runs "slow
918 // paths" that dynamically perform the verification and cause the behavior to be that akin
919 // to an interpreter.
920 error = VERIFY_ERROR_BAD_CLASS_SOFT;
921 } else {
Jeff Haoa3faaf42013-09-03 19:07:00 -0700922 // If we fail again at runtime, mark that this instruction would throw and force this
923 // method to be executed using the interpreter with checks.
jeffhaofaf459e2012-08-31 15:32:47 -0700924 have_pending_runtime_throw_failure_ = true;
Andreas Gamped7f8d052015-03-12 11:05:47 -0700925
926 // We need to save the work_line if the instruction wasn't throwing before. Otherwise we'll
927 // try to merge garbage.
928 // Note: this assumes that Fail is called before we do any work_line modifications.
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700929 // Note: this can fail before we touch any instruction, for the signature of a method. So
930 // add a check.
Andreas Gampee2abbc62017-09-15 11:59:26 -0700931 if (work_insn_idx_ < dex::kDexNoIndex) {
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700932 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
933 const Instruction* inst = Instruction::At(insns);
934 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
Andreas Gamped7f8d052015-03-12 11:05:47 -0700935
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700936 if ((opcode_flags & Instruction::kThrow) == 0 && CurrentInsnFlags()->IsInTry()) {
937 saved_line_->CopyFromLine(work_line_.get());
938 }
Andreas Gamped7f8d052015-03-12 11:05:47 -0700939 }
jeffhaofaf459e2012-08-31 15:32:47 -0700940 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700941 break;
Andreas Gampea727e372015-08-25 09:22:37 -0700942
Ian Rogersad0b3a32012-04-16 14:50:24 -0700943 // Indication that verification should be retried at runtime.
944 case VERIFY_ERROR_BAD_CLASS_SOFT:
Jeff Haoee988952013-04-16 14:23:47 -0700945 if (!allow_soft_failures_) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700946 have_pending_hard_failure_ = true;
947 }
948 break;
Andreas Gampea727e372015-08-25 09:22:37 -0700949
jeffhaod5347e02012-03-22 17:25:05 -0700950 // Hard verification failures at compile time will still fail at runtime, so the class is
951 // marked as rejected to prevent it from being compiled.
Ian Rogersad0b3a32012-04-16 14:50:24 -0700952 case VERIFY_ERROR_BAD_CLASS_HARD: {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700953 have_pending_hard_failure_ = true;
Andreas Gampeebf850c2015-08-14 15:37:35 -0700954 if (VLOG_IS_ON(verifier) && kDumpRegLinesOnHardFailureIfVLOG) {
955 ScopedObjectAccess soa(Thread::Current());
956 std::ostringstream oss;
957 Dump(oss);
958 LOG(ERROR) << oss.str();
959 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700960 break;
Ian Rogers47a05882012-02-03 12:23:33 -0800961 }
962 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700963 failures_.push_back(error);
David Sehr709b0702016-10-13 09:12:37 -0700964 std::string location(StringPrintf("%s: [0x%X] ", dex_file_->PrettyMethod(dex_method_idx_).c_str(),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700965 work_insn_idx_));
Elena Sayapina78480ec2014-08-15 15:52:42 +0700966 std::ostringstream* failure_message = new std::ostringstream(location, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700967 failure_messages_.push_back(failure_message);
968 return *failure_message;
969}
970
Ian Rogers576ca0c2014-06-06 15:58:22 -0700971std::ostream& MethodVerifier::LogVerifyInfo() {
David Sehr709b0702016-10-13 09:12:37 -0700972 return info_messages_ << "VFY: " << dex_file_->PrettyMethod(dex_method_idx_)
Ian Rogers576ca0c2014-06-06 15:58:22 -0700973 << '[' << reinterpret_cast<void*>(work_insn_idx_) << "] : ";
974}
975
Ian Rogersad0b3a32012-04-16 14:50:24 -0700976void MethodVerifier::PrependToLastFailMessage(std::string prepend) {
977 size_t failure_num = failure_messages_.size();
978 DCHECK_NE(failure_num, 0U);
979 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
980 prepend += last_fail_message->str();
Elena Sayapina78480ec2014-08-15 15:52:42 +0700981 failure_messages_[failure_num - 1] = new std::ostringstream(prepend, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700982 delete last_fail_message;
983}
984
Vladimir Marko5c657fe2016-11-03 15:12:29 +0000985void MethodVerifier::AppendToLastFailMessage(const std::string& append) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700986 size_t failure_num = failure_messages_.size();
987 DCHECK_NE(failure_num, 0U);
988 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
989 (*last_fail_message) << append;
Ian Rogers47a05882012-02-03 12:23:33 -0800990}
991
Ian Rogers776ac1f2012-04-13 23:36:36 -0700992bool MethodVerifier::ComputeWidthsAndCountOps() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700993 const uint16_t* insns = code_item_->insns_;
994 size_t insns_size = code_item_->insns_size_in_code_units_;
995 const Instruction* inst = Instruction::At(insns);
jeffhaobdb76512011-09-07 11:43:16 -0700996 size_t new_instance_count = 0;
997 size_t monitor_enter_count = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -0700998 size_t dex_pc = 0;
jeffhaobdb76512011-09-07 11:43:16 -0700999
Ian Rogersd81871c2011-10-03 13:57:23 -07001000 while (dex_pc < insns_size) {
jeffhaobdb76512011-09-07 11:43:16 -07001001 Instruction::Code opcode = inst->Opcode();
Ian Rogersa9a82542013-10-04 11:17:26 -07001002 switch (opcode) {
1003 case Instruction::APUT_OBJECT:
1004 case Instruction::CHECK_CAST:
1005 has_check_casts_ = true;
1006 break;
1007 case Instruction::INVOKE_VIRTUAL:
1008 case Instruction::INVOKE_VIRTUAL_RANGE:
1009 case Instruction::INVOKE_INTERFACE:
1010 case Instruction::INVOKE_INTERFACE_RANGE:
1011 has_virtual_or_interface_invokes_ = true;
1012 break;
1013 case Instruction::MONITOR_ENTER:
1014 monitor_enter_count++;
1015 break;
1016 case Instruction::NEW_INSTANCE:
1017 new_instance_count++;
1018 break;
1019 default:
1020 break;
jeffhaobdb76512011-09-07 11:43:16 -07001021 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001022 size_t inst_size = inst->SizeInCodeUnits();
Mathieu Chartierde40d472015-10-15 17:47:48 -07001023 GetInstructionFlags(dex_pc).SetIsOpcode();
Ian Rogersd81871c2011-10-03 13:57:23 -07001024 dex_pc += inst_size;
Ian Rogers7b078e82014-09-10 14:44:24 -07001025 inst = inst->RelativeAt(inst_size);
jeffhaobdb76512011-09-07 11:43:16 -07001026 }
1027
Ian Rogersd81871c2011-10-03 13:57:23 -07001028 if (dex_pc != insns_size) {
jeffhaod5347e02012-03-22 17:25:05 -07001029 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "code did not end where expected ("
1030 << dex_pc << " vs. " << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001031 return false;
1032 }
1033
Ian Rogersd81871c2011-10-03 13:57:23 -07001034 new_instance_count_ = new_instance_count;
1035 monitor_enter_count_ = monitor_enter_count;
jeffhaobdb76512011-09-07 11:43:16 -07001036 return true;
1037}
1038
Ian Rogers776ac1f2012-04-13 23:36:36 -07001039bool MethodVerifier::ScanTryCatchBlocks() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001040 uint32_t tries_size = code_item_->tries_size_;
jeffhaobdb76512011-09-07 11:43:16 -07001041 if (tries_size == 0) {
1042 return true;
1043 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001044 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Ian Rogers0571d352011-11-03 19:51:38 -07001045 const DexFile::TryItem* tries = DexFile::GetTryItems(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001046
1047 for (uint32_t idx = 0; idx < tries_size; idx++) {
1048 const DexFile::TryItem* try_item = &tries[idx];
1049 uint32_t start = try_item->start_addr_;
1050 uint32_t end = start + try_item->insn_count_;
jeffhaobdb76512011-09-07 11:43:16 -07001051 if ((start >= end) || (start >= insns_size) || (end > insns_size)) {
jeffhaod5347e02012-03-22 17:25:05 -07001052 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad exception entry: startAddr=" << start
1053 << " endAddr=" << end << " (size=" << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001054 return false;
1055 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001056 if (!GetInstructionFlags(start).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001057 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1058 << "'try' block starts inside an instruction (" << start << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001059 return false;
1060 }
Ian Rogers7b078e82014-09-10 14:44:24 -07001061 uint32_t dex_pc = start;
1062 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
1063 while (dex_pc < end) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001064 GetInstructionFlags(dex_pc).SetInTry();
Ian Rogers7b078e82014-09-10 14:44:24 -07001065 size_t insn_size = inst->SizeInCodeUnits();
1066 dex_pc += insn_size;
1067 inst = inst->RelativeAt(insn_size);
jeffhaobdb76512011-09-07 11:43:16 -07001068 }
1069 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001070 // Iterate over each of the handlers to verify target addresses.
Ian Rogers13735952014-10-08 12:43:28 -07001071 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001072 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001073 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhaobdb76512011-09-07 11:43:16 -07001074 for (uint32_t idx = 0; idx < handlers_size; idx++) {
Ian Rogers0571d352011-11-03 19:51:38 -07001075 CatchHandlerIterator iterator(handlers_ptr);
1076 for (; iterator.HasNext(); iterator.Next()) {
1077 uint32_t dex_pc= iterator.GetHandlerAddress();
Mathieu Chartierde40d472015-10-15 17:47:48 -07001078 if (!GetInstructionFlags(dex_pc).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001079 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1080 << "exception handler starts at bad address (" << dex_pc << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001081 return false;
1082 }
Stephen Kyle9bc61992014-09-22 13:53:15 +01001083 if (!CheckNotMoveResult(code_item_->insns_, dex_pc)) {
1084 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1085 << "exception handler begins with move-result* (" << dex_pc << ")";
1086 return false;
1087 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001088 GetInstructionFlags(dex_pc).SetBranchTarget();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001089 // Ensure exception types are resolved so that they don't need resolution to be delivered,
1090 // unresolved exception types will be ignored by exception delivery
Andreas Gampea5b09a62016-11-17 15:21:22 -08001091 if (iterator.GetHandlerTypeIndex().IsValid()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001092 mirror::Class* exception_type = linker->ResolveType(*dex_file_,
1093 iterator.GetHandlerTypeIndex(),
Mathieu Chartierbf99f772014-08-23 16:37:27 -07001094 dex_cache_, class_loader_);
Ian Rogers7b078e82014-09-10 14:44:24 -07001095 if (exception_type == nullptr) {
1096 DCHECK(self_->IsExceptionPending());
1097 self_->ClearException();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001098 }
1099 }
jeffhaobdb76512011-09-07 11:43:16 -07001100 }
Ian Rogers0571d352011-11-03 19:51:38 -07001101 handlers_ptr = iterator.EndDataPointer();
jeffhaobdb76512011-09-07 11:43:16 -07001102 }
jeffhaobdb76512011-09-07 11:43:16 -07001103 return true;
1104}
1105
Andreas Gampebf1cb772017-05-15 15:39:00 -07001106template <bool kAllowRuntimeOnlyInstructions>
Ian Rogers776ac1f2012-04-13 23:36:36 -07001107bool MethodVerifier::VerifyInstructions() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001108 const Instruction* inst = Instruction::At(code_item_->insns_);
jeffhaoba5ebb92011-08-25 17:24:37 -07001109
Ian Rogers0c7abda2012-09-19 13:33:42 -07001110 /* 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 -07001111 GetInstructionFlags(0).SetBranchTarget();
1112 GetInstructionFlags(0).SetCompileTimeInfoPoint();
Ian Rogersd81871c2011-10-03 13:57:23 -07001113
1114 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Elliott Hughesb25c3f62012-03-26 16:35:06 -07001115 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
Andreas Gampebf1cb772017-05-15 15:39:00 -07001116 if (!VerifyInstruction<kAllowRuntimeOnlyInstructions>(inst, dex_pc)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001117 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001118 return false;
1119 }
1120 /* Flag instructions that are garbage collection points */
Sameer Abu Asal02c42232013-04-30 12:09:45 -07001121 // All invoke points are marked as "Throw" points already.
1122 // We are relying on this to also count all the invokes as interesting.
Vladimir Marko8b858e12014-11-27 14:52:37 +00001123 if (inst->IsBranch()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001124 GetInstructionFlags(dex_pc).SetCompileTimeInfoPoint();
Vladimir Marko8b858e12014-11-27 14:52:37 +00001125 // The compiler also needs safepoints for fall-through to loop heads.
1126 // Such a loop head must be a target of a branch.
1127 int32_t offset = 0;
1128 bool cond, self_ok;
1129 bool target_ok = GetBranchOffset(dex_pc, &offset, &cond, &self_ok);
1130 DCHECK(target_ok);
Mathieu Chartierde40d472015-10-15 17:47:48 -07001131 GetInstructionFlags(dex_pc + offset).SetCompileTimeInfoPoint();
Vladimir Marko8b858e12014-11-27 14:52:37 +00001132 } else if (inst->IsSwitch() || inst->IsThrow()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001133 GetInstructionFlags(dex_pc).SetCompileTimeInfoPoint();
Ian Rogersb8c78592013-07-25 23:52:52 +00001134 } else if (inst->IsReturn()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001135 GetInstructionFlags(dex_pc).SetCompileTimeInfoPointAndReturn();
Ian Rogersd81871c2011-10-03 13:57:23 -07001136 }
1137 dex_pc += inst->SizeInCodeUnits();
1138 inst = inst->Next();
1139 }
1140 return true;
1141}
1142
Andreas Gampebf1cb772017-05-15 15:39:00 -07001143template <bool kAllowRuntimeOnlyInstructions>
1144bool MethodVerifier::VerifyInstruction(const Instruction* inst, uint32_t code_offset) {
Andreas Gampee05cc662017-05-15 10:17:30 -07001145 if (Instruction::kHaveExperimentalInstructions && UNLIKELY(inst->IsExperimental())) {
Igor Murashkin4d7b75f2015-07-21 17:03:36 -07001146 // 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 }
Andreas Gampebf1cb772017-05-15 15:39:00 -07001253 if (!kAllowRuntimeOnlyInstructions && inst->GetVerifyIsRuntimeOnly()) {
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) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001261 if (UNLIKELY(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) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001270 if (UNLIKELY(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) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001279 if (UNLIKELY(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) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001288 if (UNLIKELY(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) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001297 if (UNLIKELY(idx.index_ >= dex_file_->GetHeader().type_ids_size_)) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001298 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);
Andreas Gampe29e81422017-05-15 16:29:32 -07001304 if (UNLIKELY(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;
Andreas Gampe29e81422017-05-15 16:29:32 -07001307 } else if (UNLIKELY(strcmp(descriptor, "Ljava/lang/Class;") == 0)) {
Aart Bikdb698f12016-07-25 17:52:22 -07001308 // 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) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001316 if (UNLIKELY(idx >= dex_file_->GetHeader().proto_ids_size_)) {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01001317 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) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001325 if (UNLIKELY(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) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001334 if (UNLIKELY(idx.index_ >= dex_file_->GetHeader().type_ids_size_)) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001335 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) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001343 if (UNLIKELY(idx.index_ >= dex_file_->GetHeader().type_ids_size_)) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08001344 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 }
Andreas Gampe29e81422017-05-15 16:29:32 -07001354 if (UNLIKELY(bracket_count == 0)) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001355 /* 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;
Andreas Gampe29e81422017-05-15 16:29:32 -07001359 } else if (UNLIKELY(bracket_count > 255)) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001360 /* 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);
Andreas Gampe29e81422017-05-15 16:29:32 -07001377 if (UNLIKELY(static_cast<int32_t>(cur_offset) + array_data_offset < 0 ||
1378 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.
Andreas Gampe29e81422017-05-15 16:29:32 -07001387 if (UNLIKELY(!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.
Andreas Gampe29e81422017-05-15 16:29:32 -07001394 if (UNLIKELY(!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 */
Andreas Gampe29e81422017-05-15 16:29:32 -07001405 if (UNLIKELY(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 }
Andreas Gampe29e81422017-05-15 16:29:32 -07001421 if (UNLIKELY(!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.
Andreas Gampe29e81422017-05-15 16:29:32 -07001428 if (UNLIKELY(((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;
Andreas Gampe29e81422017-05-15 16:29:32 -07001435 if (UNLIKELY(abs_offset < 0 ||
1436 (uint32_t) abs_offset >= insn_count ||
1437 !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);
Andreas Gampe29e81422017-05-15 16:29:32 -07001490 if (UNLIKELY(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.
Andreas Gampe29e81422017-05-15 16:29:32 -07001500 if (UNLIKELY(!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.
Andreas Gampe29e81422017-05-15 16:29:32 -07001507 if (UNLIKELY(!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;
Andreas Gampe29e81422017-05-15 16:29:32 -07001529 if (UNLIKELY(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 */
Andreas Gampe29e81422017-05-15 16:29:32 -07001536 if (UNLIKELY(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);
Andreas Gampe29e81422017-05-15 16:29:32 -07001551 if (UNLIKELY(first_key > max_first_key)) {
David Brazdil5469d342015-09-25 16:57:53 +01001552 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);
Andreas Gampe29e81422017-05-15 16:29:32 -07001563 if (UNLIKELY(key <= last_key)) {
David Brazdil5469d342015-09-25 16:57:53 +01001564 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;
Andreas Gampe29e81422017-05-15 16:29:32 -07001577 if (UNLIKELY(abs_offset < 0 ||
1578 abs_offset >= static_cast<int32_t>(insn_count) ||
1579 !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++) {
Andreas Gampe29e81422017-05-15 16:29:32 -07001594 if (UNLIKELY(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.
Andreas Gampe29e81422017-05-15 16:29:32 -07001608 if (UNLIKELY(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 {
Andreas Gampe98be1a92017-08-28 08:25:45 -07001768 // Note: don't check access. No error would be thrown for declaring or passing an
1769 // inaccessible class. Only actual accesses to fields or methods will.
1770 const RegType& reg_type = ResolveClass<CheckAccess::kNo>(iterator.GetTypeIdx());
Sebastien Hertz2ed76f92014-04-22 17:11:08 +02001771 if (!reg_type.IsNonZeroReferenceTypes()) {
1772 DCHECK(HasFailures());
1773 return false;
1774 }
Andreas Gampead238ce2015-08-24 21:13:08 -07001775 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001776 }
1777 break;
1778 case 'Z':
Andreas Gampead238ce2015-08-24 21:13:08 -07001779 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Boolean());
Ian Rogersd81871c2011-10-03 13:57:23 -07001780 break;
1781 case 'C':
Andreas Gampead238ce2015-08-24 21:13:08 -07001782 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Char());
Ian Rogersd81871c2011-10-03 13:57:23 -07001783 break;
1784 case 'B':
Andreas Gampead238ce2015-08-24 21:13:08 -07001785 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Byte());
Ian Rogersd81871c2011-10-03 13:57:23 -07001786 break;
1787 case 'I':
Andreas Gampead238ce2015-08-24 21:13:08 -07001788 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07001789 break;
1790 case 'S':
Andreas Gampead238ce2015-08-24 21:13:08 -07001791 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Short());
Ian Rogersd81871c2011-10-03 13:57:23 -07001792 break;
1793 case 'F':
Andreas Gampead238ce2015-08-24 21:13:08 -07001794 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Float());
Ian Rogersd81871c2011-10-03 13:57:23 -07001795 break;
1796 case 'J':
1797 case 'D': {
Andreas Gampe77cd4d62014-06-19 17:29:48 -07001798 if (cur_arg + 1 >= expected_args) {
1799 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1800 << " args, found more (" << descriptor << ")";
1801 return false;
1802 }
1803
Ian Rogers7b078e82014-09-10 14:44:24 -07001804 const RegType* lo_half;
1805 const RegType* hi_half;
1806 if (descriptor[0] == 'J') {
1807 lo_half = &reg_types_.LongLo();
1808 hi_half = &reg_types_.LongHi();
1809 } else {
1810 lo_half = &reg_types_.DoubleLo();
1811 hi_half = &reg_types_.DoubleHi();
1812 }
1813 reg_line->SetRegisterTypeWide(this, arg_start + cur_arg, *lo_half, *hi_half);
Ian Rogersd81871c2011-10-03 13:57:23 -07001814 cur_arg++;
1815 break;
1816 }
1817 default:
Brian Carlstrom93c33962013-07-26 10:37:43 -07001818 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected signature type char '"
1819 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001820 return false;
1821 }
1822 cur_arg++;
1823 }
1824 if (cur_arg != expected_args) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001825 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1826 << " arguments, found " << cur_arg;
Ian Rogersd81871c2011-10-03 13:57:23 -07001827 return false;
1828 }
1829 const char* descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
1830 // Validate return type. We don't do the type lookup; just want to make sure that it has the right
1831 // format. Only major difference from the method argument format is that 'V' is supported.
1832 bool result;
1833 if (IsPrimitiveDescriptor(descriptor[0]) || descriptor[0] == 'V') {
1834 result = descriptor[1] == '\0';
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001835 } else if (descriptor[0] == '[') { // single/multi-dimensional array of object/primitive
Ian Rogersd81871c2011-10-03 13:57:23 -07001836 size_t i = 0;
1837 do {
1838 i++;
1839 } while (descriptor[i] == '['); // process leading [
1840 if (descriptor[i] == 'L') { // object array
1841 do {
1842 i++; // find closing ;
1843 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1844 result = descriptor[i] == ';';
1845 } else { // primitive array
1846 result = IsPrimitiveDescriptor(descriptor[i]) && descriptor[i + 1] == '\0';
1847 }
1848 } else if (descriptor[0] == 'L') {
1849 // could be more thorough here, but shouldn't be required
1850 size_t i = 0;
1851 do {
1852 i++;
1853 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1854 result = descriptor[i] == ';';
1855 } else {
1856 result = false;
1857 }
1858 if (!result) {
jeffhaod5347e02012-03-22 17:25:05 -07001859 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected char in return type descriptor '"
1860 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001861 }
1862 return result;
jeffhaobdb76512011-09-07 11:43:16 -07001863}
1864
Ian Rogers776ac1f2012-04-13 23:36:36 -07001865bool MethodVerifier::CodeFlowVerifyMethod() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001866 const uint16_t* insns = code_item_->insns_;
1867 const uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaoba5ebb92011-08-25 17:24:37 -07001868
jeffhaobdb76512011-09-07 11:43:16 -07001869 /* Begin by marking the first instruction as "changed". */
Mathieu Chartierde40d472015-10-15 17:47:48 -07001870 GetInstructionFlags(0).SetChanged();
Ian Rogersd81871c2011-10-03 13:57:23 -07001871 uint32_t start_guess = 0;
jeffhaoba5ebb92011-08-25 17:24:37 -07001872
jeffhaobdb76512011-09-07 11:43:16 -07001873 /* Continue until no instructions are marked "changed". */
1874 while (true) {
Mathieu Chartier4306ef82014-12-19 18:41:47 -08001875 if (allow_thread_suspension_) {
1876 self_->AllowThreadSuspension();
1877 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001878 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1879 uint32_t insn_idx = start_guess;
1880 for (; insn_idx < insns_size; insn_idx++) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001881 if (GetInstructionFlags(insn_idx).IsChanged())
jeffhaobdb76512011-09-07 11:43:16 -07001882 break;
1883 }
jeffhaobdb76512011-09-07 11:43:16 -07001884 if (insn_idx == insns_size) {
1885 if (start_guess != 0) {
1886 /* try again, starting from the top */
1887 start_guess = 0;
1888 continue;
1889 } else {
1890 /* all flags are clear */
1891 break;
1892 }
1893 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001894 // We carry the working set of registers from instruction to instruction. If this address can
1895 // be the target of a branch (or throw) instruction, or if we're skipping around chasing
1896 // "changed" flags, we need to load the set of registers from the table.
1897 // Because we always prefer to continue on to the next instruction, we should never have a
1898 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1899 // target.
1900 work_insn_idx_ = insn_idx;
Mathieu Chartierde40d472015-10-15 17:47:48 -07001901 if (GetInstructionFlags(insn_idx).IsBranchTarget()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001902 work_line_->CopyFromLine(reg_table_.GetLine(insn_idx));
Ian Rogersebbdd872014-07-07 23:53:08 -07001903 } else if (kIsDebugBuild) {
jeffhaobdb76512011-09-07 11:43:16 -07001904 /*
1905 * Sanity check: retrieve the stored register line (assuming
1906 * a full table) and make sure it actually matches.
1907 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001908 RegisterLine* register_line = reg_table_.GetLine(insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07001909 if (register_line != nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001910 if (work_line_->CompareLine(register_line) != 0) {
1911 Dump(std::cout);
1912 std::cout << info_messages_.str();
David Sehr709b0702016-10-13 09:12:37 -07001913 LOG(FATAL) << "work_line diverged in " << dex_file_->PrettyMethod(dex_method_idx_)
Elliott Hughesc073b072012-05-24 19:29:17 -07001914 << "@" << reinterpret_cast<void*>(work_insn_idx_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07001915 << " work_line=" << work_line_->Dump(this) << "\n"
1916 << " expected=" << register_line->Dump(this);
Ian Rogersd81871c2011-10-03 13:57:23 -07001917 }
jeffhaobdb76512011-09-07 11:43:16 -07001918 }
jeffhaobdb76512011-09-07 11:43:16 -07001919 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001920 if (!CodeFlowVerifyInstruction(&start_guess)) {
David Sehr709b0702016-10-13 09:12:37 -07001921 std::string prepend(dex_file_->PrettyMethod(dex_method_idx_));
Ian Rogersad0b3a32012-04-16 14:50:24 -07001922 prepend += " failed to verify: ";
1923 PrependToLastFailMessage(prepend);
jeffhaoba5ebb92011-08-25 17:24:37 -07001924 return false;
1925 }
jeffhaobdb76512011-09-07 11:43:16 -07001926 /* Clear "changed" and mark as visited. */
Mathieu Chartierde40d472015-10-15 17:47:48 -07001927 GetInstructionFlags(insn_idx).SetVisited();
1928 GetInstructionFlags(insn_idx).ClearChanged();
jeffhaobdb76512011-09-07 11:43:16 -07001929 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001930
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001931 if (kDebugVerify) {
jeffhaobdb76512011-09-07 11:43:16 -07001932 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001933 * Scan for dead code. There's nothing "evil" about dead code
jeffhaobdb76512011-09-07 11:43:16 -07001934 * (besides the wasted space), but it indicates a flaw somewhere
1935 * down the line, possibly in the verifier.
1936 *
1937 * If we've substituted "always throw" instructions into the stream,
1938 * we are almost certainly going to have some dead code.
1939 */
1940 int dead_start = -1;
Ian Rogersd81871c2011-10-03 13:57:23 -07001941 uint32_t insn_idx = 0;
Ian Rogers7b078e82014-09-10 14:44:24 -07001942 for (; insn_idx < insns_size;
1943 insn_idx += Instruction::At(code_item_->insns_ + insn_idx)->SizeInCodeUnits()) {
jeffhaobdb76512011-09-07 11:43:16 -07001944 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001945 * Switch-statement data doesn't get "visited" by scanner. It
jeffhaobdb76512011-09-07 11:43:16 -07001946 * may or may not be preceded by a padding NOP (for alignment).
1947 */
1948 if (insns[insn_idx] == Instruction::kPackedSwitchSignature ||
1949 insns[insn_idx] == Instruction::kSparseSwitchSignature ||
1950 insns[insn_idx] == Instruction::kArrayDataSignature ||
Elliott Hughes380aaa72012-07-09 14:33:15 -07001951 (insns[insn_idx] == Instruction::NOP && (insn_idx + 1 < insns_size) &&
jeffhaobdb76512011-09-07 11:43:16 -07001952 (insns[insn_idx + 1] == Instruction::kPackedSwitchSignature ||
1953 insns[insn_idx + 1] == Instruction::kSparseSwitchSignature ||
1954 insns[insn_idx + 1] == Instruction::kArrayDataSignature))) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001955 GetInstructionFlags(insn_idx).SetVisited();
jeffhaobdb76512011-09-07 11:43:16 -07001956 }
1957
Mathieu Chartierde40d472015-10-15 17:47:48 -07001958 if (!GetInstructionFlags(insn_idx).IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001959 if (dead_start < 0)
1960 dead_start = insn_idx;
1961 } else if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001962 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1963 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaobdb76512011-09-07 11:43:16 -07001964 dead_start = -1;
1965 }
1966 }
1967 if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001968 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1969 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaoba5ebb92011-08-25 17:24:37 -07001970 }
Ian Rogersc9e463c2013-06-05 16:52:26 -07001971 // To dump the state of the verify after a method, do something like:
David Sehr709b0702016-10-13 09:12:37 -07001972 // if (dex_file_->PrettyMethod(dex_method_idx_) ==
Ian Rogersc9e463c2013-06-05 16:52:26 -07001973 // "boolean java.lang.String.equals(java.lang.Object)") {
1974 // LOG(INFO) << info_messages_.str();
1975 // }
jeffhaoba5ebb92011-08-25 17:24:37 -07001976 }
jeffhaobdb76512011-09-07 11:43:16 -07001977 return true;
1978}
1979
Andreas Gampe68df3202015-06-22 11:35:46 -07001980// Returns the index of the first final instance field of the given class, or kDexNoIndex if there
1981// is no such field.
Andreas Gampea5b09a62016-11-17 15:21:22 -08001982static uint32_t GetFirstFinalInstanceFieldIndex(const DexFile& dex_file, dex::TypeIndex type_idx) {
Andreas Gampe68df3202015-06-22 11:35:46 -07001983 const DexFile::ClassDef* class_def = dex_file.FindClassDef(type_idx);
1984 DCHECK(class_def != nullptr);
1985 const uint8_t* class_data = dex_file.GetClassData(*class_def);
1986 DCHECK(class_data != nullptr);
1987 ClassDataItemIterator it(dex_file, class_data);
Mathieu Chartiere17cf242017-06-19 11:05:51 -07001988 it.SkipStaticFields();
Andreas Gampe68df3202015-06-22 11:35:46 -07001989 while (it.HasNextInstanceField()) {
1990 if ((it.GetFieldAccessFlags() & kAccFinal) != 0) {
1991 return it.GetMemberIndex();
1992 }
1993 it.Next();
1994 }
Andreas Gampee2abbc62017-09-15 11:59:26 -07001995 return dex::kDexNoIndex;
Andreas Gampe68df3202015-06-22 11:35:46 -07001996}
1997
Andreas Gampea727e372015-08-25 09:22:37 -07001998// Setup a register line for the given return instruction.
1999static void AdjustReturnLine(MethodVerifier* verifier,
2000 const Instruction* ret_inst,
2001 RegisterLine* line) {
2002 Instruction::Code opcode = ret_inst->Opcode();
2003
2004 switch (opcode) {
2005 case Instruction::RETURN_VOID:
2006 case Instruction::RETURN_VOID_NO_BARRIER:
2007 SafelyMarkAllRegistersAsConflicts(verifier, line);
2008 break;
2009
2010 case Instruction::RETURN:
2011 case Instruction::RETURN_OBJECT:
2012 line->MarkAllRegistersAsConflictsExcept(verifier, ret_inst->VRegA_11x());
2013 break;
2014
2015 case Instruction::RETURN_WIDE:
2016 line->MarkAllRegistersAsConflictsExceptWide(verifier, ret_inst->VRegA_11x());
2017 break;
2018
2019 default:
2020 LOG(FATAL) << "Unknown return opcode " << opcode;
2021 UNREACHABLE();
2022 }
2023}
2024
Ian Rogers776ac1f2012-04-13 23:36:36 -07002025bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002026 // If we're doing FindLocksAtDexPc, check whether we're at the dex pc we care about.
2027 // We want the state _before_ the instruction, for the case where the dex pc we're
2028 // interested in is itself a monitor-enter instruction (which is a likely place
2029 // for a thread to be suspended).
Ian Rogers7b078e82014-09-10 14:44:24 -07002030 if (monitor_enter_dex_pcs_ != nullptr && work_insn_idx_ == interesting_dex_pc_) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07002031 monitor_enter_dex_pcs_->clear(); // The new work line is more accurate than the previous one.
Elliott Hughes08fc03a2012-06-26 17:34:00 -07002032 for (size_t i = 0; i < work_line_->GetMonitorEnterCount(); ++i) {
2033 monitor_enter_dex_pcs_->push_back(work_line_->GetMonitorEnterDexPc(i));
2034 }
2035 }
2036
jeffhaobdb76512011-09-07 11:43:16 -07002037 /*
2038 * Once we finish decoding the instruction, we need to figure out where
jeffhaod1f0fde2011-09-08 17:25:33 -07002039 * we can go from here. There are three possible ways to transfer
jeffhaobdb76512011-09-07 11:43:16 -07002040 * control to another statement:
2041 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002042 * (1) Continue to the next instruction. Applies to all but
jeffhaobdb76512011-09-07 11:43:16 -07002043 * unconditional branches, method returns, and exception throws.
jeffhaod1f0fde2011-09-08 17:25:33 -07002044 * (2) Branch to one or more possible locations. Applies to branches
jeffhaobdb76512011-09-07 11:43:16 -07002045 * and switch statements.
jeffhaod1f0fde2011-09-08 17:25:33 -07002046 * (3) Exception handlers. Applies to any instruction that can
jeffhaobdb76512011-09-07 11:43:16 -07002047 * throw an exception that is handled by an encompassing "try"
2048 * block.
2049 *
2050 * We can also return, in which case there is no successor instruction
2051 * from this point.
2052 *
Elliott Hughesadb8c672012-03-06 16:49:32 -08002053 * The behavior can be determined from the opcode flags.
jeffhaobdb76512011-09-07 11:43:16 -07002054 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002055 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
2056 const Instruction* inst = Instruction::At(insns);
Ian Rogersa75a0132012-09-28 11:41:42 -07002057 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
jeffhaobdb76512011-09-07 11:43:16 -07002058
jeffhaobdb76512011-09-07 11:43:16 -07002059 int32_t branch_target = 0;
jeffhaobdb76512011-09-07 11:43:16 -07002060 bool just_set_result = false;
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002061 if (kDebugVerify) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002062 // Generate processing back trace to debug verifier
Elliott Hughesc073b072012-05-24 19:29:17 -07002063 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07002064 << work_line_->Dump(this) << "\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07002065 }
jeffhaobdb76512011-09-07 11:43:16 -07002066
2067 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002068 * Make a copy of the previous register state. If the instruction
jeffhaobdb76512011-09-07 11:43:16 -07002069 * can throw an exception, we will copy/merge this into the "catch"
2070 * address rather than work_line, because we don't want the result
2071 * from the "successful" code path (e.g. a check-cast that "improves"
2072 * a type) to be visible to the exception handler.
2073 */
Ian Rogers776ac1f2012-04-13 23:36:36 -07002074 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002075 saved_line_->CopyFromLine(work_line_.get());
Ian Rogers1ff3c982014-08-12 02:30:58 -07002076 } else if (kIsDebugBuild) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002077 saved_line_->FillWithGarbage();
jeffhaobdb76512011-09-07 11:43:16 -07002078 }
Andreas Gamped12e7822015-06-25 10:26:40 -07002079 DCHECK(!have_pending_runtime_throw_failure_); // Per-instruction flag, should not be set here.
jeffhaobdb76512011-09-07 11:43:16 -07002080
Dragos Sbirlea980d16b2013-06-04 15:01:40 -07002081
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002082 // We need to ensure the work line is consistent while performing validation. When we spot a
2083 // peephole pattern we compute a new line for either the fallthrough instruction or the
2084 // branch target.
Mathieu Chartier361e04a2016-02-16 14:06:35 -08002085 RegisterLineArenaUniquePtr branch_line;
2086 RegisterLineArenaUniquePtr fallthrough_line;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002087
Sebastien Hertz5243e912013-05-21 10:55:07 +02002088 switch (inst->Opcode()) {
jeffhaobdb76512011-09-07 11:43:16 -07002089 case Instruction::NOP:
2090 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002091 * A "pure" NOP has no effect on anything. Data tables start with
jeffhaobdb76512011-09-07 11:43:16 -07002092 * a signature that looks like a NOP; if we see one of these in
2093 * the course of executing code then we have a problem.
2094 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002095 if (inst->VRegA_10x() != 0) {
jeffhaod5347e02012-03-22 17:25:05 -07002096 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "encountered data table in instruction stream";
jeffhaobdb76512011-09-07 11:43:16 -07002097 }
2098 break;
2099
2100 case Instruction::MOVE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002101 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002102 break;
jeffhaobdb76512011-09-07 11:43:16 -07002103 case Instruction::MOVE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002104 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002105 break;
jeffhaobdb76512011-09-07 11:43:16 -07002106 case Instruction::MOVE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002107 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategory1nr);
jeffhaobdb76512011-09-07 11:43:16 -07002108 break;
2109 case Instruction::MOVE_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002110 work_line_->CopyRegister2(this, inst->VRegA_12x(), inst->VRegB_12x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002111 break;
jeffhaobdb76512011-09-07 11:43:16 -07002112 case Instruction::MOVE_WIDE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002113 work_line_->CopyRegister2(this, inst->VRegA_22x(), inst->VRegB_22x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002114 break;
jeffhaobdb76512011-09-07 11:43:16 -07002115 case Instruction::MOVE_WIDE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002116 work_line_->CopyRegister2(this, inst->VRegA_32x(), inst->VRegB_32x());
jeffhaobdb76512011-09-07 11:43:16 -07002117 break;
2118 case Instruction::MOVE_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002119 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002120 break;
jeffhaobdb76512011-09-07 11:43:16 -07002121 case Instruction::MOVE_OBJECT_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002122 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002123 break;
jeffhaobdb76512011-09-07 11:43:16 -07002124 case Instruction::MOVE_OBJECT_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002125 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategoryRef);
jeffhaobdb76512011-09-07 11:43:16 -07002126 break;
2127
2128 /*
2129 * The move-result instructions copy data out of a "pseudo-register"
jeffhaod1f0fde2011-09-08 17:25:33 -07002130 * with the results from the last method invocation. In practice we
jeffhaobdb76512011-09-07 11:43:16 -07002131 * might want to hold the result in an actual CPU register, so the
2132 * Dalvik spec requires that these only appear immediately after an
2133 * invoke or filled-new-array.
2134 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002135 * These calls invalidate the "result" register. (This is now
jeffhaobdb76512011-09-07 11:43:16 -07002136 * redundant with the reset done below, but it can make the debug info
2137 * easier to read in some cases.)
2138 */
2139 case Instruction::MOVE_RESULT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002140 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002141 break;
2142 case Instruction::MOVE_RESULT_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002143 work_line_->CopyResultRegister2(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07002144 break;
2145 case Instruction::MOVE_RESULT_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002146 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002147 break;
2148
Ian Rogersd81871c2011-10-03 13:57:23 -07002149 case Instruction::MOVE_EXCEPTION: {
Sebastien Hertz270a0e12015-01-16 19:49:09 +01002150 // We do not allow MOVE_EXCEPTION as the first instruction in a method. This is a simple case
2151 // where one entrypoint to the catch block is not actually an exception path.
2152 if (work_insn_idx_ == 0) {
2153 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "move-exception at pc 0x0";
2154 break;
2155 }
jeffhaobdb76512011-09-07 11:43:16 -07002156 /*
jeffhao60f83e32012-02-13 17:16:30 -08002157 * This statement can only appear as the first instruction in an exception handler. We verify
2158 * that as part of extracting the exception type from the catch block list.
jeffhaobdb76512011-09-07 11:43:16 -07002159 */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002160 const RegType& res_type = GetCaughtExceptionType();
Andreas Gampead238ce2015-08-24 21:13:08 -07002161 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_11x(), res_type);
jeffhaobdb76512011-09-07 11:43:16 -07002162 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002163 }
jeffhaobdb76512011-09-07 11:43:16 -07002164 case Instruction::RETURN_VOID:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002165 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002166 if (!GetMethodReturnType().IsConflict()) {
jeffhaod5347e02012-03-22 17:25:05 -07002167 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002168 }
jeffhaobdb76512011-09-07 11:43:16 -07002169 }
2170 break;
2171 case Instruction::RETURN:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002172 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07002173 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002174 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002175 if (!return_type.IsCategory1Types()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002176 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected non-category 1 return type "
2177 << return_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002178 } else {
2179 // Compilers may generate synthetic functions that write byte values into boolean fields.
2180 // Also, it may use integer values for boolean, byte, short, and character return types.
Sebastien Hertz5243e912013-05-21 10:55:07 +02002181 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002182 const RegType& src_type = work_line_->GetRegisterType(this, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07002183 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) ||
2184 ((return_type.IsBoolean() || return_type.IsByte() ||
2185 return_type.IsShort() || return_type.IsChar()) &&
2186 src_type.IsInteger()));
2187 /* check the register contents */
Ian Rogersad0b3a32012-04-16 14:50:24 -07002188 bool success =
Ian Rogers7b078e82014-09-10 14:44:24 -07002189 work_line_->VerifyRegisterType(this, vregA, use_src ? src_type : return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002190 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002191 AppendToLastFailMessage(StringPrintf(" return-1nr on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07002192 }
jeffhaobdb76512011-09-07 11:43:16 -07002193 }
2194 }
2195 break;
2196 case Instruction::RETURN_WIDE:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002197 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07002198 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002199 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002200 if (!return_type.IsCategory2Types()) {
jeffhaod5347e02012-03-22 17:25:05 -07002201 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-wide not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002202 } else {
2203 /* check the register contents */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002204 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002205 bool success = work_line_->VerifyRegisterType(this, vregA, return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002206 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002207 AppendToLastFailMessage(StringPrintf(" return-wide on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07002208 }
jeffhaobdb76512011-09-07 11:43:16 -07002209 }
2210 }
2211 break;
2212 case Instruction::RETURN_OBJECT:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002213 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00002214 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002215 if (!return_type.IsReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002216 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002217 } else {
2218 /* return_type is the *expected* return type, not register value */
2219 DCHECK(!return_type.IsZero());
2220 DCHECK(!return_type.IsUninitializedReference());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002221 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002222 const RegType& reg_type = work_line_->GetRegisterType(this, vregA);
Andreas Gampea32210c2015-06-24 10:26:13 -07002223 // Disallow returning undefined, conflict & uninitialized values and verify that the
2224 // reference in vAA is an instance of the "return_type."
2225 if (reg_type.IsUndefined()) {
2226 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning undefined register";
2227 } else if (reg_type.IsConflict()) {
2228 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning register with conflict";
2229 } else if (reg_type.IsUninitializedTypes()) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00002230 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning uninitialized object '"
Brian Carlstrom93c33962013-07-26 10:37:43 -07002231 << reg_type << "'";
Andreas Gampea4c98f22015-11-06 16:24:49 -08002232 } else if (!reg_type.IsReferenceTypes()) {
2233 // We really do expect a reference here.
2234 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object returns a non-reference type "
2235 << reg_type;
David Brazdilca3c8c32016-09-06 14:04:48 +01002236 } else if (!return_type.IsAssignableFrom(reg_type, this)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07002237 if (reg_type.IsUnresolvedTypes() || return_type.IsUnresolvedTypes()) {
2238 Fail(VERIFY_ERROR_NO_CLASS) << " can't resolve returned type '" << return_type
2239 << "' or '" << reg_type << "'";
2240 } else {
Andreas Gampe16f149c2015-03-23 10:10:20 -07002241 bool soft_error = false;
2242 // Check whether arrays are involved. They will show a valid class status, even
2243 // if their components are erroneous.
2244 if (reg_type.IsArrayTypes() && return_type.IsArrayTypes()) {
David Brazdilca3c8c32016-09-06 14:04:48 +01002245 return_type.CanAssignArray(reg_type, reg_types_, class_loader_, this, &soft_error);
Andreas Gampe16f149c2015-03-23 10:10:20 -07002246 if (soft_error) {
2247 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "array with erroneous component type: "
2248 << reg_type << " vs " << return_type;
2249 }
2250 }
2251
2252 if (!soft_error) {
2253 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning '" << reg_type
2254 << "', but expected from declaration '" << return_type << "'";
2255 }
Jeff Haoa3faaf42013-09-03 19:07:00 -07002256 }
jeffhaobdb76512011-09-07 11:43:16 -07002257 }
2258 }
2259 }
2260 break;
2261
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002262 /* could be boolean, int, float, or a null reference */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002263 case Instruction::CONST_4: {
2264 int32_t val = static_cast<int32_t>(inst->VRegB_11n() << 28) >> 28;
Andreas Gampead238ce2015-08-24 21:13:08 -07002265 work_line_->SetRegisterType<LockOp::kClear>(
2266 this, inst->VRegA_11n(), DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002267 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02002268 }
2269 case Instruction::CONST_16: {
2270 int16_t val = static_cast<int16_t>(inst->VRegB_21s());
Andreas Gampead238ce2015-08-24 21:13:08 -07002271 work_line_->SetRegisterType<LockOp::kClear>(
2272 this, inst->VRegA_21s(), DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002273 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02002274 }
Sebastien Hertz849600b2013-12-20 10:28:08 +01002275 case Instruction::CONST: {
2276 int32_t val = inst->VRegB_31i();
Andreas Gampead238ce2015-08-24 21:13:08 -07002277 work_line_->SetRegisterType<LockOp::kClear>(
2278 this, inst->VRegA_31i(), DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07002279 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01002280 }
2281 case Instruction::CONST_HIGH16: {
2282 int32_t val = static_cast<int32_t>(inst->VRegB_21h() << 16);
Andreas Gampead238ce2015-08-24 21:13:08 -07002283 work_line_->SetRegisterType<LockOp::kClear>(
2284 this, inst->VRegA_21h(), DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07002285 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01002286 }
jeffhaobdb76512011-09-07 11:43:16 -07002287 /* could be long or double; resolved upon use */
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002288 case Instruction::CONST_WIDE_16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002289 int64_t val = static_cast<int16_t>(inst->VRegB_21s());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002290 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2291 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002292 work_line_->SetRegisterTypeWide(this, inst->VRegA_21s(), lo, hi);
jeffhaobdb76512011-09-07 11:43:16 -07002293 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002294 }
2295 case Instruction::CONST_WIDE_32: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002296 int64_t val = static_cast<int32_t>(inst->VRegB_31i());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002297 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2298 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002299 work_line_->SetRegisterTypeWide(this, inst->VRegA_31i(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002300 break;
2301 }
2302 case Instruction::CONST_WIDE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002303 int64_t val = inst->VRegB_51l();
Ian Rogersd8f69b02014-09-10 21:43:52 +00002304 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2305 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002306 work_line_->SetRegisterTypeWide(this, inst->VRegA_51l(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002307 break;
2308 }
2309 case Instruction::CONST_WIDE_HIGH16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002310 int64_t val = static_cast<uint64_t>(inst->VRegB_21h()) << 48;
Ian Rogersd8f69b02014-09-10 21:43:52 +00002311 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2312 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002313 work_line_->SetRegisterTypeWide(this, inst->VRegA_21h(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002314 break;
2315 }
jeffhaobdb76512011-09-07 11:43:16 -07002316 case Instruction::CONST_STRING:
Andreas Gampead238ce2015-08-24 21:13:08 -07002317 work_line_->SetRegisterType<LockOp::kClear>(
2318 this, inst->VRegA_21c(), reg_types_.JavaLangString());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002319 break;
jeffhaobdb76512011-09-07 11:43:16 -07002320 case Instruction::CONST_STRING_JUMBO:
Andreas Gampead238ce2015-08-24 21:13:08 -07002321 work_line_->SetRegisterType<LockOp::kClear>(
2322 this, inst->VRegA_31c(), reg_types_.JavaLangString());
jeffhaobdb76512011-09-07 11:43:16 -07002323 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002324 case Instruction::CONST_CLASS: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002325 // Get type from instruction if unresolved then we need an access check
2326 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Andreas Gampe98be1a92017-08-28 08:25:45 -07002327 const RegType& res_type = ResolveClass<CheckAccess::kYes>(dex::TypeIndex(inst->VRegB_21c()));
Ian Rogersad0b3a32012-04-16 14:50:24 -07002328 // Register holds class, ie its type is class, on error it will hold Conflict.
Andreas Gampead238ce2015-08-24 21:13:08 -07002329 work_line_->SetRegisterType<LockOp::kClear>(
2330 this, inst->VRegA_21c(), res_type.IsConflict() ? res_type
2331 : reg_types_.JavaLangClass());
jeffhaobdb76512011-09-07 11:43:16 -07002332 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002333 }
jeffhaobdb76512011-09-07 11:43:16 -07002334 case Instruction::MONITOR_ENTER:
Ian Rogers7b078e82014-09-10 14:44:24 -07002335 work_line_->PushMonitor(this, inst->VRegA_11x(), work_insn_idx_);
Andreas Gampec1474102015-08-18 08:57:44 -07002336 // Check whether the previous instruction is a move-object with vAA as a source, creating
2337 // untracked lock aliasing.
Mathieu Chartierde40d472015-10-15 17:47:48 -07002338 if (0 != work_insn_idx_ && !GetInstructionFlags(work_insn_idx_).IsBranchTarget()) {
Andreas Gampec1474102015-08-18 08:57:44 -07002339 uint32_t prev_idx = work_insn_idx_ - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002340 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) {
Andreas Gampec1474102015-08-18 08:57:44 -07002341 prev_idx--;
2342 }
2343 const Instruction* prev_inst = Instruction::At(code_item_->insns_ + prev_idx);
2344 switch (prev_inst->Opcode()) {
2345 case Instruction::MOVE_OBJECT:
2346 case Instruction::MOVE_OBJECT_16:
2347 case Instruction::MOVE_OBJECT_FROM16:
2348 if (prev_inst->VRegB() == inst->VRegA_11x()) {
2349 // Redo the copy. This won't change the register types, but update the lock status
2350 // for the aliased register.
2351 work_line_->CopyRegister1(this,
2352 prev_inst->VRegA(),
2353 prev_inst->VRegB(),
2354 kTypeCategoryRef);
2355 }
2356 break;
2357
2358 default: // Other instruction types ignored.
2359 break;
2360 }
2361 }
jeffhaobdb76512011-09-07 11:43:16 -07002362 break;
2363 case Instruction::MONITOR_EXIT:
2364 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002365 * monitor-exit instructions are odd. They can throw exceptions,
jeffhaobdb76512011-09-07 11:43:16 -07002366 * but when they do they act as if they succeeded and the PC is
jeffhaod1f0fde2011-09-08 17:25:33 -07002367 * pointing to the following instruction. (This behavior goes back
jeffhaobdb76512011-09-07 11:43:16 -07002368 * to the need to handle asynchronous exceptions, a now-deprecated
2369 * feature that Dalvik doesn't support.)
2370 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002371 * In practice we don't need to worry about this. The only
jeffhaobdb76512011-09-07 11:43:16 -07002372 * exceptions that can be thrown from monitor-exit are for a
jeffhaod1f0fde2011-09-08 17:25:33 -07002373 * null reference and -exit without a matching -enter. If the
jeffhaobdb76512011-09-07 11:43:16 -07002374 * structured locking checks are working, the former would have
2375 * failed on the -enter instruction, and the latter is impossible.
2376 *
2377 * This is fortunate, because issue 3221411 prevents us from
2378 * chasing the "can throw" path when monitor verification is
jeffhaod1f0fde2011-09-08 17:25:33 -07002379 * enabled. If we can fully verify the locking we can ignore
jeffhaobdb76512011-09-07 11:43:16 -07002380 * some catch blocks (which will show up as "dead" code when
2381 * we skip them here); if we can't, then the code path could be
2382 * "live" so we still need to check it.
2383 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002384 opcode_flags &= ~Instruction::kThrow;
Ian Rogers7b078e82014-09-10 14:44:24 -07002385 work_line_->PopMonitor(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07002386 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07002387 case Instruction::CHECK_CAST:
Ian Rogersd81871c2011-10-03 13:57:23 -07002388 case Instruction::INSTANCE_OF: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002389 /*
2390 * If this instruction succeeds, we will "downcast" register vA to the type in vB. (This
2391 * could be a "upcast" -- not expected, so we don't try to address it.)
2392 *
2393 * If it fails, an exception is thrown, which we deal with later by ignoring the update to
Elliott Hughesadb8c672012-03-06 16:49:32 -08002394 * dec_insn.vA when branching to a handler.
Ian Rogers28ad40d2011-10-27 15:19:26 -07002395 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002396 const bool is_checkcast = (inst->Opcode() == Instruction::CHECK_CAST);
Andreas Gampea5b09a62016-11-17 15:21:22 -08002397 const dex::TypeIndex type_idx((is_checkcast) ? inst->VRegB_21c() : inst->VRegC_22c());
Andreas Gampe98be1a92017-08-28 08:25:45 -07002398 const RegType& res_type = ResolveClass<CheckAccess::kYes>(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002399 if (res_type.IsConflict()) {
Andreas Gampe00633eb2014-07-17 16:13:35 -07002400 // If this is a primitive type, fail HARD.
Vladimir Marko8d6768d2017-03-14 10:13:21 +00002401 ObjPtr<mirror::Class> klass =
2402 ClassLinker::LookupResolvedType(type_idx, dex_cache_.Get(), class_loader_.Get());
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 Gampe98be1a92017-08-28 08:25:45 -07002468 const RegType& res_type = ResolveClass<CheckAccess::kYes>(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 Gampe98be1a92017-08-28 08:25:45 -07002680 const RegType& cast_type = ResolveClass<CheckAccess::kYes>(
Andreas Gampea5b09a62016-11-17 15:21:22 -08002681 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 Markob45528c2017-07-27 14:14:28 +01002904 ObjPtr<mirror::Class> return_type_class = can_load_classes_
2905 ? called_method->ResolveReturnType()
2906 : called_method->LookupResolvedReturnType();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002907 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07002908 return_type = &FromClass(called_method->GetReturnTypeDescriptor(),
Vladimir Markob45528c2017-07-27 14:14:28 +01002909 return_type_class.Ptr(),
Andreas Gampef23f33d2015-06-23 14:18:17 -07002910 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002911 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002912 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2913 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002914 }
2915 }
2916 if (return_type == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002917 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002918 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Andreas Gampea5b09a62016-11-17 15:21:22 -08002919 dex::TypeIndex return_type_idx =
2920 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002921 const char* descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002922 return_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
jeffhaobdb76512011-09-07 11:43:16 -07002923 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002924 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002925 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002926 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002927 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002928 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002929 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07002930 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002931 }
jeffhaobdb76512011-09-07 11:43:16 -07002932 case Instruction::INVOKE_DIRECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002933 case Instruction::INVOKE_DIRECT_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002934 bool is_range = (inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08002935 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range);
Ian Rogers46685432012-06-03 22:26:43 -07002936 const char* return_type_descriptor;
2937 bool is_constructor;
Ian Rogersd8f69b02014-09-10 21:43:52 +00002938 const RegType* return_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07002939 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002940 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers46685432012-06-03 22:26:43 -07002941 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002942 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0;
Andreas Gampea5b09a62016-11-17 15:21:22 -08002943 dex::TypeIndex return_type_idx =
2944 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogers46685432012-06-03 22:26:43 -07002945 return_type_descriptor = dex_file_->StringByTypeIdx(return_type_idx);
2946 } else {
2947 is_constructor = called_method->IsConstructor();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002948 return_type_descriptor = called_method->GetReturnTypeDescriptor();
Vladimir Markob45528c2017-07-27 14:14:28 +01002949 ObjPtr<mirror::Class> return_type_class = can_load_classes_
2950 ? called_method->ResolveReturnType()
2951 : called_method->LookupResolvedReturnType();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002952 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07002953 return_type = &FromClass(return_type_descriptor,
Vladimir Markob45528c2017-07-27 14:14:28 +01002954 return_type_class.Ptr(),
Andreas Gampef23f33d2015-06-23 14:18:17 -07002955 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogers1ff3c982014-08-12 02:30:58 -07002956 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002957 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2958 self_->ClearException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002959 }
Ian Rogers46685432012-06-03 22:26:43 -07002960 }
2961 if (is_constructor) {
jeffhaobdb76512011-09-07 11:43:16 -07002962 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002963 * Some additional checks when calling a constructor. We know from the invocation arg check
2964 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2965 * that to require that called_method->klass is the same as this->klass or this->super,
2966 * allowing the latter only if the "this" argument is the same as the "this" argument to
2967 * this method (which implies that we're in a constructor ourselves).
jeffhaobdb76512011-09-07 11:43:16 -07002968 */
Orion Hodsoncfa325e2016-10-13 10:25:54 +01002969 const RegType& this_type = work_line_->GetInvocationThis(this, inst);
jeffhaob57e9522012-04-26 18:08:21 -07002970 if (this_type.IsConflict()) // failure.
2971 break;
jeffhaobdb76512011-09-07 11:43:16 -07002972
jeffhaob57e9522012-04-26 18:08:21 -07002973 /* no null refs allowed (?) */
2974 if (this_type.IsZero()) {
2975 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unable to initialize null ref";
2976 break;
jeffhao2a8a90e2011-09-26 14:25:31 -07002977 }
jeffhaob57e9522012-04-26 18:08:21 -07002978
2979 /* must be in same class or in superclass */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002980 // const RegType& this_super_klass = this_type.GetSuperClass(&reg_types_);
Ian Rogers46685432012-06-03 22:26:43 -07002981 // TODO: re-enable constructor type verification
2982 // if (this_super_klass.IsConflict()) {
jeffhaob57e9522012-04-26 18:08:21 -07002983 // Unknown super class, fail so we re-check at runtime.
Ian Rogers46685432012-06-03 22:26:43 -07002984 // Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "super class unknown for '" << this_type << "'";
2985 // break;
2986 // }
jeffhaob57e9522012-04-26 18:08:21 -07002987
2988 /* arg must be an uninitialized reference */
2989 if (!this_type.IsUninitializedTypes()) {
2990 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Expected initialization on uninitialized reference "
2991 << this_type;
2992 break;
2993 }
2994
2995 /*
2996 * Replace the uninitialized reference with an initialized one. We need to do this for all
2997 * registers that have the same object instance in them, not just the "this" register.
2998 */
Nicolas Geoffray98e6ce42016-02-16 18:42:15 +00002999 work_line_->MarkRefsAsInitialized(this, this_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003000 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07003001 if (return_type == nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07003002 return_type = &reg_types_.FromDescriptor(GetClassLoader(), return_type_descriptor, false);
Ian Rogers1ff3c982014-08-12 02:30:58 -07003003 }
3004 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003005 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003006 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -07003007 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003008 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003009 just_set_result = true;
3010 break;
3011 }
3012 case Instruction::INVOKE_STATIC:
3013 case Instruction::INVOKE_STATIC_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003014 bool is_range = (inst->Opcode() == Instruction::INVOKE_STATIC_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08003015 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range);
Ian Rogers28ad40d2011-10-27 15:19:26 -07003016 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07003017 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003018 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers28ad40d2011-10-27 15:19:26 -07003019 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Andreas Gampea5b09a62016-11-17 15:21:22 -08003020 dex::TypeIndex return_type_idx =
3021 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07003022 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07003023 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003024 descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07003025 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003026 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003027 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003028 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003029 } else {
3030 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3031 }
jeffhaobdb76512011-09-07 11:43:16 -07003032 just_set_result = true;
3033 }
3034 break;
jeffhaobdb76512011-09-07 11:43:16 -07003035 case Instruction::INVOKE_INTERFACE:
Ian Rogersd81871c2011-10-03 13:57:23 -07003036 case Instruction::INVOKE_INTERFACE_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003037 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08003038 ArtMethod* abs_method = VerifyInvocationArgs(inst, METHOD_INTERFACE, is_range);
Ian Rogers7b078e82014-09-10 14:44:24 -07003039 if (abs_method != nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003040 mirror::Class* called_interface = abs_method->GetDeclaringClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003041 if (!called_interface->IsInterface() && !called_interface->IsObjectClass()) {
3042 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected interface class in invoke-interface '"
David Sehr709b0702016-10-13 09:12:37 -07003043 << abs_method->PrettyMethod() << "'";
Ian Rogersad0b3a32012-04-16 14:50:24 -07003044 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07003045 }
Ian Rogers0d604842012-04-16 14:50:24 -07003046 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003047 /* Get the type of the "this" arg, which should either be a sub-interface of called
3048 * interface or Object (see comments in RegType::JoinClass).
3049 */
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003050 const RegType& this_type = work_line_->GetInvocationThis(this, inst);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003051 if (this_type.IsZero()) {
3052 /* null pointer always passes (and always fails at runtime) */
3053 } else {
3054 if (this_type.IsUninitializedTypes()) {
3055 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface call on uninitialized object "
3056 << this_type;
3057 break;
3058 }
3059 // In the past we have tried to assert that "called_interface" is assignable
3060 // from "this_type.GetClass()", however, as we do an imprecise Join
3061 // (RegType::JoinClass) we don't have full information on what interfaces are
3062 // implemented by "this_type". For example, two classes may implement the same
3063 // interfaces and have a common parent that doesn't implement the interface. The
3064 // join will set "this_type" to the parent class and a test that this implements
3065 // the interface will incorrectly fail.
3066 }
3067 /*
3068 * We don't have an object instance, so we can't find the concrete method. However, all of
3069 * the type information is in the abstract method, so we're good.
3070 */
3071 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07003072 if (abs_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003073 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003074 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Andreas Gampea5b09a62016-11-17 15:21:22 -08003075 dex::TypeIndex return_type_idx =
3076 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartierde40d472015-10-15 17:47:48 -07003077 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003078 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003079 descriptor = abs_method->GetReturnTypeDescriptor();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003080 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003081 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003082 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003083 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003084 } else {
3085 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3086 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003087 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07003088 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07003089 }
Narayan Kamath9823e782016-08-03 12:46:58 +01003090 case Instruction::INVOKE_POLYMORPHIC:
3091 case Instruction::INVOKE_POLYMORPHIC_RANGE: {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003092 bool is_range = (inst->Opcode() == Instruction::INVOKE_POLYMORPHIC_RANGE);
3093 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_POLYMORPHIC, is_range);
3094 if (called_method == nullptr) {
3095 // Convert potential soft failures in VerifyInvocationArgs() to hard errors.
3096 if (failure_messages_.size() > 0) {
3097 std::string message = failure_messages_.back()->str();
3098 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << message;
3099 } else {
3100 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-polymorphic verification failure.";
3101 }
3102 break;
3103 }
3104 if (!CheckSignaturePolymorphicMethod(called_method) ||
3105 !CheckSignaturePolymorphicReceiver(inst)) {
3106 break;
3107 }
3108 const uint32_t proto_idx = (is_range) ? inst->VRegH_4rcc() : inst->VRegH_45cc();
Orion Hodsonac141392017-01-13 11:53:47 +00003109 const char* return_descriptor =
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003110 dex_file_->GetReturnTypeDescriptor(dex_file_->GetProtoId(proto_idx));
3111 const RegType& return_type =
Orion Hodsonac141392017-01-13 11:53:47 +00003112 reg_types_.FromDescriptor(GetClassLoader(), return_descriptor, false);
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003113 if (!return_type.IsLowHalf()) {
3114 work_line_->SetResultRegisterType(this, return_type);
3115 } else {
3116 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3117 }
Orion Hodsonac141392017-01-13 11:53:47 +00003118 just_set_result = true;
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003119 break;
Narayan Kamath9823e782016-08-03 12:46:58 +01003120 }
Orion Hodsonc069a302017-01-18 09:23:12 +00003121 case Instruction::INVOKE_CUSTOM:
3122 case Instruction::INVOKE_CUSTOM_RANGE: {
3123 // Verify registers based on method_type in the call site.
3124 bool is_range = (inst->Opcode() == Instruction::INVOKE_CUSTOM_RANGE);
3125
3126 // Step 1. Check the call site that produces the method handle for invocation
3127 const uint32_t call_site_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
3128 if (!CheckCallSite(call_site_idx)) {
3129 DCHECK(HasFailures());
3130 break;
3131 }
3132
3133 // Step 2. Check the register arguments correspond to the expected arguments for the
3134 // method handle produced by step 1. The dex file verifier has checked ranges for
3135 // the first three arguments and CheckCallSite has checked the method handle type.
3136 CallSiteArrayValueIterator it(*dex_file_, dex_file_->GetCallSiteId(call_site_idx));
3137 it.Next(); // Skip to name.
3138 it.Next(); // Skip to method type of the method handle
3139 const uint32_t proto_idx = static_cast<uint32_t>(it.GetJavaValue().i);
3140 const DexFile::ProtoId& proto_id = dex_file_->GetProtoId(proto_idx);
3141 DexFileParameterIterator param_it(*dex_file_, proto_id);
3142 // Treat method as static as it has yet to be determined.
3143 VerifyInvocationArgsFromIterator(&param_it, inst, METHOD_STATIC, is_range, nullptr);
3144 const char* return_descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
3145
3146 // Step 3. Propagate return type information
3147 const RegType& return_type =
3148 reg_types_.FromDescriptor(GetClassLoader(), return_descriptor, false);
3149 if (!return_type.IsLowHalf()) {
3150 work_line_->SetResultRegisterType(this, return_type);
3151 } else {
3152 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3153 }
3154 just_set_result = true;
3155 // TODO: Add compiler support for invoke-custom (b/35337872).
3156 Fail(VERIFY_ERROR_FORCE_INTERPRETER);
3157 break;
3158 }
jeffhaobdb76512011-09-07 11:43:16 -07003159 case Instruction::NEG_INT:
3160 case Instruction::NOT_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003161 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003162 break;
3163 case Instruction::NEG_LONG:
3164 case Instruction::NOT_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003165 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003166 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003167 break;
3168 case Instruction::NEG_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003169 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003170 break;
3171 case Instruction::NEG_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003172 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
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::INT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003176 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003177 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003178 break;
3179 case Instruction::INT_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003180 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003181 break;
3182 case Instruction::INT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003183 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003184 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003185 break;
3186 case Instruction::LONG_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003187 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003188 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003189 break;
3190 case Instruction::LONG_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003191 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003192 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003193 break;
3194 case Instruction::LONG_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003195 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003196 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003197 break;
3198 case Instruction::FLOAT_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003199 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003200 break;
3201 case Instruction::FLOAT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003202 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003203 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003204 break;
3205 case Instruction::FLOAT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003206 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003207 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003208 break;
3209 case Instruction::DOUBLE_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003210 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003211 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003212 break;
3213 case Instruction::DOUBLE_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003214 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003215 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003216 break;
3217 case Instruction::DOUBLE_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003218 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003219 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003220 break;
3221 case Instruction::INT_TO_BYTE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003222 work_line_->CheckUnaryOp(this, inst, reg_types_.Byte(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003223 break;
3224 case Instruction::INT_TO_CHAR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003225 work_line_->CheckUnaryOp(this, inst, reg_types_.Char(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003226 break;
3227 case Instruction::INT_TO_SHORT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003228 work_line_->CheckUnaryOp(this, inst, reg_types_.Short(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003229 break;
3230
3231 case Instruction::ADD_INT:
3232 case Instruction::SUB_INT:
3233 case Instruction::MUL_INT:
3234 case Instruction::REM_INT:
3235 case Instruction::DIV_INT:
3236 case Instruction::SHL_INT:
3237 case Instruction::SHR_INT:
3238 case Instruction::USHR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003239 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003240 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003241 break;
3242 case Instruction::AND_INT:
3243 case Instruction::OR_INT:
3244 case Instruction::XOR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003245 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003246 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07003247 break;
3248 case Instruction::ADD_LONG:
3249 case Instruction::SUB_LONG:
3250 case Instruction::MUL_LONG:
3251 case Instruction::DIV_LONG:
3252 case Instruction::REM_LONG:
3253 case Instruction::AND_LONG:
3254 case Instruction::OR_LONG:
3255 case Instruction::XOR_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003256 work_line_->CheckBinaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003257 reg_types_.LongLo(), reg_types_.LongHi(),
3258 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003259 break;
3260 case Instruction::SHL_LONG:
3261 case Instruction::SHR_LONG:
3262 case Instruction::USHR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07003263 /* shift distance is Int, making these different from other binary operations */
Ian Rogers7b078e82014-09-10 14:44:24 -07003264 work_line_->CheckBinaryOpWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003265 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003266 break;
3267 case Instruction::ADD_FLOAT:
3268 case Instruction::SUB_FLOAT:
3269 case Instruction::MUL_FLOAT:
3270 case Instruction::DIV_FLOAT:
3271 case Instruction::REM_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003272 work_line_->CheckBinaryOp(this, inst, reg_types_.Float(), reg_types_.Float(),
3273 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003274 break;
3275 case Instruction::ADD_DOUBLE:
3276 case Instruction::SUB_DOUBLE:
3277 case Instruction::MUL_DOUBLE:
3278 case Instruction::DIV_DOUBLE:
3279 case Instruction::REM_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003280 work_line_->CheckBinaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003281 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
3282 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003283 break;
3284 case Instruction::ADD_INT_2ADDR:
3285 case Instruction::SUB_INT_2ADDR:
3286 case Instruction::MUL_INT_2ADDR:
3287 case Instruction::REM_INT_2ADDR:
3288 case Instruction::SHL_INT_2ADDR:
3289 case Instruction::SHR_INT_2ADDR:
3290 case Instruction::USHR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003291 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3292 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003293 break;
3294 case Instruction::AND_INT_2ADDR:
3295 case Instruction::OR_INT_2ADDR:
3296 case Instruction::XOR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003297 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3298 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07003299 break;
3300 case Instruction::DIV_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003301 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3302 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003303 break;
3304 case Instruction::ADD_LONG_2ADDR:
3305 case Instruction::SUB_LONG_2ADDR:
3306 case Instruction::MUL_LONG_2ADDR:
3307 case Instruction::DIV_LONG_2ADDR:
3308 case Instruction::REM_LONG_2ADDR:
3309 case Instruction::AND_LONG_2ADDR:
3310 case Instruction::OR_LONG_2ADDR:
3311 case Instruction::XOR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003312 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003313 reg_types_.LongLo(), reg_types_.LongHi(),
3314 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003315 break;
3316 case Instruction::SHL_LONG_2ADDR:
3317 case Instruction::SHR_LONG_2ADDR:
3318 case Instruction::USHR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003319 work_line_->CheckBinaryOp2addrWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003320 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003321 break;
3322 case Instruction::ADD_FLOAT_2ADDR:
3323 case Instruction::SUB_FLOAT_2ADDR:
3324 case Instruction::MUL_FLOAT_2ADDR:
3325 case Instruction::DIV_FLOAT_2ADDR:
3326 case Instruction::REM_FLOAT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003327 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Float(), reg_types_.Float(),
3328 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003329 break;
3330 case Instruction::ADD_DOUBLE_2ADDR:
3331 case Instruction::SUB_DOUBLE_2ADDR:
3332 case Instruction::MUL_DOUBLE_2ADDR:
3333 case Instruction::DIV_DOUBLE_2ADDR:
3334 case Instruction::REM_DOUBLE_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003335 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003336 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
3337 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003338 break;
3339 case Instruction::ADD_INT_LIT16:
Ian Rogersf72a11d2014-10-30 15:41:08 -07003340 case Instruction::RSUB_INT_LIT16:
jeffhaobdb76512011-09-07 11:43:16 -07003341 case Instruction::MUL_INT_LIT16:
3342 case Instruction::DIV_INT_LIT16:
3343 case Instruction::REM_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07003344 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
3345 true);
jeffhaobdb76512011-09-07 11:43:16 -07003346 break;
3347 case Instruction::AND_INT_LIT16:
3348 case Instruction::OR_INT_LIT16:
3349 case Instruction::XOR_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07003350 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
3351 true);
jeffhaobdb76512011-09-07 11:43:16 -07003352 break;
3353 case Instruction::ADD_INT_LIT8:
3354 case Instruction::RSUB_INT_LIT8:
3355 case Instruction::MUL_INT_LIT8:
3356 case Instruction::DIV_INT_LIT8:
3357 case Instruction::REM_INT_LIT8:
3358 case Instruction::SHL_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07003359 case Instruction::SHR_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07003360 case Instruction::USHR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07003361 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
3362 false);
jeffhaobdb76512011-09-07 11:43:16 -07003363 break;
3364 case Instruction::AND_INT_LIT8:
3365 case Instruction::OR_INT_LIT8:
3366 case Instruction::XOR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07003367 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
3368 false);
jeffhaobdb76512011-09-07 11:43:16 -07003369 break;
3370
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003371 // Special instructions.
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003372 case Instruction::RETURN_VOID_NO_BARRIER:
3373 if (IsConstructor() && !IsStatic()) {
3374 auto& declaring_class = GetDeclaringClass();
Andreas Gampe68df3202015-06-22 11:35:46 -07003375 if (declaring_class.IsUnresolvedReference()) {
3376 // We must iterate over the fields, even if we cannot use mirror classes to do so. Do it
3377 // manually over the underlying dex file.
3378 uint32_t first_index = GetFirstFinalInstanceFieldIndex(*dex_file_,
3379 dex_file_->GetMethodId(dex_method_idx_).class_idx_);
Andreas Gampee2abbc62017-09-15 11:59:26 -07003380 if (first_index != dex::kDexNoIndex) {
Andreas Gampe68df3202015-06-22 11:35:46 -07003381 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-no-barrier not expected for field "
3382 << first_index;
3383 }
3384 break;
3385 }
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003386 auto* klass = declaring_class.GetClass();
3387 for (uint32_t i = 0, num_fields = klass->NumInstanceFields(); i < num_fields; ++i) {
3388 if (klass->GetInstanceField(i)->IsFinal()) {
Mathieu Chartiere86deef2015-03-19 13:43:37 -07003389 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-no-barrier not expected for "
David Sehr709b0702016-10-13 09:12:37 -07003390 << klass->GetInstanceField(i)->PrettyField();
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003391 break;
3392 }
3393 }
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02003394 }
Andreas Gampeb2917962015-07-31 13:36:10 -07003395 // Handle this like a RETURN_VOID now. Code is duplicated to separate standard from
3396 // quickened opcodes (otherwise this could be a fall-through).
3397 if (!IsConstructor()) {
3398 if (!GetMethodReturnType().IsConflict()) {
3399 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
3400 }
3401 }
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02003402 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003403 // Note: the following instructions encode offsets derived from class linking.
Neil Fuller0e844392016-09-08 13:43:31 +01003404 // As such they use Class*/Field*/Executable* as these offsets only have
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003405 // meaning if the class linking and resolution were successful.
3406 case Instruction::IGET_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003407 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003408 break;
3409 case Instruction::IGET_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003410 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003411 break;
3412 case Instruction::IGET_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003413 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003414 break;
Mathieu Chartierffc605c2014-12-10 10:35:44 -08003415 case Instruction::IGET_BOOLEAN_QUICK:
3416 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true);
3417 break;
3418 case Instruction::IGET_BYTE_QUICK:
3419 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true);
3420 break;
3421 case Instruction::IGET_CHAR_QUICK:
3422 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true);
3423 break;
3424 case Instruction::IGET_SHORT_QUICK:
3425 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true);
3426 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003427 case Instruction::IPUT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003428 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003429 break;
Fred Shih37f05ef2014-07-16 18:38:08 -07003430 case Instruction::IPUT_BOOLEAN_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003431 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003432 break;
3433 case Instruction::IPUT_BYTE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003434 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003435 break;
3436 case Instruction::IPUT_CHAR_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003437 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003438 break;
3439 case Instruction::IPUT_SHORT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003440 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003441 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003442 case Instruction::IPUT_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003443 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003444 break;
3445 case Instruction::IPUT_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003446 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003447 break;
3448 case Instruction::INVOKE_VIRTUAL_QUICK:
3449 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
3450 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003451 ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range);
Ian Rogers7b078e82014-09-10 14:44:24 -07003452 if (called_method != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003453 const char* descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003454 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003455 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003456 work_line_->SetResultRegisterType(this, return_type);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003457 } else {
3458 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3459 }
3460 just_set_result = true;
3461 }
3462 break;
3463 }
3464
Ian Rogersd81871c2011-10-03 13:57:23 -07003465 /* These should never appear during verification. */
Mathieu Chartierffc605c2014-12-10 10:35:44 -08003466 case Instruction::UNUSED_3E ... Instruction::UNUSED_43:
Narayan Kamath8ec3bd22016-08-03 12:46:23 +01003467 case Instruction::UNUSED_F3 ... Instruction::UNUSED_F9:
Orion Hodsonc069a302017-01-18 09:23:12 +00003468 case Instruction::UNUSED_FE ... Instruction::UNUSED_FF:
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003469 case Instruction::UNUSED_79:
3470 case Instruction::UNUSED_7A:
jeffhaod5347e02012-03-22 17:25:05 -07003471 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Unexpected opcode " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07003472 break;
3473
3474 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003475 * DO NOT add a "default" clause here. Without it the compiler will
jeffhaobdb76512011-09-07 11:43:16 -07003476 * complain if an instruction is missing (which is desirable).
3477 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003478 } // end - switch (dec_insn.opcode)
jeffhaobdb76512011-09-07 11:43:16 -07003479
Ian Rogersad0b3a32012-04-16 14:50:24 -07003480 if (have_pending_hard_failure_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08003481 if (Runtime::Current()->IsAotCompiler()) {
3482 /* When AOT compiling, check that the last failure is a hard failure */
Andreas Gampeb588f4c2015-05-26 13:35:39 -07003483 if (failures_[failures_.size() - 1] != VERIFY_ERROR_BAD_CLASS_HARD) {
3484 LOG(ERROR) << "Pending failures:";
3485 for (auto& error : failures_) {
3486 LOG(ERROR) << error;
3487 }
3488 for (auto& error_msg : failure_messages_) {
3489 LOG(ERROR) << error_msg->str();
3490 }
3491 LOG(FATAL) << "Pending hard failure, but last failure not hard.";
3492 }
Ian Rogerse1758fe2012-04-19 11:31:15 -07003493 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003494 /* immediate failure, reject class */
3495 info_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_);
3496 return false;
jeffhaofaf459e2012-08-31 15:32:47 -07003497 } else if (have_pending_runtime_throw_failure_) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07003498 /* checking interpreter will throw, mark following code as unreachable */
jeffhaofaf459e2012-08-31 15:32:47 -07003499 opcode_flags = Instruction::kThrow;
Andreas Gampea727e372015-08-25 09:22:37 -07003500 // Note: the flag must be reset as it is only global to decouple Fail and is semantically per
3501 // instruction. However, RETURN checking may throw LOCKING errors, so we clear at the
3502 // very end.
jeffhaobdb76512011-09-07 11:43:16 -07003503 }
jeffhaobdb76512011-09-07 11:43:16 -07003504 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003505 * If we didn't just set the result register, clear it out. This ensures that you can only use
3506 * "move-result" immediately after the result is set. (We could check this statically, but it's
3507 * not expensive and it makes our debugging output cleaner.)
jeffhaobdb76512011-09-07 11:43:16 -07003508 */
3509 if (!just_set_result) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003510 work_line_->SetResultTypeToUnknown(this);
jeffhaobdb76512011-09-07 11:43:16 -07003511 }
3512
jeffhaobdb76512011-09-07 11:43:16 -07003513 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003514 * Handle "branch". Tag the branch target.
jeffhaobdb76512011-09-07 11:43:16 -07003515 *
3516 * NOTE: instructions like Instruction::EQZ provide information about the
jeffhaod1f0fde2011-09-08 17:25:33 -07003517 * state of the register when the branch is taken or not taken. For example,
jeffhaobdb76512011-09-07 11:43:16 -07003518 * somebody could get a reference field, check it for zero, and if the
3519 * branch is taken immediately store that register in a boolean field
jeffhaod1f0fde2011-09-08 17:25:33 -07003520 * since the value is known to be zero. We do not currently account for
jeffhaobdb76512011-09-07 11:43:16 -07003521 * that, and will reject the code.
3522 *
3523 * TODO: avoid re-fetching the branch target
3524 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003525 if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07003526 bool isConditional, selfOkay;
Ian Rogersd81871c2011-10-03 13:57:23 -07003527 if (!GetBranchOffset(work_insn_idx_, &branch_target, &isConditional, &selfOkay)) {
jeffhaobdb76512011-09-07 11:43:16 -07003528 /* should never happen after static verification */
jeffhaod5347e02012-03-22 17:25:05 -07003529 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad branch";
jeffhaobdb76512011-09-07 11:43:16 -07003530 return false;
3531 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08003532 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0);
Stephen Kyle9bc61992014-09-22 13:53:15 +01003533 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, work_insn_idx_ + branch_target)) {
jeffhaobdb76512011-09-07 11:43:16 -07003534 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003535 }
jeffhaobdb76512011-09-07 11:43:16 -07003536 /* update branch target, set "changed" if appropriate */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003537 if (nullptr != branch_line) {
Ian Rogersebbdd872014-07-07 23:53:08 -07003538 if (!UpdateRegisters(work_insn_idx_ + branch_target, branch_line.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003539 return false;
3540 }
3541 } else {
Ian Rogersebbdd872014-07-07 23:53:08 -07003542 if (!UpdateRegisters(work_insn_idx_ + branch_target, work_line_.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003543 return false;
3544 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003545 }
jeffhaobdb76512011-09-07 11:43:16 -07003546 }
3547
3548 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003549 * Handle "switch". Tag all possible branch targets.
jeffhaobdb76512011-09-07 11:43:16 -07003550 *
3551 * We've already verified that the table is structurally sound, so we
3552 * just need to walk through and tag the targets.
3553 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003554 if ((opcode_flags & Instruction::kSwitch) != 0) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07003555 int offset_to_switch = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
jeffhaobdb76512011-09-07 11:43:16 -07003556 const uint16_t* switch_insns = insns + offset_to_switch;
3557 int switch_count = switch_insns[1];
3558 int offset_to_targets, targ;
3559
3560 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
3561 /* 0 = sig, 1 = count, 2/3 = first key */
3562 offset_to_targets = 4;
3563 } else {
3564 /* 0 = sig, 1 = count, 2..count * 2 = keys */
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003565 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH);
jeffhaobdb76512011-09-07 11:43:16 -07003566 offset_to_targets = 2 + 2 * switch_count;
3567 }
3568
3569 /* verify each switch target */
3570 for (targ = 0; targ < switch_count; targ++) {
3571 int offset;
3572 uint32_t abs_offset;
3573
3574 /* offsets are 32-bit, and only partly endian-swapped */
3575 offset = switch_insns[offset_to_targets + targ * 2] |
Andreas Gampe53de99c2015-08-17 13:43:55 -07003576 (static_cast<int32_t>(switch_insns[offset_to_targets + targ * 2 + 1]) << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07003577 abs_offset = work_insn_idx_ + offset;
3578 DCHECK_LT(abs_offset, code_item_->insns_size_in_code_units_);
Stephen Kyle9bc61992014-09-22 13:53:15 +01003579 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, abs_offset)) {
jeffhaobdb76512011-09-07 11:43:16 -07003580 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003581 }
Ian Rogersebbdd872014-07-07 23:53:08 -07003582 if (!UpdateRegisters(abs_offset, work_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07003583 return false;
Ian Rogersebbdd872014-07-07 23:53:08 -07003584 }
jeffhaobdb76512011-09-07 11:43:16 -07003585 }
3586 }
3587
3588 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003589 * Handle instructions that can throw and that are sitting in a "try" block. (If they're not in a
3590 * "try" block when they throw, control transfers out of the method.)
jeffhaobdb76512011-09-07 11:43:16 -07003591 */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003592 if ((opcode_flags & Instruction::kThrow) != 0 && GetInstructionFlags(work_insn_idx_).IsInTry()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07003593 bool has_catch_all_handler = false;
Ian Rogers0571d352011-11-03 19:51:38 -07003594 CatchHandlerIterator iterator(*code_item_, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07003595
Andreas Gampef91baf12014-07-18 15:41:00 -07003596 // Need the linker to try and resolve the handled class to check if it's Throwable.
3597 ClassLinker* linker = Runtime::Current()->GetClassLinker();
3598
Ian Rogers0571d352011-11-03 19:51:38 -07003599 for (; iterator.HasNext(); iterator.Next()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08003600 dex::TypeIndex handler_type_idx = iterator.GetHandlerTypeIndex();
3601 if (!handler_type_idx.IsValid()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07003602 has_catch_all_handler = true;
3603 } else {
3604 // It is also a catch-all if it is java.lang.Throwable.
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003605 mirror::Class* klass = linker->ResolveType(*dex_file_, handler_type_idx, dex_cache_,
3606 class_loader_);
Andreas Gampef91baf12014-07-18 15:41:00 -07003607 if (klass != nullptr) {
3608 if (klass == mirror::Throwable::GetJavaLangThrowable()) {
3609 has_catch_all_handler = true;
3610 }
3611 } else {
3612 // Clear exception.
Ian Rogers7b078e82014-09-10 14:44:24 -07003613 DCHECK(self_->IsExceptionPending());
3614 self_->ClearException();
Andreas Gampef91baf12014-07-18 15:41:00 -07003615 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003616 }
jeffhaobdb76512011-09-07 11:43:16 -07003617 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003618 * Merge registers into the "catch" block. We want to use the "savedRegs" rather than
3619 * "work_regs", because at runtime the exception will be thrown before the instruction
3620 * modifies any registers.
jeffhaobdb76512011-09-07 11:43:16 -07003621 */
Ian Rogersebbdd872014-07-07 23:53:08 -07003622 if (!UpdateRegisters(iterator.GetHandlerAddress(), saved_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07003623 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003624 }
jeffhaobdb76512011-09-07 11:43:16 -07003625 }
3626
3627 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003628 * If the monitor stack depth is nonzero, there must be a "catch all" handler for this
3629 * instruction. This does apply to monitor-exit because of async exception handling.
jeffhaobdb76512011-09-07 11:43:16 -07003630 */
Andreas Gampef91baf12014-07-18 15:41:00 -07003631 if (work_line_->MonitorStackDepth() > 0 && !has_catch_all_handler) {
jeffhaobdb76512011-09-07 11:43:16 -07003632 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003633 * The state in work_line reflects the post-execution state. If the current instruction is a
3634 * monitor-enter and the monitor stack was empty, we don't need a catch-all (if it throws,
jeffhaobdb76512011-09-07 11:43:16 -07003635 * it will do so before grabbing the lock).
3636 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02003637 if (inst->Opcode() != Instruction::MONITOR_ENTER || work_line_->MonitorStackDepth() != 1) {
jeffhaod5347e02012-03-22 17:25:05 -07003638 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
Ian Rogersd81871c2011-10-03 13:57:23 -07003639 << "expected to be within a catch-all for an instruction where a monitor is held";
jeffhaobdb76512011-09-07 11:43:16 -07003640 return false;
3641 }
3642 }
3643 }
3644
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003645 /* Handle "continue". Tag the next consecutive instruction.
3646 * Note: Keep the code handling "continue" case below the "branch" and "switch" cases,
3647 * because it changes work_line_ when performing peephole optimization
3648 * and this change should not be used in those cases.
3649 */
Ian Rogers6d376ae2013-07-23 15:12:40 -07003650 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003651 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3652 uint32_t next_insn_idx = work_insn_idx_ + inst->SizeInCodeUnits();
Ian Rogers6d376ae2013-07-23 15:12:40 -07003653 if (next_insn_idx >= code_item_->insns_size_in_code_units_) {
3654 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Execution can walk off end of code area";
3655 return false;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003656 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003657 // The only way to get to a move-exception instruction is to get thrown there. Make sure the
3658 // next instruction isn't one.
3659 if (!CheckNotMoveException(code_item_->insns_, next_insn_idx)) {
3660 return false;
3661 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003662 if (nullptr != fallthrough_line) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003663 // Make workline consistent with fallthrough computed from peephole optimization.
3664 work_line_->CopyFromLine(fallthrough_line.get());
3665 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003666 if (GetInstructionFlags(next_insn_idx).IsReturn()) {
Ian Rogersb8c78592013-07-25 23:52:52 +00003667 // For returns we only care about the operand to the return, all other registers are dead.
3668 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn_idx);
Andreas Gampea727e372015-08-25 09:22:37 -07003669 AdjustReturnLine(this, ret_inst, work_line_.get());
Ian Rogersb8c78592013-07-25 23:52:52 +00003670 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003671 RegisterLine* next_line = reg_table_.GetLine(next_insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07003672 if (next_line != nullptr) {
Ian Rogersebbdd872014-07-07 23:53:08 -07003673 // Merge registers into what we have for the next instruction, and set the "changed" flag if
3674 // needed. If the merge changes the state of the registers then the work line will be
3675 // updated.
3676 if (!UpdateRegisters(next_insn_idx, work_line_.get(), true)) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003677 return false;
3678 }
3679 } else {
3680 /*
3681 * We're not recording register data for the next instruction, so we don't know what the
3682 * prior state was. We have to assume that something has changed and re-evaluate it.
3683 */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003684 GetInstructionFlags(next_insn_idx).SetChanged();
Ian Rogers6d376ae2013-07-23 15:12:40 -07003685 }
3686 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003687
jeffhaod1f0fde2011-09-08 17:25:33 -07003688 /* If we're returning from the method, make sure monitor stack is empty. */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003689 if ((opcode_flags & Instruction::kReturn) != 0) {
Andreas Gampea727e372015-08-25 09:22:37 -07003690 work_line_->VerifyMonitorStackEmpty(this);
jeffhaobdb76512011-09-07 11:43:16 -07003691 }
3692
3693 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003694 * Update start_guess. Advance to the next instruction of that's
3695 * possible, otherwise use the branch target if one was found. If
jeffhaobdb76512011-09-07 11:43:16 -07003696 * neither of those exists we're in a return or throw; leave start_guess
3697 * alone and let the caller sort it out.
3698 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003699 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003700 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3701 *start_guess = work_insn_idx_ + inst->SizeInCodeUnits();
Elliott Hughesadb8c672012-03-06 16:49:32 -08003702 } else if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07003703 /* we're still okay if branch_target is zero */
Ian Rogersd81871c2011-10-03 13:57:23 -07003704 *start_guess = work_insn_idx_ + branch_target;
jeffhaobdb76512011-09-07 11:43:16 -07003705 }
3706
Ian Rogersd81871c2011-10-03 13:57:23 -07003707 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
Mathieu Chartierde40d472015-10-15 17:47:48 -07003708 DCHECK(GetInstructionFlags(*start_guess).IsOpcode());
jeffhaobdb76512011-09-07 11:43:16 -07003709
Andreas Gampea727e372015-08-25 09:22:37 -07003710 if (have_pending_runtime_throw_failure_) {
3711 have_any_pending_runtime_throw_failure_ = true;
3712 // Reset the pending_runtime_throw flag now.
3713 have_pending_runtime_throw_failure_ = false;
3714 }
3715
jeffhaobdb76512011-09-07 11:43:16 -07003716 return true;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003717} // NOLINT(readability/fn_size)
jeffhaobdb76512011-09-07 11:43:16 -07003718
Mathieu Chartierde40d472015-10-15 17:47:48 -07003719void MethodVerifier::UninstantiableError(const char* descriptor) {
3720 Fail(VerifyError::VERIFY_ERROR_NO_CLASS) << "Could not create precise reference for "
3721 << "non-instantiable klass " << descriptor;
3722}
3723
3724inline bool MethodVerifier::IsInstantiableOrPrimitive(mirror::Class* klass) {
3725 return klass->IsInstantiable() || klass->IsPrimitive();
3726}
3727
Andreas Gampe98be1a92017-08-28 08:25:45 -07003728template <MethodVerifier::CheckAccess C>
3729const RegType& MethodVerifier::ResolveClass(dex::TypeIndex class_idx) {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00003730 mirror::Class* klass = can_load_classes_
3731 ? Runtime::Current()->GetClassLinker()->ResolveType(
3732 *dex_file_, class_idx, dex_cache_, class_loader_)
3733 : ClassLinker::LookupResolvedType(class_idx, dex_cache_.Get(), class_loader_.Get()).Ptr();
3734 if (can_load_classes_ && klass == nullptr) {
3735 DCHECK(self_->IsExceptionPending());
3736 self_->ClearException();
3737 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003738 const RegType* result = nullptr;
Vladimir Marko9cb0c462017-04-21 13:31:41 +01003739 if (klass != nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07003740 bool precise = klass->CannotBeAssignedFromOtherTypes();
3741 if (precise && !IsInstantiableOrPrimitive(klass)) {
3742 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3743 UninstantiableError(descriptor);
3744 precise = false;
3745 }
3746 result = reg_types_.FindClass(klass, precise);
3747 if (result == nullptr) {
3748 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3749 result = reg_types_.InsertClass(descriptor, klass, precise);
3750 }
3751 } else {
3752 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3753 result = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003754 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003755 DCHECK(result != nullptr);
3756 if (result->IsConflict()) {
3757 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3758 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "accessing broken descriptor '" << descriptor
3759 << "' in " << GetDeclaringClass();
3760 return *result;
3761 }
David Brazdilca3c8c32016-09-06 14:04:48 +01003762
3763 // Record result of class resolution attempt.
3764 VerifierDeps::MaybeRecordClassResolution(*dex_file_, class_idx, klass);
3765
Andreas Gampe629be512017-08-25 17:09:32 -07003766 // If requested, check if access is allowed. Unresolved types are included in this check, as the
3767 // interpreter only tests whether access is allowed when a class is not pre-verified and runs in
3768 // the access-checks interpreter. If result is primitive, skip the access check.
3769 //
3770 // Note: we do this for unresolved classes to trigger re-verification at runtime.
3771 if (C == CheckAccess::kYes && result->IsNonZeroReferenceTypes()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07003772 const RegType& referrer = GetDeclaringClass();
Andreas Gampe629be512017-08-25 17:09:32 -07003773 if (!referrer.CanAccess(*result)) {
3774 Fail(VERIFY_ERROR_ACCESS_CLASS) << "(possibly) illegal class access: '"
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +01003775 << referrer << "' -> '" << *result << "'";
Mathieu Chartierde40d472015-10-15 17:47:48 -07003776 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003777 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003778 return *result;
Ian Rogersd81871c2011-10-03 13:57:23 -07003779}
3780
Andreas Gampedd309072017-08-31 07:47:37 -07003781// Instantiate ResolveClass variants. This is required as the -inl file has a function with a call
3782// to ResolveClass, and compilers may decide to inline, requiring a symbol.
Andreas Gampeae0b1f42017-08-30 17:36:26 -07003783template const RegType& MethodVerifier::ResolveClass<MethodVerifier::CheckAccess::kNo>(
3784 dex::TypeIndex class_idx);
3785template const RegType& MethodVerifier::ResolveClass<MethodVerifier::CheckAccess::kYes>(
3786 dex::TypeIndex class_idx);
3787
Ian Rogersd8f69b02014-09-10 21:43:52 +00003788const RegType& MethodVerifier::GetCaughtExceptionType() {
Ian Rogers7b078e82014-09-10 14:44:24 -07003789 const RegType* common_super = nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003790 if (code_item_->tries_size_ != 0) {
Ian Rogers13735952014-10-08 12:43:28 -07003791 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
Ian Rogersd81871c2011-10-03 13:57:23 -07003792 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
3793 for (uint32_t i = 0; i < handlers_size; i++) {
Ian Rogers0571d352011-11-03 19:51:38 -07003794 CatchHandlerIterator iterator(handlers_ptr);
3795 for (; iterator.HasNext(); iterator.Next()) {
3796 if (iterator.GetHandlerAddress() == (uint32_t) work_insn_idx_) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08003797 if (!iterator.GetHandlerTypeIndex().IsValid()) {
Ian Rogersb4903572012-10-11 11:52:56 -07003798 common_super = &reg_types_.JavaLangThrowable(false);
Ian Rogersd81871c2011-10-03 13:57:23 -07003799 } else {
Andreas Gampe98be1a92017-08-28 08:25:45 -07003800 const RegType& exception =
3801 ResolveClass<CheckAccess::kYes>(iterator.GetHandlerTypeIndex());
David Brazdilca3c8c32016-09-06 14:04:48 +01003802 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(exception, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00003803 DCHECK(!exception.IsUninitializedTypes()); // Comes from dex, shouldn't be uninit.
Jeff Haoc26a56c2013-11-04 12:00:47 -08003804 if (exception.IsUnresolvedTypes()) {
3805 // We don't know enough about the type. Fail here and let runtime handle it.
3806 Fail(VERIFY_ERROR_NO_CLASS) << "unresolved exception class " << exception;
3807 return exception;
3808 } else {
3809 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unexpected non-exception class " << exception;
3810 return reg_types_.Conflict();
3811 }
Jeff Haob878f212014-04-24 16:25:36 -07003812 } else if (common_super == nullptr) {
3813 common_super = &exception;
Ian Rogers28ad40d2011-10-27 15:19:26 -07003814 } else if (common_super->Equals(exception)) {
Ian Rogersc4762272012-02-01 15:55:55 -08003815 // odd case, but nothing to do
Ian Rogersd81871c2011-10-03 13:57:23 -07003816 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01003817 common_super = &common_super->Merge(exception, &reg_types_, this);
Andreas Gampe7c038102014-10-27 20:08:46 -07003818 if (FailOrAbort(this,
David Brazdilca3c8c32016-09-06 14:04:48 +01003819 reg_types_.JavaLangThrowable(false).IsAssignableFrom(
3820 *common_super, this),
Andreas Gampe7c038102014-10-27 20:08:46 -07003821 "java.lang.Throwable is not assignable-from common_super at ",
3822 work_insn_idx_)) {
3823 break;
3824 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003825 }
3826 }
3827 }
3828 }
Ian Rogers0571d352011-11-03 19:51:38 -07003829 handlers_ptr = iterator.EndDataPointer();
Ian Rogersd81871c2011-10-03 13:57:23 -07003830 }
3831 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003832 if (common_super == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003833 /* no catch blocks, or no catches with classes we can find */
jeffhaod5347e02012-03-22 17:25:05 -07003834 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unable to find exception handler";
Ian Rogersad0b3a32012-04-16 14:50:24 -07003835 return reg_types_.Conflict();
Ian Rogersd81871c2011-10-03 13:57:23 -07003836 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003837 return *common_super;
Ian Rogersd81871c2011-10-03 13:57:23 -07003838}
3839
Mathieu Chartiere401d142015-04-22 13:56:20 -07003840ArtMethod* MethodVerifier::ResolveMethodAndCheckAccess(
Alex Light7268d472016-01-20 15:50:01 -08003841 uint32_t dex_method_idx, MethodType method_type) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003842 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx);
Andreas Gampe98be1a92017-08-28 08:25:45 -07003843 const RegType& klass_type = ResolveClass<CheckAccess::kYes>(method_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003844 if (klass_type.IsConflict()) {
3845 std::string append(" in attempt to access method ");
3846 append += dex_file_->GetMethodName(method_id);
3847 AppendToLastFailMessage(append);
Ian Rogers7b078e82014-09-10 14:44:24 -07003848 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08003849 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003850 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003851 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08003852 }
Vladimir Markoba118822017-06-12 15:41:56 +01003853 ObjPtr<mirror::Class> klass = klass_type.GetClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003854 const RegType& referrer = GetDeclaringClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003855 auto* cl = Runtime::Current()->GetClassLinker();
3856 auto pointer_size = cl->GetImagePointerSize();
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003857
Mathieu Chartiere401d142015-04-22 13:56:20 -07003858 ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx, pointer_size);
Ian Rogers7b078e82014-09-10 14:44:24 -07003859 if (res_method == nullptr) {
Vladimir Markoba118822017-06-12 15:41:56 +01003860 // Try to find the method with the appropriate lookup for the klass type (interface or not).
3861 // If this lookup does not match `method_type`, errors shall be reported below.
3862 if (klass->IsInterface()) {
3863 res_method = klass->FindInterfaceMethod(dex_cache_.Get(), dex_method_idx, pointer_size);
David Brazdilca3c8c32016-09-06 14:04:48 +01003864 } else {
Vladimir Markoba118822017-06-12 15:41:56 +01003865 res_method = klass->FindClassMethod(dex_cache_.Get(), dex_method_idx, pointer_size);
Ian Rogersd81871c2011-10-03 13:57:23 -07003866 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003867 if (res_method != nullptr) {
Vladimir Markoba118822017-06-12 15:41:56 +01003868 dex_cache_->SetResolvedMethod(dex_method_idx, res_method, pointer_size);
Ian Rogersd81871c2011-10-03 13:57:23 -07003869 }
3870 }
David Brazdilca3c8c32016-09-06 14:04:48 +01003871
Vladimir Markoba118822017-06-12 15:41:56 +01003872 // Record result of method resolution attempt. The klass resolution has recorded whether
3873 // the class is an interface or not and therefore the type of the lookup performed above.
3874 // TODO: Maybe we should not record dependency if the invoke type does not match the lookup type.
3875 VerifierDeps::MaybeRecordMethodResolution(*dex_file_, dex_method_idx, res_method);
3876
Alex Lightafb66472017-08-01 09:54:49 -07003877 bool must_fail = false;
3878 // This is traditional and helps with screwy bytecode. It will tell you that, yes, a method
3879 // exists, but that it's called incorrectly. This significantly helps debugging, as locally it's
3880 // hard to see the differences.
3881 // If we don't have res_method here we must fail. Just use this bool to make sure of that with a
3882 // DCHECK.
Vladimir Markoba118822017-06-12 15:41:56 +01003883 if (res_method == nullptr) {
Alex Lightafb66472017-08-01 09:54:49 -07003884 must_fail = true;
Vladimir Markoba118822017-06-12 15:41:56 +01003885 // Try to find the method also with the other type for better error reporting below
3886 // but do not store such bogus lookup result in the DexCache or VerifierDeps.
3887 if (klass->IsInterface()) {
Alex Lightafb66472017-08-01 09:54:49 -07003888 // NB This is normally not really allowed but we want to get any static or private object
3889 // methods for error message purposes. This will never be returned.
3890 // TODO We might want to change the verifier to not require this.
Vladimir Markoba118822017-06-12 15:41:56 +01003891 res_method = klass->FindClassMethod(dex_cache_.Get(), dex_method_idx, pointer_size);
3892 } else {
3893 // If there was an interface method with the same signature,
3894 // we would have found it also in the "copied" methods.
3895 DCHECK(klass->FindInterfaceMethod(dex_cache_.Get(), dex_method_idx, pointer_size) == nullptr);
3896 }
3897 }
David Brazdilca3c8c32016-09-06 14:04:48 +01003898
3899 if (res_method == nullptr) {
3900 Fail(VERIFY_ERROR_NO_METHOD) << "couldn't find method "
David Sehr709b0702016-10-13 09:12:37 -07003901 << klass->PrettyDescriptor() << "."
David Brazdilca3c8c32016-09-06 14:04:48 +01003902 << dex_file_->GetMethodName(method_id) << " "
3903 << dex_file_->GetMethodSignature(method_id);
3904 return nullptr;
3905 }
3906
Ian Rogersd81871c2011-10-03 13:57:23 -07003907 // Make sure calls to constructors are "direct". There are additional restrictions but we don't
3908 // enforce them here.
3909 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) {
jeffhaod5347e02012-03-22 17:25:05 -07003910 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting non-direct call to constructor "
David Sehr709b0702016-10-13 09:12:37 -07003911 << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003912 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003913 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003914 // Disallow any calls to class initializers.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003915 if (res_method->IsClassInitializer()) {
jeffhaod5347e02012-03-22 17:25:05 -07003916 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting call to class initializer "
David Sehr709b0702016-10-13 09:12:37 -07003917 << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003918 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003919 }
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003920
3921 // Check that interface methods are static or match interface classes.
3922 // We only allow statics if we don't have default methods enabled.
3923 //
3924 // Note: this check must be after the initializer check, as those are required to fail a class,
3925 // while this check implies an IncompatibleClassChangeError.
3926 if (klass->IsInterface()) {
Alex Lightb55f1ac2016-04-12 15:50:55 -07003927 // methods called on interfaces should be invoke-interface, invoke-super, invoke-direct (if
3928 // dex file version is 37 or greater), or invoke-static.
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003929 if (method_type != METHOD_INTERFACE &&
Neil Fuller9724c632016-01-07 15:42:47 +00003930 method_type != METHOD_STATIC &&
Alex Lightb55f1ac2016-04-12 15:50:55 -07003931 ((dex_file_->GetVersion() < DexFile::kDefaultMethodsVersion) ||
3932 method_type != METHOD_DIRECT) &&
Neil Fuller9724c632016-01-07 15:42:47 +00003933 method_type != METHOD_SUPER) {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003934 Fail(VERIFY_ERROR_CLASS_CHANGE)
David Sehr709b0702016-10-13 09:12:37 -07003935 << "non-interface method " << dex_file_->PrettyMethod(dex_method_idx)
3936 << " is in an interface class " << klass->PrettyClass();
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003937 return nullptr;
3938 }
3939 } else {
3940 if (method_type == METHOD_INTERFACE) {
3941 Fail(VERIFY_ERROR_CLASS_CHANGE)
David Sehr709b0702016-10-13 09:12:37 -07003942 << "interface method " << dex_file_->PrettyMethod(dex_method_idx)
3943 << " is in a non-interface class " << klass->PrettyClass();
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003944 return nullptr;
3945 }
3946 }
3947
Alex Lightafb66472017-08-01 09:54:49 -07003948 // Check specifically for non-public object methods being provided for interface dispatch. This
3949 // can occur if we failed to find a method with FindInterfaceMethod but later find one with
3950 // FindClassMethod for error message use.
3951 if (method_type == METHOD_INTERFACE &&
3952 res_method->GetDeclaringClass()->IsObjectClass() &&
3953 !res_method->IsPublic()) {
3954 Fail(VERIFY_ERROR_NO_METHOD) << "invoke-interface " << klass->PrettyDescriptor() << "."
3955 << dex_file_->GetMethodName(method_id) << " "
3956 << dex_file_->GetMethodSignature(method_id) << " resolved to "
3957 << "non-public object method " << res_method->PrettyMethod() << " "
3958 << "but non-public Object methods are excluded from interface "
3959 << "method resolution.";
3960 return nullptr;
3961 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003962 // Check if access is allowed.
Ian Rogersad0b3a32012-04-16 14:50:24 -07003963 if (!referrer.CanAccessMember(res_method->GetDeclaringClass(), res_method->GetAccessFlags())) {
David Sehr709b0702016-10-13 09:12:37 -07003964 Fail(VERIFY_ERROR_ACCESS_METHOD) << "illegal method access (call "
3965 << res_method->PrettyMethod()
Ian Rogersad0b3a32012-04-16 14:50:24 -07003966 << " from " << referrer << ")";
jeffhaob57e9522012-04-26 18:08:21 -07003967 return res_method;
jeffhao8cd6dda2012-02-22 10:15:34 -08003968 }
jeffhaode0d9c92012-02-27 13:58:13 -08003969 // Check that invoke-virtual and invoke-super are not used on private methods of the same class.
Alex Light7268d472016-01-20 15:50:01 -08003970 if (res_method->IsPrivate() && (method_type == METHOD_VIRTUAL || method_type == METHOD_SUPER)) {
jeffhaod5347e02012-03-22 17:25:05 -07003971 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-super/virtual can't be used on private method "
David Sehr709b0702016-10-13 09:12:37 -07003972 << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003973 return nullptr;
jeffhaode0d9c92012-02-27 13:58:13 -08003974 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003975 // See if the method type implied by the invoke instruction matches the access flags for the
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003976 // target method. The flags for METHOD_POLYMORPHIC are based on there being precisely two
3977 // signature polymorphic methods supported by the run-time which are native methods with variable
3978 // arguments.
Brian Carlstrombe6fa5e2014-12-09 20:15:42 -08003979 if ((method_type == METHOD_DIRECT && (!res_method->IsDirect() || res_method->IsStatic())) ||
Ian Rogersd81871c2011-10-03 13:57:23 -07003980 (method_type == METHOD_STATIC && !res_method->IsStatic()) ||
Alex Light7268d472016-01-20 15:50:01 -08003981 ((method_type == METHOD_SUPER ||
3982 method_type == METHOD_VIRTUAL ||
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003983 method_type == METHOD_INTERFACE) && res_method->IsDirect()) ||
3984 ((method_type == METHOD_POLYMORPHIC) &&
3985 (!res_method->IsNative() || !res_method->IsVarargs()))) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003986 Fail(VERIFY_ERROR_CLASS_CHANGE) << "invoke type (" << method_type << ") does not match method "
Orion Hodsoncfa325e2016-10-13 10:25:54 +01003987 "type of " << res_method->PrettyMethod();
Ian Rogers7b078e82014-09-10 14:44:24 -07003988 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003989 }
Alex Lightafb66472017-08-01 09:54:49 -07003990 // Make sure we weren't expecting to fail.
3991 DCHECK(!must_fail) << "invoke type (" << method_type << ")"
3992 << klass->PrettyDescriptor() << "."
3993 << dex_file_->GetMethodName(method_id) << " "
3994 << dex_file_->GetMethodSignature(method_id) << " unexpectedly resolved to "
3995 << res_method->PrettyMethod() << " without error. Initially this method was "
3996 << "not found so we were expecting to fail for some reason.";
jeffhao8cd6dda2012-02-22 10:15:34 -08003997 return res_method;
3998}
3999
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004000template <class T>
Mathieu Chartiere401d142015-04-22 13:56:20 -07004001ArtMethod* MethodVerifier::VerifyInvocationArgsFromIterator(
4002 T* it, const Instruction* inst, MethodType method_type, bool is_range, ArtMethod* res_method) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004003 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
4004 // match the call to the signature. Also, we might be calling through an abstract method
4005 // definition (which doesn't have register count values).
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004006 const size_t expected_args = inst->VRegA();
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004007 /* caught by static verifier */
4008 DCHECK(is_range || expected_args <= 5);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004009
Orion Hodson1cda7c22017-08-10 13:06:45 +01004010 if (expected_args > code_item_->outs_size_) {
4011 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
4012 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
4013 return nullptr;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004014 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004015
4016 /*
4017 * Check the "this" argument, which must be an instance of the class that declared the method.
4018 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
4019 * rigorous check here (which is okay since we have to do it at runtime).
4020 */
4021 if (method_type != METHOD_STATIC) {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004022 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004023 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
4024 CHECK(have_pending_hard_failure_);
4025 return nullptr;
4026 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00004027 bool is_init = false;
4028 if (actual_arg_type.IsUninitializedTypes()) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004029 if (res_method) {
4030 if (!res_method->IsConstructor()) {
4031 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
4032 return nullptr;
4033 }
4034 } else {
4035 // Check whether the name of the called method is "<init>"
4036 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Jeff Hao0d087272014-08-04 14:47:17 -07004037 if (strcmp(dex_file_->GetMethodName(dex_file_->GetMethodId(method_idx)), "<init>") != 0) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004038 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
4039 return nullptr;
4040 }
4041 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00004042 is_init = true;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004043 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00004044 const RegType& adjusted_type = is_init
4045 ? GetRegTypeCache()->FromUninitialized(actual_arg_type)
4046 : actual_arg_type;
4047 if (method_type != METHOD_INTERFACE && !adjusted_type.IsZero()) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00004048 const RegType* res_method_class;
Andreas Gamped9e23012015-06-04 22:19:58 -07004049 // Miranda methods have the declaring interface as their declaring class, not the abstract
4050 // class. It would be wrong to use this for the type check (interface type checks are
4051 // postponed to runtime).
4052 if (res_method != nullptr && !res_method->IsMiranda()) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004053 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004054 std::string temp;
Andreas Gampef23f33d2015-06-23 14:18:17 -07004055 res_method_class = &FromClass(klass->GetDescriptor(&temp), klass,
4056 klass->CannotBeAssignedFromOtherTypes());
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004057 } else {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004058 const uint32_t method_idx = inst->VRegB();
Andreas Gampea5b09a62016-11-17 15:21:22 -08004059 const dex::TypeIndex class_idx = dex_file_->GetMethodId(method_idx).class_idx_;
Mathieu Chartierde40d472015-10-15 17:47:48 -07004060 res_method_class = &reg_types_.FromDescriptor(
4061 GetClassLoader(),
4062 dex_file_->StringByTypeIdx(class_idx),
4063 false);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004064 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004065 if (!res_method_class->IsAssignableFrom(adjusted_type, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00004066 Fail(adjusted_type.IsUnresolvedTypes()
4067 ? VERIFY_ERROR_NO_CLASS
4068 : VERIFY_ERROR_BAD_CLASS_SOFT)
4069 << "'this' argument '" << actual_arg_type << "' not instance of '"
4070 << *res_method_class << "'";
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004071 // Continue on soft failures. We need to find possible hard failures to avoid problems in
4072 // the compiler.
4073 if (have_pending_hard_failure_) {
4074 return nullptr;
4075 }
4076 }
4077 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004078 }
4079
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004080 uint32_t arg[5];
4081 if (!is_range) {
4082 inst->GetVarArgs(arg);
4083 }
4084 uint32_t sig_registers = (method_type == METHOD_STATIC) ? 0 : 1;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004085 for ( ; it->HasNext(); it->Next()) {
4086 if (sig_registers >= expected_args) {
4087 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << inst->VRegA() <<
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004088 " argument registers, method signature has " << sig_registers + 1 << " or more";
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004089 return nullptr;
4090 }
4091
4092 const char* param_descriptor = it->GetDescriptor();
4093
4094 if (param_descriptor == nullptr) {
4095 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation because of missing signature "
4096 "component";
4097 return nullptr;
4098 }
4099
Ian Rogersd8f69b02014-09-10 21:43:52 +00004100 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), param_descriptor, false);
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004101 uint32_t get_reg = is_range ? inst->VRegC() + static_cast<uint32_t>(sig_registers) :
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004102 arg[sig_registers];
4103 if (reg_type.IsIntegralTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004104 const RegType& src_type = work_line_->GetRegisterType(this, get_reg);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004105 if (!src_type.IsIntegralTypes()) {
4106 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << get_reg << " has type " << src_type
4107 << " but expected " << reg_type;
Andreas Gampeb588f4c2015-05-26 13:35:39 -07004108 return nullptr;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004109 }
Andreas Gampeda9badb2015-06-05 20:22:12 -07004110 } else {
4111 if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
4112 // Continue on soft failures. We need to find possible hard failures to avoid problems in
4113 // the compiler.
4114 if (have_pending_hard_failure_) {
4115 return nullptr;
4116 }
4117 } else if (reg_type.IsLongOrDoubleTypes()) {
4118 // Check that registers are consecutive (for non-range invokes). Invokes are the only
4119 // instructions not specifying register pairs by the first component, but require them
4120 // nonetheless. Only check when there's an actual register in the parameters. If there's
4121 // none, this will fail below.
4122 if (!is_range && sig_registers + 1 < expected_args) {
4123 uint32_t second_reg = arg[sig_registers + 1];
4124 if (second_reg != get_reg + 1) {
4125 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, long or double parameter "
4126 "at index " << sig_registers << " is not a pair: " << get_reg << " + "
4127 << second_reg << ".";
4128 return nullptr;
4129 }
4130 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004131 }
4132 }
4133 sig_registers += reg_type.IsLongOrDoubleTypes() ? 2 : 1;
4134 }
4135 if (expected_args != sig_registers) {
4136 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << expected_args <<
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004137 " argument registers, method signature has " << sig_registers;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004138 return nullptr;
4139 }
4140 return res_method;
4141}
4142
4143void MethodVerifier::VerifyInvocationArgsUnresolvedMethod(const Instruction* inst,
4144 MethodType method_type,
4145 bool is_range) {
4146 // As the method may not have been resolved, make this static check against what we expect.
4147 // The main reason for this code block is to fail hard when we find an illegal use, e.g.,
4148 // wrong number of arguments or wrong primitive types, even if the method could not be resolved.
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004149 const uint32_t method_idx = inst->VRegB();
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004150 DexFileParameterIterator it(*dex_file_,
4151 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_));
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004152 VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, nullptr);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004153}
4154
Orion Hodsonc069a302017-01-18 09:23:12 +00004155bool MethodVerifier::CheckCallSite(uint32_t call_site_idx) {
Orion Hodson3a842f52017-04-21 15:24:10 +01004156 if (call_site_idx >= dex_file_->NumCallSiteIds()) {
4157 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Bad call site id #" << call_site_idx
4158 << " >= " << dex_file_->NumCallSiteIds();
4159 return false;
4160 }
4161
Orion Hodsonc069a302017-01-18 09:23:12 +00004162 CallSiteArrayValueIterator it(*dex_file_, dex_file_->GetCallSiteId(call_site_idx));
4163 // Check essential arguments are provided. The dex file verifier has verified indicies of the
4164 // main values (method handle, name, method_type).
4165 if (it.Size() < 3) {
4166 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4167 << " has too few arguments: "
4168 << it.Size() << "< 3";
4169 return false;
4170 }
4171
Orion Hodson3a842f52017-04-21 15:24:10 +01004172 // Get and check the first argument: the method handle (index range
4173 // checked by the dex file verifier).
Orion Hodsonc069a302017-01-18 09:23:12 +00004174 uint32_t method_handle_idx = static_cast<uint32_t>(it.GetJavaValue().i);
4175 it.Next();
Orion Hodson3a842f52017-04-21 15:24:10 +01004176
Orion Hodsonc069a302017-01-18 09:23:12 +00004177 const DexFile::MethodHandleItem& mh = dex_file_->GetMethodHandle(method_handle_idx);
4178 if (mh.method_handle_type_ != static_cast<uint16_t>(DexFile::MethodHandleType::kInvokeStatic)) {
4179 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
Orion Hodson631827d2017-04-10 14:53:47 +01004180 << " argument 0 method handle type is not InvokeStatic: "
4181 << mh.method_handle_type_;
Orion Hodsonc069a302017-01-18 09:23:12 +00004182 return false;
4183 }
4184
4185 // Skip the second argument, the name to resolve, as checked by the
4186 // dex file verifier.
4187 it.Next();
4188
4189 // Skip the third argument, the method type expected, as checked by
4190 // the dex file verifier.
4191 it.Next();
4192
4193 // Check the bootstrap method handle and remaining arguments.
4194 const DexFile::MethodId& method_id = dex_file_->GetMethodId(mh.field_or_method_idx_);
4195 uint32_t length;
4196 const char* shorty = dex_file_->GetMethodShorty(method_id, &length);
4197
4198 if (it.Size() < length - 1) {
4199 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4200 << " too few arguments for bootstrap method: "
4201 << it.Size() << " < " << (length - 1);
4202 return false;
4203 }
4204
4205 // Check the return type and first 3 arguments are references
4206 // (CallSite, Lookup, String, MethodType). If they are not of the
4207 // expected types (or subtypes), it will trigger a
4208 // WrongMethodTypeException during execution.
4209 if (shorty[0] != 'L') {
4210 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4211 << " bootstrap return type is not a reference";
4212 return false;
4213 }
4214
4215 for (uint32_t i = 1; i < 4; ++i) {
4216 if (shorty[i] != 'L') {
4217 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4218 << " bootstrap method argument " << (i - 1)
4219 << " is not a reference";
4220 return false;
4221 }
4222 }
4223
4224 // Check the optional arguments.
4225 for (uint32_t i = 4; i < length; ++i, it.Next()) {
4226 bool match = false;
4227 switch (it.GetValueType()) {
4228 case EncodedArrayValueIterator::ValueType::kBoolean:
4229 case EncodedArrayValueIterator::ValueType::kByte:
4230 case EncodedArrayValueIterator::ValueType::kShort:
4231 case EncodedArrayValueIterator::ValueType::kChar:
4232 case EncodedArrayValueIterator::ValueType::kInt:
4233 // These all fit within one register and encoders do not seem
4234 // too exacting on the encoding type they use (ie using
4235 // integer for all of these).
4236 match = (strchr("ZBCSI", shorty[i]) != nullptr);
4237 break;
4238 case EncodedArrayValueIterator::ValueType::kLong:
4239 match = ('J' == shorty[i]);
4240 break;
4241 case EncodedArrayValueIterator::ValueType::kFloat:
4242 match = ('F' == shorty[i]);
4243 break;
4244 case EncodedArrayValueIterator::ValueType::kDouble:
4245 match = ('D' == shorty[i]);
4246 break;
4247 case EncodedArrayValueIterator::ValueType::kMethodType:
4248 case EncodedArrayValueIterator::ValueType::kMethodHandle:
4249 case EncodedArrayValueIterator::ValueType::kString:
4250 case EncodedArrayValueIterator::ValueType::kType:
4251 case EncodedArrayValueIterator::ValueType::kNull:
4252 match = ('L' == shorty[i]);
4253 break;
4254 case EncodedArrayValueIterator::ValueType::kField:
4255 case EncodedArrayValueIterator::ValueType::kMethod:
4256 case EncodedArrayValueIterator::ValueType::kEnum:
4257 case EncodedArrayValueIterator::ValueType::kArray:
4258 case EncodedArrayValueIterator::ValueType::kAnnotation:
4259 // Unreachable based on current EncodedArrayValueIterator::Next().
4260 UNREACHABLE();
4261 }
4262
4263 if (!match) {
4264 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Call site #" << call_site_idx
4265 << " bootstrap method argument " << (i - 1)
4266 << " expected " << shorty[i]
4267 << " got value type: " << it.GetValueType();
4268 return false;
4269 }
4270 }
4271 return true;
4272}
4273
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004274class MethodParamListDescriptorIterator {
4275 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -07004276 explicit MethodParamListDescriptorIterator(ArtMethod* res_method) :
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004277 res_method_(res_method), pos_(0), params_(res_method->GetParameterTypeList()),
4278 params_size_(params_ == nullptr ? 0 : params_->Size()) {
4279 }
4280
4281 bool HasNext() {
4282 return pos_ < params_size_;
4283 }
4284
4285 void Next() {
4286 ++pos_;
4287 }
4288
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004289 const char* GetDescriptor() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004290 return res_method_->GetTypeDescriptorFromTypeIdx(params_->GetTypeItem(pos_).type_idx_);
4291 }
4292
4293 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -07004294 ArtMethod* res_method_;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004295 size_t pos_;
4296 const DexFile::TypeList* params_;
4297 const size_t params_size_;
4298};
4299
Mathieu Chartiere401d142015-04-22 13:56:20 -07004300ArtMethod* MethodVerifier::VerifyInvocationArgs(
Alex Light7268d472016-01-20 15:50:01 -08004301 const Instruction* inst, MethodType method_type, bool is_range) {
jeffhao8cd6dda2012-02-22 10:15:34 -08004302 // Resolve the method. This could be an abstract or concrete method depending on what sort of call
4303 // we're making.
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004304 const uint32_t method_idx = inst->VRegB();
Alex Light7268d472016-01-20 15:50:01 -08004305 ArtMethod* res_method = ResolveMethodAndCheckAccess(method_idx, method_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07004306 if (res_method == nullptr) { // error or class is unresolved
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004307 // Check what we can statically.
4308 if (!have_pending_hard_failure_) {
4309 VerifyInvocationArgsUnresolvedMethod(inst, method_type, is_range);
4310 }
4311 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08004312 }
4313
Ian Rogersd81871c2011-10-03 13:57:23 -07004314 // If we're using invoke-super(method), make sure that the executing method's class' superclass
Alex Light705ad492015-09-21 11:36:30 -07004315 // has a vtable entry for the target method. Or the target is on a interface.
Alex Light7268d472016-01-20 15:50:01 -08004316 if (method_type == METHOD_SUPER) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08004317 dex::TypeIndex class_idx = dex_file_->GetMethodId(method_idx).class_idx_;
David Brazdilca3c8c32016-09-06 14:04:48 +01004318 const RegType& reference_type = reg_types_.FromDescriptor(
4319 GetClassLoader(),
4320 dex_file_->StringByTypeIdx(class_idx),
4321 false);
4322 if (reference_type.IsUnresolvedTypes()) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004323 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Unable to find referenced class from invoke-super";
4324 return nullptr;
4325 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004326 if (reference_type.GetClass()->IsInterface()) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004327 // TODO Can we verify anything else.
David Brazdil15fc7292016-09-02 14:13:18 +01004328 if (class_idx == class_def_.class_idx_) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004329 Fail(VERIFY_ERROR_CLASS_CHANGE) << "Cannot invoke-super on self as interface";
Alex Light55ea94d2016-03-15 09:50:26 -07004330 return nullptr;
Alex Lightfedd91d2016-01-07 14:49:16 -08004331 }
4332 // TODO Revisit whether we want to allow invoke-super on direct interfaces only like the JLS
4333 // does.
Alex Light55ea94d2016-03-15 09:50:26 -07004334 if (!GetDeclaringClass().HasClass()) {
4335 Fail(VERIFY_ERROR_NO_CLASS) << "Unable to resolve the full class of 'this' used in an"
4336 << "interface invoke-super";
4337 return nullptr;
David Brazdilca3c8c32016-09-06 14:04:48 +01004338 } else if (!reference_type.IsStrictlyAssignableFrom(GetDeclaringClass(), this)) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004339 Fail(VERIFY_ERROR_CLASS_CHANGE)
David Sehr709b0702016-10-13 09:12:37 -07004340 << "invoke-super in " << mirror::Class::PrettyClass(GetDeclaringClass().GetClass())
4341 << " in method "
4342 << dex_file_->PrettyMethod(dex_method_idx_) << " to method "
4343 << dex_file_->PrettyMethod(method_idx) << " references "
4344 << "non-super-interface type " << mirror::Class::PrettyClass(reference_type.GetClass());
Alex Lightfedd91d2016-01-07 14:49:16 -08004345 return nullptr;
Alex Light705ad492015-09-21 11:36:30 -07004346 }
4347 } else {
4348 const RegType& super = GetDeclaringClass().GetSuperClass(&reg_types_);
4349 if (super.IsUnresolvedTypes()) {
4350 Fail(VERIFY_ERROR_NO_METHOD) << "unknown super class in invoke-super from "
David Sehr709b0702016-10-13 09:12:37 -07004351 << dex_file_->PrettyMethod(dex_method_idx_)
4352 << " to super " << res_method->PrettyMethod();
Alex Light705ad492015-09-21 11:36:30 -07004353 return nullptr;
4354 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004355 if (!reference_type.IsStrictlyAssignableFrom(GetDeclaringClass(), this) ||
Aart Bikf663e342016-04-04 17:28:59 -07004356 (res_method->GetMethodIndex() >= super.GetClass()->GetVTableLength())) {
Alex Light705ad492015-09-21 11:36:30 -07004357 Fail(VERIFY_ERROR_NO_METHOD) << "invalid invoke-super from "
David Sehr709b0702016-10-13 09:12:37 -07004358 << dex_file_->PrettyMethod(dex_method_idx_)
Alex Light705ad492015-09-21 11:36:30 -07004359 << " to super " << super
4360 << "." << res_method->GetName()
4361 << res_method->GetSignature();
4362 return nullptr;
4363 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004364 }
4365 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08004366
Andreas Gampe74979b12017-05-16 09:28:06 -07004367 if (UNLIKELY(method_type == METHOD_POLYMORPHIC)) {
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004368 // Process the signature of the calling site that is invoking the method handle.
4369 DexFileParameterIterator it(*dex_file_, dex_file_->GetProtoId(inst->VRegH()));
4370 return VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, res_method);
4371 } else {
4372 // Process the target method's signature.
4373 MethodParamListDescriptorIterator it(res_method);
4374 return VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, res_method);
4375 }
4376}
4377
4378bool MethodVerifier::CheckSignaturePolymorphicMethod(ArtMethod* method) {
4379 mirror::Class* klass = method->GetDeclaringClass();
4380 if (klass != mirror::MethodHandle::StaticClass()) {
4381 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4382 << "Signature polymorphic method must be declared in java.lang.invoke.MethodClass";
4383 return false;
4384 }
4385
4386 const char* method_name = method->GetName();
4387 if (strcmp(method_name, "invoke") != 0 && strcmp(method_name, "invokeExact") != 0) {
4388 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4389 << "Signature polymorphic method name invalid: " << method_name;
4390 return false;
4391 }
4392
4393 const DexFile::TypeList* types = method->GetParameterTypeList();
4394 if (types->Size() != 1) {
4395 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4396 << "Signature polymorphic method has too many arguments " << types->Size() << " != 1";
4397 return false;
4398 }
4399
4400 const dex::TypeIndex argument_type_index = types->GetTypeItem(0).type_idx_;
4401 const char* argument_descriptor = method->GetTypeDescriptorFromTypeIdx(argument_type_index);
4402 if (strcmp(argument_descriptor, "[Ljava/lang/Object;") != 0) {
4403 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4404 << "Signature polymorphic method has unexpected argument type: " << argument_descriptor;
4405 return false;
4406 }
4407
4408 const char* return_descriptor = method->GetReturnTypeDescriptor();
4409 if (strcmp(return_descriptor, "Ljava/lang/Object;") != 0) {
4410 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4411 << "Signature polymorphic method has unexpected return type: " << return_descriptor;
4412 return false;
4413 }
4414
4415 return true;
4416}
4417
4418bool MethodVerifier::CheckSignaturePolymorphicReceiver(const Instruction* inst) {
4419 const RegType& this_type = work_line_->GetInvocationThis(this, inst);
4420 if (this_type.IsZero()) {
4421 /* null pointer always passes (and always fails at run time) */
4422 return true;
4423 } else if (!this_type.IsNonZeroReferenceTypes()) {
4424 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4425 << "invoke-polymorphic receiver is not a reference: "
4426 << this_type;
4427 return false;
4428 } else if (this_type.IsUninitializedReference()) {
4429 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4430 << "invoke-polymorphic receiver is uninitialized: "
4431 << this_type;
4432 return false;
4433 } else if (!this_type.HasClass()) {
4434 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4435 << "invoke-polymorphic receiver has no class: "
4436 << this_type;
4437 return false;
4438 } else if (!this_type.GetClass()->IsSubClass(mirror::MethodHandle::StaticClass())) {
4439 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
4440 << "invoke-polymorphic receiver is not a subclass of MethodHandle: "
4441 << this_type;
4442 return false;
4443 }
4444 return true;
Ian Rogersd81871c2011-10-03 13:57:23 -07004445}
4446
Mathieu Chartiere401d142015-04-22 13:56:20 -07004447ArtMethod* MethodVerifier::GetQuickInvokedMethod(const Instruction* inst, RegisterLine* reg_line,
4448 bool is_range, bool allow_failure) {
Mathieu Chartier091d2382015-03-06 10:59:06 -08004449 if (is_range) {
4450 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
4451 } else {
4452 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_QUICK);
4453 }
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004454 const RegType& actual_arg_type = reg_line->GetInvocationThis(this, inst, allow_failure);
Ian Rogers9bc54402014-04-17 16:40:01 -07004455 if (!actual_arg_type.HasClass()) {
4456 VLOG(verifier) << "Failed to get mirror::Class* from '" << actual_arg_type << "'";
Andreas Gampe63981562014-04-17 12:28:43 -07004457 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004458 }
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004459 mirror::Class* klass = actual_arg_type.GetClass();
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004460 mirror::Class* dispatch_class;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004461 if (klass->IsInterface()) {
4462 // Derive Object.class from Class.class.getSuperclass().
4463 mirror::Class* object_klass = klass->GetClass()->GetSuperClass();
Andreas Gampe7c038102014-10-27 20:08:46 -07004464 if (FailOrAbort(this, object_klass->IsObjectClass(),
Mathieu Chartier091d2382015-03-06 10:59:06 -08004465 "Failed to find Object class in quickened invoke receiver", work_insn_idx_)) {
Andreas Gampe7c038102014-10-27 20:08:46 -07004466 return nullptr;
4467 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004468 dispatch_class = object_klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004469 } else {
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004470 dispatch_class = klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004471 }
Mathieu Chartier091d2382015-03-06 10:59:06 -08004472 if (!dispatch_class->HasVTable()) {
4473 FailOrAbort(this, allow_failure, "Receiver class has no vtable for quickened invoke at ",
4474 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004475 return nullptr;
4476 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004477 uint16_t vtable_index = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
Mathieu Chartiere401d142015-04-22 13:56:20 -07004478 auto* cl = Runtime::Current()->GetClassLinker();
4479 auto pointer_size = cl->GetImagePointerSize();
Mathieu Chartier091d2382015-03-06 10:59:06 -08004480 if (static_cast<int32_t>(vtable_index) >= dispatch_class->GetVTableLength()) {
4481 FailOrAbort(this, allow_failure,
4482 "Receiver class has not enough vtable slots for quickened invoke at ",
4483 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004484 return nullptr;
4485 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07004486 ArtMethod* res_method = dispatch_class->GetVTableEntry(vtable_index, pointer_size);
Mathieu Chartier091d2382015-03-06 10:59:06 -08004487 if (self_->IsExceptionPending()) {
4488 FailOrAbort(this, allow_failure, "Unexpected exception pending for quickened invoke at ",
4489 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004490 return nullptr;
4491 }
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004492 return res_method;
4493}
4494
Mathieu Chartiere401d142015-04-22 13:56:20 -07004495ArtMethod* MethodVerifier::VerifyInvokeVirtualQuickArgs(const Instruction* inst, bool is_range) {
Andreas Gampe76bd8802014-12-10 16:43:58 -08004496 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_)
David Sehr709b0702016-10-13 09:12:37 -07004497 << dex_file_->PrettyMethod(dex_method_idx_, true) << "@" << work_insn_idx_;
Andreas Gampe76bd8802014-12-10 16:43:58 -08004498
Mathieu Chartiere401d142015-04-22 13:56:20 -07004499 ArtMethod* res_method = GetQuickInvokedMethod(inst, work_line_.get(), is_range, false);
Ian Rogers7b078e82014-09-10 14:44:24 -07004500 if (res_method == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004501 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer method from " << inst->Name();
Ian Rogers7b078e82014-09-10 14:44:24 -07004502 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004503 }
Andreas Gampe7c038102014-10-27 20:08:46 -07004504 if (FailOrAbort(this, !res_method->IsDirect(), "Quick-invoked method is direct at ",
4505 work_insn_idx_)) {
4506 return nullptr;
4507 }
4508 if (FailOrAbort(this, !res_method->IsStatic(), "Quick-invoked method is static at ",
4509 work_insn_idx_)) {
4510 return nullptr;
4511 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004512
4513 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
4514 // match the call to the signature. Also, we might be calling through an abstract method
4515 // definition (which doesn't have register count values).
Orion Hodsoncfa325e2016-10-13 10:25:54 +01004516 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst);
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004517 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
Ian Rogers7b078e82014-09-10 14:44:24 -07004518 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004519 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004520 const size_t expected_args = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
4521 /* caught by static verifier */
4522 DCHECK(is_range || expected_args <= 5);
4523 if (expected_args > code_item_->outs_size_) {
4524 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
4525 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
Ian Rogers7b078e82014-09-10 14:44:24 -07004526 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004527 }
4528
4529 /*
4530 * Check the "this" argument, which must be an instance of the class that declared the method.
4531 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
4532 * rigorous check here (which is okay since we have to do it at runtime).
4533 */
David Brazdil68b5c0b2016-01-19 14:25:29 +00004534 // Note: given an uninitialized type, this should always fail. Constructors aren't virtual.
4535 if (actual_arg_type.IsUninitializedTypes() && !res_method->IsConstructor()) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004536 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
Ian Rogers7b078e82014-09-10 14:44:24 -07004537 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004538 }
4539 if (!actual_arg_type.IsZero()) {
4540 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004541 std::string temp;
Ian Rogersd8f69b02014-09-10 21:43:52 +00004542 const RegType& res_method_class =
Andreas Gampef23f33d2015-06-23 14:18:17 -07004543 FromClass(klass->GetDescriptor(&temp), klass, klass->CannotBeAssignedFromOtherTypes());
David Brazdilca3c8c32016-09-06 14:04:48 +01004544 if (!res_method_class.IsAssignableFrom(actual_arg_type, this)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00004545 Fail(actual_arg_type.IsUninitializedTypes() // Just overcautious - should have never
4546 ? VERIFY_ERROR_BAD_CLASS_HARD // quickened this.
4547 : actual_arg_type.IsUnresolvedTypes()
4548 ? VERIFY_ERROR_NO_CLASS
4549 : VERIFY_ERROR_BAD_CLASS_SOFT) << "'this' argument '" << actual_arg_type
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004550 << "' not instance of '" << res_method_class << "'";
Ian Rogers7b078e82014-09-10 14:44:24 -07004551 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004552 }
4553 }
4554 /*
4555 * Process the target method's signature. This signature may or may not
4556 * have been verified, so we can't assume it's properly formed.
4557 */
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004558 const DexFile::TypeList* params = res_method->GetParameterTypeList();
Ian Rogers7b078e82014-09-10 14:44:24 -07004559 size_t params_size = params == nullptr ? 0 : params->Size();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004560 uint32_t arg[5];
4561 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07004562 inst->GetVarArgs(arg);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004563 }
4564 size_t actual_args = 1;
4565 for (size_t param_index = 0; param_index < params_size; param_index++) {
4566 if (actual_args >= expected_args) {
David Sehr709b0702016-10-13 09:12:37 -07004567 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invalid call to '"
4568 << res_method->PrettyMethod()
Brian Carlstrom93c33962013-07-26 10:37:43 -07004569 << "'. Expected " << expected_args
4570 << " arguments, processing argument " << actual_args
4571 << " (where longs/doubles count twice).";
Ian Rogers7b078e82014-09-10 14:44:24 -07004572 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004573 }
4574 const char* descriptor =
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004575 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);
Ian Rogers7b078e82014-09-10 14:44:24 -07004576 if (descriptor == nullptr) {
David Sehr709b0702016-10-13 09:12:37 -07004577 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of "
4578 << res_method->PrettyMethod()
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004579 << " missing signature component";
Ian Rogers7b078e82014-09-10 14:44:24 -07004580 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004581 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004582 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004583 uint32_t get_reg = is_range ? inst->VRegC_3rc() + actual_args : arg[actual_args];
Ian Rogers7b078e82014-09-10 14:44:24 -07004584 if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004585 return res_method;
4586 }
4587 actual_args = reg_type.IsLongOrDoubleTypes() ? actual_args + 2 : actual_args + 1;
4588 }
4589 if (actual_args != expected_args) {
David Sehr709b0702016-10-13 09:12:37 -07004590 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of "
4591 << res_method->PrettyMethod() << " expected "
4592 << expected_args << " arguments, found " << actual_args;
Ian Rogers7b078e82014-09-10 14:44:24 -07004593 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004594 } else {
4595 return res_method;
4596 }
4597}
4598
Ian Rogers62342ec2013-06-11 10:26:37 -07004599void MethodVerifier::VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08004600 dex::TypeIndex type_idx;
Sebastien Hertz5243e912013-05-21 10:55:07 +02004601 if (!is_filled) {
4602 DCHECK_EQ(inst->Opcode(), Instruction::NEW_ARRAY);
Andreas Gampea5b09a62016-11-17 15:21:22 -08004603 type_idx = dex::TypeIndex(inst->VRegC_22c());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004604 } else if (!is_range) {
4605 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY);
Andreas Gampea5b09a62016-11-17 15:21:22 -08004606 type_idx = dex::TypeIndex(inst->VRegB_35c());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004607 } else {
4608 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY_RANGE);
Andreas Gampea5b09a62016-11-17 15:21:22 -08004609 type_idx = dex::TypeIndex(inst->VRegB_3rc());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004610 }
Andreas Gampe98be1a92017-08-28 08:25:45 -07004611 const RegType& res_type = ResolveClass<CheckAccess::kYes>(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004612 if (res_type.IsConflict()) { // bad class
4613 DCHECK_NE(failures_.size(), 0U);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004614 } else {
4615 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
4616 if (!res_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004617 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "new-array on non-array class " << res_type;
Ian Rogers0c4a5062012-02-03 15:18:59 -08004618 } else if (!is_filled) {
4619 /* make sure "size" register is valid type */
Ian Rogers7b078e82014-09-10 14:44:24 -07004620 work_line_->VerifyRegisterType(this, inst->VRegB_22c(), reg_types_.Integer());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004621 /* set register type to array class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00004622 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Andreas Gampead238ce2015-08-24 21:13:08 -07004623 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_22c(), precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004624 } else {
Andreas Gampebb18a032016-03-22 20:34:25 -07004625 DCHECK(!res_type.IsUnresolvedMergedReference());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004626 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
4627 // the list and fail. It's legal, if silly, for arg_count to be zero.
Ian Rogersd8f69b02014-09-10 21:43:52 +00004628 const RegType& expected_type = reg_types_.GetComponentType(res_type, GetClassLoader());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004629 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
4630 uint32_t arg[5];
4631 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07004632 inst->GetVarArgs(arg);
Sebastien Hertz5243e912013-05-21 10:55:07 +02004633 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08004634 for (size_t ui = 0; ui < arg_count; ui++) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02004635 uint32_t get_reg = is_range ? inst->VRegC_3rc() + ui : arg[ui];
Ian Rogers7b078e82014-09-10 14:44:24 -07004636 if (!work_line_->VerifyRegisterType(this, get_reg, expected_type)) {
4637 work_line_->SetResultRegisterType(this, reg_types_.Conflict());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004638 return;
4639 }
4640 }
4641 // filled-array result goes into "result" register
Ian Rogersd8f69b02014-09-10 21:43:52 +00004642 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07004643 work_line_->SetResultRegisterType(this, precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004644 }
4645 }
4646}
4647
Sebastien Hertz5243e912013-05-21 10:55:07 +02004648void MethodVerifier::VerifyAGet(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00004649 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004650 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07004651 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004652 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07004653 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004654 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08004655 if (array_type.IsZero()) {
Nicolas Geoffray4824c272015-06-24 15:53:03 +01004656 have_pending_runtime_throw_failure_ = true;
Ian Rogers89310de2012-02-01 13:47:30 -08004657 // Null array class; this code path will fail at runtime. Infer a merge-able type from the
4658 // instruction type. TODO: have a proper notion of bottom here.
4659 if (!is_primitive || insn_type.IsCategory1Types()) {
4660 // Reference or category 1
Andreas Gampead238ce2015-08-24 21:13:08 -07004661 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Zero());
Ian Rogersd81871c2011-10-03 13:57:23 -07004662 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08004663 // Category 2
Ian Rogers7b078e82014-09-10 14:44:24 -07004664 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(),
4665 reg_types_.FromCat2ConstLo(0, false),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004666 reg_types_.FromCat2ConstHi(0, false));
Ian Rogers89310de2012-02-01 13:47:30 -08004667 }
jeffhaofc3144e2012-02-01 17:21:15 -08004668 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004669 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aget";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004670 } else if (array_type.IsUnresolvedMergedReference()) {
Andreas Gampebb18a032016-03-22 20:34:25 -07004671 // Unresolved array types must be reference array types.
4672 if (is_primitive) {
4673 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
4674 << " source for category 1 aget";
4675 } else {
4676 Fail(VERIFY_ERROR_NO_CLASS) << "cannot verify aget for " << array_type
4677 << " because of missing class";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004678 // Approximate with java.lang.Object[].
4679 work_line_->SetRegisterType<LockOp::kClear>(this,
4680 inst->VRegA_23x(),
4681 reg_types_.JavaLangObject(false));
Andreas Gampebb18a032016-03-22 20:34:25 -07004682 }
Ian Rogers89310de2012-02-01 13:47:30 -08004683 } else {
4684 /* verify the class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00004685 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
jeffhaofc3144e2012-02-01 17:21:15 -08004686 if (!component_type.IsReferenceTypes() && !is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07004687 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08004688 << " source for aget-object";
4689 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07004690 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08004691 << " source for category 1 aget";
4692 } else if (is_primitive && !insn_type.Equals(component_type) &&
4693 !((insn_type.IsInteger() && component_type.IsFloat()) ||
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004694 (insn_type.IsLong() && component_type.IsDouble()))) {
4695 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array type " << array_type
4696 << " incompatible with aget of type " << insn_type;
Ian Rogers89310de2012-02-01 13:47:30 -08004697 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004698 // Use knowledge of the field type which is stronger than the type inferred from the
4699 // instruction, which can't differentiate object types and ints from floats, longs from
4700 // doubles.
4701 if (!component_type.IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07004702 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), component_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004703 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004704 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(), component_type,
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004705 component_type.HighHalf(&reg_types_));
4706 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004707 }
4708 }
4709 }
4710}
4711
Ian Rogersd8f69b02014-09-10 21:43:52 +00004712void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
Jeff Haofe1f7c82013-08-01 14:50:24 -07004713 const uint32_t vregA) {
4714 // Primitive assignability rules are weaker than regular assignability rules.
4715 bool instruction_compatible;
4716 bool value_compatible;
Ian Rogers7b078e82014-09-10 14:44:24 -07004717 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
Jeff Haofe1f7c82013-08-01 14:50:24 -07004718 if (target_type.IsIntegralTypes()) {
Jeff Haoa4647482013-08-06 15:35:47 -07004719 instruction_compatible = target_type.Equals(insn_type);
Jeff Haofe1f7c82013-08-01 14:50:24 -07004720 value_compatible = value_type.IsIntegralTypes();
4721 } else if (target_type.IsFloat()) {
4722 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int
4723 value_compatible = value_type.IsFloatTypes();
4724 } else if (target_type.IsLong()) {
4725 instruction_compatible = insn_type.IsLong();
Andreas Gampe376fa682014-09-07 13:06:12 -07004726 // Additional register check: this is not checked statically (as part of VerifyInstructions),
4727 // as target_type depends on the resolved type of the field.
4728 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004729 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07004730 value_compatible = value_type.IsLongTypes() && value_type.CheckWidePair(value_type_hi);
4731 } else {
4732 value_compatible = false;
4733 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07004734 } else if (target_type.IsDouble()) {
4735 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long
Andreas Gampe376fa682014-09-07 13:06:12 -07004736 // Additional register check: this is not checked statically (as part of VerifyInstructions),
4737 // as target_type depends on the resolved type of the field.
4738 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004739 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07004740 value_compatible = value_type.IsDoubleTypes() && value_type.CheckWidePair(value_type_hi);
4741 } else {
4742 value_compatible = false;
4743 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07004744 } else {
4745 instruction_compatible = false; // reference with primitive store
4746 value_compatible = false; // unused
4747 }
4748 if (!instruction_compatible) {
4749 // This is a global failure rather than a class change failure as the instructions and
4750 // the descriptors for the type should have been consistent within the same file at
4751 // compile time.
4752 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
4753 << "' but expected type '" << target_type << "'";
4754 return;
4755 }
4756 if (!value_compatible) {
4757 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
4758 << " of type " << value_type << " but expected " << target_type << " for put";
4759 return;
4760 }
4761}
4762
Sebastien Hertz5243e912013-05-21 10:55:07 +02004763void MethodVerifier::VerifyAPut(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00004764 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004765 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07004766 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004767 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07004768 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004769 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08004770 if (array_type.IsZero()) {
Nicolas Geoffray66389fb2015-06-19 10:35:42 +01004771 // Null array type; this code path will fail at runtime.
4772 // Still check that the given value matches the instruction's type.
Andreas Gampe4bf4c782015-08-14 14:07:43 -07004773 // Note: this is, as usual, complicated by the fact the the instruction isn't fully typed
4774 // and fits multiple register types.
4775 const RegType* modified_reg_type = &insn_type;
4776 if ((modified_reg_type == &reg_types_.Integer()) ||
4777 (modified_reg_type == &reg_types_.LongLo())) {
4778 // May be integer or float | long or double. Overwrite insn_type accordingly.
4779 const RegType& value_type = work_line_->GetRegisterType(this, inst->VRegA_23x());
4780 if (modified_reg_type == &reg_types_.Integer()) {
4781 if (&value_type == &reg_types_.Float()) {
4782 modified_reg_type = &value_type;
4783 }
4784 } else {
4785 if (&value_type == &reg_types_.DoubleLo()) {
4786 modified_reg_type = &value_type;
4787 }
4788 }
4789 }
4790 work_line_->VerifyRegisterType(this, inst->VRegA_23x(), *modified_reg_type);
jeffhaofc3144e2012-02-01 17:21:15 -08004791 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004792 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aput";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004793 } else if (array_type.IsUnresolvedMergedReference()) {
Andreas Gampebb18a032016-03-22 20:34:25 -07004794 // Unresolved array types must be reference array types.
4795 if (is_primitive) {
4796 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
4797 << "' but unresolved type '" << array_type << "'";
4798 } else {
4799 Fail(VERIFY_ERROR_NO_CLASS) << "cannot verify aput for " << array_type
4800 << " because of missing class";
4801 }
Ian Rogers89310de2012-02-01 13:47:30 -08004802 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00004803 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
Jeff Haofe1f7c82013-08-01 14:50:24 -07004804 const uint32_t vregA = inst->VRegA_23x();
Jeff Haob24b4a72013-07-31 13:47:31 -07004805 if (is_primitive) {
Jeff Haofe1f7c82013-08-01 14:50:24 -07004806 VerifyPrimitivePut(component_type, insn_type, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07004807 } else {
Jeff Haob24b4a72013-07-31 13:47:31 -07004808 if (!component_type.IsReferenceTypes()) {
4809 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
4810 << " source for aput-object";
4811 } else {
4812 // The instruction agrees with the type of array, confirm the value to be stored does too
4813 // Note: we use the instruction type (rather than the component type) for aput-object as
4814 // incompatible classes will be caught at runtime as an array store exception
Ian Rogers7b078e82014-09-10 14:44:24 -07004815 work_line_->VerifyRegisterType(this, vregA, insn_type);
Jeff Haob24b4a72013-07-31 13:47:31 -07004816 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004817 }
4818 }
4819 }
4820}
4821
Mathieu Chartierc7853442015-03-27 14:35:38 -07004822ArtField* MethodVerifier::GetStaticField(int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08004823 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
4824 // Check access to class
Andreas Gampe98be1a92017-08-28 08:25:45 -07004825 const RegType& klass_type = ResolveClass<CheckAccess::kYes>(field_id.class_idx_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004826 if (klass_type.IsConflict()) { // bad class
Ian Rogersad0b3a32012-04-16 14:50:24 -07004827 AppendToLastFailMessage(StringPrintf(" in attempt to access static field %d (%s) in %s",
4828 field_idx, dex_file_->GetFieldName(field_id),
4829 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07004830 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08004831 }
Elliott Hughesb25c3f62012-03-26 16:35:06 -07004832 if (klass_type.IsUnresolvedTypes()) {
Andreas Gampe629be512017-08-25 17:09:32 -07004833 // Accessibility checks depend on resolved fields.
4834 DCHECK(klass_type.Equals(GetDeclaringClass()) || !failures_.empty());
4835
Ian Rogers7b078e82014-09-10 14:44:24 -07004836 return nullptr; // Can't resolve Class so no more to do here, will do checking at runtime.
Ian Rogers90040192011-12-16 08:54:29 -08004837 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004838 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
David Brazdilca3c8c32016-09-06 14:04:48 +01004839 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_, class_loader_);
4840
4841 // Record result of the field resolution attempt.
4842 VerifierDeps::MaybeRecordFieldResolution(*dex_file_, field_idx, field);
4843
Ian Rogers7b078e82014-09-10 14:44:24 -07004844 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07004845 VLOG(verifier) << "Unable to resolve static field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07004846 << dex_file_->GetFieldName(field_id) << ") in "
4847 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07004848 DCHECK(self_->IsExceptionPending());
4849 self_->ClearException();
4850 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004851 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
4852 field->GetAccessFlags())) {
David Sehr709b0702016-10-13 09:12:37 -07004853 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access static field " << field->PrettyField()
Ian Rogersad0b3a32012-04-16 14:50:24 -07004854 << " from " << GetDeclaringClass();
Ian Rogers7b078e82014-09-10 14:44:24 -07004855 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004856 } else if (!field->IsStatic()) {
David Sehr709b0702016-10-13 09:12:37 -07004857 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << field->PrettyField() << " to be static";
Ian Rogers7b078e82014-09-10 14:44:24 -07004858 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004859 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004860 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07004861}
4862
Mathieu Chartierc7853442015-03-27 14:35:38 -07004863ArtField* MethodVerifier::GetInstanceField(const RegType& obj_type, int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08004864 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
Aart Bik31883642016-06-06 15:02:44 -07004865 // Check access to class.
Andreas Gampe98be1a92017-08-28 08:25:45 -07004866 const RegType& klass_type = ResolveClass<CheckAccess::kYes>(field_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004867 if (klass_type.IsConflict()) {
4868 AppendToLastFailMessage(StringPrintf(" in attempt to access instance field %d (%s) in %s",
4869 field_idx, dex_file_->GetFieldName(field_id),
4870 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07004871 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08004872 }
jeffhao8cd6dda2012-02-22 10:15:34 -08004873 if (klass_type.IsUnresolvedTypes()) {
Andreas Gampe629be512017-08-25 17:09:32 -07004874 // Accessibility checks depend on resolved fields.
4875 DCHECK(klass_type.Equals(GetDeclaringClass()) || !failures_.empty());
4876
Ian Rogers7b078e82014-09-10 14:44:24 -07004877 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08004878 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004879 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
David Brazdilca3c8c32016-09-06 14:04:48 +01004880 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_, class_loader_);
4881
4882 // Record result of the field resolution attempt.
4883 VerifierDeps::MaybeRecordFieldResolution(*dex_file_, field_idx, field);
4884
Ian Rogers7b078e82014-09-10 14:44:24 -07004885 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07004886 VLOG(verifier) << "Unable to resolve instance field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07004887 << dex_file_->GetFieldName(field_id) << ") in "
4888 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07004889 DCHECK(self_->IsExceptionPending());
4890 self_->ClearException();
4891 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004892 } else if (obj_type.IsZero()) {
Aart Bik31883642016-06-06 15:02:44 -07004893 // Cannot infer and check type, however, access will cause null pointer exception.
4894 // Fall through into a few last soft failure checks below.
Stephen Kyle695c5982014-08-22 15:03:07 +01004895 } else if (!obj_type.IsReferenceTypes()) {
Aart Bik31883642016-06-06 15:02:44 -07004896 // Trying to read a field from something that isn't a reference.
Stephen Kyle695c5982014-08-22 15:03:07 +01004897 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance field access on object that has "
4898 << "non-reference type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07004899 return nullptr;
Ian Rogerse1758fe2012-04-19 11:31:15 -07004900 } else {
David Brazdil0d638bb2016-07-27 15:29:25 +01004901 std::string temp;
Mathieu Chartier3398c782016-09-30 10:27:43 -07004902 ObjPtr<mirror::Class> klass = field->GetDeclaringClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00004903 const RegType& field_klass =
Mathieu Chartier3398c782016-09-30 10:27:43 -07004904 FromClass(klass->GetDescriptor(&temp),
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07004905 klass.Ptr(),
Mathieu Chartier3398c782016-09-30 10:27:43 -07004906 klass->CannotBeAssignedFromOtherTypes());
David Brazdil68b5c0b2016-01-19 14:25:29 +00004907 if (obj_type.IsUninitializedTypes()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07004908 // Field accesses through uninitialized references are only allowable for constructors where
David Brazdil68b5c0b2016-01-19 14:25:29 +00004909 // the field is declared in this class.
4910 // Note: this IsConstructor check is technically redundant, as UninitializedThis should only
4911 // appear in constructors.
4912 if (!obj_type.IsUninitializedThisReference() ||
4913 !IsConstructor() ||
4914 !field_klass.Equals(GetDeclaringClass())) {
David Sehr709b0702016-10-13 09:12:37 -07004915 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access instance field " << field->PrettyField()
David Brazdil68b5c0b2016-01-19 14:25:29 +00004916 << " of a not fully initialized object within the context"
David Sehr709b0702016-10-13 09:12:37 -07004917 << " of " << dex_file_->PrettyMethod(dex_method_idx_);
David Brazdil68b5c0b2016-01-19 14:25:29 +00004918 return nullptr;
4919 }
David Brazdilca3c8c32016-09-06 14:04:48 +01004920 } else if (!field_klass.IsAssignableFrom(obj_type, this)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07004921 // Trying to access C1.field1 using reference of type C2, which is neither C1 or a sub-class
4922 // of C1. For resolution to occur the declared class of the field must be compatible with
4923 // obj_type, we've discovered this wasn't so, so report the field didn't exist.
Andreas Gampe66596242016-04-14 10:55:04 -07004924 VerifyError type;
4925 bool is_aot = Runtime::Current()->IsAotCompiler();
4926 if (is_aot && (field_klass.IsUnresolvedTypes() || obj_type.IsUnresolvedTypes())) {
4927 // Compiler & unresolved types involved, retry at runtime.
4928 type = VerifyError::VERIFY_ERROR_NO_CLASS;
4929 } else {
Andreas Gampe8f4ade02016-04-15 10:09:16 -07004930 // Classes known (resolved; and thus assignability check is precise), or we are at runtime
4931 // and still missing classes. This is a hard failure.
Andreas Gampe66596242016-04-14 10:55:04 -07004932 type = VerifyError::VERIFY_ERROR_BAD_CLASS_HARD;
4933 }
David Sehr709b0702016-10-13 09:12:37 -07004934 Fail(type) << "cannot access instance field " << field->PrettyField()
Andreas Gampe66596242016-04-14 10:55:04 -07004935 << " from object of type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07004936 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004937 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004938 }
Aart Bik31883642016-06-06 15:02:44 -07004939
4940 // Few last soft failure checks.
4941 if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
4942 field->GetAccessFlags())) {
David Sehr709b0702016-10-13 09:12:37 -07004943 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access instance field " << field->PrettyField()
Aart Bik31883642016-06-06 15:02:44 -07004944 << " from " << GetDeclaringClass();
4945 return nullptr;
4946 } else if (field->IsStatic()) {
David Sehr709b0702016-10-13 09:12:37 -07004947 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << field->PrettyField()
Aart Bik31883642016-06-06 15:02:44 -07004948 << " to not be static";
4949 return nullptr;
4950 }
4951
4952 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07004953}
4954
Andreas Gampe896df402014-10-20 22:25:29 -07004955template <MethodVerifier::FieldAccessType kAccType>
4956void MethodVerifier::VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type,
4957 bool is_primitive, bool is_static) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02004958 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
Mathieu Chartierc7853442015-03-27 14:35:38 -07004959 ArtField* field;
Ian Rogersb94a27b2011-10-26 00:33:41 -07004960 if (is_static) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07004961 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07004962 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004963 const RegType& object_type = work_line_->GetRegisterType(this, inst->VRegB_22c());
David Brazdil68b5c0b2016-01-19 14:25:29 +00004964
4965 // One is not allowed to access fields on uninitialized references, except to write to
4966 // fields in the constructor (before calling another constructor).
4967 // GetInstanceField does an assignability check which will fail for uninitialized types.
4968 // We thus modify the type if the uninitialized reference is a "this" reference (this also
4969 // checks at the same time that we're verifying a constructor).
4970 bool should_adjust = (kAccType == FieldAccessType::kAccPut) &&
4971 object_type.IsUninitializedThisReference();
4972 const RegType& adjusted_type = should_adjust
4973 ? GetRegTypeCache()->FromUninitialized(object_type)
4974 : object_type;
4975 field = GetInstanceField(adjusted_type, field_idx);
Andreas Gampe896df402014-10-20 22:25:29 -07004976 if (UNLIKELY(have_pending_hard_failure_)) {
4977 return;
4978 }
Alex Light4a2c8fc2016-02-12 11:01:54 -08004979 if (should_adjust) {
4980 if (field == nullptr) {
4981 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Might be accessing a superclass instance field prior "
4982 << "to the superclass being initialized in "
David Sehr709b0702016-10-13 09:12:37 -07004983 << dex_file_->PrettyMethod(dex_method_idx_);
Alex Light4a2c8fc2016-02-12 11:01:54 -08004984 } else if (field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
4985 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access superclass instance field "
David Sehr709b0702016-10-13 09:12:37 -07004986 << field->PrettyField() << " of a not fully initialized "
Alex Light4a2c8fc2016-02-12 11:01:54 -08004987 << "object within the context of "
David Sehr709b0702016-10-13 09:12:37 -07004988 << dex_file_->PrettyMethod(dex_method_idx_);
Alex Light4a2c8fc2016-02-12 11:01:54 -08004989 return;
4990 }
4991 }
Ian Rogersb94a27b2011-10-26 00:33:41 -07004992 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004993 const RegType* field_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07004994 if (field != nullptr) {
Andreas Gampe896df402014-10-20 22:25:29 -07004995 if (kAccType == FieldAccessType::kAccPut) {
4996 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
David Sehr709b0702016-10-13 09:12:37 -07004997 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << field->PrettyField()
Andreas Gampe896df402014-10-20 22:25:29 -07004998 << " from other class " << GetDeclaringClass();
Aart Bikc2bc2652016-05-23 14:58:49 -07004999 // Keep hunting for possible hard fails.
Andreas Gampe896df402014-10-20 22:25:29 -07005000 }
5001 }
5002
Mathieu Chartier3398c782016-09-30 10:27:43 -07005003 ObjPtr<mirror::Class> field_type_class =
Mathieu Chartierc7853442015-03-27 14:35:38 -07005004 can_load_classes_ ? field->GetType<true>() : field->GetType<false>();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005005 if (field_type_class != nullptr) {
Mathieu Chartier3398c782016-09-30 10:27:43 -07005006 field_type = &FromClass(field->GetTypeDescriptor(),
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07005007 field_type_class.Ptr(),
Andreas Gampef23f33d2015-06-23 14:18:17 -07005008 field_type_class->CannotBeAssignedFromOtherTypes());
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08005009 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07005010 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
5011 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005012 }
Andreas Gampe7da4c402017-08-25 11:30:48 -07005013 } else {
5014 // If we don't have the field (it seems we failed resolution) and this is a PUT, we need to
5015 // redo verification at runtime as the field may be final, unless the field id shows it's in
5016 // the same class.
5017 //
5018 // For simplicity, it is OK to not distinguish compile-time vs runtime, and post this an
5019 // ACCESS_FIELD failure at runtime. This has the same effect as NO_FIELD - punting the class
5020 // to the access-checks interpreter.
5021 //
5022 // Note: see b/34966607. This and above may be changed in the future.
5023 if (kAccType == FieldAccessType::kAccPut) {
5024 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
5025 const char* field_class_descriptor = dex_file_->GetFieldDeclaringClassDescriptor(field_id);
5026 const RegType* field_class_type = &reg_types_.FromDescriptor(GetClassLoader(),
5027 field_class_descriptor,
5028 false);
5029 if (!field_class_type->Equals(GetDeclaringClass())) {
5030 Fail(VERIFY_ERROR_ACCESS_FIELD) << "could not check field put for final field modify of "
5031 << field_class_descriptor
5032 << "."
5033 << dex_file_->GetFieldName(field_id)
5034 << " from other class "
5035 << GetDeclaringClass();
5036 }
5037 }
Ian Rogers0d604842012-04-16 14:50:24 -07005038 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005039 if (field_type == nullptr) {
5040 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
5041 const char* descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07005042 field_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005043 }
Sebastien Hertz757b3042014-03-28 14:34:28 +01005044 DCHECK(field_type != nullptr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02005045 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c();
Andreas Gampe896df402014-10-20 22:25:29 -07005046 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
5047 "Unexpected third access type");
5048 if (kAccType == FieldAccessType::kAccPut) {
5049 // sput or iput.
5050 if (is_primitive) {
5051 VerifyPrimitivePut(*field_type, insn_type, vregA);
Ian Rogersad0b3a32012-04-16 14:50:24 -07005052 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005053 if (!insn_type.IsAssignableFrom(*field_type, this)) {
Vladimir Marko414000e2015-06-23 17:45:21 +01005054 // If the field type is not a reference, this is a global failure rather than
5055 // a class change failure as the instructions and the descriptors for the type
5056 // should have been consistent within the same file at compile time.
5057 VerifyError error = field_type->IsReferenceTypes() ? VERIFY_ERROR_BAD_CLASS_SOFT
5058 : VERIFY_ERROR_BAD_CLASS_HARD;
David Sehr709b0702016-10-13 09:12:37 -07005059 Fail(error) << "expected field " << ArtField::PrettyField(field)
Vladimir Marko414000e2015-06-23 17:45:21 +01005060 << " to be compatible with type '" << insn_type
5061 << "' but found type '" << *field_type
5062 << "' in put-object";
Andreas Gampe896df402014-10-20 22:25:29 -07005063 return;
5064 }
5065 work_line_->VerifyRegisterType(this, vregA, *field_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07005066 }
Andreas Gampe896df402014-10-20 22:25:29 -07005067 } else if (kAccType == FieldAccessType::kAccGet) {
5068 // sget or iget.
5069 if (is_primitive) {
5070 if (field_type->Equals(insn_type) ||
5071 (field_type->IsFloat() && insn_type.IsInteger()) ||
5072 (field_type->IsDouble() && insn_type.IsLong())) {
5073 // expected that read is of the correct primitive type or that int reads are reading
5074 // floats or long reads are reading doubles
5075 } else {
5076 // This is a global failure rather than a class change failure as the instructions and
5077 // the descriptors for the type should have been consistent within the same file at
5078 // compile time
David Sehr709b0702016-10-13 09:12:37 -07005079 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005080 << " to be of type '" << insn_type
5081 << "' but found type '" << *field_type << "' in get";
5082 return;
5083 }
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08005084 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005085 if (!insn_type.IsAssignableFrom(*field_type, this)) {
Vladimir Marko414000e2015-06-23 17:45:21 +01005086 // If the field type is not a reference, this is a global failure rather than
5087 // a class change failure as the instructions and the descriptors for the type
5088 // should have been consistent within the same file at compile time.
5089 VerifyError error = field_type->IsReferenceTypes() ? VERIFY_ERROR_BAD_CLASS_SOFT
5090 : VERIFY_ERROR_BAD_CLASS_HARD;
David Sehr709b0702016-10-13 09:12:37 -07005091 Fail(error) << "expected field " << ArtField::PrettyField(field)
Vladimir Marko414000e2015-06-23 17:45:21 +01005092 << " to be compatible with type '" << insn_type
5093 << "' but found type '" << *field_type
5094 << "' in get-object";
Andreas Gampe890da292015-07-06 17:20:18 -07005095 if (error != VERIFY_ERROR_BAD_CLASS_HARD) {
Andreas Gampead238ce2015-08-24 21:13:08 -07005096 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, reg_types_.Conflict());
Andreas Gampe890da292015-07-06 17:20:18 -07005097 }
Andreas Gampe896df402014-10-20 22:25:29 -07005098 return;
5099 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005100 }
Andreas Gampe896df402014-10-20 22:25:29 -07005101 if (!field_type->IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07005102 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, *field_type);
Andreas Gampe896df402014-10-20 22:25:29 -07005103 } else {
5104 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
5105 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07005106 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07005107 LOG(FATAL) << "Unexpected case.";
Ian Rogersd81871c2011-10-03 13:57:23 -07005108 }
5109}
5110
Mathieu Chartierc7853442015-03-27 14:35:38 -07005111ArtField* MethodVerifier::GetQuickFieldAccess(const Instruction* inst,
Ian Rogers98379392014-02-24 16:53:16 -08005112 RegisterLine* reg_line) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08005113 DCHECK(IsInstructionIGetQuickOrIPutQuick(inst->Opcode())) << inst->Opcode();
Ian Rogers7b078e82014-09-10 14:44:24 -07005114 const RegType& object_type = reg_line->GetRegisterType(this, inst->VRegB_22c());
Ian Rogers9bc54402014-04-17 16:40:01 -07005115 if (!object_type.HasClass()) {
5116 VLOG(verifier) << "Failed to get mirror::Class* from '" << object_type << "'";
5117 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02005118 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005119 uint32_t field_offset = static_cast<uint32_t>(inst->VRegC_22c());
Mathieu Chartierc7853442015-03-27 14:35:38 -07005120 ArtField* const f = ArtField::FindInstanceFieldWithOffset(object_type.GetClass(), field_offset);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08005121 DCHECK_EQ(f->GetOffset().Uint32Value(), field_offset);
Sebastien Hertz479fc1e2014-04-04 17:51:34 +02005122 if (f == nullptr) {
5123 VLOG(verifier) << "Failed to find instance field at offset '" << field_offset
David Sehr709b0702016-10-13 09:12:37 -07005124 << "' from '" << mirror::Class::PrettyDescriptor(object_type.GetClass()) << "'";
Sebastien Hertz479fc1e2014-04-04 17:51:34 +02005125 }
5126 return f;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02005127}
5128
Andreas Gampe896df402014-10-20 22:25:29 -07005129template <MethodVerifier::FieldAccessType kAccType>
5130void MethodVerifier::VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type,
5131 bool is_primitive) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07005132 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005133
Mathieu Chartierc7853442015-03-27 14:35:38 -07005134 ArtField* field = GetQuickFieldAccess(inst, work_line_.get());
Ian Rogers7b078e82014-09-10 14:44:24 -07005135 if (field == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02005136 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field from " << inst->Name();
5137 return;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005138 }
Andreas Gampe896df402014-10-20 22:25:29 -07005139
5140 // For an IPUT_QUICK, we now test for final flag of the field.
5141 if (kAccType == FieldAccessType::kAccPut) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005142 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
David Sehr709b0702016-10-13 09:12:37 -07005143 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << field->PrettyField()
Sebastien Hertzc15853b2013-06-25 17:36:27 +02005144 << " from other class " << GetDeclaringClass();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005145 return;
5146 }
5147 }
Andreas Gampe896df402014-10-20 22:25:29 -07005148
5149 // Get the field type.
5150 const RegType* field_type;
5151 {
Mathieu Chartier3398c782016-09-30 10:27:43 -07005152 ObjPtr<mirror::Class> field_type_class = can_load_classes_ ? field->GetType<true>() :
Mathieu Chartierc7853442015-03-27 14:35:38 -07005153 field->GetType<false>();
Andreas Gampe896df402014-10-20 22:25:29 -07005154
5155 if (field_type_class != nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005156 field_type = &FromClass(field->GetTypeDescriptor(),
Mathieu Chartier1cc62e42016-10-03 18:01:28 -07005157 field_type_class.Ptr(),
Andreas Gampef23f33d2015-06-23 14:18:17 -07005158 field_type_class->CannotBeAssignedFromOtherTypes());
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005159 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07005160 Thread* self = Thread::Current();
5161 DCHECK(!can_load_classes_ || self->IsExceptionPending());
5162 self->ClearException();
5163 field_type = &reg_types_.FromDescriptor(field->GetDeclaringClass()->GetClassLoader(),
Mathieu Chartierde40d472015-10-15 17:47:48 -07005164 field->GetTypeDescriptor(),
5165 false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005166 }
Andreas Gampe896df402014-10-20 22:25:29 -07005167 if (field_type == nullptr) {
5168 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field type from " << inst->Name();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005169 return;
5170 }
Andreas Gampe896df402014-10-20 22:25:29 -07005171 }
5172
5173 const uint32_t vregA = inst->VRegA_22c();
5174 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
5175 "Unexpected third access type");
5176 if (kAccType == FieldAccessType::kAccPut) {
5177 if (is_primitive) {
5178 // Primitive field assignability rules are weaker than regular assignability rules
5179 bool instruction_compatible;
5180 bool value_compatible;
5181 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
5182 if (field_type->IsIntegralTypes()) {
5183 instruction_compatible = insn_type.IsIntegralTypes();
5184 value_compatible = value_type.IsIntegralTypes();
5185 } else if (field_type->IsFloat()) {
5186 instruction_compatible = insn_type.IsInteger(); // no [is]put-float, so expect [is]put-int
5187 value_compatible = value_type.IsFloatTypes();
5188 } else if (field_type->IsLong()) {
5189 instruction_compatible = insn_type.IsLong();
5190 value_compatible = value_type.IsLongTypes();
5191 } else if (field_type->IsDouble()) {
5192 instruction_compatible = insn_type.IsLong(); // no [is]put-double, so expect [is]put-long
5193 value_compatible = value_type.IsDoubleTypes();
5194 } else {
5195 instruction_compatible = false; // reference field with primitive store
5196 value_compatible = false; // unused
5197 }
5198 if (!instruction_compatible) {
5199 // This is a global failure rather than a class change failure as the instructions and
5200 // the descriptors for the type should have been consistent within the same file at
5201 // compile time
David Sehr709b0702016-10-13 09:12:37 -07005202 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005203 << " to be of type '" << insn_type
5204 << "' but found type '" << *field_type
5205 << "' in put";
5206 return;
5207 }
5208 if (!value_compatible) {
5209 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
5210 << " of type " << value_type
5211 << " but expected " << *field_type
David Sehr709b0702016-10-13 09:12:37 -07005212 << " for store to " << ArtField::PrettyField(field) << " in put";
Andreas Gampe896df402014-10-20 22:25:29 -07005213 return;
5214 }
5215 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005216 if (!insn_type.IsAssignableFrom(*field_type, this)) {
David Sehr709b0702016-10-13 09:12:37 -07005217 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005218 << " to be compatible with type '" << insn_type
5219 << "' but found type '" << *field_type
5220 << "' in put-object";
5221 return;
5222 }
5223 work_line_->VerifyRegisterType(this, vregA, *field_type);
5224 }
5225 } else if (kAccType == FieldAccessType::kAccGet) {
5226 if (is_primitive) {
5227 if (field_type->Equals(insn_type) ||
5228 (field_type->IsFloat() && insn_type.IsIntegralTypes()) ||
5229 (field_type->IsDouble() && insn_type.IsLongTypes())) {
5230 // expected that read is of the correct primitive type or that int reads are reading
5231 // floats or long reads are reading doubles
5232 } else {
5233 // This is a global failure rather than a class change failure as the instructions and
5234 // the descriptors for the type should have been consistent within the same file at
5235 // compile time
David Sehr709b0702016-10-13 09:12:37 -07005236 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005237 << " to be of type '" << insn_type
5238 << "' but found type '" << *field_type << "' in Get";
5239 return;
5240 }
5241 } else {
David Brazdilca3c8c32016-09-06 14:04:48 +01005242 if (!insn_type.IsAssignableFrom(*field_type, this)) {
David Sehr709b0702016-10-13 09:12:37 -07005243 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << ArtField::PrettyField(field)
Andreas Gampe896df402014-10-20 22:25:29 -07005244 << " to be compatible with type '" << insn_type
5245 << "' but found type '" << *field_type
5246 << "' in get-object";
Andreas Gampead238ce2015-08-24 21:13:08 -07005247 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, reg_types_.Conflict());
Andreas Gampe896df402014-10-20 22:25:29 -07005248 return;
5249 }
5250 }
5251 if (!field_type->IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07005252 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, *field_type);
Andreas Gampe896df402014-10-20 22:25:29 -07005253 } else {
5254 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005255 }
5256 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07005257 LOG(FATAL) << "Unexpected case.";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02005258 }
5259}
5260
Ian Rogers776ac1f2012-04-13 23:36:36 -07005261bool MethodVerifier::CheckNotMoveException(const uint16_t* insns, int insn_idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07005262 if ((insns[insn_idx] & 0xff) == Instruction::MOVE_EXCEPTION) {
jeffhaod5347e02012-03-22 17:25:05 -07005263 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-exception";
Ian Rogersd81871c2011-10-03 13:57:23 -07005264 return false;
5265 }
5266 return true;
5267}
5268
Stephen Kyle9bc61992014-09-22 13:53:15 +01005269bool MethodVerifier::CheckNotMoveResult(const uint16_t* insns, int insn_idx) {
5270 if (((insns[insn_idx] & 0xff) >= Instruction::MOVE_RESULT) &&
5271 ((insns[insn_idx] & 0xff) <= Instruction::MOVE_RESULT_OBJECT)) {
5272 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-result*";
5273 return false;
5274 }
5275 return true;
5276}
5277
5278bool MethodVerifier::CheckNotMoveExceptionOrMoveResult(const uint16_t* insns, int insn_idx) {
5279 return (CheckNotMoveException(insns, insn_idx) && CheckNotMoveResult(insns, insn_idx));
5280}
5281
Ian Rogersebbdd872014-07-07 23:53:08 -07005282bool MethodVerifier::UpdateRegisters(uint32_t next_insn, RegisterLine* merge_line,
5283 bool update_merge_line) {
Ian Rogersd81871c2011-10-03 13:57:23 -07005284 bool changed = true;
5285 RegisterLine* target_line = reg_table_.GetLine(next_insn);
Mathieu Chartierde40d472015-10-15 17:47:48 -07005286 if (!GetInstructionFlags(next_insn).IsVisitedOrChanged()) {
jeffhaobdb76512011-09-07 11:43:16 -07005287 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07005288 * We haven't processed this instruction before, and we haven't touched the registers here, so
5289 * there's nothing to "merge". Copy the registers over and mark it as changed. (This is the
5290 * only way a register can transition out of "unknown", so this is not just an optimization.)
jeffhaobdb76512011-09-07 11:43:16 -07005291 */
Andreas Gampea727e372015-08-25 09:22:37 -07005292 target_line->CopyFromLine(merge_line);
Mathieu Chartierde40d472015-10-15 17:47:48 -07005293 if (GetInstructionFlags(next_insn).IsReturn()) {
Jeff Haob24b4a72013-07-31 13:47:31 -07005294 // Verify that the monitor stack is empty on return.
Andreas Gampea727e372015-08-25 09:22:37 -07005295 merge_line->VerifyMonitorStackEmpty(this);
5296
Ian Rogersb8c78592013-07-25 23:52:52 +00005297 // For returns we only care about the operand to the return, all other registers are dead.
5298 // Initialize them as conflicts so they don't add to GC and deoptimization information.
5299 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn);
Andreas Gampea727e372015-08-25 09:22:37 -07005300 AdjustReturnLine(this, ret_inst, target_line);
Aart Bik31883642016-06-06 15:02:44 -07005301 // Directly bail if a hard failure was found.
Aart Bikb0526322016-06-01 14:06:00 -07005302 if (have_pending_hard_failure_) {
5303 return false;
5304 }
Ian Rogersb8c78592013-07-25 23:52:52 +00005305 }
jeffhaobdb76512011-09-07 11:43:16 -07005306 } else {
Mathieu Chartier361e04a2016-02-16 14:06:35 -08005307 RegisterLineArenaUniquePtr copy;
Andreas Gampeec6e6c12015-11-05 20:39:56 -08005308 if (kDebugVerify) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005309 copy.reset(RegisterLine::Create(target_line->NumRegs(), this));
Ian Rogers7b0c5b42012-02-16 15:29:07 -08005310 copy->CopyFromLine(target_line);
5311 }
Ian Rogers7b078e82014-09-10 14:44:24 -07005312 changed = target_line->MergeRegisters(this, merge_line);
Ian Rogersad0b3a32012-04-16 14:50:24 -07005313 if (have_pending_hard_failure_) {
Ian Rogersd81871c2011-10-03 13:57:23 -07005314 return false;
jeffhaobdb76512011-09-07 11:43:16 -07005315 }
Andreas Gampeec6e6c12015-11-05 20:39:56 -08005316 if (kDebugVerify && changed) {
Elliott Hughes398f64b2012-03-26 18:05:48 -07005317 LogVerifyInfo() << "Merging at [" << reinterpret_cast<void*>(work_insn_idx_) << "]"
Elliott Hughesc073b072012-05-24 19:29:17 -07005318 << " to [" << reinterpret_cast<void*>(next_insn) << "]: " << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07005319 << copy->Dump(this) << " MERGE\n"
5320 << merge_line->Dump(this) << " ==\n"
5321 << target_line->Dump(this) << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07005322 }
Ian Rogersebbdd872014-07-07 23:53:08 -07005323 if (update_merge_line && changed) {
5324 merge_line->CopyFromLine(target_line);
5325 }
jeffhaobdb76512011-09-07 11:43:16 -07005326 }
Ian Rogersd81871c2011-10-03 13:57:23 -07005327 if (changed) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005328 GetInstructionFlags(next_insn).SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07005329 }
5330 return true;
5331}
5332
Ian Rogers7b3ddd22013-02-21 15:19:52 -08005333InstructionFlags* MethodVerifier::CurrentInsnFlags() {
Mathieu Chartierde40d472015-10-15 17:47:48 -07005334 return &GetInstructionFlags(work_insn_idx_);
Ian Rogers776ac1f2012-04-13 23:36:36 -07005335}
5336
Ian Rogersd8f69b02014-09-10 21:43:52 +00005337const RegType& MethodVerifier::GetMethodReturnType() {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005338 if (return_type_ == nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07005339 if (mirror_method_ != nullptr) {
Vladimir Markob45528c2017-07-27 14:14:28 +01005340 ObjPtr<mirror::Class> return_type_class = can_load_classes_
5341 ? mirror_method_->ResolveReturnType()
5342 : mirror_method_->LookupResolvedReturnType();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005343 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07005344 return_type_ = &FromClass(mirror_method_->GetReturnTypeDescriptor(),
Vladimir Markob45528c2017-07-27 14:14:28 +01005345 return_type_class.Ptr(),
Andreas Gampef23f33d2015-06-23 14:18:17 -07005346 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005347 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07005348 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
5349 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005350 }
5351 }
5352 if (return_type_ == nullptr) {
5353 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
5354 const DexFile::ProtoId& proto_id = dex_file_->GetMethodPrototype(method_id);
Andreas Gampea5b09a62016-11-17 15:21:22 -08005355 dex::TypeIndex return_type_idx = proto_id.return_type_idx_;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005356 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx));
Mathieu Chartierbf99f772014-08-23 16:37:27 -07005357 return_type_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07005358 }
5359 }
5360 return *return_type_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07005361}
5362
Ian Rogersd8f69b02014-09-10 21:43:52 +00005363const RegType& MethodVerifier::GetDeclaringClass() {
Ian Rogers7b078e82014-09-10 14:44:24 -07005364 if (declaring_class_ == nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005365 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
Brian Carlstrom93c33962013-07-26 10:37:43 -07005366 const char* descriptor
5367 = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
Mathieu Chartiere401d142015-04-22 13:56:20 -07005368 if (mirror_method_ != nullptr) {
Ian Rogers637c65b2013-05-31 11:46:00 -07005369 mirror::Class* klass = mirror_method_->GetDeclaringClass();
Mathieu Chartierde40d472015-10-15 17:47:48 -07005370 declaring_class_ = &FromClass(descriptor, klass, klass->CannotBeAssignedFromOtherTypes());
Ian Rogers637c65b2013-05-31 11:46:00 -07005371 } else {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07005372 declaring_class_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers637c65b2013-05-31 11:46:00 -07005373 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07005374 }
Ian Rogers637c65b2013-05-31 11:46:00 -07005375 return *declaring_class_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07005376}
5377
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005378std::vector<int32_t> MethodVerifier::DescribeVRegs(uint32_t dex_pc) {
5379 RegisterLine* line = reg_table_.GetLine(dex_pc);
Sebastien Hertzaa0c00c2014-03-14 17:58:54 +01005380 DCHECK(line != nullptr) << "No register line at DEX pc " << StringPrintf("0x%x", dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005381 std::vector<int32_t> result;
5382 for (size_t i = 0; i < line->NumRegs(); ++i) {
Ian Rogers7b078e82014-09-10 14:44:24 -07005383 const RegType& type = line->GetRegisterType(this, i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005384 if (type.IsConstant()) {
5385 result.push_back(type.IsPreciseConstant() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07005386 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
5387 result.push_back(const_val->ConstantValue());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005388 } else if (type.IsConstantLo()) {
5389 result.push_back(type.IsPreciseConstantLo() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07005390 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
5391 result.push_back(const_val->ConstantValueLo());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005392 } else if (type.IsConstantHi()) {
5393 result.push_back(type.IsPreciseConstantHi() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07005394 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
5395 result.push_back(const_val->ConstantValueHi());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005396 } else if (type.IsIntegralTypes()) {
5397 result.push_back(kIntVReg);
5398 result.push_back(0);
5399 } else if (type.IsFloat()) {
5400 result.push_back(kFloatVReg);
5401 result.push_back(0);
5402 } else if (type.IsLong()) {
5403 result.push_back(kLongLoVReg);
5404 result.push_back(0);
5405 result.push_back(kLongHiVReg);
5406 result.push_back(0);
5407 ++i;
5408 } else if (type.IsDouble()) {
5409 result.push_back(kDoubleLoVReg);
5410 result.push_back(0);
5411 result.push_back(kDoubleHiVReg);
5412 result.push_back(0);
5413 ++i;
5414 } else if (type.IsUndefined() || type.IsConflict() || type.IsHighHalf()) {
5415 result.push_back(kUndefined);
5416 result.push_back(0);
5417 } else {
Ian Rogers7b3ddd22013-02-21 15:19:52 -08005418 CHECK(type.IsNonZeroReferenceTypes());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005419 result.push_back(kReferenceVReg);
5420 result.push_back(0);
5421 }
5422 }
5423 return result;
5424}
5425
Ian Rogersd8f69b02014-09-10 21:43:52 +00005426const RegType& MethodVerifier::DetermineCat1Constant(int32_t value, bool precise) {
Sebastien Hertz849600b2013-12-20 10:28:08 +01005427 if (precise) {
5428 // Precise constant type.
5429 return reg_types_.FromCat1Const(value, true);
5430 } else {
5431 // Imprecise constant type.
5432 if (value < -32768) {
5433 return reg_types_.IntConstant();
5434 } else if (value < -128) {
5435 return reg_types_.ShortConstant();
5436 } else if (value < 0) {
5437 return reg_types_.ByteConstant();
5438 } else if (value == 0) {
5439 return reg_types_.Zero();
5440 } else if (value == 1) {
5441 return reg_types_.One();
5442 } else if (value < 128) {
5443 return reg_types_.PosByteConstant();
5444 } else if (value < 32768) {
5445 return reg_types_.PosShortConstant();
5446 } else if (value < 65536) {
5447 return reg_types_.CharConstant();
5448 } else {
5449 return reg_types_.IntConstant();
5450 }
5451 }
5452}
5453
Elliott Hughes0a1038b2012-06-14 16:24:17 -07005454void MethodVerifier::Init() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08005455 art::verifier::RegTypeCache::Init();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08005456}
5457
Elliott Hughes0a1038b2012-06-14 16:24:17 -07005458void MethodVerifier::Shutdown() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08005459 verifier::RegTypeCache::ShutDown();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08005460}
jeffhaod1224c72012-02-29 13:43:08 -08005461
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07005462void MethodVerifier::VisitStaticRoots(RootVisitor* visitor) {
5463 RegTypeCache::VisitStaticRoots(visitor);
Mathieu Chartier7c438b12014-09-12 17:01:24 -07005464}
5465
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07005466void MethodVerifier::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
5467 reg_types_.VisitRoots(visitor, root_info);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08005468}
5469
Andreas Gampef23f33d2015-06-23 14:18:17 -07005470const RegType& MethodVerifier::FromClass(const char* descriptor,
5471 mirror::Class* klass,
5472 bool precise) {
5473 DCHECK(klass != nullptr);
5474 if (precise && !klass->IsInstantiable() && !klass->IsPrimitive()) {
5475 Fail(VerifyError::VERIFY_ERROR_NO_CLASS) << "Could not create precise reference for "
5476 << "non-instantiable klass " << descriptor;
5477 precise = false;
5478 }
5479 return reg_types_.FromClass(descriptor, klass, precise);
5480}
5481
Ian Rogersd81871c2011-10-03 13:57:23 -07005482} // namespace verifier
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005483} // namespace art