blob: 6b1170b98ee5abd84b5c76566c33216a1d077484 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
Mathieu Chartierc645f1d2014-03-06 18:11:53 -080017#include "method_verifier-inl.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Elliott Hughes1f359b02011-07-17 14:27:17 -070019#include <iostream>
20
Mathieu Chartierc7853442015-03-27 14:35:38 -070021#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070022#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070023#include "base/enums.h"
Elliott Hughes07ed66b2012-12-12 18:34:25 -080024#include "base/logging.h"
Ian Rogers637c65b2013-05-31 11:46:00 -070025#include "base/mutex-inl.h"
Vladimir Marko637ee0b2015-09-04 12:47:41 +010026#include "base/stl_util.h"
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -080027#include "base/systrace.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010028#include "base/time_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070029#include "class_linker.h"
Vladimir Marko2b5eaa22013-12-13 13:59:30 +000030#include "compiler_callbacks.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070031#include "dex_file-inl.h"
Ian Rogersd0583802013-06-01 10:51:46 -070032#include "dex_instruction-inl.h"
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080033#include "dex_instruction_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070034#include "dex_instruction_visitor.h"
Alex Lighteb7c1442015-08-31 13:17:42 -070035#include "experimental_flags.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070036#include "gc/accounting/card_table-inl.h"
Ian Rogers2bcb4a42012-11-08 10:39:18 -080037#include "indenter.h"
Ian Rogers84fa0742011-10-25 18:13:30 -070038#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070039#include "leb128.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040#include "mirror/class.h"
41#include "mirror/class-inl.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070042#include "mirror/dex_cache-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/object-inl.h"
44#include "mirror/object_array-inl.h"
Ian Rogers7b078e82014-09-10 14:44:24 -070045#include "reg_type-inl.h"
Ian Rogers39ebcb82013-05-30 16:57:23 -070046#include "register_line-inl.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070047#include "runtime.h"
Mathieu Chartier590fee92013-09-13 13:46:47 -070048#include "scoped_thread_state_change.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010049#include "utils.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070050#include "handle_scope-inl.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070051
52namespace art {
Ian Rogersd81871c2011-10-03 13:57:23 -070053namespace verifier {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070054
Mathieu Chartier8e219ae2014-08-19 14:29:46 -070055static constexpr bool kTimeVerifyMethod = !kIsDebugBuild;
Andreas Gampeec6e6c12015-11-05 20:39:56 -080056static constexpr bool kDebugVerify = false;
Anwar Ghuloum75a43f12013-08-13 17:22:14 -070057// TODO: Add a constant to method_verifier to turn on verbose logging?
Ian Rogers2c8a8572011-10-24 17:11:36 -070058
Andreas Gampeebf850c2015-08-14 15:37:35 -070059// On VLOG(verifier), should we dump the whole state when we run into a hard failure?
60static constexpr bool kDumpRegLinesOnHardFailureIfVLOG = true;
61
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -080062// We print a warning blurb about "dx --no-optimize" when we find monitor-locking issues. Make
63// sure we only print this once.
64static bool gPrintedDxMonitorText = false;
65
Mathieu Chartierde40d472015-10-15 17:47:48 -070066PcToRegisterLineTable::PcToRegisterLineTable(ScopedArenaAllocator& arena)
67 : register_lines_(arena.Adapter(kArenaAllocVerifier)) {}
68
Ian Rogers7b3ddd22013-02-21 15:19:52 -080069void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InstructionFlags* flags,
Ian Rogersd81871c2011-10-03 13:57:23 -070070 uint32_t insns_size, uint16_t registers_size,
Ian Rogers776ac1f2012-04-13 23:36:36 -070071 MethodVerifier* verifier) {
Ian Rogersd81871c2011-10-03 13:57:23 -070072 DCHECK_GT(insns_size, 0U);
Mathieu Chartierde40d472015-10-15 17:47:48 -070073 register_lines_.resize(insns_size);
Ian Rogersd81871c2011-10-03 13:57:23 -070074 for (uint32_t i = 0; i < insns_size; i++) {
75 bool interesting = false;
76 switch (mode) {
77 case kTrackRegsAll:
78 interesting = flags[i].IsOpcode();
79 break;
Sameer Abu Asal02c42232013-04-30 12:09:45 -070080 case kTrackCompilerInterestPoints:
Brian Carlstrom02c8cc62013-07-18 15:54:44 -070081 interesting = flags[i].IsCompileTimeInfoPoint() || flags[i].IsBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -070082 break;
83 case kTrackRegsBranches:
84 interesting = flags[i].IsBranchTarget();
85 break;
86 default:
87 break;
88 }
89 if (interesting) {
Mathieu Chartierde40d472015-10-15 17:47:48 -070090 register_lines_[i].reset(RegisterLine::Create(registers_size, verifier));
Ian Rogersd0fbd852013-09-24 18:17:04 -070091 }
92 }
93}
94
Mathieu Chartierde40d472015-10-15 17:47:48 -070095PcToRegisterLineTable::~PcToRegisterLineTable() {}
Ian Rogersd81871c2011-10-03 13:57:23 -070096
Andreas Gampe7c038102014-10-27 20:08:46 -070097// Note: returns true on failure.
98ALWAYS_INLINE static inline bool FailOrAbort(MethodVerifier* verifier, bool condition,
99 const char* error_msg, uint32_t work_insn_idx) {
100 if (kIsDebugBuild) {
101 // In a debug build, abort if the error condition is wrong.
102 DCHECK(condition) << error_msg << work_insn_idx;
103 } else {
104 // In a non-debug build, just fail the class.
105 if (!condition) {
106 verifier->Fail(VERIFY_ERROR_BAD_CLASS_HARD) << error_msg << work_insn_idx;
107 return true;
108 }
109 }
110
111 return false;
112}
113
Stephen Kyle7e541c92014-12-17 17:10:02 +0000114static void SafelyMarkAllRegistersAsConflicts(MethodVerifier* verifier, RegisterLine* reg_line) {
Andreas Gampef10b6e12015-08-12 10:48:12 -0700115 if (verifier->IsInstanceConstructor()) {
Stephen Kyle7e541c92014-12-17 17:10:02 +0000116 // Before we mark all regs as conflicts, check that we don't have an uninitialized this.
117 reg_line->CheckConstructorReturn(verifier);
118 }
119 reg_line->MarkAllRegistersAsConflicts(verifier);
120}
121
Ian Rogers7b078e82014-09-10 14:44:24 -0700122MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
123 mirror::Class* klass,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800124 CompilerCallbacks* callbacks,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700125 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700126 HardFailLogMode log_level,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700127 std::string* error) {
jeffhaobdb76512011-09-07 11:43:16 -0700128 if (klass->IsVerified()) {
jeffhaof1e6b7c2012-06-05 18:33:30 -0700129 return kNoFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700130 }
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800131 bool early_failure = false;
132 std::string failure_message;
Mathieu Chartierf8322842014-05-16 10:59:25 -0700133 const DexFile& dex_file = klass->GetDexFile();
134 const DexFile::ClassDef* class_def = klass->GetClassDef();
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800135 mirror::Class* super = klass->GetSuperClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -0700136 std::string temp;
Ian Rogers7b078e82014-09-10 14:44:24 -0700137 if (super == nullptr && strcmp("Ljava/lang/Object;", klass->GetDescriptor(&temp)) != 0) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800138 early_failure = true;
139 failure_message = " that has no super class";
Ian Rogers7b078e82014-09-10 14:44:24 -0700140 } else if (super != nullptr && super->IsFinal()) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800141 early_failure = true;
142 failure_message = " that attempts to sub-class final class " + PrettyDescriptor(super);
Ian Rogers7b078e82014-09-10 14:44:24 -0700143 } else if (class_def == nullptr) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800144 early_failure = true;
145 failure_message = " that isn't present in dex file " + dex_file.GetLocation();
146 }
147 if (early_failure) {
148 *error = "Verifier rejected class " + PrettyDescriptor(klass) + failure_message;
Andreas Gampe53e32d12015-12-09 21:03:23 -0800149 if (callbacks != nullptr) {
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800150 ClassReference ref(&dex_file, klass->GetDexClassDefIndex());
Andreas Gampe53e32d12015-12-09 21:03:23 -0800151 callbacks->ClassRejected(ref);
Jeff Hao2d7e5aa2013-12-13 17:39:59 -0800152 }
jeffhaof1e6b7c2012-06-05 18:33:30 -0700153 return kHardFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700154 }
Ian Rogers7b078e82014-09-10 14:44:24 -0700155 StackHandleScope<2> hs(self);
Mathieu Chartierf8322842014-05-16 10:59:25 -0700156 Handle<mirror::DexCache> dex_cache(hs.NewHandle(klass->GetDexCache()));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700157 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(klass->GetClassLoader()));
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800158 return VerifyClass(self,
159 &dex_file,
160 dex_cache,
161 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100162 *class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800163 callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800164 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700165 log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800166 error);
167}
168
169template <bool kDirect>
170static bool HasNextMethod(ClassDataItemIterator* it) {
171 return kDirect ? it->HasNextDirectMethod() : it->HasNextVirtualMethod();
172}
173
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800174static MethodVerifier::FailureKind FailureKindMax(MethodVerifier::FailureKind fk1,
175 MethodVerifier::FailureKind fk2) {
176 static_assert(MethodVerifier::FailureKind::kNoFailure <
177 MethodVerifier::FailureKind::kSoftFailure
178 && MethodVerifier::FailureKind::kSoftFailure <
179 MethodVerifier::FailureKind::kHardFailure,
180 "Unexpected FailureKind order");
181 return std::max(fk1, fk2);
182}
183
184void MethodVerifier::FailureData::Merge(const MethodVerifier::FailureData& fd) {
185 kind = FailureKindMax(kind, fd.kind);
186 types |= fd.types;
187}
188
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800189template <bool kDirect>
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800190MethodVerifier::FailureData MethodVerifier::VerifyMethods(Thread* self,
191 ClassLinker* linker,
192 const DexFile* dex_file,
David Brazdil15fc7292016-09-02 14:13:18 +0100193 const DexFile::ClassDef& class_def,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800194 ClassDataItemIterator* it,
195 Handle<mirror::DexCache> dex_cache,
196 Handle<mirror::ClassLoader> class_loader,
197 CompilerCallbacks* callbacks,
198 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700199 HardFailLogMode log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800200 bool need_precise_constants,
201 std::string* error_string) {
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800202 DCHECK(it != nullptr);
203
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800204 MethodVerifier::FailureData failure_data;
205
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800206 int64_t previous_method_idx = -1;
207 while (HasNextMethod<kDirect>(it)) {
208 self->AllowThreadSuspension();
209 uint32_t method_idx = it->GetMemberIndex();
210 if (method_idx == previous_method_idx) {
211 // smali can create dex files with two encoded_methods sharing the same method_idx
212 // http://code.google.com/p/smali/issues/detail?id=119
213 it->Next();
214 continue;
215 }
216 previous_method_idx = method_idx;
David Brazdil15fc7292016-09-02 14:13:18 +0100217 InvokeType type = it->GetMethodInvokeType(class_def);
Andreas Gampe42ef8ab2015-12-03 17:27:32 -0800218 ArtMethod* method = linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800219 *dex_file, method_idx, dex_cache, class_loader, nullptr, type);
220 if (method == nullptr) {
221 DCHECK(self->IsExceptionPending());
222 // We couldn't resolve the method, but continue regardless.
223 self->ClearException();
224 } else {
225 DCHECK(method->GetDeclaringClassUnchecked() != nullptr) << type;
226 }
227 StackHandleScope<1> hs(self);
228 std::string hard_failure_msg;
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800229 MethodVerifier::FailureData result = VerifyMethod(self,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800230 method_idx,
231 dex_file,
232 dex_cache,
233 class_loader,
234 class_def,
235 it->GetMethodCodeItem(),
236 method,
237 it->GetMethodAccessFlags(),
Andreas Gampe53e32d12015-12-09 21:03:23 -0800238 callbacks,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800239 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700240 log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800241 need_precise_constants,
242 &hard_failure_msg);
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800243 if (result.kind == kHardFailure) {
244 if (failure_data.kind == kHardFailure) {
245 // If we logged an error before, we need a newline.
246 *error_string += "\n";
247 } else {
248 // If we didn't log a hard failure before, print the header of the message.
249 *error_string += "Verifier rejected class ";
David Brazdil15fc7292016-09-02 14:13:18 +0100250 *error_string += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800251 *error_string += ":";
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800252 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800253 *error_string += " ";
254 *error_string += hard_failure_msg;
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800255 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800256 failure_data.Merge(result);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800257 it->Next();
258 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800259
260 return failure_data;
Shih-wei Liao371814f2011-10-27 16:52:10 -0700261}
262
Ian Rogers7b078e82014-09-10 14:44:24 -0700263MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
264 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700265 Handle<mirror::DexCache> dex_cache,
266 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100267 const DexFile::ClassDef& class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800268 CompilerCallbacks* callbacks,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700269 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700270 HardFailLogMode log_level,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700271 std::string* error) {
Mathieu Chartier32ce2ad2016-03-04 14:58:03 -0800272 ScopedTrace trace(__FUNCTION__);
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700273
274 // A class must not be abstract and final.
David Brazdil15fc7292016-09-02 14:13:18 +0100275 if ((class_def.access_flags_ & (kAccAbstract | kAccFinal)) == (kAccAbstract | kAccFinal)) {
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700276 *error = "Verifier rejected class ";
David Brazdil15fc7292016-09-02 14:13:18 +0100277 *error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
Andreas Gampe507cc6f2015-06-19 22:58:47 -0700278 *error += ": class is abstract and final.";
279 return kHardFailure;
280 }
281
David Brazdil15fc7292016-09-02 14:13:18 +0100282 const uint8_t* class_data = dex_file->GetClassData(class_def);
Ian Rogers7b078e82014-09-10 14:44:24 -0700283 if (class_data == nullptr) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700284 // empty class, probably a marker interface
jeffhaof1e6b7c2012-06-05 18:33:30 -0700285 return kNoFailure;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700286 }
jeffhaof56197c2012-03-05 18:01:54 -0800287 ClassDataItemIterator it(*dex_file, class_data);
288 while (it.HasNextStaticField() || it.HasNextInstanceField()) {
289 it.Next();
290 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700291 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800292 // Direct methods.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800293 MethodVerifier::FailureData data1 = VerifyMethods<true>(self,
294 linker,
295 dex_file,
296 class_def,
297 &it,
298 dex_cache,
299 class_loader,
300 callbacks,
301 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700302 log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800303 false /* need precise constants */,
304 error);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800305 // Virtual methods.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800306 MethodVerifier::FailureData data2 = VerifyMethods<false>(self,
307 linker,
308 dex_file,
309 class_def,
310 &it,
311 dex_cache,
312 class_loader,
313 callbacks,
314 allow_soft_failures,
Andreas Gampe7fe30232016-03-25 16:58:00 -0700315 log_level,
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800316 false /* need precise constants */,
317 error);
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800318
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800319 data1.Merge(data2);
320
321 if (data1.kind == kNoFailure) {
jeffhaof1e6b7c2012-06-05 18:33:30 -0700322 return kNoFailure;
323 } else {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800324 if ((data1.types & VERIFY_ERROR_LOCKING) != 0) {
325 // Print a warning about expected slow-down. Use a string temporary to print one contiguous
326 // warning.
327 std::string tmp =
328 StringPrintf("Class %s failed lock verification and will run slower.",
David Brazdil15fc7292016-09-02 14:13:18 +0100329 PrettyDescriptor(dex_file->GetClassDescriptor(class_def)).c_str());
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800330 if (!gPrintedDxMonitorText) {
331 tmp = tmp + "\nCommon causes for lock verification issues are non-optimized dex code\n"
332 "and incorrect proguard optimizations.";
333 gPrintedDxMonitorText = true;
334 }
335 LOG(WARNING) << tmp;
336 }
337 return data1.kind;
jeffhaof1e6b7c2012-06-05 18:33:30 -0700338 }
jeffhaof56197c2012-03-05 18:01:54 -0800339}
340
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700341static bool IsLargeMethod(const DexFile::CodeItem* const code_item) {
Andreas Gampe3c651fc2015-05-21 14:06:46 -0700342 if (code_item == nullptr) {
343 return false;
344 }
345
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700346 uint16_t registers_size = code_item->registers_size_;
347 uint32_t insns_size = code_item->insns_size_in_code_units_;
348
349 return registers_size * insns_size > 4*1024*1024;
350}
351
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800352MethodVerifier::FailureData MethodVerifier::VerifyMethod(Thread* self,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800353 uint32_t method_idx,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800354 const DexFile* dex_file,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700355 Handle<mirror::DexCache> dex_cache,
356 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100357 const DexFile::ClassDef& class_def,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800358 const DexFile::CodeItem* code_item,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700359 ArtMethod* method,
Jeff Haoee988952013-04-16 14:23:47 -0700360 uint32_t method_access_flags,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800361 CompilerCallbacks* callbacks,
Ian Rogers46960fe2014-05-23 10:43:43 -0700362 bool allow_soft_failures,
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700363 HardFailLogMode log_level,
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800364 bool need_precise_constants,
365 std::string* hard_failure_msg) {
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800366 MethodVerifier::FailureData result;
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700367 uint64_t start_ns = kTimeVerifyMethod ? NanoTime() : 0;
Ian Rogersc8982582012-09-07 16:53:25 -0700368
Andreas Gampebf9611f2016-03-25 16:58:00 -0700369 MethodVerifier verifier(self,
370 dex_file,
371 dex_cache,
372 class_loader,
373 class_def,
374 code_item,
375 method_idx,
376 method,
377 method_access_flags,
378 true /* can_load_classes */,
379 allow_soft_failures,
380 need_precise_constants,
381 false /* verify to dump */,
382 true /* allow_thread_suspension */);
Ian Rogers46960fe2014-05-23 10:43:43 -0700383 if (verifier.Verify()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700384 // Verification completed, however failures may be pending that didn't cause the verification
385 // to hard fail.
Ian Rogers46960fe2014-05-23 10:43:43 -0700386 CHECK(!verifier.have_pending_hard_failure_);
Andreas Gampe53e32d12015-12-09 21:03:23 -0800387
388 if (code_item != nullptr && callbacks != nullptr) {
389 // Let the interested party know that the method was verified.
390 callbacks->MethodVerified(&verifier);
391 }
392
Ian Rogers46960fe2014-05-23 10:43:43 -0700393 if (verifier.failures_.size() != 0) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700394 if (VLOG_IS_ON(verifier)) {
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800395 verifier.DumpFailures(VLOG_STREAM(verifier) << "Soft verification failures in "
396 << PrettyMethod(method_idx, *dex_file) << "\n");
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700397 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800398 result.kind = kSoftFailure;
Nicolas Geoffray250a3782016-04-20 16:27:53 +0100399 if (method != nullptr &&
400 !CanCompilerHandleVerificationFailure(verifier.encountered_failure_types_)) {
401 method->SetAccessFlags(method->GetAccessFlags() | kAccCompileDontBother);
402 }
403 }
Andreas Gampe56fdd0e2016-04-28 14:56:54 -0700404 if (method != nullptr) {
405 if (verifier.HasInstructionThatWillThrow()) {
406 method->SetAccessFlags(method->GetAccessFlags() | kAccCompileDontBother);
407 }
408 if ((verifier.encountered_failure_types_ & VerifyError::VERIFY_ERROR_LOCKING) != 0) {
409 method->SetAccessFlags(method->GetAccessFlags() | kAccMustCountLocks);
410 }
jeffhaof56197c2012-03-05 18:01:54 -0800411 }
412 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700413 // Bad method data.
Ian Rogers46960fe2014-05-23 10:43:43 -0700414 CHECK_NE(verifier.failures_.size(), 0U);
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700415
416 if (UNLIKELY(verifier.have_pending_experimental_failure_)) {
417 // Failed due to being forced into interpreter. This is ok because
418 // we just want to skip verification.
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800419 result.kind = kSoftFailure;
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700420 } else {
421 CHECK(verifier.have_pending_hard_failure_);
Andreas Gampe7fe30232016-03-25 16:58:00 -0700422 if (VLOG_IS_ON(verifier)) {
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700423 log_level = std::max(HardFailLogMode::kLogVerbose, log_level);
Andreas Gampe7fe30232016-03-25 16:58:00 -0700424 }
Andreas Gampe5fd66d02016-09-12 20:22:19 -0700425 if (log_level >= HardFailLogMode::kLogVerbose) {
426 LogSeverity severity;
427 switch (log_level) {
428 case HardFailLogMode::kLogVerbose:
429 severity = LogSeverity::VERBOSE;
430 break;
431 case HardFailLogMode::kLogWarning:
432 severity = LogSeverity::WARNING;
433 break;
434 case HardFailLogMode::kLogInternalFatal:
435 severity = LogSeverity::INTERNAL_FATAL;
436 break;
437 default:
438 LOG(FATAL) << "Unsupported log-level " << static_cast<uint32_t>(log_level);
439 UNREACHABLE();
440 }
441 verifier.DumpFailures(LOG(severity) << "Verification error in "
442 << PrettyMethod(method_idx, *dex_file) << "\n");
Andreas Gampeec6e6c12015-11-05 20:39:56 -0800443 }
444 if (hard_failure_msg != nullptr) {
445 CHECK(!verifier.failure_messages_.empty());
446 *hard_failure_msg =
447 verifier.failure_messages_[verifier.failure_messages_.size() - 1]->str();
448 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800449 result.kind = kHardFailure;
Andreas Gampe53e32d12015-12-09 21:03:23 -0800450
451 if (callbacks != nullptr) {
452 // Let the interested party know that we failed the class.
David Brazdil15fc7292016-09-02 14:13:18 +0100453 ClassReference ref(dex_file, dex_file->GetIndexForClassDef(class_def));
Andreas Gampe53e32d12015-12-09 21:03:23 -0800454 callbacks->ClassRejected(ref);
455 }
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700456 }
Andreas Gampe53e32d12015-12-09 21:03:23 -0800457 if (VLOG_IS_ON(verifier)) {
Ian Rogers46960fe2014-05-23 10:43:43 -0700458 std::cout << "\n" << verifier.info_messages_.str();
459 verifier.Dump(std::cout);
jeffhaof56197c2012-03-05 18:01:54 -0800460 }
jeffhaof56197c2012-03-05 18:01:54 -0800461 }
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700462 if (kTimeVerifyMethod) {
463 uint64_t duration_ns = NanoTime() - start_ns;
464 if (duration_ns > MsToNs(100)) {
465 LOG(WARNING) << "Verification of " << PrettyMethod(method_idx, *dex_file)
Andreas Gampea4f5bf62015-05-18 20:50:12 -0700466 << " took " << PrettyDuration(duration_ns)
467 << (IsLargeMethod(code_item) ? " (large method)" : "");
Mathieu Chartier8e219ae2014-08-19 14:29:46 -0700468 }
Ian Rogersc8982582012-09-07 16:53:25 -0700469 }
Andreas Gampe9fcfb8a2016-02-04 20:52:54 -0800470 result.types = verifier.encountered_failure_types_;
Ian Rogersc8982582012-09-07 16:53:25 -0700471 return result;
jeffhaof56197c2012-03-05 18:01:54 -0800472}
473
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100474MethodVerifier* MethodVerifier::VerifyMethodAndDump(Thread* self,
475 VariableIndentationOutputStream* vios,
476 uint32_t dex_method_idx,
477 const DexFile* dex_file,
478 Handle<mirror::DexCache> dex_cache,
479 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100480 const DexFile::ClassDef& class_def,
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100481 const DexFile::CodeItem* code_item,
482 ArtMethod* method,
483 uint32_t method_access_flags) {
Andreas Gampebf9611f2016-03-25 16:58:00 -0700484 MethodVerifier* verifier = new MethodVerifier(self,
485 dex_file,
486 dex_cache,
487 class_loader,
488 class_def,
489 code_item,
490 dex_method_idx,
491 method,
492 method_access_flags,
493 true /* can_load_classes */,
494 true /* allow_soft_failures */,
495 true /* need_precise_constants */,
496 true /* verify_to_dump */,
497 true /* allow_thread_suspension */);
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700498 verifier->Verify();
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100499 verifier->DumpFailures(vios->Stream());
500 vios->Stream() << verifier->info_messages_.str();
Andreas Gampe5cbcde22014-09-16 14:59:49 -0700501 // Only dump and return if no hard failures. Otherwise the verifier may be not fully initialized
502 // and querying any info is dangerous/can abort.
503 if (verifier->have_pending_hard_failure_) {
504 delete verifier;
505 return nullptr;
506 } else {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +0100507 verifier->Dump(vios);
Andreas Gampe5cbcde22014-09-16 14:59:49 -0700508 return verifier;
509 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800510}
511
Ian Rogers7b078e82014-09-10 14:44:24 -0700512MethodVerifier::MethodVerifier(Thread* self,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800513 const DexFile* dex_file,
514 Handle<mirror::DexCache> dex_cache,
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700515 Handle<mirror::ClassLoader> class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100516 const DexFile::ClassDef& class_def,
Andreas Gampe53e32d12015-12-09 21:03:23 -0800517 const DexFile::CodeItem* code_item,
518 uint32_t dex_method_idx,
519 ArtMethod* method,
520 uint32_t method_access_flags,
521 bool can_load_classes,
522 bool allow_soft_failures,
523 bool need_precise_constants,
524 bool verify_to_dump,
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800525 bool allow_thread_suspension)
Ian Rogers7b078e82014-09-10 14:44:24 -0700526 : self_(self),
Mathieu Chartierde40d472015-10-15 17:47:48 -0700527 arena_stack_(Runtime::Current()->GetArenaPool()),
528 arena_(&arena_stack_),
529 reg_types_(can_load_classes, arena_),
530 reg_table_(arena_),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700531 work_insn_idx_(DexFile::kDexNoIndex),
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800532 dex_method_idx_(dex_method_idx),
Ian Rogers637c65b2013-05-31 11:46:00 -0700533 mirror_method_(method),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700534 method_access_flags_(method_access_flags),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700535 return_type_(nullptr),
jeffhaof56197c2012-03-05 18:01:54 -0800536 dex_file_(dex_file),
537 dex_cache_(dex_cache),
538 class_loader_(class_loader),
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700539 class_def_(class_def),
jeffhaof56197c2012-03-05 18:01:54 -0800540 code_item_(code_item),
Ian Rogers7b078e82014-09-10 14:44:24 -0700541 declaring_class_(nullptr),
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700542 interesting_dex_pc_(-1),
Ian Rogersfc0e94b2013-09-23 23:51:32 -0700543 monitor_enter_dex_pcs_(nullptr),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700544 have_pending_hard_failure_(false),
jeffhaofaf459e2012-08-31 15:32:47 -0700545 have_pending_runtime_throw_failure_(false),
Igor Murashkin4d7b75f2015-07-21 17:03:36 -0700546 have_pending_experimental_failure_(false),
Andreas Gamped12e7822015-06-25 10:26:40 -0700547 have_any_pending_runtime_throw_failure_(false),
jeffhaof56197c2012-03-05 18:01:54 -0800548 new_instance_count_(0),
Elliott Hughes80537bb2013-01-04 16:37:26 -0800549 monitor_enter_count_(0),
Andreas Gampe0760a812015-08-26 17:12:51 -0700550 encountered_failure_types_(0),
Jeff Haoee988952013-04-16 14:23:47 -0700551 can_load_classes_(can_load_classes),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200552 allow_soft_failures_(allow_soft_failures),
Ian Rogers46960fe2014-05-23 10:43:43 -0700553 need_precise_constants_(need_precise_constants),
Sebastien Hertz4d4adb12013-07-24 16:14:19 +0200554 has_check_casts_(false),
Andreas Gampe2ed8def2014-08-28 14:41:02 -0700555 has_virtual_or_interface_invokes_(false),
Mathieu Chartier4306ef82014-12-19 18:41:47 -0800556 verify_to_dump_(verify_to_dump),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700557 allow_thread_suspension_(allow_thread_suspension),
Andreas Gampee6215c02015-08-31 18:54:38 -0700558 is_constructor_(false),
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700559 link_(nullptr) {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700560 self->PushVerifier(this);
jeffhaof56197c2012-03-05 18:01:54 -0800561}
562
Mathieu Chartier590fee92013-09-13 13:46:47 -0700563MethodVerifier::~MethodVerifier() {
Mathieu Chartierd0ad2ee2015-03-31 14:59:59 -0700564 Thread::Current()->PopVerifier(this);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700565 STLDeleteElements(&failure_messages_);
566}
567
Mathieu Chartiere401d142015-04-22 13:56:20 -0700568void MethodVerifier::FindLocksAtDexPc(ArtMethod* m, uint32_t dex_pc,
Ian Rogers46960fe2014-05-23 10:43:43 -0700569 std::vector<uint32_t>* monitor_enter_dex_pcs) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700570 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700571 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
572 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700573 MethodVerifier verifier(hs.Self(),
574 m->GetDexFile(),
575 dex_cache,
576 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100577 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700578 m->GetCodeItem(),
579 m->GetDexMethodIndex(),
580 m,
581 m->GetAccessFlags(),
582 false /* can_load_classes */,
583 true /* allow_soft_failures */,
584 false /* need_precise_constants */,
585 false /* verify_to_dump */,
586 false /* allow_thread_suspension */);
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700587 verifier.interesting_dex_pc_ = dex_pc;
Ian Rogers46960fe2014-05-23 10:43:43 -0700588 verifier.monitor_enter_dex_pcs_ = monitor_enter_dex_pcs;
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700589 verifier.FindLocksAtDexPc();
590}
591
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700592static bool HasMonitorEnterInstructions(const DexFile::CodeItem* const code_item) {
593 const Instruction* inst = Instruction::At(code_item->insns_);
594
595 uint32_t insns_size = code_item->insns_size_in_code_units_;
596 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
597 if (inst->Opcode() == Instruction::MONITOR_ENTER) {
598 return true;
599 }
600
601 dex_pc += inst->SizeInCodeUnits();
602 inst = inst->Next();
603 }
604
605 return false;
606}
607
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700608void MethodVerifier::FindLocksAtDexPc() {
Ian Rogers7b078e82014-09-10 14:44:24 -0700609 CHECK(monitor_enter_dex_pcs_ != nullptr);
610 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700611
Andreas Gampecb3c08f2014-09-18 13:16:38 -0700612 // Quick check whether there are any monitor_enter instructions at all.
613 if (!HasMonitorEnterInstructions(code_item_)) {
614 return;
615 }
616
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700617 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
618 // verification. In practice, the phase we want relies on data structures set up by all the
619 // earlier passes, so we just run the full method verification and bail out early when we've
620 // got what we wanted.
621 Verify();
622}
623
Mathieu Chartiere401d142015-04-22 13:56:20 -0700624ArtField* MethodVerifier::FindAccessedFieldAtDexPc(ArtMethod* m, uint32_t dex_pc) {
625 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700626 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
627 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700628 MethodVerifier verifier(hs.Self(),
629 m->GetDexFile(),
630 dex_cache,
631 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100632 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700633 m->GetCodeItem(),
634 m->GetDexMethodIndex(),
635 m,
636 m->GetAccessFlags(),
637 true /* can_load_classes */,
638 true /* allow_soft_failures */,
639 false /* need_precise_constants */,
640 false /* verify_to_dump */,
641 true /* allow_thread_suspension */);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200642 return verifier.FindAccessedFieldAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200643}
644
Mathieu Chartierc7853442015-03-27 14:35:38 -0700645ArtField* MethodVerifier::FindAccessedFieldAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700646 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200647
648 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
649 // verification. In practice, the phase we want relies on data structures set up by all the
650 // earlier passes, so we just run the full method verification and bail out early when we've
651 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200652 bool success = Verify();
653 if (!success) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700654 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200655 }
656 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700657 if (register_line == nullptr) {
Ian Rogers9bc54402014-04-17 16:40:01 -0700658 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200659 }
660 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
661 return GetQuickFieldAccess(inst, register_line);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200662}
663
Mathieu Chartiere401d142015-04-22 13:56:20 -0700664ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(ArtMethod* m, uint32_t dex_pc) {
665 StackHandleScope<2> hs(Thread::Current());
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700666 Handle<mirror::DexCache> dex_cache(hs.NewHandle(m->GetDexCache()));
667 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(m->GetClassLoader()));
Andreas Gampebf9611f2016-03-25 16:58:00 -0700668 MethodVerifier verifier(hs.Self(),
669 m->GetDexFile(),
670 dex_cache,
671 class_loader,
David Brazdil15fc7292016-09-02 14:13:18 +0100672 m->GetClassDef(),
Andreas Gampebf9611f2016-03-25 16:58:00 -0700673 m->GetCodeItem(),
674 m->GetDexMethodIndex(),
675 m,
676 m->GetAccessFlags(),
677 true /* can_load_classes */,
678 true /* allow_soft_failures */,
679 false /* need_precise_constants */,
680 false /* verify_to_dump */,
681 true /* allow_thread_suspension */);
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200682 return verifier.FindInvokedMethodAtDexPc(dex_pc);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200683}
684
Mathieu Chartiere401d142015-04-22 13:56:20 -0700685ArtMethod* MethodVerifier::FindInvokedMethodAtDexPc(uint32_t dex_pc) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700686 CHECK(code_item_ != nullptr); // This only makes sense for methods with code.
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200687
688 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
689 // verification. In practice, the phase we want relies on data structures set up by all the
690 // earlier passes, so we just run the full method verification and bail out early when we've
691 // got what we wanted.
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200692 bool success = Verify();
693 if (!success) {
Ian Rogers7b078e82014-09-10 14:44:24 -0700694 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200695 }
696 RegisterLine* register_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -0700697 if (register_line == nullptr) {
698 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +0200699 }
700 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
701 const bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Mathieu Chartier091d2382015-03-06 10:59:06 -0800702 return GetQuickInvokedMethod(inst, register_line, is_range, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200703}
704
Ian Rogersad0b3a32012-04-16 14:50:24 -0700705bool MethodVerifier::Verify() {
Andreas Gampee6215c02015-08-31 18:54:38 -0700706 // Some older code doesn't correctly mark constructors as such. Test for this case by looking at
707 // the name.
708 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
709 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
710 bool instance_constructor_by_name = strcmp("<init>", method_name) == 0;
711 bool static_constructor_by_name = strcmp("<clinit>", method_name) == 0;
712 bool constructor_by_name = instance_constructor_by_name || static_constructor_by_name;
713 // Check that only constructors are tagged, and check for bad code that doesn't tag constructors.
714 if ((method_access_flags_ & kAccConstructor) != 0) {
715 if (!constructor_by_name) {
716 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
717 << "method is marked as constructor, but not named accordingly";
jeffhaobdb76512011-09-07 11:43:16 -0700718 return false;
Andreas Gampee6215c02015-08-31 18:54:38 -0700719 }
720 is_constructor_ = true;
721 } else if (constructor_by_name) {
722 LOG(WARNING) << "Method " << PrettyMethod(dex_method_idx_, *dex_file_)
723 << " not marked as constructor.";
724 is_constructor_ = true;
725 }
726 // If it's a constructor, check whether IsStatic() matches the name.
727 // This should have been rejected by the dex file verifier. Only do in debug build.
728 if (kIsDebugBuild) {
729 if (IsConstructor()) {
730 if (IsStatic() ^ static_constructor_by_name) {
731 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
732 << "constructor name doesn't match static flag";
733 return false;
734 }
jeffhaobdb76512011-09-07 11:43:16 -0700735 }
jeffhaobdb76512011-09-07 11:43:16 -0700736 }
Andreas Gampee6215c02015-08-31 18:54:38 -0700737
738 // Methods may only have one of public/protected/private.
739 // This should have been rejected by the dex file verifier. Only do in debug build.
740 if (kIsDebugBuild) {
741 size_t access_mod_count =
742 (((method_access_flags_ & kAccPublic) == 0) ? 0 : 1) +
743 (((method_access_flags_ & kAccProtected) == 0) ? 0 : 1) +
744 (((method_access_flags_ & kAccPrivate) == 0) ? 0 : 1);
745 if (access_mod_count > 1) {
746 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "method has more than one of public/protected/private";
747 return false;
748 }
749 }
750
751 // If there aren't any instructions, make sure that's expected, then exit successfully.
752 if (code_item_ == nullptr) {
Andreas Gampe76ed99d2016-03-28 18:31:29 -0700753 // Only native or abstract methods may not have code.
754 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) {
755 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "zero-length code in concrete non-native method";
756 return false;
757 }
758
Andreas Gampee6215c02015-08-31 18:54:38 -0700759 // This should have been rejected by the dex file verifier. Only do in debug build.
Andreas Gampe76ed99d2016-03-28 18:31:29 -0700760 // Note: the above will also be rejected in the dex file verifier, starting in dex version 37.
Andreas Gampee6215c02015-08-31 18:54:38 -0700761 if (kIsDebugBuild) {
Andreas Gampee6215c02015-08-31 18:54:38 -0700762 if ((method_access_flags_ & kAccAbstract) != 0) {
763 // Abstract methods are not allowed to have the following flags.
764 static constexpr uint32_t kForbidden =
765 kAccPrivate |
766 kAccStatic |
767 kAccFinal |
768 kAccNative |
769 kAccStrict |
770 kAccSynchronized;
771 if ((method_access_flags_ & kForbidden) != 0) {
772 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
773 << "method can't be abstract and private/static/final/native/strict/synchronized";
774 return false;
775 }
776 }
David Brazdil15fc7292016-09-02 14:13:18 +0100777 if ((class_def_.GetJavaAccessFlags() & kAccInterface) != 0) {
Alex Lighteb7c1442015-08-31 13:17:42 -0700778 // Interface methods must be public and abstract (if default methods are disabled).
Neil Fuller9724c632016-01-07 15:42:47 +0000779 uint32_t kRequired = kAccPublic;
Alex Lighteb7c1442015-08-31 13:17:42 -0700780 if ((method_access_flags_ & kRequired) != kRequired) {
Neil Fuller9724c632016-01-07 15:42:47 +0000781 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface methods must be public";
Andreas Gampee6215c02015-08-31 18:54:38 -0700782 return false;
783 }
784 // In addition to the above, interface methods must not be protected.
785 static constexpr uint32_t kForbidden = kAccProtected;
786 if ((method_access_flags_ & kForbidden) != 0) {
787 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface methods can't be protected";
788 return false;
789 }
790 }
791 // We also don't allow constructors to be abstract or native.
792 if (IsConstructor()) {
793 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "constructors can't be abstract or native";
794 return false;
795 }
796 }
797 return true;
798 }
799
800 // This should have been rejected by the dex file verifier. Only do in debug build.
801 if (kIsDebugBuild) {
802 // When there's code, the method must not be native or abstract.
803 if ((method_access_flags_ & (kAccNative | kAccAbstract)) != 0) {
804 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "non-zero-length code in abstract or native method";
805 return false;
806 }
807
David Brazdil15fc7292016-09-02 14:13:18 +0100808 if ((class_def_.GetJavaAccessFlags() & kAccInterface) != 0) {
Alex Lighteb7c1442015-08-31 13:17:42 -0700809 // Interfaces may always have static initializers for their fields. If we are running with
810 // default methods enabled we also allow other public, static, non-final methods to have code.
811 // Otherwise that is the only type of method allowed.
Alex Light0db36b32015-10-27 14:06:34 -0700812 if (!(IsConstructor() && IsStatic())) {
Neil Fuller9724c632016-01-07 15:42:47 +0000813 if (IsInstanceConstructor()) {
814 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interfaces may not have non-static constructor";
815 return false;
816 } else if (method_access_flags_ & kAccFinal) {
817 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interfaces may not have final methods";
818 return false;
Alex Lightb55f1ac2016-04-12 15:50:55 -0700819 } else {
820 uint32_t access_flag_options = kAccPublic;
821 if (dex_file_->GetVersion() >= DexFile::kDefaultMethodsVersion) {
822 access_flag_options |= kAccPrivate;
823 }
824 if (!(method_access_flags_ & access_flag_options)) {
825 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
826 << "interfaces may not have protected or package-private members";
827 return false;
828 }
Alex Lighteb7c1442015-08-31 13:17:42 -0700829 }
Andreas Gampee6215c02015-08-31 18:54:38 -0700830 }
831 }
832
833 // Instance constructors must not be synchronized.
834 if (IsInstanceConstructor()) {
835 static constexpr uint32_t kForbidden = kAccSynchronized;
836 if ((method_access_flags_ & kForbidden) != 0) {
837 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "constructors can't be synchronized";
838 return false;
839 }
840 }
841 }
842
Ian Rogersd81871c2011-10-03 13:57:23 -0700843 // Sanity-check the register counts. ins + locals = registers, so make sure that ins <= registers.
844 if (code_item_->ins_size_ > code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700845 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad register counts (ins=" << code_item_->ins_size_
846 << " regs=" << code_item_->registers_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700847 return false;
jeffhaobdb76512011-09-07 11:43:16 -0700848 }
Alex Lighteb7c1442015-08-31 13:17:42 -0700849
Ian Rogersd81871c2011-10-03 13:57:23 -0700850 // Allocate and initialize an array to hold instruction data.
Mathieu Chartierde40d472015-10-15 17:47:48 -0700851 insn_flags_.reset(arena_.AllocArray<InstructionFlags>(code_item_->insns_size_in_code_units_));
852 DCHECK(insn_flags_ != nullptr);
853 std::uninitialized_fill_n(insn_flags_.get(),
854 code_item_->insns_size_in_code_units_,
855 InstructionFlags());
Ian Rogersd81871c2011-10-03 13:57:23 -0700856 // Run through the instructions and see if the width checks out.
857 bool result = ComputeWidthsAndCountOps();
858 // Flag instructions guarded by a "try" block and check exception handlers.
859 result = result && ScanTryCatchBlocks();
860 // Perform static instruction verification.
861 result = result && VerifyInstructions();
Ian Rogersad0b3a32012-04-16 14:50:24 -0700862 // Perform code-flow analysis and return.
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000863 result = result && VerifyCodeFlow();
Andreas Gampe53e32d12015-12-09 21:03:23 -0800864
Vladimir Marko2b5eaa22013-12-13 13:59:30 +0000865 return result;
jeffhaoba5ebb92011-08-25 17:24:37 -0700866}
867
Ian Rogers776ac1f2012-04-13 23:36:36 -0700868std::ostream& MethodVerifier::Fail(VerifyError error) {
Andreas Gampe0760a812015-08-26 17:12:51 -0700869 // Mark the error type as encountered.
Andreas Gampea727e372015-08-25 09:22:37 -0700870 encountered_failure_types_ |= static_cast<uint32_t>(error);
Andreas Gampe0760a812015-08-26 17:12:51 -0700871
Ian Rogersad0b3a32012-04-16 14:50:24 -0700872 switch (error) {
873 case VERIFY_ERROR_NO_CLASS:
874 case VERIFY_ERROR_NO_FIELD:
875 case VERIFY_ERROR_NO_METHOD:
876 case VERIFY_ERROR_ACCESS_CLASS:
877 case VERIFY_ERROR_ACCESS_FIELD:
878 case VERIFY_ERROR_ACCESS_METHOD:
Ian Rogers08f753d2012-08-24 14:35:25 -0700879 case VERIFY_ERROR_INSTANTIATION:
880 case VERIFY_ERROR_CLASS_CHANGE:
Igor Murashkin158f35c2015-06-10 15:55:30 -0700881 case VERIFY_ERROR_FORCE_INTERPRETER:
Andreas Gampea727e372015-08-25 09:22:37 -0700882 case VERIFY_ERROR_LOCKING:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800883 if (Runtime::Current()->IsAotCompiler() || !can_load_classes_) {
jeffhaofaf459e2012-08-31 15:32:47 -0700884 // If we're optimistically running verification at compile time, turn NO_xxx, ACCESS_xxx,
885 // class change and instantiation errors into soft verification errors so that we re-verify
886 // at runtime. We may fail to find or to agree on access because of not yet available class
887 // loaders, or class loaders that will differ at runtime. In these cases, we don't want to
888 // affect the soundness of the code being compiled. Instead, the generated code runs "slow
889 // paths" that dynamically perform the verification and cause the behavior to be that akin
890 // to an interpreter.
891 error = VERIFY_ERROR_BAD_CLASS_SOFT;
892 } else {
Jeff Haoa3faaf42013-09-03 19:07:00 -0700893 // If we fail again at runtime, mark that this instruction would throw and force this
894 // method to be executed using the interpreter with checks.
jeffhaofaf459e2012-08-31 15:32:47 -0700895 have_pending_runtime_throw_failure_ = true;
Andreas Gamped7f8d052015-03-12 11:05:47 -0700896
897 // We need to save the work_line if the instruction wasn't throwing before. Otherwise we'll
898 // try to merge garbage.
899 // Note: this assumes that Fail is called before we do any work_line modifications.
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700900 // Note: this can fail before we touch any instruction, for the signature of a method. So
901 // add a check.
902 if (work_insn_idx_ < DexFile::kDexNoIndex) {
903 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
904 const Instruction* inst = Instruction::At(insns);
905 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
Andreas Gamped7f8d052015-03-12 11:05:47 -0700906
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700907 if ((opcode_flags & Instruction::kThrow) == 0 && CurrentInsnFlags()->IsInTry()) {
908 saved_line_->CopyFromLine(work_line_.get());
909 }
Andreas Gamped7f8d052015-03-12 11:05:47 -0700910 }
jeffhaofaf459e2012-08-31 15:32:47 -0700911 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700912 break;
Andreas Gampea727e372015-08-25 09:22:37 -0700913
Ian Rogersad0b3a32012-04-16 14:50:24 -0700914 // Indication that verification should be retried at runtime.
915 case VERIFY_ERROR_BAD_CLASS_SOFT:
Jeff Haoee988952013-04-16 14:23:47 -0700916 if (!allow_soft_failures_) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700917 have_pending_hard_failure_ = true;
918 }
919 break;
Andreas Gampea727e372015-08-25 09:22:37 -0700920
jeffhaod5347e02012-03-22 17:25:05 -0700921 // Hard verification failures at compile time will still fail at runtime, so the class is
922 // marked as rejected to prevent it from being compiled.
Ian Rogersad0b3a32012-04-16 14:50:24 -0700923 case VERIFY_ERROR_BAD_CLASS_HARD: {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700924 have_pending_hard_failure_ = true;
Andreas Gampeebf850c2015-08-14 15:37:35 -0700925 if (VLOG_IS_ON(verifier) && kDumpRegLinesOnHardFailureIfVLOG) {
926 ScopedObjectAccess soa(Thread::Current());
927 std::ostringstream oss;
928 Dump(oss);
929 LOG(ERROR) << oss.str();
930 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700931 break;
Ian Rogers47a05882012-02-03 12:23:33 -0800932 }
933 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700934 failures_.push_back(error);
Elena Sayapina78480ec2014-08-15 15:52:42 +0700935 std::string location(StringPrintf("%s: [0x%X] ", PrettyMethod(dex_method_idx_, *dex_file_).c_str(),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700936 work_insn_idx_));
Elena Sayapina78480ec2014-08-15 15:52:42 +0700937 std::ostringstream* failure_message = new std::ostringstream(location, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700938 failure_messages_.push_back(failure_message);
939 return *failure_message;
940}
941
Ian Rogers576ca0c2014-06-06 15:58:22 -0700942std::ostream& MethodVerifier::LogVerifyInfo() {
943 return info_messages_ << "VFY: " << PrettyMethod(dex_method_idx_, *dex_file_)
944 << '[' << reinterpret_cast<void*>(work_insn_idx_) << "] : ";
945}
946
Ian Rogersad0b3a32012-04-16 14:50:24 -0700947void MethodVerifier::PrependToLastFailMessage(std::string prepend) {
948 size_t failure_num = failure_messages_.size();
949 DCHECK_NE(failure_num, 0U);
950 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
951 prepend += last_fail_message->str();
Elena Sayapina78480ec2014-08-15 15:52:42 +0700952 failure_messages_[failure_num - 1] = new std::ostringstream(prepend, std::ostringstream::ate);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700953 delete last_fail_message;
954}
955
956void MethodVerifier::AppendToLastFailMessage(std::string append) {
957 size_t failure_num = failure_messages_.size();
958 DCHECK_NE(failure_num, 0U);
959 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
960 (*last_fail_message) << append;
Ian Rogers47a05882012-02-03 12:23:33 -0800961}
962
Ian Rogers776ac1f2012-04-13 23:36:36 -0700963bool MethodVerifier::ComputeWidthsAndCountOps() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700964 const uint16_t* insns = code_item_->insns_;
965 size_t insns_size = code_item_->insns_size_in_code_units_;
966 const Instruction* inst = Instruction::At(insns);
jeffhaobdb76512011-09-07 11:43:16 -0700967 size_t new_instance_count = 0;
968 size_t monitor_enter_count = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -0700969 size_t dex_pc = 0;
jeffhaobdb76512011-09-07 11:43:16 -0700970
Ian Rogersd81871c2011-10-03 13:57:23 -0700971 while (dex_pc < insns_size) {
jeffhaobdb76512011-09-07 11:43:16 -0700972 Instruction::Code opcode = inst->Opcode();
Ian Rogersa9a82542013-10-04 11:17:26 -0700973 switch (opcode) {
974 case Instruction::APUT_OBJECT:
975 case Instruction::CHECK_CAST:
976 has_check_casts_ = true;
977 break;
978 case Instruction::INVOKE_VIRTUAL:
979 case Instruction::INVOKE_VIRTUAL_RANGE:
980 case Instruction::INVOKE_INTERFACE:
981 case Instruction::INVOKE_INTERFACE_RANGE:
982 has_virtual_or_interface_invokes_ = true;
983 break;
984 case Instruction::MONITOR_ENTER:
985 monitor_enter_count++;
986 break;
987 case Instruction::NEW_INSTANCE:
988 new_instance_count++;
989 break;
990 default:
991 break;
jeffhaobdb76512011-09-07 11:43:16 -0700992 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700993 size_t inst_size = inst->SizeInCodeUnits();
Mathieu Chartierde40d472015-10-15 17:47:48 -0700994 GetInstructionFlags(dex_pc).SetIsOpcode();
Ian Rogersd81871c2011-10-03 13:57:23 -0700995 dex_pc += inst_size;
Ian Rogers7b078e82014-09-10 14:44:24 -0700996 inst = inst->RelativeAt(inst_size);
jeffhaobdb76512011-09-07 11:43:16 -0700997 }
998
Ian Rogersd81871c2011-10-03 13:57:23 -0700999 if (dex_pc != insns_size) {
jeffhaod5347e02012-03-22 17:25:05 -07001000 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "code did not end where expected ("
1001 << dex_pc << " vs. " << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001002 return false;
1003 }
1004
Ian Rogersd81871c2011-10-03 13:57:23 -07001005 new_instance_count_ = new_instance_count;
1006 monitor_enter_count_ = monitor_enter_count;
jeffhaobdb76512011-09-07 11:43:16 -07001007 return true;
1008}
1009
Ian Rogers776ac1f2012-04-13 23:36:36 -07001010bool MethodVerifier::ScanTryCatchBlocks() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001011 uint32_t tries_size = code_item_->tries_size_;
jeffhaobdb76512011-09-07 11:43:16 -07001012 if (tries_size == 0) {
1013 return true;
1014 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001015 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Ian Rogers0571d352011-11-03 19:51:38 -07001016 const DexFile::TryItem* tries = DexFile::GetTryItems(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001017
1018 for (uint32_t idx = 0; idx < tries_size; idx++) {
1019 const DexFile::TryItem* try_item = &tries[idx];
1020 uint32_t start = try_item->start_addr_;
1021 uint32_t end = start + try_item->insn_count_;
jeffhaobdb76512011-09-07 11:43:16 -07001022 if ((start >= end) || (start >= insns_size) || (end > insns_size)) {
jeffhaod5347e02012-03-22 17:25:05 -07001023 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad exception entry: startAddr=" << start
1024 << " endAddr=" << end << " (size=" << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001025 return false;
1026 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001027 if (!GetInstructionFlags(start).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001028 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1029 << "'try' block starts inside an instruction (" << start << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001030 return false;
1031 }
Ian Rogers7b078e82014-09-10 14:44:24 -07001032 uint32_t dex_pc = start;
1033 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
1034 while (dex_pc < end) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001035 GetInstructionFlags(dex_pc).SetInTry();
Ian Rogers7b078e82014-09-10 14:44:24 -07001036 size_t insn_size = inst->SizeInCodeUnits();
1037 dex_pc += insn_size;
1038 inst = inst->RelativeAt(insn_size);
jeffhaobdb76512011-09-07 11:43:16 -07001039 }
1040 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001041 // Iterate over each of the handlers to verify target addresses.
Ian Rogers13735952014-10-08 12:43:28 -07001042 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001043 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001044 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhaobdb76512011-09-07 11:43:16 -07001045 for (uint32_t idx = 0; idx < handlers_size; idx++) {
Ian Rogers0571d352011-11-03 19:51:38 -07001046 CatchHandlerIterator iterator(handlers_ptr);
1047 for (; iterator.HasNext(); iterator.Next()) {
1048 uint32_t dex_pc= iterator.GetHandlerAddress();
Mathieu Chartierde40d472015-10-15 17:47:48 -07001049 if (!GetInstructionFlags(dex_pc).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001050 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1051 << "exception handler starts at bad address (" << dex_pc << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001052 return false;
1053 }
Stephen Kyle9bc61992014-09-22 13:53:15 +01001054 if (!CheckNotMoveResult(code_item_->insns_, dex_pc)) {
1055 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1056 << "exception handler begins with move-result* (" << dex_pc << ")";
1057 return false;
1058 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001059 GetInstructionFlags(dex_pc).SetBranchTarget();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001060 // Ensure exception types are resolved so that they don't need resolution to be delivered,
1061 // unresolved exception types will be ignored by exception delivery
Ian Rogers0571d352011-11-03 19:51:38 -07001062 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001063 mirror::Class* exception_type = linker->ResolveType(*dex_file_,
1064 iterator.GetHandlerTypeIndex(),
Mathieu Chartierbf99f772014-08-23 16:37:27 -07001065 dex_cache_, class_loader_);
Ian Rogers7b078e82014-09-10 14:44:24 -07001066 if (exception_type == nullptr) {
1067 DCHECK(self_->IsExceptionPending());
1068 self_->ClearException();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001069 }
1070 }
jeffhaobdb76512011-09-07 11:43:16 -07001071 }
Ian Rogers0571d352011-11-03 19:51:38 -07001072 handlers_ptr = iterator.EndDataPointer();
jeffhaobdb76512011-09-07 11:43:16 -07001073 }
jeffhaobdb76512011-09-07 11:43:16 -07001074 return true;
1075}
1076
Ian Rogers776ac1f2012-04-13 23:36:36 -07001077bool MethodVerifier::VerifyInstructions() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001078 const Instruction* inst = Instruction::At(code_item_->insns_);
jeffhaoba5ebb92011-08-25 17:24:37 -07001079
Ian Rogers0c7abda2012-09-19 13:33:42 -07001080 /* 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 -07001081 GetInstructionFlags(0).SetBranchTarget();
1082 GetInstructionFlags(0).SetCompileTimeInfoPoint();
Ian Rogersd81871c2011-10-03 13:57:23 -07001083
1084 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Elliott Hughesb25c3f62012-03-26 16:35:06 -07001085 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001086 if (!VerifyInstruction(inst, dex_pc)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001087 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001088 return false;
1089 }
1090 /* Flag instructions that are garbage collection points */
Sameer Abu Asal02c42232013-04-30 12:09:45 -07001091 // All invoke points are marked as "Throw" points already.
1092 // We are relying on this to also count all the invokes as interesting.
Vladimir Marko8b858e12014-11-27 14:52:37 +00001093 if (inst->IsBranch()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001094 GetInstructionFlags(dex_pc).SetCompileTimeInfoPoint();
Vladimir Marko8b858e12014-11-27 14:52:37 +00001095 // The compiler also needs safepoints for fall-through to loop heads.
1096 // Such a loop head must be a target of a branch.
1097 int32_t offset = 0;
1098 bool cond, self_ok;
1099 bool target_ok = GetBranchOffset(dex_pc, &offset, &cond, &self_ok);
1100 DCHECK(target_ok);
Mathieu Chartierde40d472015-10-15 17:47:48 -07001101 GetInstructionFlags(dex_pc + offset).SetCompileTimeInfoPoint();
Vladimir Marko8b858e12014-11-27 14:52:37 +00001102 } else if (inst->IsSwitch() || inst->IsThrow()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001103 GetInstructionFlags(dex_pc).SetCompileTimeInfoPoint();
Ian Rogersb8c78592013-07-25 23:52:52 +00001104 } else if (inst->IsReturn()) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001105 GetInstructionFlags(dex_pc).SetCompileTimeInfoPointAndReturn();
Ian Rogersd81871c2011-10-03 13:57:23 -07001106 }
1107 dex_pc += inst->SizeInCodeUnits();
1108 inst = inst->Next();
1109 }
1110 return true;
1111}
1112
Ian Rogers776ac1f2012-04-13 23:36:36 -07001113bool MethodVerifier::VerifyInstruction(const Instruction* inst, uint32_t code_offset) {
Igor Murashkin4d7b75f2015-07-21 17:03:36 -07001114 if (UNLIKELY(inst->IsExperimental())) {
1115 // Experimental instructions don't yet have verifier support implementation.
1116 // While it is possible to use them by themselves, when we try to use stable instructions
1117 // with a virtual register that was created by an experimental instruction,
1118 // the data flow analysis will fail.
1119 Fail(VERIFY_ERROR_FORCE_INTERPRETER)
1120 << "experimental instruction is not supported by verifier; skipping verification";
1121 have_pending_experimental_failure_ = true;
1122 return false;
1123 }
1124
Ian Rogersd81871c2011-10-03 13:57:23 -07001125 bool result = true;
1126 switch (inst->GetVerifyTypeArgumentA()) {
1127 case Instruction::kVerifyRegA:
Ian Rogers29a26482014-05-02 15:27:29 -07001128 result = result && CheckRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -07001129 break;
1130 case Instruction::kVerifyRegAWide:
Ian Rogers29a26482014-05-02 15:27:29 -07001131 result = result && CheckWideRegisterIndex(inst->VRegA());
Ian Rogersd81871c2011-10-03 13:57:23 -07001132 break;
1133 }
1134 switch (inst->GetVerifyTypeArgumentB()) {
1135 case Instruction::kVerifyRegB:
Ian Rogers29a26482014-05-02 15:27:29 -07001136 result = result && CheckRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001137 break;
1138 case Instruction::kVerifyRegBField:
Ian Rogers29a26482014-05-02 15:27:29 -07001139 result = result && CheckFieldIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001140 break;
1141 case Instruction::kVerifyRegBMethod:
Ian Rogers29a26482014-05-02 15:27:29 -07001142 result = result && CheckMethodIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001143 break;
1144 case Instruction::kVerifyRegBNewInstance:
Ian Rogers29a26482014-05-02 15:27:29 -07001145 result = result && CheckNewInstance(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001146 break;
1147 case Instruction::kVerifyRegBString:
Ian Rogers29a26482014-05-02 15:27:29 -07001148 result = result && CheckStringIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001149 break;
1150 case Instruction::kVerifyRegBType:
Ian Rogers29a26482014-05-02 15:27:29 -07001151 result = result && CheckTypeIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001152 break;
1153 case Instruction::kVerifyRegBWide:
Ian Rogers29a26482014-05-02 15:27:29 -07001154 result = result && CheckWideRegisterIndex(inst->VRegB());
Ian Rogersd81871c2011-10-03 13:57:23 -07001155 break;
1156 }
1157 switch (inst->GetVerifyTypeArgumentC()) {
1158 case Instruction::kVerifyRegC:
Ian Rogers29a26482014-05-02 15:27:29 -07001159 result = result && CheckRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001160 break;
1161 case Instruction::kVerifyRegCField:
Ian Rogers29a26482014-05-02 15:27:29 -07001162 result = result && CheckFieldIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001163 break;
1164 case Instruction::kVerifyRegCNewArray:
Ian Rogers29a26482014-05-02 15:27:29 -07001165 result = result && CheckNewArray(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001166 break;
1167 case Instruction::kVerifyRegCType:
Ian Rogers29a26482014-05-02 15:27:29 -07001168 result = result && CheckTypeIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001169 break;
1170 case Instruction::kVerifyRegCWide:
Ian Rogers29a26482014-05-02 15:27:29 -07001171 result = result && CheckWideRegisterIndex(inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001172 break;
1173 }
1174 switch (inst->GetVerifyExtraFlags()) {
1175 case Instruction::kVerifyArrayData:
1176 result = result && CheckArrayData(code_offset);
1177 break;
1178 case Instruction::kVerifyBranchTarget:
1179 result = result && CheckBranchTarget(code_offset);
1180 break;
1181 case Instruction::kVerifySwitchTargets:
1182 result = result && CheckSwitchTargets(code_offset);
1183 break;
Andreas Gampec3314312014-06-19 18:13:29 -07001184 case Instruction::kVerifyVarArgNonZero:
1185 // Fall-through.
Ian Rogers29a26482014-05-02 15:27:29 -07001186 case Instruction::kVerifyVarArg: {
Taiju Tsuiki29498a22015-04-13 14:21:00 +09001187 // Instructions that can actually return a negative value shouldn't have this flag.
1188 uint32_t v_a = dchecked_integral_cast<uint32_t>(inst->VRegA());
1189 if ((inst->GetVerifyExtraFlags() == Instruction::kVerifyVarArgNonZero && v_a == 0) ||
1190 v_a > Instruction::kMaxVarArgRegs) {
1191 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << v_a << ") in "
Andreas Gampec3314312014-06-19 18:13:29 -07001192 "non-range invoke";
1193 return false;
1194 }
Taiju Tsuiki29498a22015-04-13 14:21:00 +09001195
Ian Rogers29a26482014-05-02 15:27:29 -07001196 uint32_t args[Instruction::kMaxVarArgRegs];
1197 inst->GetVarArgs(args);
Taiju Tsuiki29498a22015-04-13 14:21:00 +09001198 result = result && CheckVarArgRegs(v_a, args);
Ian Rogersd81871c2011-10-03 13:57:23 -07001199 break;
Ian Rogers29a26482014-05-02 15:27:29 -07001200 }
Andreas Gampec3314312014-06-19 18:13:29 -07001201 case Instruction::kVerifyVarArgRangeNonZero:
1202 // Fall-through.
Ian Rogersd81871c2011-10-03 13:57:23 -07001203 case Instruction::kVerifyVarArgRange:
Andreas Gampec3314312014-06-19 18:13:29 -07001204 if (inst->GetVerifyExtraFlags() == Instruction::kVerifyVarArgRangeNonZero &&
1205 inst->VRegA() <= 0) {
1206 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << inst->VRegA() << ") in "
1207 "range invoke";
1208 return false;
1209 }
Ian Rogers29a26482014-05-02 15:27:29 -07001210 result = result && CheckVarArgRangeRegs(inst->VRegA(), inst->VRegC());
Ian Rogersd81871c2011-10-03 13:57:23 -07001211 break;
1212 case Instruction::kVerifyError:
jeffhaod5347e02012-03-22 17:25:05 -07001213 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected opcode " << inst->Name();
Ian Rogersd81871c2011-10-03 13:57:23 -07001214 result = false;
1215 break;
1216 }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001217 if (inst->GetVerifyIsRuntimeOnly() && Runtime::Current()->IsAotCompiler() && !verify_to_dump_) {
Ian Rogers5fb22a92014-06-13 10:31:28 -07001218 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "opcode only expected at runtime " << inst->Name();
1219 result = false;
1220 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001221 return result;
1222}
1223
Ian Rogers7b078e82014-09-10 14:44:24 -07001224inline bool MethodVerifier::CheckRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001225 if (idx >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001226 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register index out of range (" << idx << " >= "
1227 << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001228 return false;
1229 }
1230 return true;
1231}
1232
Ian Rogers7b078e82014-09-10 14:44:24 -07001233inline bool MethodVerifier::CheckWideRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001234 if (idx + 1 >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001235 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "wide register index out of range (" << idx
1236 << "+1 >= " << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001237 return false;
1238 }
1239 return true;
1240}
1241
Ian Rogers7b078e82014-09-10 14:44:24 -07001242inline bool MethodVerifier::CheckFieldIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001243 if (idx >= dex_file_->GetHeader().field_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001244 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad field index " << idx << " (max "
1245 << dex_file_->GetHeader().field_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001246 return false;
1247 }
1248 return true;
1249}
1250
Ian Rogers7b078e82014-09-10 14:44:24 -07001251inline bool MethodVerifier::CheckMethodIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001252 if (idx >= dex_file_->GetHeader().method_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001253 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad method index " << idx << " (max "
1254 << dex_file_->GetHeader().method_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001255 return false;
1256 }
1257 return true;
1258}
1259
Ian Rogers7b078e82014-09-10 14:44:24 -07001260inline bool MethodVerifier::CheckNewInstance(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001261 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001262 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
1263 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001264 return false;
1265 }
1266 // We don't need the actual class, just a pointer to the class name.
Ian Rogers0571d352011-11-03 19:51:38 -07001267 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -07001268 if (descriptor[0] != 'L') {
jeffhaod5347e02012-03-22 17:25:05 -07001269 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "can't call new-instance on type '" << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001270 return false;
Aart Bikdb698f12016-07-25 17:52:22 -07001271 } else if (strcmp(descriptor, "Ljava/lang/Class;") == 0) {
1272 // An unlikely new instance on Class is not allowed. Fall back to interpreter to ensure an
1273 // exception is thrown when this statement is executed (compiled code would not do that).
1274 Fail(VERIFY_ERROR_INSTANTIATION);
Ian Rogersd81871c2011-10-03 13:57:23 -07001275 }
1276 return true;
1277}
1278
Ian Rogers7b078e82014-09-10 14:44:24 -07001279inline bool MethodVerifier::CheckStringIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001280 if (idx >= dex_file_->GetHeader().string_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001281 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad string index " << idx << " (max "
1282 << dex_file_->GetHeader().string_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001283 return false;
1284 }
1285 return true;
1286}
1287
Ian Rogers7b078e82014-09-10 14:44:24 -07001288inline bool MethodVerifier::CheckTypeIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001289 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001290 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
1291 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001292 return false;
1293 }
1294 return true;
1295}
1296
Ian Rogers776ac1f2012-04-13 23:36:36 -07001297bool MethodVerifier::CheckNewArray(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001298 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07001299 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
1300 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001301 return false;
1302 }
1303 int bracket_count = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001304 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -07001305 const char* cp = descriptor;
1306 while (*cp++ == '[') {
1307 bracket_count++;
1308 }
1309 if (bracket_count == 0) {
1310 /* The given class must be an array type. */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001311 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1312 << "can't new-array class '" << descriptor << "' (not an array)";
Ian Rogersd81871c2011-10-03 13:57:23 -07001313 return false;
1314 } else if (bracket_count > 255) {
1315 /* It is illegal to create an array of more than 255 dimensions. */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001316 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1317 << "can't new-array class '" << descriptor << "' (exceeds limit)";
Ian Rogersd81871c2011-10-03 13:57:23 -07001318 return false;
1319 }
1320 return true;
1321}
1322
Ian Rogers776ac1f2012-04-13 23:36:36 -07001323bool MethodVerifier::CheckArrayData(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001324 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
1325 const uint16_t* insns = code_item_->insns_ + cur_offset;
1326 const uint16_t* array_data;
1327 int32_t array_data_offset;
1328
1329 DCHECK_LT(cur_offset, insn_count);
1330 /* make sure the start of the array data table is in range */
Andreas Gampe53de99c2015-08-17 13:43:55 -07001331 array_data_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
1332 if (static_cast<int32_t>(cur_offset) + array_data_offset < 0 ||
Ian Rogersd81871c2011-10-03 13:57:23 -07001333 cur_offset + array_data_offset + 2 >= insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -07001334 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -07001335 << ", data offset " << array_data_offset
1336 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -07001337 return false;
1338 }
1339 /* offset to array data table is a relative branch-style offset */
1340 array_data = insns + array_data_offset;
Andreas Gampe57c47582015-07-01 22:05:59 -07001341 // Make sure the table is at an even dex pc, that is, 32-bit aligned.
1342 if (!IsAligned<4>(array_data)) {
jeffhaod5347e02012-03-22 17:25:05 -07001343 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned array data table: at " << cur_offset
1344 << ", data offset " << array_data_offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001345 return false;
1346 }
Andreas Gampe57c47582015-07-01 22:05:59 -07001347 // Make sure the array-data is marked as an opcode. This ensures that it was reached when
1348 // traversing the code item linearly. It is an approximation for a by-spec padding value.
Mathieu Chartierde40d472015-10-15 17:47:48 -07001349 if (!GetInstructionFlags(cur_offset + array_data_offset).IsOpcode()) {
Andreas Gampe57c47582015-07-01 22:05:59 -07001350 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array data table at " << cur_offset
1351 << ", data offset " << array_data_offset
1352 << " not correctly visited, probably bad padding.";
1353 return false;
1354 }
1355
Ian Rogersd81871c2011-10-03 13:57:23 -07001356 uint32_t value_width = array_data[1];
Elliott Hughes398f64b2012-03-26 18:05:48 -07001357 uint32_t value_count = *reinterpret_cast<const uint32_t*>(&array_data[2]);
Ian Rogersd81871c2011-10-03 13:57:23 -07001358 uint32_t table_size = 4 + (value_width * value_count + 1) / 2;
1359 /* make sure the end of the switch is in range */
1360 if (cur_offset + array_data_offset + table_size > insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -07001361 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data end: at " << cur_offset
1362 << ", data offset " << array_data_offset << ", end "
1363 << cur_offset + array_data_offset + table_size
1364 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -07001365 return false;
1366 }
1367 return true;
1368}
1369
Ian Rogers776ac1f2012-04-13 23:36:36 -07001370bool MethodVerifier::CheckBranchTarget(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001371 int32_t offset;
1372 bool isConditional, selfOkay;
1373 if (!GetBranchOffset(cur_offset, &offset, &isConditional, &selfOkay)) {
1374 return false;
1375 }
1376 if (!selfOkay && offset == 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001377 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch offset of zero not allowed at"
1378 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -07001379 return false;
1380 }
Elliott Hughes81ff3182012-03-23 20:35:56 -07001381 // Check for 32-bit overflow. This isn't strictly necessary if we can depend on the runtime
1382 // to have identical "wrap-around" behavior, but it's unwise to depend on that.
Ian Rogersd81871c2011-10-03 13:57:23 -07001383 if (((int64_t) cur_offset + (int64_t) offset) != (int64_t) (cur_offset + offset)) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001384 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch target overflow "
1385 << reinterpret_cast<void*>(cur_offset) << " +" << offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001386 return false;
1387 }
1388 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
1389 int32_t abs_offset = cur_offset + offset;
Brian Carlstrom93c33962013-07-26 10:37:43 -07001390 if (abs_offset < 0 ||
1391 (uint32_t) abs_offset >= insn_count ||
Mathieu Chartierde40d472015-10-15 17:47:48 -07001392 !GetInstructionFlags(abs_offset).IsOpcode()) {
jeffhaod5347e02012-03-22 17:25:05 -07001393 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid branch target " << offset << " (-> "
Elliott Hughes398f64b2012-03-26 18:05:48 -07001394 << reinterpret_cast<void*>(abs_offset) << ") at "
1395 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -07001396 return false;
1397 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001398 GetInstructionFlags(abs_offset).SetBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -07001399 return true;
1400}
1401
Ian Rogers776ac1f2012-04-13 23:36:36 -07001402bool MethodVerifier::GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
Ian Rogersd81871c2011-10-03 13:57:23 -07001403 bool* selfOkay) {
1404 const uint16_t* insns = code_item_->insns_ + cur_offset;
1405 *pConditional = false;
1406 *selfOkay = false;
jeffhaoba5ebb92011-08-25 17:24:37 -07001407 switch (*insns & 0xff) {
1408 case Instruction::GOTO:
1409 *pOffset = ((int16_t) *insns) >> 8;
jeffhaoba5ebb92011-08-25 17:24:37 -07001410 break;
1411 case Instruction::GOTO_32:
1412 *pOffset = insns[1] | (((uint32_t) insns[2]) << 16);
jeffhaoba5ebb92011-08-25 17:24:37 -07001413 *selfOkay = true;
1414 break;
1415 case Instruction::GOTO_16:
1416 *pOffset = (int16_t) insns[1];
jeffhaoba5ebb92011-08-25 17:24:37 -07001417 break;
1418 case Instruction::IF_EQ:
1419 case Instruction::IF_NE:
1420 case Instruction::IF_LT:
1421 case Instruction::IF_GE:
1422 case Instruction::IF_GT:
1423 case Instruction::IF_LE:
1424 case Instruction::IF_EQZ:
1425 case Instruction::IF_NEZ:
1426 case Instruction::IF_LTZ:
1427 case Instruction::IF_GEZ:
1428 case Instruction::IF_GTZ:
1429 case Instruction::IF_LEZ:
1430 *pOffset = (int16_t) insns[1];
1431 *pConditional = true;
jeffhaoba5ebb92011-08-25 17:24:37 -07001432 break;
1433 default:
1434 return false;
jeffhaoba5ebb92011-08-25 17:24:37 -07001435 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001436 return true;
1437}
1438
Ian Rogers776ac1f2012-04-13 23:36:36 -07001439bool MethodVerifier::CheckSwitchTargets(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001440 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001441 DCHECK_LT(cur_offset, insn_count);
Ian Rogersd81871c2011-10-03 13:57:23 -07001442 const uint16_t* insns = code_item_->insns_ + cur_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001443 /* make sure the start of the switch is in range */
Andreas Gampe53de99c2015-08-17 13:43:55 -07001444 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
1445 if (static_cast<int32_t>(cur_offset) + switch_offset < 0 ||
1446 cur_offset + switch_offset + 2 > insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -07001447 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch start: at " << cur_offset
Brian Carlstrom93c33962013-07-26 10:37:43 -07001448 << ", switch offset " << switch_offset
1449 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001450 return false;
1451 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001452 /* offset to switch table is a relative branch-style offset */
Ian Rogersd81871c2011-10-03 13:57:23 -07001453 const uint16_t* switch_insns = insns + switch_offset;
Andreas Gampe57c47582015-07-01 22:05:59 -07001454 // Make sure the table is at an even dex pc, that is, 32-bit aligned.
1455 if (!IsAligned<4>(switch_insns)) {
jeffhaod5347e02012-03-22 17:25:05 -07001456 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned switch table: at " << cur_offset
1457 << ", switch offset " << switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001458 return false;
1459 }
Andreas Gampe57c47582015-07-01 22:05:59 -07001460 // Make sure the switch data is marked as an opcode. This ensures that it was reached when
1461 // traversing the code item linearly. It is an approximation for a by-spec padding value.
Mathieu Chartierde40d472015-10-15 17:47:48 -07001462 if (!GetInstructionFlags(cur_offset + switch_offset).IsOpcode()) {
Andreas Gampe57c47582015-07-01 22:05:59 -07001463 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "switch table at " << cur_offset
1464 << ", switch offset " << switch_offset
1465 << " not correctly visited, probably bad padding.";
1466 return false;
1467 }
1468
David Brazdil5469d342015-09-25 16:57:53 +01001469 bool is_packed_switch = (*insns & 0xff) == Instruction::PACKED_SWITCH;
1470
Ian Rogersd81871c2011-10-03 13:57:23 -07001471 uint32_t switch_count = switch_insns[1];
David Brazdil5469d342015-09-25 16:57:53 +01001472 int32_t targets_offset;
Ian Rogersd81871c2011-10-03 13:57:23 -07001473 uint16_t expected_signature;
David Brazdil5469d342015-09-25 16:57:53 +01001474 if (is_packed_switch) {
jeffhaoba5ebb92011-08-25 17:24:37 -07001475 /* 0=sig, 1=count, 2/3=firstKey */
1476 targets_offset = 4;
jeffhaoba5ebb92011-08-25 17:24:37 -07001477 expected_signature = Instruction::kPackedSwitchSignature;
1478 } else {
1479 /* 0=sig, 1=count, 2..count*2 = keys */
jeffhaoba5ebb92011-08-25 17:24:37 -07001480 targets_offset = 2 + 2 * switch_count;
1481 expected_signature = Instruction::kSparseSwitchSignature;
1482 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001483 uint32_t table_size = targets_offset + switch_count * 2;
jeffhaoba5ebb92011-08-25 17:24:37 -07001484 if (switch_insns[0] != expected_signature) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001485 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
1486 << StringPrintf("wrong signature for switch table (%x, wanted %x)",
1487 switch_insns[0], expected_signature);
jeffhaoba5ebb92011-08-25 17:24:37 -07001488 return false;
1489 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001490 /* make sure the end of the switch is in range */
1491 if (cur_offset + switch_offset + table_size > (uint32_t) insn_count) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001492 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch end: at " << cur_offset
1493 << ", switch offset " << switch_offset
1494 << ", end " << (cur_offset + switch_offset + table_size)
jeffhaod5347e02012-03-22 17:25:05 -07001495 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001496 return false;
1497 }
David Brazdil5469d342015-09-25 16:57:53 +01001498
1499 constexpr int32_t keys_offset = 2;
1500 if (switch_count > 1) {
1501 if (is_packed_switch) {
1502 /* for a packed switch, verify that keys do not overflow int32 */
1503 int32_t first_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1504 int32_t max_first_key =
1505 std::numeric_limits<int32_t>::max() - (static_cast<int32_t>(switch_count) - 1);
1506 if (first_key > max_first_key) {
1507 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid packed switch: first_key=" << first_key
1508 << ", switch_count=" << switch_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001509 return false;
1510 }
David Brazdil5469d342015-09-25 16:57:53 +01001511 } else {
1512 /* for a sparse switch, verify the keys are in ascending order */
1513 int32_t last_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1514 for (uint32_t targ = 1; targ < switch_count; targ++) {
1515 int32_t key =
1516 static_cast<int32_t>(switch_insns[keys_offset + targ * 2]) |
1517 static_cast<int32_t>(switch_insns[keys_offset + targ * 2 + 1] << 16);
1518 if (key <= last_key) {
1519 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid sparse switch: last key=" << last_key
1520 << ", this=" << key;
1521 return false;
1522 }
1523 last_key = key;
1524 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001525 }
1526 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001527 /* verify each switch target */
Ian Rogersd81871c2011-10-03 13:57:23 -07001528 for (uint32_t targ = 0; targ < switch_count; targ++) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07001529 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
1530 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07001531 int32_t abs_offset = cur_offset + offset;
Brian Carlstrom93c33962013-07-26 10:37:43 -07001532 if (abs_offset < 0 ||
Andreas Gampe53de99c2015-08-17 13:43:55 -07001533 abs_offset >= static_cast<int32_t>(insn_count) ||
Mathieu Chartierde40d472015-10-15 17:47:48 -07001534 !GetInstructionFlags(abs_offset).IsOpcode()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001535 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch target " << offset
1536 << " (-> " << reinterpret_cast<void*>(abs_offset) << ") at "
1537 << reinterpret_cast<void*>(cur_offset)
1538 << "[" << targ << "]";
jeffhaoba5ebb92011-08-25 17:24:37 -07001539 return false;
1540 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07001541 GetInstructionFlags(abs_offset).SetBranchTarget();
Ian Rogersd81871c2011-10-03 13:57:23 -07001542 }
1543 return true;
1544}
1545
Ian Rogers776ac1f2012-04-13 23:36:36 -07001546bool MethodVerifier::CheckVarArgRegs(uint32_t vA, uint32_t arg[]) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001547 uint16_t registers_size = code_item_->registers_size_;
1548 for (uint32_t idx = 0; idx < vA; idx++) {
jeffhao457cc512012-02-02 16:55:13 -08001549 if (arg[idx] >= registers_size) {
jeffhaod5347e02012-03-22 17:25:05 -07001550 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index (" << arg[idx]
1551 << ") in non-range invoke (>= " << registers_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001552 return false;
1553 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001554 }
1555
1556 return true;
1557}
1558
Ian Rogers776ac1f2012-04-13 23:36:36 -07001559bool MethodVerifier::CheckVarArgRangeRegs(uint32_t vA, uint32_t vC) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001560 uint16_t registers_size = code_item_->registers_size_;
1561 // vA/vC are unsigned 8-bit/16-bit quantities for /range instructions, so there's no risk of
1562 // integer overflow when adding them here.
1563 if (vA + vC > registers_size) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001564 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index " << vA << "+" << vC
1565 << " in range invoke (> " << registers_size << ")";
jeffhaoba5ebb92011-08-25 17:24:37 -07001566 return false;
1567 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001568 return true;
1569}
1570
Ian Rogers776ac1f2012-04-13 23:36:36 -07001571bool MethodVerifier::VerifyCodeFlow() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001572 uint16_t registers_size = code_item_->registers_size_;
1573 uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaobdb76512011-09-07 11:43:16 -07001574
Ian Rogersd81871c2011-10-03 13:57:23 -07001575 /* Create and initialize table holding register status */
Brian Carlstrom93c33962013-07-26 10:37:43 -07001576 reg_table_.Init(kTrackCompilerInterestPoints,
1577 insn_flags_.get(),
1578 insns_size,
1579 registers_size,
1580 this);
Sameer Abu Asal02c42232013-04-30 12:09:45 -07001581
Ian Rogersd0fbd852013-09-24 18:17:04 -07001582 work_line_.reset(RegisterLine::Create(registers_size, this));
1583 saved_line_.reset(RegisterLine::Create(registers_size, this));
jeffhaobdb76512011-09-07 11:43:16 -07001584
Ian Rogersd81871c2011-10-03 13:57:23 -07001585 /* Initialize register types of method arguments. */
1586 if (!SetTypesFromSignature()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001587 DCHECK_NE(failures_.size(), 0U);
1588 std::string prepend("Bad signature in ");
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001589 prepend += PrettyMethod(dex_method_idx_, *dex_file_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001590 PrependToLastFailMessage(prepend);
Ian Rogersd81871c2011-10-03 13:57:23 -07001591 return false;
1592 }
Andreas Gamped5ad72f2015-06-26 17:33:47 -07001593 // We may have a runtime failure here, clear.
1594 have_pending_runtime_throw_failure_ = false;
1595
Ian Rogersd81871c2011-10-03 13:57:23 -07001596 /* Perform code flow verification. */
1597 if (!CodeFlowVerifyMethod()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001598 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001599 return false;
jeffhaobdb76512011-09-07 11:43:16 -07001600 }
jeffhaobdb76512011-09-07 11:43:16 -07001601 return true;
1602}
1603
Ian Rogersad0b3a32012-04-16 14:50:24 -07001604std::ostream& MethodVerifier::DumpFailures(std::ostream& os) {
1605 DCHECK_EQ(failures_.size(), failure_messages_.size());
Jeff Hao4137f482013-11-22 11:44:57 -08001606 for (size_t i = 0; i < failures_.size(); ++i) {
1607 os << failure_messages_[i]->str() << "\n";
Ian Rogersad0b3a32012-04-16 14:50:24 -07001608 }
1609 return os;
1610}
1611
Ian Rogers776ac1f2012-04-13 23:36:36 -07001612void MethodVerifier::Dump(std::ostream& os) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001613 VariableIndentationOutputStream vios(&os);
1614 Dump(&vios);
1615}
1616
1617void MethodVerifier::Dump(VariableIndentationOutputStream* vios) {
Ian Rogers7b078e82014-09-10 14:44:24 -07001618 if (code_item_ == nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001619 vios->Stream() << "Native method\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001620 return;
jeffhaobdb76512011-09-07 11:43:16 -07001621 }
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001622 {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001623 vios->Stream() << "Register Types:\n";
1624 ScopedIndentation indent1(vios);
1625 reg_types_.Dump(vios->Stream());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001626 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001627 vios->Stream() << "Dumping instructions and register lines:\n";
1628 ScopedIndentation indent1(vios);
Ian Rogersd81871c2011-10-03 13:57:23 -07001629 const Instruction* inst = Instruction::At(code_item_->insns_);
1630 for (size_t dex_pc = 0; dex_pc < code_item_->insns_size_in_code_units_;
Andreas Gampeebf850c2015-08-14 15:37:35 -07001631 dex_pc += inst->SizeInCodeUnits(), inst = inst->Next()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001632 RegisterLine* reg_line = reg_table_.GetLine(dex_pc);
Ian Rogers7b078e82014-09-10 14:44:24 -07001633 if (reg_line != nullptr) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001634 vios->Stream() << reg_line->Dump(this) << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07001635 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001636 vios->Stream()
Mathieu Chartierde40d472015-10-15 17:47:48 -07001637 << StringPrintf("0x%04zx", dex_pc) << ": " << GetInstructionFlags(dex_pc).ToString() << " ";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001638 const bool kDumpHexOfInstruction = false;
1639 if (kDumpHexOfInstruction) {
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001640 vios->Stream() << inst->DumpHex(5) << " ";
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001641 }
Vladimir Marko8f1e08a2015-06-26 12:06:30 +01001642 vios->Stream() << inst->DumpString(dex_file_) << "\n";
jeffhaoba5ebb92011-08-25 17:24:37 -07001643 }
jeffhaobdb76512011-09-07 11:43:16 -07001644}
1645
Ian Rogersd81871c2011-10-03 13:57:23 -07001646static bool IsPrimitiveDescriptor(char descriptor) {
1647 switch (descriptor) {
jeffhaobdb76512011-09-07 11:43:16 -07001648 case 'I':
1649 case 'C':
1650 case 'S':
1651 case 'B':
1652 case 'Z':
jeffhaobdb76512011-09-07 11:43:16 -07001653 case 'F':
1654 case 'D':
1655 case 'J':
Ian Rogersd81871c2011-10-03 13:57:23 -07001656 return true;
jeffhaobdb76512011-09-07 11:43:16 -07001657 default:
1658 return false;
1659 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001660}
1661
Ian Rogers776ac1f2012-04-13 23:36:36 -07001662bool MethodVerifier::SetTypesFromSignature() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001663 RegisterLine* reg_line = reg_table_.GetLine(0);
Andreas Gampeef0b1a12015-06-19 20:37:46 -07001664
1665 // Should have been verified earlier.
1666 DCHECK_GE(code_item_->registers_size_, code_item_->ins_size_);
1667
1668 uint32_t arg_start = code_item_->registers_size_ - code_item_->ins_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -07001669 size_t expected_args = code_item_->ins_size_; /* long/double count as two */
jeffhaobdb76512011-09-07 11:43:16 -07001670
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001671 // Include the "this" pointer.
Ian Rogersd81871c2011-10-03 13:57:23 -07001672 size_t cur_arg = 0;
Ian Rogersad0b3a32012-04-16 14:50:24 -07001673 if (!IsStatic()) {
Andreas Gampeef0b1a12015-06-19 20:37:46 -07001674 if (expected_args == 0) {
1675 // Expect at least a receiver.
1676 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected 0 args, but method is not static";
1677 return false;
1678 }
1679
Ian Rogersd81871c2011-10-03 13:57:23 -07001680 // If this is a constructor for a class other than java.lang.Object, mark the first ("this")
1681 // argument as uninitialized. This restricts field access until the superclass constructor is
1682 // called.
Ian Rogersd8f69b02014-09-10 21:43:52 +00001683 const RegType& declaring_class = GetDeclaringClass();
Andreas Gampef10b6e12015-08-12 10:48:12 -07001684 if (IsConstructor()) {
1685 if (declaring_class.IsJavaLangObject()) {
1686 // "this" is implicitly initialized.
1687 reg_line->SetThisInitialized();
Andreas Gampead238ce2015-08-24 21:13:08 -07001688 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, declaring_class);
Andreas Gampef10b6e12015-08-12 10:48:12 -07001689 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07001690 reg_line->SetRegisterType<LockOp::kClear>(
1691 this,
1692 arg_start + cur_arg,
1693 reg_types_.UninitializedThisArgument(declaring_class));
Andreas Gampef10b6e12015-08-12 10:48:12 -07001694 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001695 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07001696 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, declaring_class);
jeffhaobdb76512011-09-07 11:43:16 -07001697 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001698 cur_arg++;
jeffhaobdb76512011-09-07 11:43:16 -07001699 }
1700
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001701 const DexFile::ProtoId& proto_id =
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001702 dex_file_->GetMethodPrototype(dex_file_->GetMethodId(dex_method_idx_));
Ian Rogers0571d352011-11-03 19:51:38 -07001703 DexFileParameterIterator iterator(*dex_file_, proto_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07001704
1705 for (; iterator.HasNext(); iterator.Next()) {
1706 const char* descriptor = iterator.GetDescriptor();
Ian Rogers7b078e82014-09-10 14:44:24 -07001707 if (descriptor == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001708 LOG(FATAL) << "Null descriptor";
1709 }
1710 if (cur_arg >= expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07001711 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1712 << " args, found more (" << descriptor << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001713 return false;
1714 }
1715 switch (descriptor[0]) {
1716 case 'L':
1717 case '[':
1718 // We assume that reference arguments are initialized. The only way it could be otherwise
1719 // (assuming the caller was verified) is if the current method is <init>, but in that case
1720 // it's effectively considered initialized the instant we reach here (in the sense that we
1721 // can return without doing anything or call virtual methods).
1722 {
Ian Rogersd8f69b02014-09-10 21:43:52 +00001723 const RegType& reg_type = ResolveClassAndCheckAccess(iterator.GetTypeIdx());
Sebastien Hertz2ed76f92014-04-22 17:11:08 +02001724 if (!reg_type.IsNonZeroReferenceTypes()) {
1725 DCHECK(HasFailures());
1726 return false;
1727 }
Andreas Gampead238ce2015-08-24 21:13:08 -07001728 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001729 }
1730 break;
1731 case 'Z':
Andreas Gampead238ce2015-08-24 21:13:08 -07001732 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Boolean());
Ian Rogersd81871c2011-10-03 13:57:23 -07001733 break;
1734 case 'C':
Andreas Gampead238ce2015-08-24 21:13:08 -07001735 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Char());
Ian Rogersd81871c2011-10-03 13:57:23 -07001736 break;
1737 case 'B':
Andreas Gampead238ce2015-08-24 21:13:08 -07001738 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Byte());
Ian Rogersd81871c2011-10-03 13:57:23 -07001739 break;
1740 case 'I':
Andreas Gampead238ce2015-08-24 21:13:08 -07001741 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07001742 break;
1743 case 'S':
Andreas Gampead238ce2015-08-24 21:13:08 -07001744 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Short());
Ian Rogersd81871c2011-10-03 13:57:23 -07001745 break;
1746 case 'F':
Andreas Gampead238ce2015-08-24 21:13:08 -07001747 reg_line->SetRegisterType<LockOp::kClear>(this, arg_start + cur_arg, reg_types_.Float());
Ian Rogersd81871c2011-10-03 13:57:23 -07001748 break;
1749 case 'J':
1750 case 'D': {
Andreas Gampe77cd4d62014-06-19 17:29:48 -07001751 if (cur_arg + 1 >= expected_args) {
1752 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1753 << " args, found more (" << descriptor << ")";
1754 return false;
1755 }
1756
Ian Rogers7b078e82014-09-10 14:44:24 -07001757 const RegType* lo_half;
1758 const RegType* hi_half;
1759 if (descriptor[0] == 'J') {
1760 lo_half = &reg_types_.LongLo();
1761 hi_half = &reg_types_.LongHi();
1762 } else {
1763 lo_half = &reg_types_.DoubleLo();
1764 hi_half = &reg_types_.DoubleHi();
1765 }
1766 reg_line->SetRegisterTypeWide(this, arg_start + cur_arg, *lo_half, *hi_half);
Ian Rogersd81871c2011-10-03 13:57:23 -07001767 cur_arg++;
1768 break;
1769 }
1770 default:
Brian Carlstrom93c33962013-07-26 10:37:43 -07001771 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected signature type char '"
1772 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001773 return false;
1774 }
1775 cur_arg++;
1776 }
1777 if (cur_arg != expected_args) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001778 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1779 << " arguments, found " << cur_arg;
Ian Rogersd81871c2011-10-03 13:57:23 -07001780 return false;
1781 }
1782 const char* descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
1783 // Validate return type. We don't do the type lookup; just want to make sure that it has the right
1784 // format. Only major difference from the method argument format is that 'V' is supported.
1785 bool result;
1786 if (IsPrimitiveDescriptor(descriptor[0]) || descriptor[0] == 'V') {
1787 result = descriptor[1] == '\0';
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001788 } else if (descriptor[0] == '[') { // single/multi-dimensional array of object/primitive
Ian Rogersd81871c2011-10-03 13:57:23 -07001789 size_t i = 0;
1790 do {
1791 i++;
1792 } while (descriptor[i] == '['); // process leading [
1793 if (descriptor[i] == 'L') { // object array
1794 do {
1795 i++; // find closing ;
1796 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1797 result = descriptor[i] == ';';
1798 } else { // primitive array
1799 result = IsPrimitiveDescriptor(descriptor[i]) && descriptor[i + 1] == '\0';
1800 }
1801 } else if (descriptor[0] == 'L') {
1802 // could be more thorough here, but shouldn't be required
1803 size_t i = 0;
1804 do {
1805 i++;
1806 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1807 result = descriptor[i] == ';';
1808 } else {
1809 result = false;
1810 }
1811 if (!result) {
jeffhaod5347e02012-03-22 17:25:05 -07001812 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected char in return type descriptor '"
1813 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001814 }
1815 return result;
jeffhaobdb76512011-09-07 11:43:16 -07001816}
1817
Ian Rogers776ac1f2012-04-13 23:36:36 -07001818bool MethodVerifier::CodeFlowVerifyMethod() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001819 const uint16_t* insns = code_item_->insns_;
1820 const uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaoba5ebb92011-08-25 17:24:37 -07001821
jeffhaobdb76512011-09-07 11:43:16 -07001822 /* Begin by marking the first instruction as "changed". */
Mathieu Chartierde40d472015-10-15 17:47:48 -07001823 GetInstructionFlags(0).SetChanged();
Ian Rogersd81871c2011-10-03 13:57:23 -07001824 uint32_t start_guess = 0;
jeffhaoba5ebb92011-08-25 17:24:37 -07001825
jeffhaobdb76512011-09-07 11:43:16 -07001826 /* Continue until no instructions are marked "changed". */
1827 while (true) {
Mathieu Chartier4306ef82014-12-19 18:41:47 -08001828 if (allow_thread_suspension_) {
1829 self_->AllowThreadSuspension();
1830 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001831 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1832 uint32_t insn_idx = start_guess;
1833 for (; insn_idx < insns_size; insn_idx++) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001834 if (GetInstructionFlags(insn_idx).IsChanged())
jeffhaobdb76512011-09-07 11:43:16 -07001835 break;
1836 }
jeffhaobdb76512011-09-07 11:43:16 -07001837 if (insn_idx == insns_size) {
1838 if (start_guess != 0) {
1839 /* try again, starting from the top */
1840 start_guess = 0;
1841 continue;
1842 } else {
1843 /* all flags are clear */
1844 break;
1845 }
1846 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001847 // We carry the working set of registers from instruction to instruction. If this address can
1848 // be the target of a branch (or throw) instruction, or if we're skipping around chasing
1849 // "changed" flags, we need to load the set of registers from the table.
1850 // Because we always prefer to continue on to the next instruction, we should never have a
1851 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1852 // target.
1853 work_insn_idx_ = insn_idx;
Mathieu Chartierde40d472015-10-15 17:47:48 -07001854 if (GetInstructionFlags(insn_idx).IsBranchTarget()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001855 work_line_->CopyFromLine(reg_table_.GetLine(insn_idx));
Ian Rogersebbdd872014-07-07 23:53:08 -07001856 } else if (kIsDebugBuild) {
jeffhaobdb76512011-09-07 11:43:16 -07001857 /*
1858 * Sanity check: retrieve the stored register line (assuming
1859 * a full table) and make sure it actually matches.
1860 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001861 RegisterLine* register_line = reg_table_.GetLine(insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07001862 if (register_line != nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001863 if (work_line_->CompareLine(register_line) != 0) {
1864 Dump(std::cout);
1865 std::cout << info_messages_.str();
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001866 LOG(FATAL) << "work_line diverged in " << PrettyMethod(dex_method_idx_, *dex_file_)
Elliott Hughesc073b072012-05-24 19:29:17 -07001867 << "@" << reinterpret_cast<void*>(work_insn_idx_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07001868 << " work_line=" << work_line_->Dump(this) << "\n"
1869 << " expected=" << register_line->Dump(this);
Ian Rogersd81871c2011-10-03 13:57:23 -07001870 }
jeffhaobdb76512011-09-07 11:43:16 -07001871 }
jeffhaobdb76512011-09-07 11:43:16 -07001872 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001873 if (!CodeFlowVerifyInstruction(&start_guess)) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001874 std::string prepend(PrettyMethod(dex_method_idx_, *dex_file_));
Ian Rogersad0b3a32012-04-16 14:50:24 -07001875 prepend += " failed to verify: ";
1876 PrependToLastFailMessage(prepend);
jeffhaoba5ebb92011-08-25 17:24:37 -07001877 return false;
1878 }
jeffhaobdb76512011-09-07 11:43:16 -07001879 /* Clear "changed" and mark as visited. */
Mathieu Chartierde40d472015-10-15 17:47:48 -07001880 GetInstructionFlags(insn_idx).SetVisited();
1881 GetInstructionFlags(insn_idx).ClearChanged();
jeffhaobdb76512011-09-07 11:43:16 -07001882 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001883
Andreas Gampeec6e6c12015-11-05 20:39:56 -08001884 if (kDebugVerify) {
jeffhaobdb76512011-09-07 11:43:16 -07001885 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001886 * Scan for dead code. There's nothing "evil" about dead code
jeffhaobdb76512011-09-07 11:43:16 -07001887 * (besides the wasted space), but it indicates a flaw somewhere
1888 * down the line, possibly in the verifier.
1889 *
1890 * If we've substituted "always throw" instructions into the stream,
1891 * we are almost certainly going to have some dead code.
1892 */
1893 int dead_start = -1;
Ian Rogersd81871c2011-10-03 13:57:23 -07001894 uint32_t insn_idx = 0;
Ian Rogers7b078e82014-09-10 14:44:24 -07001895 for (; insn_idx < insns_size;
1896 insn_idx += Instruction::At(code_item_->insns_ + insn_idx)->SizeInCodeUnits()) {
jeffhaobdb76512011-09-07 11:43:16 -07001897 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001898 * Switch-statement data doesn't get "visited" by scanner. It
jeffhaobdb76512011-09-07 11:43:16 -07001899 * may or may not be preceded by a padding NOP (for alignment).
1900 */
1901 if (insns[insn_idx] == Instruction::kPackedSwitchSignature ||
1902 insns[insn_idx] == Instruction::kSparseSwitchSignature ||
1903 insns[insn_idx] == Instruction::kArrayDataSignature ||
Elliott Hughes380aaa72012-07-09 14:33:15 -07001904 (insns[insn_idx] == Instruction::NOP && (insn_idx + 1 < insns_size) &&
jeffhaobdb76512011-09-07 11:43:16 -07001905 (insns[insn_idx + 1] == Instruction::kPackedSwitchSignature ||
1906 insns[insn_idx + 1] == Instruction::kSparseSwitchSignature ||
1907 insns[insn_idx + 1] == Instruction::kArrayDataSignature))) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07001908 GetInstructionFlags(insn_idx).SetVisited();
jeffhaobdb76512011-09-07 11:43:16 -07001909 }
1910
Mathieu Chartierde40d472015-10-15 17:47:48 -07001911 if (!GetInstructionFlags(insn_idx).IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001912 if (dead_start < 0)
1913 dead_start = insn_idx;
1914 } else if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001915 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1916 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaobdb76512011-09-07 11:43:16 -07001917 dead_start = -1;
1918 }
1919 }
1920 if (dead_start >= 0) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07001921 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start)
1922 << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaoba5ebb92011-08-25 17:24:37 -07001923 }
Ian Rogersc9e463c2013-06-05 16:52:26 -07001924 // To dump the state of the verify after a method, do something like:
1925 // if (PrettyMethod(dex_method_idx_, *dex_file_) ==
1926 // "boolean java.lang.String.equals(java.lang.Object)") {
1927 // LOG(INFO) << info_messages_.str();
1928 // }
jeffhaoba5ebb92011-08-25 17:24:37 -07001929 }
jeffhaobdb76512011-09-07 11:43:16 -07001930 return true;
1931}
1932
Andreas Gampe68df3202015-06-22 11:35:46 -07001933// Returns the index of the first final instance field of the given class, or kDexNoIndex if there
1934// is no such field.
1935static uint32_t GetFirstFinalInstanceFieldIndex(const DexFile& dex_file, uint16_t type_idx) {
1936 const DexFile::ClassDef* class_def = dex_file.FindClassDef(type_idx);
1937 DCHECK(class_def != nullptr);
1938 const uint8_t* class_data = dex_file.GetClassData(*class_def);
1939 DCHECK(class_data != nullptr);
1940 ClassDataItemIterator it(dex_file, class_data);
1941 // Skip static fields.
1942 while (it.HasNextStaticField()) {
1943 it.Next();
1944 }
1945 while (it.HasNextInstanceField()) {
1946 if ((it.GetFieldAccessFlags() & kAccFinal) != 0) {
1947 return it.GetMemberIndex();
1948 }
1949 it.Next();
1950 }
1951 return DexFile::kDexNoIndex;
1952}
1953
Andreas Gampea727e372015-08-25 09:22:37 -07001954// Setup a register line for the given return instruction.
1955static void AdjustReturnLine(MethodVerifier* verifier,
1956 const Instruction* ret_inst,
1957 RegisterLine* line) {
1958 Instruction::Code opcode = ret_inst->Opcode();
1959
1960 switch (opcode) {
1961 case Instruction::RETURN_VOID:
1962 case Instruction::RETURN_VOID_NO_BARRIER:
1963 SafelyMarkAllRegistersAsConflicts(verifier, line);
1964 break;
1965
1966 case Instruction::RETURN:
1967 case Instruction::RETURN_OBJECT:
1968 line->MarkAllRegistersAsConflictsExcept(verifier, ret_inst->VRegA_11x());
1969 break;
1970
1971 case Instruction::RETURN_WIDE:
1972 line->MarkAllRegistersAsConflictsExceptWide(verifier, ret_inst->VRegA_11x());
1973 break;
1974
1975 default:
1976 LOG(FATAL) << "Unknown return opcode " << opcode;
1977 UNREACHABLE();
1978 }
1979}
1980
Ian Rogers776ac1f2012-04-13 23:36:36 -07001981bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001982 // If we're doing FindLocksAtDexPc, check whether we're at the dex pc we care about.
1983 // We want the state _before_ the instruction, for the case where the dex pc we're
1984 // interested in is itself a monitor-enter instruction (which is a likely place
1985 // for a thread to be suspended).
Ian Rogers7b078e82014-09-10 14:44:24 -07001986 if (monitor_enter_dex_pcs_ != nullptr && work_insn_idx_ == interesting_dex_pc_) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001987 monitor_enter_dex_pcs_->clear(); // The new work line is more accurate than the previous one.
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001988 for (size_t i = 0; i < work_line_->GetMonitorEnterCount(); ++i) {
1989 monitor_enter_dex_pcs_->push_back(work_line_->GetMonitorEnterDexPc(i));
1990 }
1991 }
1992
jeffhaobdb76512011-09-07 11:43:16 -07001993 /*
1994 * Once we finish decoding the instruction, we need to figure out where
jeffhaod1f0fde2011-09-08 17:25:33 -07001995 * we can go from here. There are three possible ways to transfer
jeffhaobdb76512011-09-07 11:43:16 -07001996 * control to another statement:
1997 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001998 * (1) Continue to the next instruction. Applies to all but
jeffhaobdb76512011-09-07 11:43:16 -07001999 * unconditional branches, method returns, and exception throws.
jeffhaod1f0fde2011-09-08 17:25:33 -07002000 * (2) Branch to one or more possible locations. Applies to branches
jeffhaobdb76512011-09-07 11:43:16 -07002001 * and switch statements.
jeffhaod1f0fde2011-09-08 17:25:33 -07002002 * (3) Exception handlers. Applies to any instruction that can
jeffhaobdb76512011-09-07 11:43:16 -07002003 * throw an exception that is handled by an encompassing "try"
2004 * block.
2005 *
2006 * We can also return, in which case there is no successor instruction
2007 * from this point.
2008 *
Elliott Hughesadb8c672012-03-06 16:49:32 -08002009 * The behavior can be determined from the opcode flags.
jeffhaobdb76512011-09-07 11:43:16 -07002010 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002011 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
2012 const Instruction* inst = Instruction::At(insns);
Ian Rogersa75a0132012-09-28 11:41:42 -07002013 int opcode_flags = Instruction::FlagsOf(inst->Opcode());
jeffhaobdb76512011-09-07 11:43:16 -07002014
jeffhaobdb76512011-09-07 11:43:16 -07002015 int32_t branch_target = 0;
jeffhaobdb76512011-09-07 11:43:16 -07002016 bool just_set_result = false;
Andreas Gampeec6e6c12015-11-05 20:39:56 -08002017 if (kDebugVerify) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002018 // Generate processing back trace to debug verifier
Elliott Hughesc073b072012-05-24 19:29:17 -07002019 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07002020 << work_line_->Dump(this) << "\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07002021 }
jeffhaobdb76512011-09-07 11:43:16 -07002022
2023 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002024 * Make a copy of the previous register state. If the instruction
jeffhaobdb76512011-09-07 11:43:16 -07002025 * can throw an exception, we will copy/merge this into the "catch"
2026 * address rather than work_line, because we don't want the result
2027 * from the "successful" code path (e.g. a check-cast that "improves"
2028 * a type) to be visible to the exception handler.
2029 */
Ian Rogers776ac1f2012-04-13 23:36:36 -07002030 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002031 saved_line_->CopyFromLine(work_line_.get());
Ian Rogers1ff3c982014-08-12 02:30:58 -07002032 } else if (kIsDebugBuild) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002033 saved_line_->FillWithGarbage();
jeffhaobdb76512011-09-07 11:43:16 -07002034 }
Andreas Gamped12e7822015-06-25 10:26:40 -07002035 DCHECK(!have_pending_runtime_throw_failure_); // Per-instruction flag, should not be set here.
jeffhaobdb76512011-09-07 11:43:16 -07002036
Dragos Sbirlea980d16b2013-06-04 15:01:40 -07002037
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002038 // We need to ensure the work line is consistent while performing validation. When we spot a
2039 // peephole pattern we compute a new line for either the fallthrough instruction or the
2040 // branch target.
Mathieu Chartier361e04a2016-02-16 14:06:35 -08002041 RegisterLineArenaUniquePtr branch_line;
2042 RegisterLineArenaUniquePtr fallthrough_line;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002043
Sebastien Hertz5243e912013-05-21 10:55:07 +02002044 switch (inst->Opcode()) {
jeffhaobdb76512011-09-07 11:43:16 -07002045 case Instruction::NOP:
2046 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002047 * A "pure" NOP has no effect on anything. Data tables start with
jeffhaobdb76512011-09-07 11:43:16 -07002048 * a signature that looks like a NOP; if we see one of these in
2049 * the course of executing code then we have a problem.
2050 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002051 if (inst->VRegA_10x() != 0) {
jeffhaod5347e02012-03-22 17:25:05 -07002052 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "encountered data table in instruction stream";
jeffhaobdb76512011-09-07 11:43:16 -07002053 }
2054 break;
2055
2056 case Instruction::MOVE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002057 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002058 break;
jeffhaobdb76512011-09-07 11:43:16 -07002059 case Instruction::MOVE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002060 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategory1nr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002061 break;
jeffhaobdb76512011-09-07 11:43:16 -07002062 case Instruction::MOVE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002063 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategory1nr);
jeffhaobdb76512011-09-07 11:43:16 -07002064 break;
2065 case Instruction::MOVE_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002066 work_line_->CopyRegister2(this, inst->VRegA_12x(), inst->VRegB_12x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002067 break;
jeffhaobdb76512011-09-07 11:43:16 -07002068 case Instruction::MOVE_WIDE_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002069 work_line_->CopyRegister2(this, inst->VRegA_22x(), inst->VRegB_22x());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002070 break;
jeffhaobdb76512011-09-07 11:43:16 -07002071 case Instruction::MOVE_WIDE_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002072 work_line_->CopyRegister2(this, inst->VRegA_32x(), inst->VRegB_32x());
jeffhaobdb76512011-09-07 11:43:16 -07002073 break;
2074 case Instruction::MOVE_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002075 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002076 break;
jeffhaobdb76512011-09-07 11:43:16 -07002077 case Instruction::MOVE_OBJECT_FROM16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002078 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategoryRef);
Sebastien Hertz5243e912013-05-21 10:55:07 +02002079 break;
jeffhaobdb76512011-09-07 11:43:16 -07002080 case Instruction::MOVE_OBJECT_16:
Ian Rogers7b078e82014-09-10 14:44:24 -07002081 work_line_->CopyRegister1(this, inst->VRegA_32x(), inst->VRegB_32x(), kTypeCategoryRef);
jeffhaobdb76512011-09-07 11:43:16 -07002082 break;
2083
2084 /*
2085 * The move-result instructions copy data out of a "pseudo-register"
jeffhaod1f0fde2011-09-08 17:25:33 -07002086 * with the results from the last method invocation. In practice we
jeffhaobdb76512011-09-07 11:43:16 -07002087 * might want to hold the result in an actual CPU register, so the
2088 * Dalvik spec requires that these only appear immediately after an
2089 * invoke or filled-new-array.
2090 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002091 * These calls invalidate the "result" register. (This is now
jeffhaobdb76512011-09-07 11:43:16 -07002092 * redundant with the reset done below, but it can make the debug info
2093 * easier to read in some cases.)
2094 */
2095 case Instruction::MOVE_RESULT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002096 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002097 break;
2098 case Instruction::MOVE_RESULT_WIDE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002099 work_line_->CopyResultRegister2(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07002100 break;
2101 case Instruction::MOVE_RESULT_OBJECT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002102 work_line_->CopyResultRegister1(this, inst->VRegA_11x(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002103 break;
2104
Ian Rogersd81871c2011-10-03 13:57:23 -07002105 case Instruction::MOVE_EXCEPTION: {
Sebastien Hertz270a0e12015-01-16 19:49:09 +01002106 // We do not allow MOVE_EXCEPTION as the first instruction in a method. This is a simple case
2107 // where one entrypoint to the catch block is not actually an exception path.
2108 if (work_insn_idx_ == 0) {
2109 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "move-exception at pc 0x0";
2110 break;
2111 }
jeffhaobdb76512011-09-07 11:43:16 -07002112 /*
jeffhao60f83e32012-02-13 17:16:30 -08002113 * This statement can only appear as the first instruction in an exception handler. We verify
2114 * that as part of extracting the exception type from the catch block list.
jeffhaobdb76512011-09-07 11:43:16 -07002115 */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002116 const RegType& res_type = GetCaughtExceptionType();
Andreas Gampead238ce2015-08-24 21:13:08 -07002117 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_11x(), res_type);
jeffhaobdb76512011-09-07 11:43:16 -07002118 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002119 }
jeffhaobdb76512011-09-07 11:43:16 -07002120 case Instruction::RETURN_VOID:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002121 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002122 if (!GetMethodReturnType().IsConflict()) {
jeffhaod5347e02012-03-22 17:25:05 -07002123 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002124 }
jeffhaobdb76512011-09-07 11:43:16 -07002125 }
2126 break;
2127 case Instruction::RETURN:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002128 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07002129 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002130 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002131 if (!return_type.IsCategory1Types()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002132 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected non-category 1 return type "
2133 << return_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002134 } else {
2135 // Compilers may generate synthetic functions that write byte values into boolean fields.
2136 // Also, it may use integer values for boolean, byte, short, and character return types.
Sebastien Hertz5243e912013-05-21 10:55:07 +02002137 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002138 const RegType& src_type = work_line_->GetRegisterType(this, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07002139 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) ||
2140 ((return_type.IsBoolean() || return_type.IsByte() ||
2141 return_type.IsShort() || return_type.IsChar()) &&
2142 src_type.IsInteger()));
2143 /* check the register contents */
Ian Rogersad0b3a32012-04-16 14:50:24 -07002144 bool success =
Ian Rogers7b078e82014-09-10 14:44:24 -07002145 work_line_->VerifyRegisterType(this, vregA, use_src ? src_type : return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002146 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002147 AppendToLastFailMessage(StringPrintf(" return-1nr on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07002148 }
jeffhaobdb76512011-09-07 11:43:16 -07002149 }
2150 }
2151 break;
2152 case Instruction::RETURN_WIDE:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002153 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
jeffhaobdb76512011-09-07 11:43:16 -07002154 /* check the method signature */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002155 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002156 if (!return_type.IsCategory2Types()) {
jeffhaod5347e02012-03-22 17:25:05 -07002157 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-wide not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002158 } else {
2159 /* check the register contents */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002160 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002161 bool success = work_line_->VerifyRegisterType(this, vregA, return_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002162 if (!success) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002163 AppendToLastFailMessage(StringPrintf(" return-wide on invalid register v%d", vregA));
Ian Rogersd81871c2011-10-03 13:57:23 -07002164 }
jeffhaobdb76512011-09-07 11:43:16 -07002165 }
2166 }
2167 break;
2168 case Instruction::RETURN_OBJECT:
Andreas Gampef10b6e12015-08-12 10:48:12 -07002169 if (!IsInstanceConstructor() || work_line_->CheckConstructorReturn(this)) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00002170 const RegType& return_type = GetMethodReturnType();
Ian Rogersd81871c2011-10-03 13:57:23 -07002171 if (!return_type.IsReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002172 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07002173 } else {
2174 /* return_type is the *expected* return type, not register value */
2175 DCHECK(!return_type.IsZero());
2176 DCHECK(!return_type.IsUninitializedReference());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002177 const uint32_t vregA = inst->VRegA_11x();
Ian Rogers7b078e82014-09-10 14:44:24 -07002178 const RegType& reg_type = work_line_->GetRegisterType(this, vregA);
Andreas Gampea32210c2015-06-24 10:26:13 -07002179 // Disallow returning undefined, conflict & uninitialized values and verify that the
2180 // reference in vAA is an instance of the "return_type."
2181 if (reg_type.IsUndefined()) {
2182 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning undefined register";
2183 } else if (reg_type.IsConflict()) {
2184 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning register with conflict";
2185 } else if (reg_type.IsUninitializedTypes()) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00002186 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning uninitialized object '"
Brian Carlstrom93c33962013-07-26 10:37:43 -07002187 << reg_type << "'";
Andreas Gampea4c98f22015-11-06 16:24:49 -08002188 } else if (!reg_type.IsReferenceTypes()) {
2189 // We really do expect a reference here.
2190 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object returns a non-reference type "
2191 << reg_type;
Ian Rogers9074b992011-10-26 17:41:55 -07002192 } else if (!return_type.IsAssignableFrom(reg_type)) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07002193 if (reg_type.IsUnresolvedTypes() || return_type.IsUnresolvedTypes()) {
2194 Fail(VERIFY_ERROR_NO_CLASS) << " can't resolve returned type '" << return_type
2195 << "' or '" << reg_type << "'";
2196 } else {
Andreas Gampe16f149c2015-03-23 10:10:20 -07002197 bool soft_error = false;
2198 // Check whether arrays are involved. They will show a valid class status, even
2199 // if their components are erroneous.
2200 if (reg_type.IsArrayTypes() && return_type.IsArrayTypes()) {
2201 return_type.CanAssignArray(reg_type, reg_types_, class_loader_, &soft_error);
2202 if (soft_error) {
2203 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "array with erroneous component type: "
2204 << reg_type << " vs " << return_type;
2205 }
2206 }
2207
2208 if (!soft_error) {
2209 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "returning '" << reg_type
2210 << "', but expected from declaration '" << return_type << "'";
2211 }
Jeff Haoa3faaf42013-09-03 19:07:00 -07002212 }
jeffhaobdb76512011-09-07 11:43:16 -07002213 }
2214 }
2215 }
2216 break;
2217
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002218 /* could be boolean, int, float, or a null reference */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002219 case Instruction::CONST_4: {
2220 int32_t val = static_cast<int32_t>(inst->VRegB_11n() << 28) >> 28;
Andreas Gampead238ce2015-08-24 21:13:08 -07002221 work_line_->SetRegisterType<LockOp::kClear>(
2222 this, inst->VRegA_11n(), DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002223 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02002224 }
2225 case Instruction::CONST_16: {
2226 int16_t val = static_cast<int16_t>(inst->VRegB_21s());
Andreas Gampead238ce2015-08-24 21:13:08 -07002227 work_line_->SetRegisterType<LockOp::kClear>(
2228 this, inst->VRegA_21s(), DetermineCat1Constant(val, need_precise_constants_));
Ian Rogers2fa6b2e2012-10-17 00:10:17 -07002229 break;
Sebastien Hertz5243e912013-05-21 10:55:07 +02002230 }
Sebastien Hertz849600b2013-12-20 10:28:08 +01002231 case Instruction::CONST: {
2232 int32_t val = inst->VRegB_31i();
Andreas Gampead238ce2015-08-24 21:13:08 -07002233 work_line_->SetRegisterType<LockOp::kClear>(
2234 this, inst->VRegA_31i(), DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07002235 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01002236 }
2237 case Instruction::CONST_HIGH16: {
2238 int32_t val = static_cast<int32_t>(inst->VRegB_21h() << 16);
Andreas Gampead238ce2015-08-24 21:13:08 -07002239 work_line_->SetRegisterType<LockOp::kClear>(
2240 this, inst->VRegA_21h(), DetermineCat1Constant(val, need_precise_constants_));
jeffhaobdb76512011-09-07 11:43:16 -07002241 break;
Sebastien Hertz849600b2013-12-20 10:28:08 +01002242 }
jeffhaobdb76512011-09-07 11:43:16 -07002243 /* could be long or double; resolved upon use */
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002244 case Instruction::CONST_WIDE_16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002245 int64_t val = static_cast<int16_t>(inst->VRegB_21s());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002246 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2247 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002248 work_line_->SetRegisterTypeWide(this, inst->VRegA_21s(), lo, hi);
jeffhaobdb76512011-09-07 11:43:16 -07002249 break;
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002250 }
2251 case Instruction::CONST_WIDE_32: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002252 int64_t val = static_cast<int32_t>(inst->VRegB_31i());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002253 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2254 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002255 work_line_->SetRegisterTypeWide(this, inst->VRegA_31i(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002256 break;
2257 }
2258 case Instruction::CONST_WIDE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002259 int64_t val = inst->VRegB_51l();
Ian Rogersd8f69b02014-09-10 21:43:52 +00002260 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2261 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002262 work_line_->SetRegisterTypeWide(this, inst->VRegA_51l(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002263 break;
2264 }
2265 case Instruction::CONST_WIDE_HIGH16: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002266 int64_t val = static_cast<uint64_t>(inst->VRegB_21h()) << 48;
Ian Rogersd8f69b02014-09-10 21:43:52 +00002267 const RegType& lo = reg_types_.FromCat2ConstLo(static_cast<int32_t>(val), true);
2268 const RegType& hi = reg_types_.FromCat2ConstHi(static_cast<int32_t>(val >> 32), true);
Ian Rogers7b078e82014-09-10 14:44:24 -07002269 work_line_->SetRegisterTypeWide(this, inst->VRegA_21h(), lo, hi);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002270 break;
2271 }
jeffhaobdb76512011-09-07 11:43:16 -07002272 case Instruction::CONST_STRING:
Andreas Gampead238ce2015-08-24 21:13:08 -07002273 work_line_->SetRegisterType<LockOp::kClear>(
2274 this, inst->VRegA_21c(), reg_types_.JavaLangString());
Sebastien Hertz5243e912013-05-21 10:55:07 +02002275 break;
jeffhaobdb76512011-09-07 11:43:16 -07002276 case Instruction::CONST_STRING_JUMBO:
Andreas Gampead238ce2015-08-24 21:13:08 -07002277 work_line_->SetRegisterType<LockOp::kClear>(
2278 this, inst->VRegA_31c(), reg_types_.JavaLangString());
jeffhaobdb76512011-09-07 11:43:16 -07002279 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002280 case Instruction::CONST_CLASS: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002281 // Get type from instruction if unresolved then we need an access check
2282 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Ian Rogersd8f69b02014-09-10 21:43:52 +00002283 const RegType& res_type = ResolveClassAndCheckAccess(inst->VRegB_21c());
Ian Rogersad0b3a32012-04-16 14:50:24 -07002284 // Register holds class, ie its type is class, on error it will hold Conflict.
Andreas Gampead238ce2015-08-24 21:13:08 -07002285 work_line_->SetRegisterType<LockOp::kClear>(
2286 this, inst->VRegA_21c(), res_type.IsConflict() ? res_type
2287 : reg_types_.JavaLangClass());
jeffhaobdb76512011-09-07 11:43:16 -07002288 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002289 }
jeffhaobdb76512011-09-07 11:43:16 -07002290 case Instruction::MONITOR_ENTER:
Ian Rogers7b078e82014-09-10 14:44:24 -07002291 work_line_->PushMonitor(this, inst->VRegA_11x(), work_insn_idx_);
Andreas Gampec1474102015-08-18 08:57:44 -07002292 // Check whether the previous instruction is a move-object with vAA as a source, creating
2293 // untracked lock aliasing.
Mathieu Chartierde40d472015-10-15 17:47:48 -07002294 if (0 != work_insn_idx_ && !GetInstructionFlags(work_insn_idx_).IsBranchTarget()) {
Andreas Gampec1474102015-08-18 08:57:44 -07002295 uint32_t prev_idx = work_insn_idx_ - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002296 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) {
Andreas Gampec1474102015-08-18 08:57:44 -07002297 prev_idx--;
2298 }
2299 const Instruction* prev_inst = Instruction::At(code_item_->insns_ + prev_idx);
2300 switch (prev_inst->Opcode()) {
2301 case Instruction::MOVE_OBJECT:
2302 case Instruction::MOVE_OBJECT_16:
2303 case Instruction::MOVE_OBJECT_FROM16:
2304 if (prev_inst->VRegB() == inst->VRegA_11x()) {
2305 // Redo the copy. This won't change the register types, but update the lock status
2306 // for the aliased register.
2307 work_line_->CopyRegister1(this,
2308 prev_inst->VRegA(),
2309 prev_inst->VRegB(),
2310 kTypeCategoryRef);
2311 }
2312 break;
2313
2314 default: // Other instruction types ignored.
2315 break;
2316 }
2317 }
jeffhaobdb76512011-09-07 11:43:16 -07002318 break;
2319 case Instruction::MONITOR_EXIT:
2320 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002321 * monitor-exit instructions are odd. They can throw exceptions,
jeffhaobdb76512011-09-07 11:43:16 -07002322 * but when they do they act as if they succeeded and the PC is
jeffhaod1f0fde2011-09-08 17:25:33 -07002323 * pointing to the following instruction. (This behavior goes back
jeffhaobdb76512011-09-07 11:43:16 -07002324 * to the need to handle asynchronous exceptions, a now-deprecated
2325 * feature that Dalvik doesn't support.)
2326 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002327 * In practice we don't need to worry about this. The only
jeffhaobdb76512011-09-07 11:43:16 -07002328 * exceptions that can be thrown from monitor-exit are for a
jeffhaod1f0fde2011-09-08 17:25:33 -07002329 * null reference and -exit without a matching -enter. If the
jeffhaobdb76512011-09-07 11:43:16 -07002330 * structured locking checks are working, the former would have
2331 * failed on the -enter instruction, and the latter is impossible.
2332 *
2333 * This is fortunate, because issue 3221411 prevents us from
2334 * chasing the "can throw" path when monitor verification is
jeffhaod1f0fde2011-09-08 17:25:33 -07002335 * enabled. If we can fully verify the locking we can ignore
jeffhaobdb76512011-09-07 11:43:16 -07002336 * some catch blocks (which will show up as "dead" code when
2337 * we skip them here); if we can't, then the code path could be
2338 * "live" so we still need to check it.
2339 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002340 opcode_flags &= ~Instruction::kThrow;
Ian Rogers7b078e82014-09-10 14:44:24 -07002341 work_line_->PopMonitor(this, inst->VRegA_11x());
jeffhaobdb76512011-09-07 11:43:16 -07002342 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07002343 case Instruction::CHECK_CAST:
Ian Rogersd81871c2011-10-03 13:57:23 -07002344 case Instruction::INSTANCE_OF: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002345 /*
2346 * If this instruction succeeds, we will "downcast" register vA to the type in vB. (This
2347 * could be a "upcast" -- not expected, so we don't try to address it.)
2348 *
2349 * If it fails, an exception is thrown, which we deal with later by ignoring the update to
Elliott Hughesadb8c672012-03-06 16:49:32 -08002350 * dec_insn.vA when branching to a handler.
Ian Rogers28ad40d2011-10-27 15:19:26 -07002351 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02002352 const bool is_checkcast = (inst->Opcode() == Instruction::CHECK_CAST);
2353 const uint32_t type_idx = (is_checkcast) ? inst->VRegB_21c() : inst->VRegC_22c();
Ian Rogersd8f69b02014-09-10 21:43:52 +00002354 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002355 if (res_type.IsConflict()) {
Andreas Gampe00633eb2014-07-17 16:13:35 -07002356 // If this is a primitive type, fail HARD.
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002357 mirror::Class* klass = dex_cache_->GetResolvedType(type_idx);
Andreas Gampe00633eb2014-07-17 16:13:35 -07002358 if (klass != nullptr && klass->IsPrimitive()) {
2359 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "using primitive type "
2360 << dex_file_->StringByTypeIdx(type_idx) << " in instanceof in "
2361 << GetDeclaringClass();
2362 break;
2363 }
2364
Ian Rogersad0b3a32012-04-16 14:50:24 -07002365 DCHECK_NE(failures_.size(), 0U);
2366 if (!is_checkcast) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002367 work_line_->SetRegisterType<LockOp::kClear>(this,
2368 inst->VRegA_22c(),
2369 reg_types_.Boolean());
Ian Rogersad0b3a32012-04-16 14:50:24 -07002370 }
2371 break; // bad class
Ian Rogers9f1ab122011-12-12 08:52:43 -08002372 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002373 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Sebastien Hertz5243e912013-05-21 10:55:07 +02002374 uint32_t orig_type_reg = (is_checkcast) ? inst->VRegA_21c() : inst->VRegB_22c();
Ian Rogers7b078e82014-09-10 14:44:24 -07002375 const RegType& orig_type = work_line_->GetRegisterType(this, orig_type_reg);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002376 if (!res_type.IsNonZeroReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002377 if (is_checkcast) {
2378 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on unexpected class " << res_type;
2379 } else {
2380 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on unexpected class " << res_type;
2381 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002382 } else if (!orig_type.IsReferenceTypes()) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002383 if (is_checkcast) {
2384 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on non-reference in v" << orig_type_reg;
2385 } else {
2386 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on non-reference in v" << orig_type_reg;
2387 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00002388 } else if (orig_type.IsUninitializedTypes()) {
2389 if (is_checkcast) {
2390 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on uninitialized reference in v"
2391 << orig_type_reg;
2392 } else {
2393 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance-of on uninitialized reference in v"
2394 << orig_type_reg;
2395 }
jeffhao2a8a90e2011-09-26 14:25:31 -07002396 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002397 if (is_checkcast) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002398 work_line_->SetRegisterType<LockOp::kKeep>(this, inst->VRegA_21c(), res_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002399 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07002400 work_line_->SetRegisterType<LockOp::kClear>(this,
2401 inst->VRegA_22c(),
2402 reg_types_.Boolean());
jeffhaobdb76512011-09-07 11:43:16 -07002403 }
jeffhaobdb76512011-09-07 11:43:16 -07002404 }
jeffhao2a8a90e2011-09-26 14:25:31 -07002405 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002406 }
2407 case Instruction::ARRAY_LENGTH: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002408 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegB_12x());
Ian Rogers28ad40d2011-10-27 15:19:26 -07002409 if (res_type.IsReferenceTypes()) {
Ian Rogers89310de2012-02-01 13:47:30 -08002410 if (!res_type.IsArrayTypes() && !res_type.IsZero()) { // ie not an array or null
jeffhaod5347e02012-03-22 17:25:05 -07002411 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002412 } else {
Andreas Gampead238ce2015-08-24 21:13:08 -07002413 work_line_->SetRegisterType<LockOp::kClear>(this,
2414 inst->VRegA_12x(),
2415 reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07002416 }
Andreas Gampe65c9db82014-07-28 13:14:34 -07002417 } else {
2418 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002419 }
2420 break;
2421 }
2422 case Instruction::NEW_INSTANCE: {
Ian Rogersd8f69b02014-09-10 21:43:52 +00002423 const RegType& res_type = ResolveClassAndCheckAccess(inst->VRegB_21c());
Ian Rogersad0b3a32012-04-16 14:50:24 -07002424 if (res_type.IsConflict()) {
2425 DCHECK_NE(failures_.size(), 0U);
2426 break; // bad class
jeffhao8cd6dda2012-02-22 10:15:34 -08002427 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002428 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
2429 // can't create an instance of an interface or abstract class */
2430 if (!res_type.IsInstantiableTypes()) {
2431 Fail(VERIFY_ERROR_INSTANTIATION)
2432 << "new-instance on primitive, interface or abstract class" << res_type;
Ian Rogers08f753d2012-08-24 14:35:25 -07002433 // Soft failure so carry on to set register type.
Ian Rogersd81871c2011-10-03 13:57:23 -07002434 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00002435 const RegType& uninit_type = reg_types_.Uninitialized(res_type, work_insn_idx_);
Ian Rogers08f753d2012-08-24 14:35:25 -07002436 // Any registers holding previous allocations from this address that have not yet been
2437 // initialized must be marked invalid.
Ian Rogers7b078e82014-09-10 14:44:24 -07002438 work_line_->MarkUninitRefsAsInvalid(this, uninit_type);
Ian Rogers08f753d2012-08-24 14:35:25 -07002439 // add the new uninitialized reference to the register state
Andreas Gampead238ce2015-08-24 21:13:08 -07002440 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_21c(), uninit_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002441 break;
2442 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08002443 case Instruction::NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002444 VerifyNewArray(inst, false, false);
jeffhaobdb76512011-09-07 11:43:16 -07002445 break;
2446 case Instruction::FILLED_NEW_ARRAY:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002447 VerifyNewArray(inst, true, false);
Ian Rogers0c4a5062012-02-03 15:18:59 -08002448 just_set_result = true; // Filled new array sets result register
jeffhaobdb76512011-09-07 11:43:16 -07002449 break;
Ian Rogers0c4a5062012-02-03 15:18:59 -08002450 case Instruction::FILLED_NEW_ARRAY_RANGE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002451 VerifyNewArray(inst, true, true);
Ian Rogers0c4a5062012-02-03 15:18:59 -08002452 just_set_result = true; // Filled new array range sets result register
2453 break;
jeffhaobdb76512011-09-07 11:43:16 -07002454 case Instruction::CMPL_FLOAT:
2455 case Instruction::CMPG_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07002456 if (!work_line_->VerifyRegisterType(this, inst->VRegB_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08002457 break;
2458 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002459 if (!work_line_->VerifyRegisterType(this, inst->VRegC_23x(), reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08002460 break;
2461 }
Andreas Gampead238ce2015-08-24 21:13:08 -07002462 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002463 break;
2464 case Instruction::CMPL_DOUBLE:
2465 case Instruction::CMPG_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07002466 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegB_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002467 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002468 break;
2469 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002470 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.DoubleLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002471 reg_types_.DoubleHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002472 break;
2473 }
Andreas Gampead238ce2015-08-24 21:13:08 -07002474 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002475 break;
2476 case Instruction::CMP_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07002477 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegB_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002478 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002479 break;
2480 }
Ian Rogers7b078e82014-09-10 14:44:24 -07002481 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.LongLo(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002482 reg_types_.LongHi())) {
jeffhao457cc512012-02-02 16:55:13 -08002483 break;
2484 }
Andreas Gampead238ce2015-08-24 21:13:08 -07002485 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002486 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002487 case Instruction::THROW: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002488 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegA_11x());
Ian Rogersb4903572012-10-11 11:52:56 -07002489 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(res_type)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00002490 if (res_type.IsUninitializedTypes()) {
2491 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "thrown exception not initialized";
Pavel Vyssotski980027c2016-02-11 20:28:11 +06002492 } else if (!res_type.IsReferenceTypes()) {
2493 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "thrown value of non-reference type " << res_type;
David Brazdil68b5c0b2016-01-19 14:25:29 +00002494 } else {
2495 Fail(res_type.IsUnresolvedTypes() ? VERIFY_ERROR_NO_CLASS : VERIFY_ERROR_BAD_CLASS_SOFT)
2496 << "thrown class " << res_type << " not instanceof Throwable";
2497 }
jeffhaobdb76512011-09-07 11:43:16 -07002498 }
2499 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002500 }
jeffhaobdb76512011-09-07 11:43:16 -07002501 case Instruction::GOTO:
2502 case Instruction::GOTO_16:
2503 case Instruction::GOTO_32:
2504 /* no effect on or use of registers */
2505 break;
2506
2507 case Instruction::PACKED_SWITCH:
2508 case Instruction::SPARSE_SWITCH:
2509 /* verify that vAA is an integer, or can be converted to one */
Ian Rogers7b078e82014-09-10 14:44:24 -07002510 work_line_->VerifyRegisterType(this, inst->VRegA_31t(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002511 break;
2512
Ian Rogersd81871c2011-10-03 13:57:23 -07002513 case Instruction::FILL_ARRAY_DATA: {
2514 /* Similar to the verification done for APUT */
Ian Rogers7b078e82014-09-10 14:44:24 -07002515 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t());
Ian Rogers89310de2012-02-01 13:47:30 -08002516 /* array_type can be null if the reg type is Zero */
2517 if (!array_type.IsZero()) {
jeffhao457cc512012-02-02 16:55:13 -08002518 if (!array_type.IsArrayTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002519 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with array type "
2520 << array_type;
Andreas Gampebb18a032016-03-22 20:34:25 -07002521 } else if (array_type.IsUnresolvedTypes()) {
2522 // If it's an unresolved array type, it must be non-primitive.
2523 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data for array of type "
2524 << array_type;
Ian Rogers89310de2012-02-01 13:47:30 -08002525 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00002526 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
Ian Rogersad0b3a32012-04-16 14:50:24 -07002527 DCHECK(!component_type.IsConflict());
jeffhao457cc512012-02-02 16:55:13 -08002528 if (component_type.IsNonZeroReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002529 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with component type "
2530 << component_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002531 } else {
jeffhao457cc512012-02-02 16:55:13 -08002532 // Now verify if the element width in the table matches the element width declared in
2533 // the array
Andreas Gampe53de99c2015-08-17 13:43:55 -07002534 const uint16_t* array_data =
2535 insns + (insns[1] | (static_cast<int32_t>(insns[2]) << 16));
jeffhao457cc512012-02-02 16:55:13 -08002536 if (array_data[0] != Instruction::kArrayDataSignature) {
jeffhaod5347e02012-03-22 17:25:05 -07002537 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid magic for array-data";
jeffhao457cc512012-02-02 16:55:13 -08002538 } else {
2539 size_t elem_width = Primitive::ComponentSize(component_type.GetPrimitiveType());
2540 // Since we don't compress the data in Dex, expect to see equal width of data stored
2541 // in the table and expected from the array class.
2542 if (array_data[1] != elem_width) {
jeffhaod5347e02012-03-22 17:25:05 -07002543 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-data size mismatch (" << array_data[1]
2544 << " vs " << elem_width << ")";
jeffhao457cc512012-02-02 16:55:13 -08002545 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002546 }
2547 }
jeffhaobdb76512011-09-07 11:43:16 -07002548 }
2549 }
2550 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002551 }
jeffhaobdb76512011-09-07 11:43:16 -07002552 case Instruction::IF_EQ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002553 case Instruction::IF_NE: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002554 const RegType& reg_type1 = work_line_->GetRegisterType(this, inst->VRegA_22t());
2555 const RegType& reg_type2 = work_line_->GetRegisterType(this, inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002556 bool mismatch = false;
2557 if (reg_type1.IsZero()) { // zero then integral or reference expected
2558 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes();
2559 } else if (reg_type1.IsReferenceTypes()) { // both references?
2560 mismatch = !reg_type2.IsReferenceTypes();
2561 } else { // both integral?
2562 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes();
2563 }
2564 if (mismatch) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002565 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to if-eq/if-ne (" << reg_type1 << ","
2566 << reg_type2 << ") must both be references or integral";
jeffhaobdb76512011-09-07 11:43:16 -07002567 }
2568 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002569 }
jeffhaobdb76512011-09-07 11:43:16 -07002570 case Instruction::IF_LT:
2571 case Instruction::IF_GE:
2572 case Instruction::IF_GT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002573 case Instruction::IF_LE: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002574 const RegType& reg_type1 = work_line_->GetRegisterType(this, inst->VRegA_22t());
2575 const RegType& reg_type2 = work_line_->GetRegisterType(this, inst->VRegB_22t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002576 if (!reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002577 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to 'if' (" << reg_type1 << ","
2578 << reg_type2 << ") must be integral";
jeffhaobdb76512011-09-07 11:43:16 -07002579 }
2580 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002581 }
jeffhaobdb76512011-09-07 11:43:16 -07002582 case Instruction::IF_EQZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002583 case Instruction::IF_NEZ: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002584 const RegType& reg_type = work_line_->GetRegisterType(this, inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002585 if (!reg_type.IsReferenceTypes() && !reg_type.IsIntegralTypes()) {
Brian Carlstrom93c33962013-07-26 10:37:43 -07002586 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
2587 << " unexpected as arg to if-eqz/if-nez";
Ian Rogersd81871c2011-10-03 13:57:23 -07002588 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002589
2590 // Find previous instruction - its existence is a precondition to peephole optimization.
Ian Rogers9b360392013-06-06 14:45:07 -07002591 uint32_t instance_of_idx = 0;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002592 if (0 != work_insn_idx_) {
Ian Rogers9b360392013-06-06 14:45:07 -07002593 instance_of_idx = work_insn_idx_ - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002594 while (0 != instance_of_idx && !GetInstructionFlags(instance_of_idx).IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07002595 instance_of_idx--;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002596 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07002597 if (FailOrAbort(this, GetInstructionFlags(instance_of_idx).IsOpcode(),
Andreas Gampe7c038102014-10-27 20:08:46 -07002598 "Unable to get previous instruction of if-eqz/if-nez for work index ",
2599 work_insn_idx_)) {
2600 break;
2601 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002602 } else {
2603 break;
2604 }
2605
Ian Rogers9b360392013-06-06 14:45:07 -07002606 const Instruction* instance_of_inst = Instruction::At(code_item_->insns_ + instance_of_idx);
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002607
2608 /* Check for peep-hole pattern of:
2609 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002610 * instance-of vX, vY, T;
2611 * ifXXX vX, label ;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002612 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002613 * label:
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002614 * ...;
Ian Rogersfae370a2013-06-05 08:33:27 -07002615 * and sharpen the type of vY to be type T.
2616 * Note, this pattern can't be if:
2617 * - if there are other branches to this branch,
2618 * - when vX == vY.
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002619 */
Ian Rogersfae370a2013-06-05 08:33:27 -07002620 if (!CurrentInsnFlags()->IsBranchTarget() &&
Ian Rogers9b360392013-06-06 14:45:07 -07002621 (Instruction::INSTANCE_OF == instance_of_inst->Opcode()) &&
2622 (inst->VRegA_21t() == instance_of_inst->VRegA_22c()) &&
2623 (instance_of_inst->VRegA_22c() != instance_of_inst->VRegB_22c())) {
Ian Rogersebbdd872014-07-07 23:53:08 -07002624 // Check the type of the instance-of is different than that of registers type, as if they
2625 // are the same there is no work to be done here. Check that the conversion is not to or
2626 // from an unresolved type as type information is imprecise. If the instance-of is to an
2627 // interface then ignore the type information as interfaces can only be treated as Objects
2628 // and we don't want to disallow field and other operations on the object. If the value
2629 // being instance-of checked against is known null (zero) then allow the optimization as
2630 // we didn't have type information. If the merge of the instance-of type with the original
2631 // type is assignable to the original then allow optimization. This check is performed to
2632 // ensure that subsequent merges don't lose type information - such as becoming an
2633 // interface from a class that would lose information relevant to field checks.
Ian Rogers7b078e82014-09-10 14:44:24 -07002634 const RegType& orig_type = work_line_->GetRegisterType(this, instance_of_inst->VRegB_22c());
Ian Rogersd8f69b02014-09-10 21:43:52 +00002635 const RegType& cast_type = ResolveClassAndCheckAccess(instance_of_inst->VRegC_22c());
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002636
Ian Rogersebbdd872014-07-07 23:53:08 -07002637 if (!orig_type.Equals(cast_type) &&
2638 !cast_type.IsUnresolvedTypes() && !orig_type.IsUnresolvedTypes() &&
Andreas Gampe00633eb2014-07-17 16:13:35 -07002639 cast_type.HasClass() && // Could be conflict type, make sure it has a class.
Ian Rogersebbdd872014-07-07 23:53:08 -07002640 !cast_type.GetClass()->IsInterface() &&
2641 (orig_type.IsZero() ||
2642 orig_type.IsStrictlyAssignableFrom(cast_type.Merge(orig_type, &reg_types_)))) {
Ian Rogersd0fbd852013-09-24 18:17:04 -07002643 RegisterLine* update_line = RegisterLine::Create(code_item_->registers_size_, this);
Ian Rogersfae370a2013-06-05 08:33:27 -07002644 if (inst->Opcode() == Instruction::IF_EQZ) {
Ian Rogers9b360392013-06-06 14:45:07 -07002645 fallthrough_line.reset(update_line);
Ian Rogersfae370a2013-06-05 08:33:27 -07002646 } else {
Ian Rogers9b360392013-06-06 14:45:07 -07002647 branch_line.reset(update_line);
2648 }
2649 update_line->CopyFromLine(work_line_.get());
Andreas Gampead238ce2015-08-24 21:13:08 -07002650 update_line->SetRegisterType<LockOp::kKeep>(this,
2651 instance_of_inst->VRegB_22c(),
2652 cast_type);
Mathieu Chartierde40d472015-10-15 17:47:48 -07002653 if (!GetInstructionFlags(instance_of_idx).IsBranchTarget() && 0 != instance_of_idx) {
Ian Rogers9b360392013-06-06 14:45:07 -07002654 // See if instance-of was preceded by a move-object operation, common due to the small
2655 // register encoding space of instance-of, and propagate type information to the source
2656 // of the move-object.
2657 uint32_t move_idx = instance_of_idx - 1;
Mathieu Chartierde40d472015-10-15 17:47:48 -07002658 while (0 != move_idx && !GetInstructionFlags(move_idx).IsOpcode()) {
Ian Rogers9b360392013-06-06 14:45:07 -07002659 move_idx--;
2660 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07002661 if (FailOrAbort(this, GetInstructionFlags(move_idx).IsOpcode(),
Andreas Gampe7c038102014-10-27 20:08:46 -07002662 "Unable to get previous instruction of if-eqz/if-nez for work index ",
2663 work_insn_idx_)) {
2664 break;
2665 }
Ian Rogers9b360392013-06-06 14:45:07 -07002666 const Instruction* move_inst = Instruction::At(code_item_->insns_ + move_idx);
2667 switch (move_inst->Opcode()) {
2668 case Instruction::MOVE_OBJECT:
2669 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002670 update_line->SetRegisterType<LockOp::kKeep>(this,
2671 move_inst->VRegB_12x(),
2672 cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002673 }
2674 break;
2675 case Instruction::MOVE_OBJECT_FROM16:
2676 if (move_inst->VRegA_22x() == instance_of_inst->VRegB_22c()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002677 update_line->SetRegisterType<LockOp::kKeep>(this,
2678 move_inst->VRegB_22x(),
2679 cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002680 }
2681 break;
2682 case Instruction::MOVE_OBJECT_16:
2683 if (move_inst->VRegA_32x() == instance_of_inst->VRegB_22c()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07002684 update_line->SetRegisterType<LockOp::kKeep>(this,
2685 move_inst->VRegB_32x(),
2686 cast_type);
Ian Rogers9b360392013-06-06 14:45:07 -07002687 }
2688 break;
2689 default:
2690 break;
2691 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07002692 }
2693 }
2694 }
2695
jeffhaobdb76512011-09-07 11:43:16 -07002696 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002697 }
jeffhaobdb76512011-09-07 11:43:16 -07002698 case Instruction::IF_LTZ:
2699 case Instruction::IF_GEZ:
2700 case Instruction::IF_GTZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002701 case Instruction::IF_LEZ: {
Ian Rogers7b078e82014-09-10 14:44:24 -07002702 const RegType& reg_type = work_line_->GetRegisterType(this, inst->VRegA_21t());
Ian Rogersd81871c2011-10-03 13:57:23 -07002703 if (!reg_type.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002704 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
2705 << " unexpected as arg to if-ltz/if-gez/if-gtz/if-lez";
Ian Rogersd81871c2011-10-03 13:57:23 -07002706 }
jeffhaobdb76512011-09-07 11:43:16 -07002707 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002708 }
jeffhaobdb76512011-09-07 11:43:16 -07002709 case Instruction::AGET_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002710 VerifyAGet(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002711 break;
jeffhaobdb76512011-09-07 11:43:16 -07002712 case Instruction::AGET_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002713 VerifyAGet(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002714 break;
jeffhaobdb76512011-09-07 11:43:16 -07002715 case Instruction::AGET_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002716 VerifyAGet(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002717 break;
jeffhaobdb76512011-09-07 11:43:16 -07002718 case Instruction::AGET_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002719 VerifyAGet(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002720 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002721 case Instruction::AGET:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002722 VerifyAGet(inst, reg_types_.Integer(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002723 break;
jeffhaobdb76512011-09-07 11:43:16 -07002724 case Instruction::AGET_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002725 VerifyAGet(inst, reg_types_.LongLo(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002726 break;
2727 case Instruction::AGET_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002728 VerifyAGet(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002729 break;
2730
Ian Rogersd81871c2011-10-03 13:57:23 -07002731 case Instruction::APUT_BOOLEAN:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002732 VerifyAPut(inst, reg_types_.Boolean(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002733 break;
2734 case Instruction::APUT_BYTE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002735 VerifyAPut(inst, reg_types_.Byte(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002736 break;
2737 case Instruction::APUT_CHAR:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002738 VerifyAPut(inst, reg_types_.Char(), true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002739 break;
2740 case Instruction::APUT_SHORT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002741 VerifyAPut(inst, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002742 break;
2743 case Instruction::APUT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002744 VerifyAPut(inst, reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002745 break;
2746 case Instruction::APUT_WIDE:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002747 VerifyAPut(inst, reg_types_.LongLo(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002748 break;
2749 case Instruction::APUT_OBJECT:
Sebastien Hertz5243e912013-05-21 10:55:07 +02002750 VerifyAPut(inst, reg_types_.JavaLangObject(false), false);
jeffhaobdb76512011-09-07 11:43:16 -07002751 break;
2752
jeffhaobdb76512011-09-07 11:43:16 -07002753 case Instruction::IGET_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002754 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002755 break;
jeffhaobdb76512011-09-07 11:43:16 -07002756 case Instruction::IGET_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002757 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002758 break;
jeffhaobdb76512011-09-07 11:43:16 -07002759 case Instruction::IGET_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002760 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002761 break;
jeffhaobdb76512011-09-07 11:43:16 -07002762 case Instruction::IGET_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002763 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002764 break;
2765 case Instruction::IGET:
Andreas Gampe896df402014-10-20 22:25:29 -07002766 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002767 break;
2768 case Instruction::IGET_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002769 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002770 break;
2771 case Instruction::IGET_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002772 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false,
2773 false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002774 break;
jeffhaobdb76512011-09-07 11:43:16 -07002775
Ian Rogersd81871c2011-10-03 13:57:23 -07002776 case Instruction::IPUT_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002777 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002778 break;
2779 case Instruction::IPUT_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002780 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002781 break;
2782 case Instruction::IPUT_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002783 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002784 break;
2785 case Instruction::IPUT_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002786 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002787 break;
2788 case Instruction::IPUT:
Andreas Gampe896df402014-10-20 22:25:29 -07002789 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002790 break;
2791 case Instruction::IPUT_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002792 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002793 break;
jeffhaobdb76512011-09-07 11:43:16 -07002794 case Instruction::IPUT_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002795 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false,
2796 false);
jeffhaobdb76512011-09-07 11:43:16 -07002797 break;
2798
jeffhaobdb76512011-09-07 11:43:16 -07002799 case Instruction::SGET_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002800 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002801 break;
jeffhaobdb76512011-09-07 11:43:16 -07002802 case Instruction::SGET_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002803 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002804 break;
jeffhaobdb76512011-09-07 11:43:16 -07002805 case Instruction::SGET_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002806 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002807 break;
jeffhaobdb76512011-09-07 11:43:16 -07002808 case Instruction::SGET_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002809 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002810 break;
2811 case Instruction::SGET:
Andreas Gampe896df402014-10-20 22:25:29 -07002812 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002813 break;
2814 case Instruction::SGET_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002815 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002816 break;
2817 case Instruction::SGET_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002818 VerifyISFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false,
2819 true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002820 break;
2821
2822 case Instruction::SPUT_BOOLEAN:
Andreas Gampe896df402014-10-20 22:25:29 -07002823 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002824 break;
2825 case Instruction::SPUT_BYTE:
Andreas Gampe896df402014-10-20 22:25:29 -07002826 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002827 break;
2828 case Instruction::SPUT_CHAR:
Andreas Gampe896df402014-10-20 22:25:29 -07002829 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002830 break;
2831 case Instruction::SPUT_SHORT:
Andreas Gampe896df402014-10-20 22:25:29 -07002832 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002833 break;
2834 case Instruction::SPUT:
Andreas Gampe896df402014-10-20 22:25:29 -07002835 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002836 break;
2837 case Instruction::SPUT_WIDE:
Andreas Gampe896df402014-10-20 22:25:29 -07002838 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002839 break;
2840 case Instruction::SPUT_OBJECT:
Andreas Gampe896df402014-10-20 22:25:29 -07002841 VerifyISFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false,
2842 true);
jeffhaobdb76512011-09-07 11:43:16 -07002843 break;
2844
2845 case Instruction::INVOKE_VIRTUAL:
2846 case Instruction::INVOKE_VIRTUAL_RANGE:
2847 case Instruction::INVOKE_SUPER:
Ian Rogersd81871c2011-10-03 13:57:23 -07002848 case Instruction::INVOKE_SUPER_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002849 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE ||
2850 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002851 bool is_super = (inst->Opcode() == Instruction::INVOKE_SUPER ||
2852 inst->Opcode() == Instruction::INVOKE_SUPER_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08002853 MethodType type = is_super ? METHOD_SUPER : METHOD_VIRTUAL;
2854 ArtMethod* called_method = VerifyInvocationArgs(inst, type, is_range);
Ian Rogersd8f69b02014-09-10 21:43:52 +00002855 const RegType* return_type = nullptr;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002856 if (called_method != nullptr) {
Andreas Gampe542451c2016-07-26 09:02:02 -07002857 PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Vladimir Marko05792b92015-08-03 11:56:49 +01002858 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_,
2859 pointer_size);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002860 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07002861 return_type = &FromClass(called_method->GetReturnTypeDescriptor(),
2862 return_type_class,
2863 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002864 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002865 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2866 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002867 }
2868 }
2869 if (return_type == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002870 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002871 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2872 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002873 const char* descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07002874 return_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
jeffhaobdb76512011-09-07 11:43:16 -07002875 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002876 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002877 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002878 } else {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07002879 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002880 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002881 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07002882 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002883 }
jeffhaobdb76512011-09-07 11:43:16 -07002884 case Instruction::INVOKE_DIRECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002885 case Instruction::INVOKE_DIRECT_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002886 bool is_range = (inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08002887 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range);
Ian Rogers46685432012-06-03 22:26:43 -07002888 const char* return_type_descriptor;
2889 bool is_constructor;
Ian Rogersd8f69b02014-09-10 21:43:52 +00002890 const RegType* return_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07002891 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002892 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers46685432012-06-03 22:26:43 -07002893 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
Ian Rogersdfb325e2013-10-30 01:00:44 -07002894 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0;
Ian Rogers46685432012-06-03 22:26:43 -07002895 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
2896 return_type_descriptor = dex_file_->StringByTypeIdx(return_type_idx);
2897 } else {
2898 is_constructor = called_method->IsConstructor();
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002899 return_type_descriptor = called_method->GetReturnTypeDescriptor();
Andreas Gampe542451c2016-07-26 09:02:02 -07002900 PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Vladimir Marko05792b92015-08-03 11:56:49 +01002901 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_,
2902 pointer_size);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002903 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07002904 return_type = &FromClass(return_type_descriptor,
2905 return_type_class,
2906 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogers1ff3c982014-08-12 02:30:58 -07002907 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07002908 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
2909 self_->ClearException();
Ian Rogers1ff3c982014-08-12 02:30:58 -07002910 }
Ian Rogers46685432012-06-03 22:26:43 -07002911 }
2912 if (is_constructor) {
jeffhaobdb76512011-09-07 11:43:16 -07002913 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002914 * Some additional checks when calling a constructor. We know from the invocation arg check
2915 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2916 * that to require that called_method->klass is the same as this->klass or this->super,
2917 * allowing the latter only if the "this" argument is the same as the "this" argument to
2918 * this method (which implies that we're in a constructor ourselves).
jeffhaobdb76512011-09-07 11:43:16 -07002919 */
Ian Rogers7b078e82014-09-10 14:44:24 -07002920 const RegType& this_type = work_line_->GetInvocationThis(this, inst, is_range);
jeffhaob57e9522012-04-26 18:08:21 -07002921 if (this_type.IsConflict()) // failure.
2922 break;
jeffhaobdb76512011-09-07 11:43:16 -07002923
jeffhaob57e9522012-04-26 18:08:21 -07002924 /* no null refs allowed (?) */
2925 if (this_type.IsZero()) {
2926 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unable to initialize null ref";
2927 break;
jeffhao2a8a90e2011-09-26 14:25:31 -07002928 }
jeffhaob57e9522012-04-26 18:08:21 -07002929
2930 /* must be in same class or in superclass */
Ian Rogersd8f69b02014-09-10 21:43:52 +00002931 // const RegType& this_super_klass = this_type.GetSuperClass(&reg_types_);
Ian Rogers46685432012-06-03 22:26:43 -07002932 // TODO: re-enable constructor type verification
2933 // if (this_super_klass.IsConflict()) {
jeffhaob57e9522012-04-26 18:08:21 -07002934 // Unknown super class, fail so we re-check at runtime.
Ian Rogers46685432012-06-03 22:26:43 -07002935 // Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "super class unknown for '" << this_type << "'";
2936 // break;
2937 // }
jeffhaob57e9522012-04-26 18:08:21 -07002938
2939 /* arg must be an uninitialized reference */
2940 if (!this_type.IsUninitializedTypes()) {
2941 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Expected initialization on uninitialized reference "
2942 << this_type;
2943 break;
2944 }
2945
2946 /*
2947 * Replace the uninitialized reference with an initialized one. We need to do this for all
2948 * registers that have the same object instance in them, not just the "this" register.
2949 */
Nicolas Geoffray98e6ce42016-02-16 18:42:15 +00002950 work_line_->MarkRefsAsInitialized(this, this_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002951 }
Ian Rogers1ff3c982014-08-12 02:30:58 -07002952 if (return_type == nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07002953 return_type = &reg_types_.FromDescriptor(GetClassLoader(), return_type_descriptor, false);
Ian Rogers1ff3c982014-08-12 02:30:58 -07002954 }
2955 if (!return_type->IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002956 work_line_->SetResultRegisterType(this, *return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002957 } else {
Ian Rogers1ff3c982014-08-12 02:30:58 -07002958 work_line_->SetResultRegisterTypeWide(*return_type, return_type->HighHalf(&reg_types_));
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002959 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002960 just_set_result = true;
2961 break;
2962 }
2963 case Instruction::INVOKE_STATIC:
2964 case Instruction::INVOKE_STATIC_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002965 bool is_range = (inst->Opcode() == Instruction::INVOKE_STATIC_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08002966 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002967 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07002968 if (called_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002969 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002970 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2971 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartier590fee92013-09-13 13:46:47 -07002972 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002973 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07002974 descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002975 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00002976 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002977 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07002978 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08002979 } else {
2980 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
2981 }
jeffhaobdb76512011-09-07 11:43:16 -07002982 just_set_result = true;
2983 }
2984 break;
jeffhaobdb76512011-09-07 11:43:16 -07002985 case Instruction::INVOKE_INTERFACE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002986 case Instruction::INVOKE_INTERFACE_RANGE: {
Sebastien Hertz5243e912013-05-21 10:55:07 +02002987 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE);
Alex Light7268d472016-01-20 15:50:01 -08002988 ArtMethod* abs_method = VerifyInvocationArgs(inst, METHOD_INTERFACE, is_range);
Ian Rogers7b078e82014-09-10 14:44:24 -07002989 if (abs_method != nullptr) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08002990 mirror::Class* called_interface = abs_method->GetDeclaringClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002991 if (!called_interface->IsInterface() && !called_interface->IsObjectClass()) {
2992 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected interface class in invoke-interface '"
2993 << PrettyMethod(abs_method) << "'";
2994 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07002995 }
Ian Rogers0d604842012-04-16 14:50:24 -07002996 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002997 /* Get the type of the "this" arg, which should either be a sub-interface of called
2998 * interface or Object (see comments in RegType::JoinClass).
2999 */
Ian Rogers7b078e82014-09-10 14:44:24 -07003000 const RegType& this_type = work_line_->GetInvocationThis(this, inst, is_range);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003001 if (this_type.IsZero()) {
3002 /* null pointer always passes (and always fails at runtime) */
3003 } else {
3004 if (this_type.IsUninitializedTypes()) {
3005 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface call on uninitialized object "
3006 << this_type;
3007 break;
3008 }
3009 // In the past we have tried to assert that "called_interface" is assignable
3010 // from "this_type.GetClass()", however, as we do an imprecise Join
3011 // (RegType::JoinClass) we don't have full information on what interfaces are
3012 // implemented by "this_type". For example, two classes may implement the same
3013 // interfaces and have a common parent that doesn't implement the interface. The
3014 // join will set "this_type" to the parent class and a test that this implements
3015 // the interface will incorrectly fail.
3016 }
3017 /*
3018 * We don't have an object instance, so we can't find the concrete method. However, all of
3019 * the type information is in the abstract method, so we're good.
3020 */
3021 const char* descriptor;
Ian Rogers7b078e82014-09-10 14:44:24 -07003022 if (abs_method == nullptr) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02003023 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003024 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
3025 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Mathieu Chartierde40d472015-10-15 17:47:48 -07003026 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003027 } else {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003028 descriptor = abs_method->GetReturnTypeDescriptor();
Ian Rogersad0b3a32012-04-16 14:50:24 -07003029 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00003030 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003031 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003032 work_line_->SetResultRegisterType(this, return_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003033 } else {
3034 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3035 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003036 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07003037 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07003038 }
jeffhaobdb76512011-09-07 11:43:16 -07003039 case Instruction::NEG_INT:
3040 case Instruction::NOT_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003041 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003042 break;
3043 case Instruction::NEG_LONG:
3044 case Instruction::NOT_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003045 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003046 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003047 break;
3048 case Instruction::NEG_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003049 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003050 break;
3051 case Instruction::NEG_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003052 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003053 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003054 break;
3055 case Instruction::INT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003056 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003057 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003058 break;
3059 case Instruction::INT_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003060 work_line_->CheckUnaryOp(this, inst, reg_types_.Float(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003061 break;
3062 case Instruction::INT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003063 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003064 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003065 break;
3066 case Instruction::LONG_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003067 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003068 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003069 break;
3070 case Instruction::LONG_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003071 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003072 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003073 break;
3074 case Instruction::LONG_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003075 work_line_->CheckUnaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003076 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003077 break;
3078 case Instruction::FLOAT_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003079 work_line_->CheckUnaryOp(this, inst, reg_types_.Integer(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003080 break;
3081 case Instruction::FLOAT_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003082 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003083 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003084 break;
3085 case Instruction::FLOAT_TO_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003086 work_line_->CheckUnaryOpToWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003087 reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07003088 break;
3089 case Instruction::DOUBLE_TO_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003090 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003091 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003092 break;
3093 case Instruction::DOUBLE_TO_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003094 work_line_->CheckUnaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003095 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003096 break;
3097 case Instruction::DOUBLE_TO_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003098 work_line_->CheckUnaryOpFromWide(this, inst, reg_types_.Float(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003099 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003100 break;
3101 case Instruction::INT_TO_BYTE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003102 work_line_->CheckUnaryOp(this, inst, reg_types_.Byte(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003103 break;
3104 case Instruction::INT_TO_CHAR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003105 work_line_->CheckUnaryOp(this, inst, reg_types_.Char(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003106 break;
3107 case Instruction::INT_TO_SHORT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003108 work_line_->CheckUnaryOp(this, inst, reg_types_.Short(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003109 break;
3110
3111 case Instruction::ADD_INT:
3112 case Instruction::SUB_INT:
3113 case Instruction::MUL_INT:
3114 case Instruction::REM_INT:
3115 case Instruction::DIV_INT:
3116 case Instruction::SHL_INT:
3117 case Instruction::SHR_INT:
3118 case Instruction::USHR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003119 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003120 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003121 break;
3122 case Instruction::AND_INT:
3123 case Instruction::OR_INT:
3124 case Instruction::XOR_INT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003125 work_line_->CheckBinaryOp(this, inst, reg_types_.Integer(), reg_types_.Integer(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003126 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07003127 break;
3128 case Instruction::ADD_LONG:
3129 case Instruction::SUB_LONG:
3130 case Instruction::MUL_LONG:
3131 case Instruction::DIV_LONG:
3132 case Instruction::REM_LONG:
3133 case Instruction::AND_LONG:
3134 case Instruction::OR_LONG:
3135 case Instruction::XOR_LONG:
Ian Rogers7b078e82014-09-10 14:44:24 -07003136 work_line_->CheckBinaryOpWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003137 reg_types_.LongLo(), reg_types_.LongHi(),
3138 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003139 break;
3140 case Instruction::SHL_LONG:
3141 case Instruction::SHR_LONG:
3142 case Instruction::USHR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07003143 /* shift distance is Int, making these different from other binary operations */
Ian Rogers7b078e82014-09-10 14:44:24 -07003144 work_line_->CheckBinaryOpWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003145 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003146 break;
3147 case Instruction::ADD_FLOAT:
3148 case Instruction::SUB_FLOAT:
3149 case Instruction::MUL_FLOAT:
3150 case Instruction::DIV_FLOAT:
3151 case Instruction::REM_FLOAT:
Ian Rogers7b078e82014-09-10 14:44:24 -07003152 work_line_->CheckBinaryOp(this, inst, reg_types_.Float(), reg_types_.Float(),
3153 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003154 break;
3155 case Instruction::ADD_DOUBLE:
3156 case Instruction::SUB_DOUBLE:
3157 case Instruction::MUL_DOUBLE:
3158 case Instruction::DIV_DOUBLE:
3159 case Instruction::REM_DOUBLE:
Ian Rogers7b078e82014-09-10 14:44:24 -07003160 work_line_->CheckBinaryOpWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003161 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
3162 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003163 break;
3164 case Instruction::ADD_INT_2ADDR:
3165 case Instruction::SUB_INT_2ADDR:
3166 case Instruction::MUL_INT_2ADDR:
3167 case Instruction::REM_INT_2ADDR:
3168 case Instruction::SHL_INT_2ADDR:
3169 case Instruction::SHR_INT_2ADDR:
3170 case Instruction::USHR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003171 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3172 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003173 break;
3174 case Instruction::AND_INT_2ADDR:
3175 case Instruction::OR_INT_2ADDR:
3176 case Instruction::XOR_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003177 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3178 reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07003179 break;
3180 case Instruction::DIV_INT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003181 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Integer(), reg_types_.Integer(),
3182 reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003183 break;
3184 case Instruction::ADD_LONG_2ADDR:
3185 case Instruction::SUB_LONG_2ADDR:
3186 case Instruction::MUL_LONG_2ADDR:
3187 case Instruction::DIV_LONG_2ADDR:
3188 case Instruction::REM_LONG_2ADDR:
3189 case Instruction::AND_LONG_2ADDR:
3190 case Instruction::OR_LONG_2ADDR:
3191 case Instruction::XOR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003192 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003193 reg_types_.LongLo(), reg_types_.LongHi(),
3194 reg_types_.LongLo(), reg_types_.LongHi());
jeffhaobdb76512011-09-07 11:43:16 -07003195 break;
3196 case Instruction::SHL_LONG_2ADDR:
3197 case Instruction::SHR_LONG_2ADDR:
3198 case Instruction::USHR_LONG_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003199 work_line_->CheckBinaryOp2addrWideShift(this, inst, reg_types_.LongLo(), reg_types_.LongHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003200 reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07003201 break;
3202 case Instruction::ADD_FLOAT_2ADDR:
3203 case Instruction::SUB_FLOAT_2ADDR:
3204 case Instruction::MUL_FLOAT_2ADDR:
3205 case Instruction::DIV_FLOAT_2ADDR:
3206 case Instruction::REM_FLOAT_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003207 work_line_->CheckBinaryOp2addr(this, inst, reg_types_.Float(), reg_types_.Float(),
3208 reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07003209 break;
3210 case Instruction::ADD_DOUBLE_2ADDR:
3211 case Instruction::SUB_DOUBLE_2ADDR:
3212 case Instruction::MUL_DOUBLE_2ADDR:
3213 case Instruction::DIV_DOUBLE_2ADDR:
3214 case Instruction::REM_DOUBLE_2ADDR:
Ian Rogers7b078e82014-09-10 14:44:24 -07003215 work_line_->CheckBinaryOp2addrWide(this, inst, reg_types_.DoubleLo(), reg_types_.DoubleHi(),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08003216 reg_types_.DoubleLo(), reg_types_.DoubleHi(),
3217 reg_types_.DoubleLo(), reg_types_.DoubleHi());
jeffhaobdb76512011-09-07 11:43:16 -07003218 break;
3219 case Instruction::ADD_INT_LIT16:
Ian Rogersf72a11d2014-10-30 15:41:08 -07003220 case Instruction::RSUB_INT_LIT16:
jeffhaobdb76512011-09-07 11:43:16 -07003221 case Instruction::MUL_INT_LIT16:
3222 case Instruction::DIV_INT_LIT16:
3223 case Instruction::REM_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07003224 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
3225 true);
jeffhaobdb76512011-09-07 11:43:16 -07003226 break;
3227 case Instruction::AND_INT_LIT16:
3228 case Instruction::OR_INT_LIT16:
3229 case Instruction::XOR_INT_LIT16:
Ian Rogers7b078e82014-09-10 14:44:24 -07003230 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
3231 true);
jeffhaobdb76512011-09-07 11:43:16 -07003232 break;
3233 case Instruction::ADD_INT_LIT8:
3234 case Instruction::RSUB_INT_LIT8:
3235 case Instruction::MUL_INT_LIT8:
3236 case Instruction::DIV_INT_LIT8:
3237 case Instruction::REM_INT_LIT8:
3238 case Instruction::SHL_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07003239 case Instruction::SHR_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07003240 case Instruction::USHR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07003241 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), false,
3242 false);
jeffhaobdb76512011-09-07 11:43:16 -07003243 break;
3244 case Instruction::AND_INT_LIT8:
3245 case Instruction::OR_INT_LIT8:
3246 case Instruction::XOR_INT_LIT8:
Ian Rogers7b078e82014-09-10 14:44:24 -07003247 work_line_->CheckLiteralOp(this, inst, reg_types_.Integer(), reg_types_.Integer(), true,
3248 false);
jeffhaobdb76512011-09-07 11:43:16 -07003249 break;
3250
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003251 // Special instructions.
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003252 case Instruction::RETURN_VOID_NO_BARRIER:
3253 if (IsConstructor() && !IsStatic()) {
3254 auto& declaring_class = GetDeclaringClass();
Andreas Gampe68df3202015-06-22 11:35:46 -07003255 if (declaring_class.IsUnresolvedReference()) {
3256 // We must iterate over the fields, even if we cannot use mirror classes to do so. Do it
3257 // manually over the underlying dex file.
3258 uint32_t first_index = GetFirstFinalInstanceFieldIndex(*dex_file_,
3259 dex_file_->GetMethodId(dex_method_idx_).class_idx_);
3260 if (first_index != DexFile::kDexNoIndex) {
3261 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-no-barrier not expected for field "
3262 << first_index;
3263 }
3264 break;
3265 }
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003266 auto* klass = declaring_class.GetClass();
3267 for (uint32_t i = 0, num_fields = klass->NumInstanceFields(); i < num_fields; ++i) {
3268 if (klass->GetInstanceField(i)->IsFinal()) {
Mathieu Chartiere86deef2015-03-19 13:43:37 -07003269 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void-no-barrier not expected for "
3270 << PrettyField(klass->GetInstanceField(i));
Mathieu Chartierd7cbf8a2015-03-19 12:43:20 -07003271 break;
3272 }
3273 }
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02003274 }
Andreas Gampeb2917962015-07-31 13:36:10 -07003275 // Handle this like a RETURN_VOID now. Code is duplicated to separate standard from
3276 // quickened opcodes (otherwise this could be a fall-through).
3277 if (!IsConstructor()) {
3278 if (!GetMethodReturnType().IsConflict()) {
3279 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
3280 }
3281 }
Sebastien Hertzcc10e0e2013-06-28 14:24:48 +02003282 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003283 // Note: the following instructions encode offsets derived from class linking.
3284 // As such they use Class*/Field*/AbstractMethod* as these offsets only have
3285 // meaning if the class linking and resolution were successful.
3286 case Instruction::IGET_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003287 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003288 break;
3289 case Instruction::IGET_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003290 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003291 break;
3292 case Instruction::IGET_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003293 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003294 break;
Mathieu Chartierffc605c2014-12-10 10:35:44 -08003295 case Instruction::IGET_BOOLEAN_QUICK:
3296 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Boolean(), true);
3297 break;
3298 case Instruction::IGET_BYTE_QUICK:
3299 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Byte(), true);
3300 break;
3301 case Instruction::IGET_CHAR_QUICK:
3302 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Char(), true);
3303 break;
3304 case Instruction::IGET_SHORT_QUICK:
3305 VerifyQuickFieldAccess<FieldAccessType::kAccGet>(inst, reg_types_.Short(), true);
3306 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003307 case Instruction::IPUT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003308 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Integer(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003309 break;
Fred Shih37f05ef2014-07-16 18:38:08 -07003310 case Instruction::IPUT_BOOLEAN_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003311 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Boolean(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003312 break;
3313 case Instruction::IPUT_BYTE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003314 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Byte(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003315 break;
3316 case Instruction::IPUT_CHAR_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003317 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Char(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003318 break;
3319 case Instruction::IPUT_SHORT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003320 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.Short(), true);
Fred Shih37f05ef2014-07-16 18:38:08 -07003321 break;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003322 case Instruction::IPUT_WIDE_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003323 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.LongLo(), true);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003324 break;
3325 case Instruction::IPUT_OBJECT_QUICK:
Andreas Gampe896df402014-10-20 22:25:29 -07003326 VerifyQuickFieldAccess<FieldAccessType::kAccPut>(inst, reg_types_.JavaLangObject(false), false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003327 break;
3328 case Instruction::INVOKE_VIRTUAL_QUICK:
3329 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
3330 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003331 ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range);
Ian Rogers7b078e82014-09-10 14:44:24 -07003332 if (called_method != nullptr) {
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003333 const char* descriptor = called_method->GetReturnTypeDescriptor();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003334 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003335 if (!return_type.IsLowHalf()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003336 work_line_->SetResultRegisterType(this, return_type);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003337 } else {
3338 work_line_->SetResultRegisterTypeWide(return_type, return_type.HighHalf(&reg_types_));
3339 }
3340 just_set_result = true;
3341 }
3342 break;
3343 }
3344
Ian Rogersd81871c2011-10-03 13:57:23 -07003345 /* These should never appear during verification. */
Mathieu Chartierffc605c2014-12-10 10:35:44 -08003346 case Instruction::UNUSED_3E ... Instruction::UNUSED_43:
Narayan Kamath8ec3bd22016-08-03 12:46:23 +01003347 case Instruction::UNUSED_F3 ... Instruction::UNUSED_F9:
3348 case Instruction::UNUSED_FC ... Instruction::UNUSED_FF:
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02003349 case Instruction::UNUSED_79:
3350 case Instruction::UNUSED_7A:
Narayan Kamath8ec3bd22016-08-03 12:46:23 +01003351 case Instruction::INVOKE_POLYMORPHIC:
3352 case Instruction::INVOKE_POLYMORPHIC_RANGE:
jeffhaod5347e02012-03-22 17:25:05 -07003353 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Unexpected opcode " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07003354 break;
3355
3356 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003357 * DO NOT add a "default" clause here. Without it the compiler will
jeffhaobdb76512011-09-07 11:43:16 -07003358 * complain if an instruction is missing (which is desirable).
3359 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003360 } // end - switch (dec_insn.opcode)
jeffhaobdb76512011-09-07 11:43:16 -07003361
Ian Rogersad0b3a32012-04-16 14:50:24 -07003362 if (have_pending_hard_failure_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08003363 if (Runtime::Current()->IsAotCompiler()) {
3364 /* When AOT compiling, check that the last failure is a hard failure */
Andreas Gampeb588f4c2015-05-26 13:35:39 -07003365 if (failures_[failures_.size() - 1] != VERIFY_ERROR_BAD_CLASS_HARD) {
3366 LOG(ERROR) << "Pending failures:";
3367 for (auto& error : failures_) {
3368 LOG(ERROR) << error;
3369 }
3370 for (auto& error_msg : failure_messages_) {
3371 LOG(ERROR) << error_msg->str();
3372 }
3373 LOG(FATAL) << "Pending hard failure, but last failure not hard.";
3374 }
Ian Rogerse1758fe2012-04-19 11:31:15 -07003375 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003376 /* immediate failure, reject class */
3377 info_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_);
3378 return false;
jeffhaofaf459e2012-08-31 15:32:47 -07003379 } else if (have_pending_runtime_throw_failure_) {
Jeff Haoa3faaf42013-09-03 19:07:00 -07003380 /* checking interpreter will throw, mark following code as unreachable */
jeffhaofaf459e2012-08-31 15:32:47 -07003381 opcode_flags = Instruction::kThrow;
Andreas Gampea727e372015-08-25 09:22:37 -07003382 // Note: the flag must be reset as it is only global to decouple Fail and is semantically per
3383 // instruction. However, RETURN checking may throw LOCKING errors, so we clear at the
3384 // very end.
jeffhaobdb76512011-09-07 11:43:16 -07003385 }
jeffhaobdb76512011-09-07 11:43:16 -07003386 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003387 * If we didn't just set the result register, clear it out. This ensures that you can only use
3388 * "move-result" immediately after the result is set. (We could check this statically, but it's
3389 * not expensive and it makes our debugging output cleaner.)
jeffhaobdb76512011-09-07 11:43:16 -07003390 */
3391 if (!just_set_result) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003392 work_line_->SetResultTypeToUnknown(this);
jeffhaobdb76512011-09-07 11:43:16 -07003393 }
3394
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003395
jeffhaobdb76512011-09-07 11:43:16 -07003396
3397 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003398 * Handle "branch". Tag the branch target.
jeffhaobdb76512011-09-07 11:43:16 -07003399 *
3400 * NOTE: instructions like Instruction::EQZ provide information about the
jeffhaod1f0fde2011-09-08 17:25:33 -07003401 * state of the register when the branch is taken or not taken. For example,
jeffhaobdb76512011-09-07 11:43:16 -07003402 * somebody could get a reference field, check it for zero, and if the
3403 * branch is taken immediately store that register in a boolean field
jeffhaod1f0fde2011-09-08 17:25:33 -07003404 * since the value is known to be zero. We do not currently account for
jeffhaobdb76512011-09-07 11:43:16 -07003405 * that, and will reject the code.
3406 *
3407 * TODO: avoid re-fetching the branch target
3408 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003409 if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07003410 bool isConditional, selfOkay;
Ian Rogersd81871c2011-10-03 13:57:23 -07003411 if (!GetBranchOffset(work_insn_idx_, &branch_target, &isConditional, &selfOkay)) {
jeffhaobdb76512011-09-07 11:43:16 -07003412 /* should never happen after static verification */
jeffhaod5347e02012-03-22 17:25:05 -07003413 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad branch";
jeffhaobdb76512011-09-07 11:43:16 -07003414 return false;
3415 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08003416 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0);
Stephen Kyle9bc61992014-09-22 13:53:15 +01003417 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, work_insn_idx_ + branch_target)) {
jeffhaobdb76512011-09-07 11:43:16 -07003418 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003419 }
jeffhaobdb76512011-09-07 11:43:16 -07003420 /* update branch target, set "changed" if appropriate */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003421 if (nullptr != branch_line) {
Ian Rogersebbdd872014-07-07 23:53:08 -07003422 if (!UpdateRegisters(work_insn_idx_ + branch_target, branch_line.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003423 return false;
3424 }
3425 } else {
Ian Rogersebbdd872014-07-07 23:53:08 -07003426 if (!UpdateRegisters(work_insn_idx_ + branch_target, work_line_.get(), false)) {
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003427 return false;
3428 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003429 }
jeffhaobdb76512011-09-07 11:43:16 -07003430 }
3431
3432 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003433 * Handle "switch". Tag all possible branch targets.
jeffhaobdb76512011-09-07 11:43:16 -07003434 *
3435 * We've already verified that the table is structurally sound, so we
3436 * just need to walk through and tag the targets.
3437 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003438 if ((opcode_flags & Instruction::kSwitch) != 0) {
Andreas Gampe53de99c2015-08-17 13:43:55 -07003439 int offset_to_switch = insns[1] | (static_cast<int32_t>(insns[2]) << 16);
jeffhaobdb76512011-09-07 11:43:16 -07003440 const uint16_t* switch_insns = insns + offset_to_switch;
3441 int switch_count = switch_insns[1];
3442 int offset_to_targets, targ;
3443
3444 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
3445 /* 0 = sig, 1 = count, 2/3 = first key */
3446 offset_to_targets = 4;
3447 } else {
3448 /* 0 = sig, 1 = count, 2..count * 2 = keys */
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07003449 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH);
jeffhaobdb76512011-09-07 11:43:16 -07003450 offset_to_targets = 2 + 2 * switch_count;
3451 }
3452
3453 /* verify each switch target */
3454 for (targ = 0; targ < switch_count; targ++) {
3455 int offset;
3456 uint32_t abs_offset;
3457
3458 /* offsets are 32-bit, and only partly endian-swapped */
3459 offset = switch_insns[offset_to_targets + targ * 2] |
Andreas Gampe53de99c2015-08-17 13:43:55 -07003460 (static_cast<int32_t>(switch_insns[offset_to_targets + targ * 2 + 1]) << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07003461 abs_offset = work_insn_idx_ + offset;
3462 DCHECK_LT(abs_offset, code_item_->insns_size_in_code_units_);
Stephen Kyle9bc61992014-09-22 13:53:15 +01003463 if (!CheckNotMoveExceptionOrMoveResult(code_item_->insns_, abs_offset)) {
jeffhaobdb76512011-09-07 11:43:16 -07003464 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003465 }
Ian Rogersebbdd872014-07-07 23:53:08 -07003466 if (!UpdateRegisters(abs_offset, work_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07003467 return false;
Ian Rogersebbdd872014-07-07 23:53:08 -07003468 }
jeffhaobdb76512011-09-07 11:43:16 -07003469 }
3470 }
3471
3472 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003473 * Handle instructions that can throw and that are sitting in a "try" block. (If they're not in a
3474 * "try" block when they throw, control transfers out of the method.)
jeffhaobdb76512011-09-07 11:43:16 -07003475 */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003476 if ((opcode_flags & Instruction::kThrow) != 0 && GetInstructionFlags(work_insn_idx_).IsInTry()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07003477 bool has_catch_all_handler = false;
Ian Rogers0571d352011-11-03 19:51:38 -07003478 CatchHandlerIterator iterator(*code_item_, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07003479
Andreas Gampef91baf12014-07-18 15:41:00 -07003480 // Need the linker to try and resolve the handled class to check if it's Throwable.
3481 ClassLinker* linker = Runtime::Current()->GetClassLinker();
3482
Ian Rogers0571d352011-11-03 19:51:38 -07003483 for (; iterator.HasNext(); iterator.Next()) {
Andreas Gampef91baf12014-07-18 15:41:00 -07003484 uint16_t handler_type_idx = iterator.GetHandlerTypeIndex();
3485 if (handler_type_idx == DexFile::kDexNoIndex16) {
3486 has_catch_all_handler = true;
3487 } else {
3488 // It is also a catch-all if it is java.lang.Throwable.
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003489 mirror::Class* klass = linker->ResolveType(*dex_file_, handler_type_idx, dex_cache_,
3490 class_loader_);
Andreas Gampef91baf12014-07-18 15:41:00 -07003491 if (klass != nullptr) {
3492 if (klass == mirror::Throwable::GetJavaLangThrowable()) {
3493 has_catch_all_handler = true;
3494 }
3495 } else {
3496 // Clear exception.
Ian Rogers7b078e82014-09-10 14:44:24 -07003497 DCHECK(self_->IsExceptionPending());
3498 self_->ClearException();
Andreas Gampef91baf12014-07-18 15:41:00 -07003499 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003500 }
jeffhaobdb76512011-09-07 11:43:16 -07003501 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003502 * Merge registers into the "catch" block. We want to use the "savedRegs" rather than
3503 * "work_regs", because at runtime the exception will be thrown before the instruction
3504 * modifies any registers.
jeffhaobdb76512011-09-07 11:43:16 -07003505 */
Ian Rogersebbdd872014-07-07 23:53:08 -07003506 if (!UpdateRegisters(iterator.GetHandlerAddress(), saved_line_.get(), false)) {
jeffhaobdb76512011-09-07 11:43:16 -07003507 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07003508 }
jeffhaobdb76512011-09-07 11:43:16 -07003509 }
3510
3511 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003512 * If the monitor stack depth is nonzero, there must be a "catch all" handler for this
3513 * instruction. This does apply to monitor-exit because of async exception handling.
jeffhaobdb76512011-09-07 11:43:16 -07003514 */
Andreas Gampef91baf12014-07-18 15:41:00 -07003515 if (work_line_->MonitorStackDepth() > 0 && !has_catch_all_handler) {
jeffhaobdb76512011-09-07 11:43:16 -07003516 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003517 * The state in work_line reflects the post-execution state. If the current instruction is a
3518 * monitor-enter and the monitor stack was empty, we don't need a catch-all (if it throws,
jeffhaobdb76512011-09-07 11:43:16 -07003519 * it will do so before grabbing the lock).
3520 */
Sebastien Hertz5243e912013-05-21 10:55:07 +02003521 if (inst->Opcode() != Instruction::MONITOR_ENTER || work_line_->MonitorStackDepth() != 1) {
jeffhaod5347e02012-03-22 17:25:05 -07003522 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
Ian Rogersd81871c2011-10-03 13:57:23 -07003523 << "expected to be within a catch-all for an instruction where a monitor is held";
jeffhaobdb76512011-09-07 11:43:16 -07003524 return false;
3525 }
3526 }
3527 }
3528
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003529 /* Handle "continue". Tag the next consecutive instruction.
3530 * Note: Keep the code handling "continue" case below the "branch" and "switch" cases,
3531 * because it changes work_line_ when performing peephole optimization
3532 * and this change should not be used in those cases.
3533 */
Ian Rogers6d376ae2013-07-23 15:12:40 -07003534 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003535 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3536 uint32_t next_insn_idx = work_insn_idx_ + inst->SizeInCodeUnits();
Ian Rogers6d376ae2013-07-23 15:12:40 -07003537 if (next_insn_idx >= code_item_->insns_size_in_code_units_) {
3538 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Execution can walk off end of code area";
3539 return false;
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003540 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003541 // The only way to get to a move-exception instruction is to get thrown there. Make sure the
3542 // next instruction isn't one.
3543 if (!CheckNotMoveException(code_item_->insns_, next_insn_idx)) {
3544 return false;
3545 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003546 if (nullptr != fallthrough_line) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003547 // Make workline consistent with fallthrough computed from peephole optimization.
3548 work_line_->CopyFromLine(fallthrough_line.get());
3549 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003550 if (GetInstructionFlags(next_insn_idx).IsReturn()) {
Ian Rogersb8c78592013-07-25 23:52:52 +00003551 // For returns we only care about the operand to the return, all other registers are dead.
3552 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn_idx);
Andreas Gampea727e372015-08-25 09:22:37 -07003553 AdjustReturnLine(this, ret_inst, work_line_.get());
Ian Rogersb8c78592013-07-25 23:52:52 +00003554 }
Ian Rogers6d376ae2013-07-23 15:12:40 -07003555 RegisterLine* next_line = reg_table_.GetLine(next_insn_idx);
Ian Rogers7b078e82014-09-10 14:44:24 -07003556 if (next_line != nullptr) {
Ian Rogersebbdd872014-07-07 23:53:08 -07003557 // Merge registers into what we have for the next instruction, and set the "changed" flag if
3558 // needed. If the merge changes the state of the registers then the work line will be
3559 // updated.
3560 if (!UpdateRegisters(next_insn_idx, work_line_.get(), true)) {
Ian Rogers6d376ae2013-07-23 15:12:40 -07003561 return false;
3562 }
3563 } else {
3564 /*
3565 * We're not recording register data for the next instruction, so we don't know what the
3566 * prior state was. We have to assume that something has changed and re-evaluate it.
3567 */
Mathieu Chartierde40d472015-10-15 17:47:48 -07003568 GetInstructionFlags(next_insn_idx).SetChanged();
Ian Rogers6d376ae2013-07-23 15:12:40 -07003569 }
3570 }
Dragos Sbirlea2b87ddf2013-05-28 14:14:12 -07003571
jeffhaod1f0fde2011-09-08 17:25:33 -07003572 /* If we're returning from the method, make sure monitor stack is empty. */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003573 if ((opcode_flags & Instruction::kReturn) != 0) {
Andreas Gampea727e372015-08-25 09:22:37 -07003574 work_line_->VerifyMonitorStackEmpty(this);
jeffhaobdb76512011-09-07 11:43:16 -07003575 }
3576
3577 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07003578 * Update start_guess. Advance to the next instruction of that's
3579 * possible, otherwise use the branch target if one was found. If
jeffhaobdb76512011-09-07 11:43:16 -07003580 * neither of those exists we're in a return or throw; leave start_guess
3581 * alone and let the caller sort it out.
3582 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08003583 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003584 DCHECK_EQ(Instruction::At(code_item_->insns_ + work_insn_idx_), inst);
3585 *start_guess = work_insn_idx_ + inst->SizeInCodeUnits();
Elliott Hughesadb8c672012-03-06 16:49:32 -08003586 } else if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07003587 /* we're still okay if branch_target is zero */
Ian Rogersd81871c2011-10-03 13:57:23 -07003588 *start_guess = work_insn_idx_ + branch_target;
jeffhaobdb76512011-09-07 11:43:16 -07003589 }
3590
Ian Rogersd81871c2011-10-03 13:57:23 -07003591 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
Mathieu Chartierde40d472015-10-15 17:47:48 -07003592 DCHECK(GetInstructionFlags(*start_guess).IsOpcode());
jeffhaobdb76512011-09-07 11:43:16 -07003593
Andreas Gampea727e372015-08-25 09:22:37 -07003594 if (have_pending_runtime_throw_failure_) {
3595 have_any_pending_runtime_throw_failure_ = true;
3596 // Reset the pending_runtime_throw flag now.
3597 have_pending_runtime_throw_failure_ = false;
3598 }
3599
jeffhaobdb76512011-09-07 11:43:16 -07003600 return true;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07003601} // NOLINT(readability/fn_size)
jeffhaobdb76512011-09-07 11:43:16 -07003602
Mathieu Chartierde40d472015-10-15 17:47:48 -07003603void MethodVerifier::UninstantiableError(const char* descriptor) {
3604 Fail(VerifyError::VERIFY_ERROR_NO_CLASS) << "Could not create precise reference for "
3605 << "non-instantiable klass " << descriptor;
3606}
3607
3608inline bool MethodVerifier::IsInstantiableOrPrimitive(mirror::Class* klass) {
3609 return klass->IsInstantiable() || klass->IsPrimitive();
3610}
3611
Ian Rogersd8f69b02014-09-10 21:43:52 +00003612const RegType& MethodVerifier::ResolveClassAndCheckAccess(uint32_t class_idx) {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07003613 mirror::Class* klass = dex_cache_->GetResolvedType(class_idx);
Mathieu Chartierde40d472015-10-15 17:47:48 -07003614 const RegType* result = nullptr;
3615 if (klass != nullptr) {
3616 bool precise = klass->CannotBeAssignedFromOtherTypes();
3617 if (precise && !IsInstantiableOrPrimitive(klass)) {
3618 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3619 UninstantiableError(descriptor);
3620 precise = false;
3621 }
3622 result = reg_types_.FindClass(klass, precise);
3623 if (result == nullptr) {
3624 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3625 result = reg_types_.InsertClass(descriptor, klass, precise);
3626 }
3627 } else {
3628 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3629 result = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003630 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003631 DCHECK(result != nullptr);
3632 if (result->IsConflict()) {
3633 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
3634 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "accessing broken descriptor '" << descriptor
3635 << "' in " << GetDeclaringClass();
3636 return *result;
3637 }
3638 if (klass == nullptr && !result->IsUnresolvedTypes()) {
3639 dex_cache_->SetResolvedType(class_idx, result->GetClass());
Ian Rogerse1758fe2012-04-19 11:31:15 -07003640 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003641 // Check if access is allowed. Unresolved types use xxxWithAccessCheck to
Jeff Haob24b4a72013-07-31 13:47:31 -07003642 // check at runtime if access is allowed and so pass here. If result is
3643 // primitive, skip the access check.
Mathieu Chartierde40d472015-10-15 17:47:48 -07003644 if (result->IsNonZeroReferenceTypes() && !result->IsUnresolvedTypes()) {
3645 const RegType& referrer = GetDeclaringClass();
3646 if (!referrer.IsUnresolvedTypes() && !referrer.CanAccess(*result)) {
3647 Fail(VERIFY_ERROR_ACCESS_CLASS) << "illegal class access: '"
3648 << referrer << "' -> '" << result << "'";
3649 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003650 }
Mathieu Chartierde40d472015-10-15 17:47:48 -07003651 return *result;
Ian Rogersd81871c2011-10-03 13:57:23 -07003652}
3653
Ian Rogersd8f69b02014-09-10 21:43:52 +00003654const RegType& MethodVerifier::GetCaughtExceptionType() {
Ian Rogers7b078e82014-09-10 14:44:24 -07003655 const RegType* common_super = nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003656 if (code_item_->tries_size_ != 0) {
Ian Rogers13735952014-10-08 12:43:28 -07003657 const uint8_t* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
Ian Rogersd81871c2011-10-03 13:57:23 -07003658 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
3659 for (uint32_t i = 0; i < handlers_size; i++) {
Ian Rogers0571d352011-11-03 19:51:38 -07003660 CatchHandlerIterator iterator(handlers_ptr);
3661 for (; iterator.HasNext(); iterator.Next()) {
3662 if (iterator.GetHandlerAddress() == (uint32_t) work_insn_idx_) {
3663 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) {
Ian Rogersb4903572012-10-11 11:52:56 -07003664 common_super = &reg_types_.JavaLangThrowable(false);
Ian Rogersd81871c2011-10-03 13:57:23 -07003665 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00003666 const RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex());
Jeff Haob878f212014-04-24 16:25:36 -07003667 if (!reg_types_.JavaLangThrowable(false).IsAssignableFrom(exception)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00003668 DCHECK(!exception.IsUninitializedTypes()); // Comes from dex, shouldn't be uninit.
Jeff Haoc26a56c2013-11-04 12:00:47 -08003669 if (exception.IsUnresolvedTypes()) {
3670 // We don't know enough about the type. Fail here and let runtime handle it.
3671 Fail(VERIFY_ERROR_NO_CLASS) << "unresolved exception class " << exception;
3672 return exception;
3673 } else {
3674 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unexpected non-exception class " << exception;
3675 return reg_types_.Conflict();
3676 }
Jeff Haob878f212014-04-24 16:25:36 -07003677 } else if (common_super == nullptr) {
3678 common_super = &exception;
Ian Rogers28ad40d2011-10-27 15:19:26 -07003679 } else if (common_super->Equals(exception)) {
Ian Rogersc4762272012-02-01 15:55:55 -08003680 // odd case, but nothing to do
Ian Rogersd81871c2011-10-03 13:57:23 -07003681 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07003682 common_super = &common_super->Merge(exception, &reg_types_);
Andreas Gampe7c038102014-10-27 20:08:46 -07003683 if (FailOrAbort(this,
3684 reg_types_.JavaLangThrowable(false).IsAssignableFrom(*common_super),
3685 "java.lang.Throwable is not assignable-from common_super at ",
3686 work_insn_idx_)) {
3687 break;
3688 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003689 }
3690 }
3691 }
3692 }
Ian Rogers0571d352011-11-03 19:51:38 -07003693 handlers_ptr = iterator.EndDataPointer();
Ian Rogersd81871c2011-10-03 13:57:23 -07003694 }
3695 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003696 if (common_super == nullptr) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003697 /* no catch blocks, or no catches with classes we can find */
jeffhaod5347e02012-03-22 17:25:05 -07003698 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unable to find exception handler";
Ian Rogersad0b3a32012-04-16 14:50:24 -07003699 return reg_types_.Conflict();
Ian Rogersd81871c2011-10-03 13:57:23 -07003700 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003701 return *common_super;
Ian Rogersd81871c2011-10-03 13:57:23 -07003702}
3703
Mathieu Chartiere401d142015-04-22 13:56:20 -07003704ArtMethod* MethodVerifier::ResolveMethodAndCheckAccess(
Alex Light7268d472016-01-20 15:50:01 -08003705 uint32_t dex_method_idx, MethodType method_type) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003706 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx);
Ian Rogersd8f69b02014-09-10 21:43:52 +00003707 const RegType& klass_type = ResolveClassAndCheckAccess(method_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003708 if (klass_type.IsConflict()) {
3709 std::string append(" in attempt to access method ");
3710 append += dex_file_->GetMethodName(method_id);
3711 AppendToLastFailMessage(append);
Ian Rogers7b078e82014-09-10 14:44:24 -07003712 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08003713 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003714 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003715 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08003716 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08003717 mirror::Class* klass = klass_type.GetClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00003718 const RegType& referrer = GetDeclaringClass();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003719 auto* cl = Runtime::Current()->GetClassLinker();
3720 auto pointer_size = cl->GetImagePointerSize();
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003721
Mathieu Chartiere401d142015-04-22 13:56:20 -07003722 ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx, pointer_size);
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003723 bool stash_method = false;
Ian Rogers7b078e82014-09-10 14:44:24 -07003724 if (res_method == nullptr) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003725 const char* name = dex_file_->GetMethodName(method_id);
Ian Rogersd91d6d62013-09-25 20:26:14 -07003726 const Signature signature = dex_file_->GetMethodSignature(method_id);
jeffhao8cd6dda2012-02-22 10:15:34 -08003727
3728 if (method_type == METHOD_DIRECT || method_type == METHOD_STATIC) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003729 res_method = klass->FindDirectMethod(name, signature, pointer_size);
jeffhao8cd6dda2012-02-22 10:15:34 -08003730 } else if (method_type == METHOD_INTERFACE) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003731 res_method = klass->FindInterfaceMethod(name, signature, pointer_size);
Alex Light7268d472016-01-20 15:50:01 -08003732 } else if (method_type == METHOD_SUPER && klass->IsInterface()) {
Alex Light705ad492015-09-21 11:36:30 -07003733 res_method = klass->FindInterfaceMethod(name, signature, pointer_size);
Ian Rogersd81871c2011-10-03 13:57:23 -07003734 } else {
Alex Light7268d472016-01-20 15:50:01 -08003735 DCHECK(method_type == METHOD_VIRTUAL || method_type == METHOD_SUPER);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003736 res_method = klass->FindVirtualMethod(name, signature, pointer_size);
Ian Rogersd81871c2011-10-03 13:57:23 -07003737 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003738 if (res_method != nullptr) {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003739 stash_method = true;
Ian Rogersd81871c2011-10-03 13:57:23 -07003740 } else {
jeffhao8cd6dda2012-02-22 10:15:34 -08003741 // If a virtual or interface method wasn't found with the expected type, look in
3742 // the direct methods. This can happen when the wrong invoke type is used or when
3743 // a class has changed, and will be flagged as an error in later checks.
Alex Light7268d472016-01-20 15:50:01 -08003744 if (method_type == METHOD_INTERFACE ||
3745 method_type == METHOD_VIRTUAL ||
3746 method_type == METHOD_SUPER) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003747 res_method = klass->FindDirectMethod(name, signature, pointer_size);
jeffhao8cd6dda2012-02-22 10:15:34 -08003748 }
Ian Rogers7b078e82014-09-10 14:44:24 -07003749 if (res_method == nullptr) {
jeffhao8cd6dda2012-02-22 10:15:34 -08003750 Fail(VERIFY_ERROR_NO_METHOD) << "couldn't find method "
3751 << PrettyDescriptor(klass) << "." << name
3752 << " " << signature;
Ian Rogers7b078e82014-09-10 14:44:24 -07003753 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003754 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003755 }
3756 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003757 // Make sure calls to constructors are "direct". There are additional restrictions but we don't
3758 // enforce them here.
3759 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) {
jeffhaod5347e02012-03-22 17:25:05 -07003760 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting non-direct call to constructor "
3761 << PrettyMethod(res_method);
Ian Rogers7b078e82014-09-10 14:44:24 -07003762 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003763 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003764 // Disallow any calls to class initializers.
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07003765 if (res_method->IsClassInitializer()) {
jeffhaod5347e02012-03-22 17:25:05 -07003766 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting call to class initializer "
3767 << PrettyMethod(res_method);
Ian Rogers7b078e82014-09-10 14:44:24 -07003768 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08003769 }
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003770
3771 // Check that interface methods are static or match interface classes.
3772 // We only allow statics if we don't have default methods enabled.
3773 //
3774 // Note: this check must be after the initializer check, as those are required to fail a class,
3775 // while this check implies an IncompatibleClassChangeError.
3776 if (klass->IsInterface()) {
Alex Lightb55f1ac2016-04-12 15:50:55 -07003777 // methods called on interfaces should be invoke-interface, invoke-super, invoke-direct (if
3778 // dex file version is 37 or greater), or invoke-static.
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003779 if (method_type != METHOD_INTERFACE &&
Neil Fuller9724c632016-01-07 15:42:47 +00003780 method_type != METHOD_STATIC &&
Alex Lightb55f1ac2016-04-12 15:50:55 -07003781 ((dex_file_->GetVersion() < DexFile::kDefaultMethodsVersion) ||
3782 method_type != METHOD_DIRECT) &&
Neil Fuller9724c632016-01-07 15:42:47 +00003783 method_type != METHOD_SUPER) {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -08003784 Fail(VERIFY_ERROR_CLASS_CHANGE)
3785 << "non-interface method " << PrettyMethod(dex_method_idx, *dex_file_)
3786 << " is in an interface class " << PrettyClass(klass);
3787 return nullptr;
3788 }
3789 } else {
3790 if (method_type == METHOD_INTERFACE) {
3791 Fail(VERIFY_ERROR_CLASS_CHANGE)
3792 << "interface method " << PrettyMethod(dex_method_idx, *dex_file_)
3793 << " is in a non-interface class " << PrettyClass(klass);
3794 return nullptr;
3795 }
3796 }
3797
3798 // Only stash after the above passed. Otherwise the method wasn't guaranteed to be correct.
3799 if (stash_method) {
3800 dex_cache_->SetResolvedMethod(dex_method_idx, res_method, pointer_size);
3801 }
3802
jeffhao8cd6dda2012-02-22 10:15:34 -08003803 // Check if access is allowed.
Ian Rogersad0b3a32012-04-16 14:50:24 -07003804 if (!referrer.CanAccessMember(res_method->GetDeclaringClass(), res_method->GetAccessFlags())) {
jeffhao8cd6dda2012-02-22 10:15:34 -08003805 Fail(VERIFY_ERROR_ACCESS_METHOD) << "illegal method access (call " << PrettyMethod(res_method)
Ian Rogersad0b3a32012-04-16 14:50:24 -07003806 << " from " << referrer << ")";
jeffhaob57e9522012-04-26 18:08:21 -07003807 return res_method;
jeffhao8cd6dda2012-02-22 10:15:34 -08003808 }
jeffhaode0d9c92012-02-27 13:58:13 -08003809 // Check that invoke-virtual and invoke-super are not used on private methods of the same class.
Alex Light7268d472016-01-20 15:50:01 -08003810 if (res_method->IsPrivate() && (method_type == METHOD_VIRTUAL || method_type == METHOD_SUPER)) {
jeffhaod5347e02012-03-22 17:25:05 -07003811 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-super/virtual can't be used on private method "
3812 << PrettyMethod(res_method);
Ian Rogers7b078e82014-09-10 14:44:24 -07003813 return nullptr;
jeffhaode0d9c92012-02-27 13:58:13 -08003814 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003815 // See if the method type implied by the invoke instruction matches the access flags for the
3816 // target method.
Brian Carlstrombe6fa5e2014-12-09 20:15:42 -08003817 if ((method_type == METHOD_DIRECT && (!res_method->IsDirect() || res_method->IsStatic())) ||
Ian Rogersd81871c2011-10-03 13:57:23 -07003818 (method_type == METHOD_STATIC && !res_method->IsStatic()) ||
Alex Light7268d472016-01-20 15:50:01 -08003819 ((method_type == METHOD_SUPER ||
3820 method_type == METHOD_VIRTUAL ||
3821 method_type == METHOD_INTERFACE) && res_method->IsDirect())
Ian Rogersd81871c2011-10-03 13:57:23 -07003822 ) {
Ian Rogers2fc14272012-08-30 10:56:57 -07003823 Fail(VERIFY_ERROR_CLASS_CHANGE) << "invoke type (" << method_type << ") does not match method "
3824 " type of " << PrettyMethod(res_method);
Ian Rogers7b078e82014-09-10 14:44:24 -07003825 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07003826 }
jeffhao8cd6dda2012-02-22 10:15:34 -08003827 return res_method;
3828}
3829
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003830template <class T>
Mathieu Chartiere401d142015-04-22 13:56:20 -07003831ArtMethod* MethodVerifier::VerifyInvocationArgsFromIterator(
3832 T* it, const Instruction* inst, MethodType method_type, bool is_range, ArtMethod* res_method) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003833 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
3834 // match the call to the signature. Also, we might be calling through an abstract method
3835 // definition (which doesn't have register count values).
3836 const size_t expected_args = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
3837 /* caught by static verifier */
3838 DCHECK(is_range || expected_args <= 5);
3839 if (expected_args > code_item_->outs_size_) {
3840 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
3841 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
3842 return nullptr;
3843 }
3844
3845 uint32_t arg[5];
3846 if (!is_range) {
3847 inst->GetVarArgs(arg);
3848 }
3849 uint32_t sig_registers = 0;
3850
3851 /*
3852 * Check the "this" argument, which must be an instance of the class that declared the method.
3853 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
3854 * rigorous check here (which is okay since we have to do it at runtime).
3855 */
3856 if (method_type != METHOD_STATIC) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003857 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst, is_range);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003858 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
3859 CHECK(have_pending_hard_failure_);
3860 return nullptr;
3861 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00003862 bool is_init = false;
3863 if (actual_arg_type.IsUninitializedTypes()) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003864 if (res_method) {
3865 if (!res_method->IsConstructor()) {
3866 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
3867 return nullptr;
3868 }
3869 } else {
3870 // Check whether the name of the called method is "<init>"
3871 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Jeff Hao0d087272014-08-04 14:47:17 -07003872 if (strcmp(dex_file_->GetMethodName(dex_file_->GetMethodId(method_idx)), "<init>") != 0) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003873 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
3874 return nullptr;
3875 }
3876 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00003877 is_init = true;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003878 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00003879 const RegType& adjusted_type = is_init
3880 ? GetRegTypeCache()->FromUninitialized(actual_arg_type)
3881 : actual_arg_type;
3882 if (method_type != METHOD_INTERFACE && !adjusted_type.IsZero()) {
Ian Rogersd8f69b02014-09-10 21:43:52 +00003883 const RegType* res_method_class;
Andreas Gamped9e23012015-06-04 22:19:58 -07003884 // Miranda methods have the declaring interface as their declaring class, not the abstract
3885 // class. It would be wrong to use this for the type check (interface type checks are
3886 // postponed to runtime).
3887 if (res_method != nullptr && !res_method->IsMiranda()) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003888 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07003889 std::string temp;
Andreas Gampef23f33d2015-06-23 14:18:17 -07003890 res_method_class = &FromClass(klass->GetDescriptor(&temp), klass,
3891 klass->CannotBeAssignedFromOtherTypes());
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003892 } else {
3893 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
3894 const uint16_t class_idx = dex_file_->GetMethodId(method_idx).class_idx_;
Mathieu Chartierde40d472015-10-15 17:47:48 -07003895 res_method_class = &reg_types_.FromDescriptor(
3896 GetClassLoader(),
3897 dex_file_->StringByTypeIdx(class_idx),
3898 false);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003899 }
David Brazdil68b5c0b2016-01-19 14:25:29 +00003900 if (!res_method_class->IsAssignableFrom(adjusted_type)) {
3901 Fail(adjusted_type.IsUnresolvedTypes()
3902 ? VERIFY_ERROR_NO_CLASS
3903 : VERIFY_ERROR_BAD_CLASS_SOFT)
3904 << "'this' argument '" << actual_arg_type << "' not instance of '"
3905 << *res_method_class << "'";
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003906 // Continue on soft failures. We need to find possible hard failures to avoid problems in
3907 // the compiler.
3908 if (have_pending_hard_failure_) {
3909 return nullptr;
3910 }
3911 }
3912 }
3913 sig_registers = 1;
3914 }
3915
3916 for ( ; it->HasNext(); it->Next()) {
3917 if (sig_registers >= expected_args) {
3918 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << inst->VRegA() <<
3919 " arguments, found " << sig_registers << " or more.";
3920 return nullptr;
3921 }
3922
3923 const char* param_descriptor = it->GetDescriptor();
3924
3925 if (param_descriptor == nullptr) {
3926 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation because of missing signature "
3927 "component";
3928 return nullptr;
3929 }
3930
Ian Rogersd8f69b02014-09-10 21:43:52 +00003931 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), param_descriptor, false);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003932 uint32_t get_reg = is_range ? inst->VRegC_3rc() + static_cast<uint32_t>(sig_registers) :
3933 arg[sig_registers];
3934 if (reg_type.IsIntegralTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07003935 const RegType& src_type = work_line_->GetRegisterType(this, get_reg);
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003936 if (!src_type.IsIntegralTypes()) {
3937 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << get_reg << " has type " << src_type
3938 << " but expected " << reg_type;
Andreas Gampeb588f4c2015-05-26 13:35:39 -07003939 return nullptr;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003940 }
Andreas Gampeda9badb2015-06-05 20:22:12 -07003941 } else {
3942 if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
3943 // Continue on soft failures. We need to find possible hard failures to avoid problems in
3944 // the compiler.
3945 if (have_pending_hard_failure_) {
3946 return nullptr;
3947 }
3948 } else if (reg_type.IsLongOrDoubleTypes()) {
3949 // Check that registers are consecutive (for non-range invokes). Invokes are the only
3950 // instructions not specifying register pairs by the first component, but require them
3951 // nonetheless. Only check when there's an actual register in the parameters. If there's
3952 // none, this will fail below.
3953 if (!is_range && sig_registers + 1 < expected_args) {
3954 uint32_t second_reg = arg[sig_registers + 1];
3955 if (second_reg != get_reg + 1) {
3956 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, long or double parameter "
3957 "at index " << sig_registers << " is not a pair: " << get_reg << " + "
3958 << second_reg << ".";
3959 return nullptr;
3960 }
3961 }
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003962 }
3963 }
3964 sig_registers += reg_type.IsLongOrDoubleTypes() ? 2 : 1;
3965 }
3966 if (expected_args != sig_registers) {
3967 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation, expected " << expected_args <<
3968 " arguments, found " << sig_registers;
3969 return nullptr;
3970 }
3971 return res_method;
3972}
3973
3974void MethodVerifier::VerifyInvocationArgsUnresolvedMethod(const Instruction* inst,
3975 MethodType method_type,
3976 bool is_range) {
3977 // As the method may not have been resolved, make this static check against what we expect.
3978 // The main reason for this code block is to fail hard when we find an illegal use, e.g.,
3979 // wrong number of arguments or wrong primitive types, even if the method could not be resolved.
3980 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
3981 DexFileParameterIterator it(*dex_file_,
3982 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_));
3983 VerifyInvocationArgsFromIterator<DexFileParameterIterator>(&it, inst, method_type, is_range,
3984 nullptr);
3985}
3986
3987class MethodParamListDescriptorIterator {
3988 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -07003989 explicit MethodParamListDescriptorIterator(ArtMethod* res_method) :
Andreas Gampe95c0bf82014-06-16 14:06:52 -07003990 res_method_(res_method), pos_(0), params_(res_method->GetParameterTypeList()),
3991 params_size_(params_ == nullptr ? 0 : params_->Size()) {
3992 }
3993
3994 bool HasNext() {
3995 return pos_ < params_size_;
3996 }
3997
3998 void Next() {
3999 ++pos_;
4000 }
4001
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07004002 const char* GetDescriptor() REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004003 return res_method_->GetTypeDescriptorFromTypeIdx(params_->GetTypeItem(pos_).type_idx_);
4004 }
4005
4006 private:
Mathieu Chartiere401d142015-04-22 13:56:20 -07004007 ArtMethod* res_method_;
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004008 size_t pos_;
4009 const DexFile::TypeList* params_;
4010 const size_t params_size_;
4011};
4012
Mathieu Chartiere401d142015-04-22 13:56:20 -07004013ArtMethod* MethodVerifier::VerifyInvocationArgs(
Alex Light7268d472016-01-20 15:50:01 -08004014 const Instruction* inst, MethodType method_type, bool is_range) {
jeffhao8cd6dda2012-02-22 10:15:34 -08004015 // Resolve the method. This could be an abstract or concrete method depending on what sort of call
4016 // we're making.
Sebastien Hertz5243e912013-05-21 10:55:07 +02004017 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
Andreas Gampeacc4d2f2014-06-12 19:35:05 -07004018
Alex Light7268d472016-01-20 15:50:01 -08004019 ArtMethod* res_method = ResolveMethodAndCheckAccess(method_idx, method_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07004020 if (res_method == nullptr) { // error or class is unresolved
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004021 // Check what we can statically.
4022 if (!have_pending_hard_failure_) {
4023 VerifyInvocationArgsUnresolvedMethod(inst, method_type, is_range);
4024 }
4025 return nullptr;
jeffhao8cd6dda2012-02-22 10:15:34 -08004026 }
4027
Ian Rogersd81871c2011-10-03 13:57:23 -07004028 // If we're using invoke-super(method), make sure that the executing method's class' superclass
Alex Light705ad492015-09-21 11:36:30 -07004029 // has a vtable entry for the target method. Or the target is on a interface.
Alex Light7268d472016-01-20 15:50:01 -08004030 if (method_type == METHOD_SUPER) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004031 uint16_t class_idx = dex_file_->GetMethodId(method_idx).class_idx_;
4032 mirror::Class* reference_class = dex_cache_->GetResolvedType(class_idx);
4033 if (reference_class == nullptr) {
4034 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Unable to find referenced class from invoke-super";
4035 return nullptr;
4036 }
4037 if (reference_class->IsInterface()) {
4038 // TODO Can we verify anything else.
David Brazdil15fc7292016-09-02 14:13:18 +01004039 if (class_idx == class_def_.class_idx_) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004040 Fail(VERIFY_ERROR_CLASS_CHANGE) << "Cannot invoke-super on self as interface";
Alex Light55ea94d2016-03-15 09:50:26 -07004041 return nullptr;
Alex Lightfedd91d2016-01-07 14:49:16 -08004042 }
4043 // TODO Revisit whether we want to allow invoke-super on direct interfaces only like the JLS
4044 // does.
Alex Light55ea94d2016-03-15 09:50:26 -07004045 if (!GetDeclaringClass().HasClass()) {
4046 Fail(VERIFY_ERROR_NO_CLASS) << "Unable to resolve the full class of 'this' used in an"
4047 << "interface invoke-super";
4048 return nullptr;
4049 } else if (!reference_class->IsAssignableFrom(GetDeclaringClass().GetClass())) {
Alex Lightfedd91d2016-01-07 14:49:16 -08004050 Fail(VERIFY_ERROR_CLASS_CHANGE)
Alex Light55ea94d2016-03-15 09:50:26 -07004051 << "invoke-super in " << PrettyClass(GetDeclaringClass().GetClass()) << " in method "
Alex Lightfedd91d2016-01-07 14:49:16 -08004052 << PrettyMethod(dex_method_idx_, *dex_file_) << " to method "
4053 << PrettyMethod(method_idx, *dex_file_) << " references "
4054 << "non-super-interface type " << PrettyClass(reference_class);
4055 return nullptr;
Alex Light705ad492015-09-21 11:36:30 -07004056 }
4057 } else {
4058 const RegType& super = GetDeclaringClass().GetSuperClass(&reg_types_);
4059 if (super.IsUnresolvedTypes()) {
4060 Fail(VERIFY_ERROR_NO_METHOD) << "unknown super class in invoke-super from "
4061 << PrettyMethod(dex_method_idx_, *dex_file_)
4062 << " to super " << PrettyMethod(res_method);
4063 return nullptr;
4064 }
Aart Bikf663e342016-04-04 17:28:59 -07004065 if (!reference_class->IsAssignableFrom(GetDeclaringClass().GetClass()) ||
4066 (res_method->GetMethodIndex() >= super.GetClass()->GetVTableLength())) {
Alex Light705ad492015-09-21 11:36:30 -07004067 Fail(VERIFY_ERROR_NO_METHOD) << "invalid invoke-super from "
4068 << PrettyMethod(dex_method_idx_, *dex_file_)
4069 << " to super " << super
4070 << "." << res_method->GetName()
4071 << res_method->GetSignature();
4072 return nullptr;
4073 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004074 }
4075 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08004076
Andreas Gampe95c0bf82014-06-16 14:06:52 -07004077 // Process the target method's signature. This signature may or may not
4078 MethodParamListDescriptorIterator it(res_method);
4079 return VerifyInvocationArgsFromIterator<MethodParamListDescriptorIterator>(&it, inst, method_type,
4080 is_range, res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07004081}
4082
Mathieu Chartiere401d142015-04-22 13:56:20 -07004083ArtMethod* MethodVerifier::GetQuickInvokedMethod(const Instruction* inst, RegisterLine* reg_line,
4084 bool is_range, bool allow_failure) {
Mathieu Chartier091d2382015-03-06 10:59:06 -08004085 if (is_range) {
4086 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_RANGE_QUICK);
4087 } else {
4088 DCHECK_EQ(inst->Opcode(), Instruction::INVOKE_VIRTUAL_QUICK);
4089 }
4090 const RegType& actual_arg_type = reg_line->GetInvocationThis(this, inst, is_range, allow_failure);
Ian Rogers9bc54402014-04-17 16:40:01 -07004091 if (!actual_arg_type.HasClass()) {
4092 VLOG(verifier) << "Failed to get mirror::Class* from '" << actual_arg_type << "'";
Andreas Gampe63981562014-04-17 12:28:43 -07004093 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004094 }
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004095 mirror::Class* klass = actual_arg_type.GetClass();
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004096 mirror::Class* dispatch_class;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004097 if (klass->IsInterface()) {
4098 // Derive Object.class from Class.class.getSuperclass().
4099 mirror::Class* object_klass = klass->GetClass()->GetSuperClass();
Andreas Gampe7c038102014-10-27 20:08:46 -07004100 if (FailOrAbort(this, object_klass->IsObjectClass(),
Mathieu Chartier091d2382015-03-06 10:59:06 -08004101 "Failed to find Object class in quickened invoke receiver", work_insn_idx_)) {
Andreas Gampe7c038102014-10-27 20:08:46 -07004102 return nullptr;
4103 }
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004104 dispatch_class = object_klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004105 } else {
Mingyao Yang2cdbad72014-07-16 10:44:41 -07004106 dispatch_class = klass;
Ian Rogersa4cf1df2014-05-07 19:47:17 -07004107 }
Mathieu Chartier091d2382015-03-06 10:59:06 -08004108 if (!dispatch_class->HasVTable()) {
4109 FailOrAbort(this, allow_failure, "Receiver class has no vtable for quickened invoke at ",
4110 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004111 return nullptr;
4112 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004113 uint16_t vtable_index = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
Mathieu Chartiere401d142015-04-22 13:56:20 -07004114 auto* cl = Runtime::Current()->GetClassLinker();
4115 auto pointer_size = cl->GetImagePointerSize();
Mathieu Chartier091d2382015-03-06 10:59:06 -08004116 if (static_cast<int32_t>(vtable_index) >= dispatch_class->GetVTableLength()) {
4117 FailOrAbort(this, allow_failure,
4118 "Receiver class has not enough vtable slots for quickened invoke at ",
4119 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004120 return nullptr;
4121 }
Mathieu Chartiere401d142015-04-22 13:56:20 -07004122 ArtMethod* res_method = dispatch_class->GetVTableEntry(vtable_index, pointer_size);
Mathieu Chartier091d2382015-03-06 10:59:06 -08004123 if (self_->IsExceptionPending()) {
4124 FailOrAbort(this, allow_failure, "Unexpected exception pending for quickened invoke at ",
4125 work_insn_idx_);
Andreas Gampe7c038102014-10-27 20:08:46 -07004126 return nullptr;
4127 }
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004128 return res_method;
4129}
4130
Mathieu Chartiere401d142015-04-22 13:56:20 -07004131ArtMethod* MethodVerifier::VerifyInvokeVirtualQuickArgs(const Instruction* inst, bool is_range) {
Andreas Gampe76bd8802014-12-10 16:43:58 -08004132 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_)
4133 << PrettyMethod(dex_method_idx_, *dex_file_, true) << "@" << work_insn_idx_;
4134
Mathieu Chartiere401d142015-04-22 13:56:20 -07004135 ArtMethod* res_method = GetQuickInvokedMethod(inst, work_line_.get(), is_range, false);
Ian Rogers7b078e82014-09-10 14:44:24 -07004136 if (res_method == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004137 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer method from " << inst->Name();
Ian Rogers7b078e82014-09-10 14:44:24 -07004138 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004139 }
Andreas Gampe7c038102014-10-27 20:08:46 -07004140 if (FailOrAbort(this, !res_method->IsDirect(), "Quick-invoked method is direct at ",
4141 work_insn_idx_)) {
4142 return nullptr;
4143 }
4144 if (FailOrAbort(this, !res_method->IsStatic(), "Quick-invoked method is static at ",
4145 work_insn_idx_)) {
4146 return nullptr;
4147 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004148
4149 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
4150 // match the call to the signature. Also, we might be calling through an abstract method
4151 // definition (which doesn't have register count values).
Ian Rogers7b078e82014-09-10 14:44:24 -07004152 const RegType& actual_arg_type = work_line_->GetInvocationThis(this, inst, is_range);
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004153 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
Ian Rogers7b078e82014-09-10 14:44:24 -07004154 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004155 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004156 const size_t expected_args = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
4157 /* caught by static verifier */
4158 DCHECK(is_range || expected_args <= 5);
4159 if (expected_args > code_item_->outs_size_) {
4160 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
4161 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
Ian Rogers7b078e82014-09-10 14:44:24 -07004162 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004163 }
4164
4165 /*
4166 * Check the "this" argument, which must be an instance of the class that declared the method.
4167 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
4168 * rigorous check here (which is okay since we have to do it at runtime).
4169 */
David Brazdil68b5c0b2016-01-19 14:25:29 +00004170 // Note: given an uninitialized type, this should always fail. Constructors aren't virtual.
4171 if (actual_arg_type.IsUninitializedTypes() && !res_method->IsConstructor()) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004172 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
Ian Rogers7b078e82014-09-10 14:44:24 -07004173 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004174 }
4175 if (!actual_arg_type.IsZero()) {
4176 mirror::Class* klass = res_method->GetDeclaringClass();
Ian Rogers1ff3c982014-08-12 02:30:58 -07004177 std::string temp;
Ian Rogersd8f69b02014-09-10 21:43:52 +00004178 const RegType& res_method_class =
Andreas Gampef23f33d2015-06-23 14:18:17 -07004179 FromClass(klass->GetDescriptor(&temp), klass, klass->CannotBeAssignedFromOtherTypes());
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004180 if (!res_method_class.IsAssignableFrom(actual_arg_type)) {
David Brazdil68b5c0b2016-01-19 14:25:29 +00004181 Fail(actual_arg_type.IsUninitializedTypes() // Just overcautious - should have never
4182 ? VERIFY_ERROR_BAD_CLASS_HARD // quickened this.
4183 : actual_arg_type.IsUnresolvedTypes()
4184 ? VERIFY_ERROR_NO_CLASS
4185 : VERIFY_ERROR_BAD_CLASS_SOFT) << "'this' argument '" << actual_arg_type
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004186 << "' not instance of '" << res_method_class << "'";
Ian Rogers7b078e82014-09-10 14:44:24 -07004187 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004188 }
4189 }
4190 /*
4191 * Process the target method's signature. This signature may or may not
4192 * have been verified, so we can't assume it's properly formed.
4193 */
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004194 const DexFile::TypeList* params = res_method->GetParameterTypeList();
Ian Rogers7b078e82014-09-10 14:44:24 -07004195 size_t params_size = params == nullptr ? 0 : params->Size();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004196 uint32_t arg[5];
4197 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07004198 inst->GetVarArgs(arg);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004199 }
4200 size_t actual_args = 1;
4201 for (size_t param_index = 0; param_index < params_size; param_index++) {
4202 if (actual_args >= expected_args) {
4203 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invalid call to '" << PrettyMethod(res_method)
Brian Carlstrom93c33962013-07-26 10:37:43 -07004204 << "'. Expected " << expected_args
4205 << " arguments, processing argument " << actual_args
4206 << " (where longs/doubles count twice).";
Ian Rogers7b078e82014-09-10 14:44:24 -07004207 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004208 }
4209 const char* descriptor =
Mathieu Chartierbfd9a432014-05-21 17:43:44 -07004210 res_method->GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);
Ian Rogers7b078e82014-09-10 14:44:24 -07004211 if (descriptor == nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004212 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004213 << " missing signature component";
Ian Rogers7b078e82014-09-10 14:44:24 -07004214 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004215 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004216 const RegType& reg_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004217 uint32_t get_reg = is_range ? inst->VRegC_3rc() + actual_args : arg[actual_args];
Ian Rogers7b078e82014-09-10 14:44:24 -07004218 if (!work_line_->VerifyRegisterType(this, get_reg, reg_type)) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004219 return res_method;
4220 }
4221 actual_args = reg_type.IsLongOrDoubleTypes() ? actual_args + 2 : actual_args + 1;
4222 }
4223 if (actual_args != expected_args) {
4224 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
4225 << " expected " << expected_args << " arguments, found " << actual_args;
Ian Rogers7b078e82014-09-10 14:44:24 -07004226 return nullptr;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004227 } else {
4228 return res_method;
4229 }
4230}
4231
Ian Rogers62342ec2013-06-11 10:26:37 -07004232void MethodVerifier::VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02004233 uint32_t type_idx;
4234 if (!is_filled) {
4235 DCHECK_EQ(inst->Opcode(), Instruction::NEW_ARRAY);
4236 type_idx = inst->VRegC_22c();
4237 } else if (!is_range) {
4238 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY);
4239 type_idx = inst->VRegB_35c();
4240 } else {
4241 DCHECK_EQ(inst->Opcode(), Instruction::FILLED_NEW_ARRAY_RANGE);
4242 type_idx = inst->VRegB_3rc();
4243 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004244 const RegType& res_type = ResolveClassAndCheckAccess(type_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004245 if (res_type.IsConflict()) { // bad class
4246 DCHECK_NE(failures_.size(), 0U);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004247 } else {
4248 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
4249 if (!res_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004250 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "new-array on non-array class " << res_type;
Ian Rogers0c4a5062012-02-03 15:18:59 -08004251 } else if (!is_filled) {
4252 /* make sure "size" register is valid type */
Ian Rogers7b078e82014-09-10 14:44:24 -07004253 work_line_->VerifyRegisterType(this, inst->VRegB_22c(), reg_types_.Integer());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004254 /* set register type to array class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00004255 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Andreas Gampead238ce2015-08-24 21:13:08 -07004256 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_22c(), precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004257 } else {
Andreas Gampebb18a032016-03-22 20:34:25 -07004258 DCHECK(!res_type.IsUnresolvedMergedReference());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004259 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
4260 // the list and fail. It's legal, if silly, for arg_count to be zero.
Ian Rogersd8f69b02014-09-10 21:43:52 +00004261 const RegType& expected_type = reg_types_.GetComponentType(res_type, GetClassLoader());
Sebastien Hertz5243e912013-05-21 10:55:07 +02004262 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c();
4263 uint32_t arg[5];
4264 if (!is_range) {
Ian Rogers29a26482014-05-02 15:27:29 -07004265 inst->GetVarArgs(arg);
Sebastien Hertz5243e912013-05-21 10:55:07 +02004266 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08004267 for (size_t ui = 0; ui < arg_count; ui++) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02004268 uint32_t get_reg = is_range ? inst->VRegC_3rc() + ui : arg[ui];
Ian Rogers7b078e82014-09-10 14:44:24 -07004269 if (!work_line_->VerifyRegisterType(this, get_reg, expected_type)) {
4270 work_line_->SetResultRegisterType(this, reg_types_.Conflict());
Ian Rogers0c4a5062012-02-03 15:18:59 -08004271 return;
4272 }
4273 }
4274 // filled-array result goes into "result" register
Ian Rogersd8f69b02014-09-10 21:43:52 +00004275 const RegType& precise_type = reg_types_.FromUninitialized(res_type);
Ian Rogers7b078e82014-09-10 14:44:24 -07004276 work_line_->SetResultRegisterType(this, precise_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08004277 }
4278 }
4279}
4280
Sebastien Hertz5243e912013-05-21 10:55:07 +02004281void MethodVerifier::VerifyAGet(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00004282 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004283 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07004284 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004285 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07004286 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004287 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08004288 if (array_type.IsZero()) {
Nicolas Geoffray4824c272015-06-24 15:53:03 +01004289 have_pending_runtime_throw_failure_ = true;
Ian Rogers89310de2012-02-01 13:47:30 -08004290 // Null array class; this code path will fail at runtime. Infer a merge-able type from the
4291 // instruction type. TODO: have a proper notion of bottom here.
4292 if (!is_primitive || insn_type.IsCategory1Types()) {
4293 // Reference or category 1
Andreas Gampead238ce2015-08-24 21:13:08 -07004294 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Zero());
Ian Rogersd81871c2011-10-03 13:57:23 -07004295 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08004296 // Category 2
Ian Rogers7b078e82014-09-10 14:44:24 -07004297 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(),
4298 reg_types_.FromCat2ConstLo(0, false),
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004299 reg_types_.FromCat2ConstHi(0, false));
Ian Rogers89310de2012-02-01 13:47:30 -08004300 }
jeffhaofc3144e2012-02-01 17:21:15 -08004301 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004302 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aget";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004303 } else if (array_type.IsUnresolvedMergedReference()) {
Andreas Gampebb18a032016-03-22 20:34:25 -07004304 // Unresolved array types must be reference array types.
4305 if (is_primitive) {
4306 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
4307 << " source for category 1 aget";
4308 } else {
4309 Fail(VERIFY_ERROR_NO_CLASS) << "cannot verify aget for " << array_type
4310 << " because of missing class";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004311 // Approximate with java.lang.Object[].
4312 work_line_->SetRegisterType<LockOp::kClear>(this,
4313 inst->VRegA_23x(),
4314 reg_types_.JavaLangObject(false));
Andreas Gampebb18a032016-03-22 20:34:25 -07004315 }
Ian Rogers89310de2012-02-01 13:47:30 -08004316 } else {
4317 /* verify the class */
Ian Rogersd8f69b02014-09-10 21:43:52 +00004318 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
jeffhaofc3144e2012-02-01 17:21:15 -08004319 if (!component_type.IsReferenceTypes() && !is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07004320 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08004321 << " source for aget-object";
4322 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07004323 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08004324 << " source for category 1 aget";
4325 } else if (is_primitive && !insn_type.Equals(component_type) &&
4326 !((insn_type.IsInteger() && component_type.IsFloat()) ||
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004327 (insn_type.IsLong() && component_type.IsDouble()))) {
4328 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array type " << array_type
4329 << " incompatible with aget of type " << insn_type;
Ian Rogers89310de2012-02-01 13:47:30 -08004330 } else {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004331 // Use knowledge of the field type which is stronger than the type inferred from the
4332 // instruction, which can't differentiate object types and ints from floats, longs from
4333 // doubles.
4334 if (!component_type.IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07004335 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), component_type);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004336 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004337 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(), component_type,
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004338 component_type.HighHalf(&reg_types_));
4339 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004340 }
4341 }
4342 }
4343}
4344
Ian Rogersd8f69b02014-09-10 21:43:52 +00004345void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
Jeff Haofe1f7c82013-08-01 14:50:24 -07004346 const uint32_t vregA) {
4347 // Primitive assignability rules are weaker than regular assignability rules.
4348 bool instruction_compatible;
4349 bool value_compatible;
Ian Rogers7b078e82014-09-10 14:44:24 -07004350 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
Jeff Haofe1f7c82013-08-01 14:50:24 -07004351 if (target_type.IsIntegralTypes()) {
Jeff Haoa4647482013-08-06 15:35:47 -07004352 instruction_compatible = target_type.Equals(insn_type);
Jeff Haofe1f7c82013-08-01 14:50:24 -07004353 value_compatible = value_type.IsIntegralTypes();
4354 } else if (target_type.IsFloat()) {
4355 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int
4356 value_compatible = value_type.IsFloatTypes();
4357 } else if (target_type.IsLong()) {
4358 instruction_compatible = insn_type.IsLong();
Andreas Gampe376fa682014-09-07 13:06:12 -07004359 // Additional register check: this is not checked statically (as part of VerifyInstructions),
4360 // as target_type depends on the resolved type of the field.
4361 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004362 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07004363 value_compatible = value_type.IsLongTypes() && value_type.CheckWidePair(value_type_hi);
4364 } else {
4365 value_compatible = false;
4366 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07004367 } else if (target_type.IsDouble()) {
4368 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long
Andreas Gampe376fa682014-09-07 13:06:12 -07004369 // Additional register check: this is not checked statically (as part of VerifyInstructions),
4370 // as target_type depends on the resolved type of the field.
4371 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004372 const RegType& value_type_hi = work_line_->GetRegisterType(this, vregA + 1);
Andreas Gampe376fa682014-09-07 13:06:12 -07004373 value_compatible = value_type.IsDoubleTypes() && value_type.CheckWidePair(value_type_hi);
4374 } else {
4375 value_compatible = false;
4376 }
Jeff Haofe1f7c82013-08-01 14:50:24 -07004377 } else {
4378 instruction_compatible = false; // reference with primitive store
4379 value_compatible = false; // unused
4380 }
4381 if (!instruction_compatible) {
4382 // This is a global failure rather than a class change failure as the instructions and
4383 // the descriptors for the type should have been consistent within the same file at
4384 // compile time.
4385 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
4386 << "' but expected type '" << target_type << "'";
4387 return;
4388 }
4389 if (!value_compatible) {
4390 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
4391 << " of type " << value_type << " but expected " << target_type << " for put";
4392 return;
4393 }
4394}
4395
Sebastien Hertz5243e912013-05-21 10:55:07 +02004396void MethodVerifier::VerifyAPut(const Instruction* inst,
Ian Rogersd8f69b02014-09-10 21:43:52 +00004397 const RegType& insn_type, bool is_primitive) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004398 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x());
Ian Rogersd81871c2011-10-03 13:57:23 -07004399 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004400 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07004401 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004402 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x());
Ian Rogers89310de2012-02-01 13:47:30 -08004403 if (array_type.IsZero()) {
Nicolas Geoffray66389fb2015-06-19 10:35:42 +01004404 // Null array type; this code path will fail at runtime.
4405 // Still check that the given value matches the instruction's type.
Andreas Gampe4bf4c782015-08-14 14:07:43 -07004406 // Note: this is, as usual, complicated by the fact the the instruction isn't fully typed
4407 // and fits multiple register types.
4408 const RegType* modified_reg_type = &insn_type;
4409 if ((modified_reg_type == &reg_types_.Integer()) ||
4410 (modified_reg_type == &reg_types_.LongLo())) {
4411 // May be integer or float | long or double. Overwrite insn_type accordingly.
4412 const RegType& value_type = work_line_->GetRegisterType(this, inst->VRegA_23x());
4413 if (modified_reg_type == &reg_types_.Integer()) {
4414 if (&value_type == &reg_types_.Float()) {
4415 modified_reg_type = &value_type;
4416 }
4417 } else {
4418 if (&value_type == &reg_types_.DoubleLo()) {
4419 modified_reg_type = &value_type;
4420 }
4421 }
4422 }
4423 work_line_->VerifyRegisterType(this, inst->VRegA_23x(), *modified_reg_type);
jeffhaofc3144e2012-02-01 17:21:15 -08004424 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07004425 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aput";
Andreas Gampe8d8fc482016-03-25 16:24:20 -07004426 } else if (array_type.IsUnresolvedMergedReference()) {
Andreas Gampebb18a032016-03-22 20:34:25 -07004427 // Unresolved array types must be reference array types.
4428 if (is_primitive) {
4429 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "put insn has type '" << insn_type
4430 << "' but unresolved type '" << array_type << "'";
4431 } else {
4432 Fail(VERIFY_ERROR_NO_CLASS) << "cannot verify aput for " << array_type
4433 << " because of missing class";
4434 }
Ian Rogers89310de2012-02-01 13:47:30 -08004435 } else {
Ian Rogersd8f69b02014-09-10 21:43:52 +00004436 const RegType& component_type = reg_types_.GetComponentType(array_type, GetClassLoader());
Jeff Haofe1f7c82013-08-01 14:50:24 -07004437 const uint32_t vregA = inst->VRegA_23x();
Jeff Haob24b4a72013-07-31 13:47:31 -07004438 if (is_primitive) {
Jeff Haofe1f7c82013-08-01 14:50:24 -07004439 VerifyPrimitivePut(component_type, insn_type, vregA);
Ian Rogersd81871c2011-10-03 13:57:23 -07004440 } else {
Jeff Haob24b4a72013-07-31 13:47:31 -07004441 if (!component_type.IsReferenceTypes()) {
4442 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
4443 << " source for aput-object";
4444 } else {
4445 // The instruction agrees with the type of array, confirm the value to be stored does too
4446 // Note: we use the instruction type (rather than the component type) for aput-object as
4447 // incompatible classes will be caught at runtime as an array store exception
Ian Rogers7b078e82014-09-10 14:44:24 -07004448 work_line_->VerifyRegisterType(this, vregA, insn_type);
Jeff Haob24b4a72013-07-31 13:47:31 -07004449 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004450 }
4451 }
4452 }
4453}
4454
Mathieu Chartierc7853442015-03-27 14:35:38 -07004455ArtField* MethodVerifier::GetStaticField(int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08004456 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
4457 // Check access to class
Ian Rogersd8f69b02014-09-10 21:43:52 +00004458 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Brian Carlstrom7934ac22013-07-26 10:54:15 -07004459 if (klass_type.IsConflict()) { // bad class
Ian Rogersad0b3a32012-04-16 14:50:24 -07004460 AppendToLastFailMessage(StringPrintf(" in attempt to access static field %d (%s) in %s",
4461 field_idx, dex_file_->GetFieldName(field_id),
4462 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07004463 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08004464 }
Elliott Hughesb25c3f62012-03-26 16:35:06 -07004465 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004466 return nullptr; // Can't resolve Class so no more to do here, will do checking at runtime.
Ian Rogers90040192011-12-16 08:54:29 -08004467 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004468 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartierc7853442015-03-27 14:35:38 -07004469 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_,
4470 class_loader_);
Ian Rogers7b078e82014-09-10 14:44:24 -07004471 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07004472 VLOG(verifier) << "Unable to resolve static field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07004473 << dex_file_->GetFieldName(field_id) << ") in "
4474 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07004475 DCHECK(self_->IsExceptionPending());
4476 self_->ClearException();
4477 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004478 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
4479 field->GetAccessFlags())) {
Ian Rogersd81871c2011-10-03 13:57:23 -07004480 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access static field " << PrettyField(field)
Ian Rogersad0b3a32012-04-16 14:50:24 -07004481 << " from " << GetDeclaringClass();
Ian Rogers7b078e82014-09-10 14:44:24 -07004482 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004483 } else if (!field->IsStatic()) {
4484 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field) << " to be static";
Ian Rogers7b078e82014-09-10 14:44:24 -07004485 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004486 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004487 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07004488}
4489
Mathieu Chartierc7853442015-03-27 14:35:38 -07004490ArtField* MethodVerifier::GetInstanceField(const RegType& obj_type, int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08004491 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
Aart Bik31883642016-06-06 15:02:44 -07004492 // Check access to class.
Ian Rogersd8f69b02014-09-10 21:43:52 +00004493 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004494 if (klass_type.IsConflict()) {
4495 AppendToLastFailMessage(StringPrintf(" in attempt to access instance field %d (%s) in %s",
4496 field_idx, dex_file_->GetFieldName(field_id),
4497 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers7b078e82014-09-10 14:44:24 -07004498 return nullptr;
Ian Rogers90040192011-12-16 08:54:29 -08004499 }
jeffhao8cd6dda2012-02-22 10:15:34 -08004500 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004501 return nullptr; // Can't resolve Class so no more to do here
Ian Rogers90040192011-12-16 08:54:29 -08004502 }
Mathieu Chartier590fee92013-09-13 13:46:47 -07004503 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartierc7853442015-03-27 14:35:38 -07004504 ArtField* field = class_linker->ResolveFieldJLS(*dex_file_, field_idx, dex_cache_,
4505 class_loader_);
Ian Rogers7b078e82014-09-10 14:44:24 -07004506 if (field == nullptr) {
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07004507 VLOG(verifier) << "Unable to resolve instance field " << field_idx << " ("
Ian Rogersf4028cc2011-11-02 14:56:39 -07004508 << dex_file_->GetFieldName(field_id) << ") in "
4509 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogers7b078e82014-09-10 14:44:24 -07004510 DCHECK(self_->IsExceptionPending());
4511 self_->ClearException();
4512 return nullptr;
Ian Rogersd81871c2011-10-03 13:57:23 -07004513 } else if (obj_type.IsZero()) {
Aart Bik31883642016-06-06 15:02:44 -07004514 // Cannot infer and check type, however, access will cause null pointer exception.
4515 // Fall through into a few last soft failure checks below.
Stephen Kyle695c5982014-08-22 15:03:07 +01004516 } else if (!obj_type.IsReferenceTypes()) {
Aart Bik31883642016-06-06 15:02:44 -07004517 // Trying to read a field from something that isn't a reference.
Stephen Kyle695c5982014-08-22 15:03:07 +01004518 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "instance field access on object that has "
4519 << "non-reference type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07004520 return nullptr;
Ian Rogerse1758fe2012-04-19 11:31:15 -07004521 } else {
David Brazdil0d638bb2016-07-27 15:29:25 +01004522 std::string temp;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08004523 mirror::Class* klass = field->GetDeclaringClass();
Ian Rogersd8f69b02014-09-10 21:43:52 +00004524 const RegType& field_klass =
David Brazdil0d638bb2016-07-27 15:29:25 +01004525 FromClass(klass->GetDescriptor(&temp), klass, klass->CannotBeAssignedFromOtherTypes());
David Brazdil68b5c0b2016-01-19 14:25:29 +00004526 if (obj_type.IsUninitializedTypes()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07004527 // Field accesses through uninitialized references are only allowable for constructors where
David Brazdil68b5c0b2016-01-19 14:25:29 +00004528 // the field is declared in this class.
4529 // Note: this IsConstructor check is technically redundant, as UninitializedThis should only
4530 // appear in constructors.
4531 if (!obj_type.IsUninitializedThisReference() ||
4532 !IsConstructor() ||
4533 !field_klass.Equals(GetDeclaringClass())) {
4534 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access instance field " << PrettyField(field)
4535 << " of a not fully initialized object within the context"
4536 << " of " << PrettyMethod(dex_method_idx_, *dex_file_);
4537 return nullptr;
4538 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07004539 } else if (!field_klass.IsAssignableFrom(obj_type)) {
4540 // Trying to access C1.field1 using reference of type C2, which is neither C1 or a sub-class
4541 // of C1. For resolution to occur the declared class of the field must be compatible with
4542 // obj_type, we've discovered this wasn't so, so report the field didn't exist.
Andreas Gampe66596242016-04-14 10:55:04 -07004543 VerifyError type;
4544 bool is_aot = Runtime::Current()->IsAotCompiler();
4545 if (is_aot && (field_klass.IsUnresolvedTypes() || obj_type.IsUnresolvedTypes())) {
4546 // Compiler & unresolved types involved, retry at runtime.
4547 type = VerifyError::VERIFY_ERROR_NO_CLASS;
4548 } else {
Andreas Gampe8f4ade02016-04-15 10:09:16 -07004549 // Classes known (resolved; and thus assignability check is precise), or we are at runtime
4550 // and still missing classes. This is a hard failure.
Andreas Gampe66596242016-04-14 10:55:04 -07004551 type = VerifyError::VERIFY_ERROR_BAD_CLASS_HARD;
4552 }
4553 Fail(type) << "cannot access instance field " << PrettyField(field)
4554 << " from object of type " << obj_type;
Ian Rogers7b078e82014-09-10 14:44:24 -07004555 return nullptr;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004556 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004557 }
Aart Bik31883642016-06-06 15:02:44 -07004558
4559 // Few last soft failure checks.
4560 if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
4561 field->GetAccessFlags())) {
4562 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access instance field " << PrettyField(field)
4563 << " from " << GetDeclaringClass();
4564 return nullptr;
4565 } else if (field->IsStatic()) {
4566 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field)
4567 << " to not be static";
4568 return nullptr;
4569 }
4570
4571 return field;
Ian Rogersd81871c2011-10-03 13:57:23 -07004572}
4573
Andreas Gampe896df402014-10-20 22:25:29 -07004574template <MethodVerifier::FieldAccessType kAccType>
4575void MethodVerifier::VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type,
4576 bool is_primitive, bool is_static) {
Sebastien Hertz5243e912013-05-21 10:55:07 +02004577 uint32_t field_idx = is_static ? inst->VRegB_21c() : inst->VRegC_22c();
Mathieu Chartierc7853442015-03-27 14:35:38 -07004578 ArtField* field;
Ian Rogersb94a27b2011-10-26 00:33:41 -07004579 if (is_static) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07004580 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07004581 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004582 const RegType& object_type = work_line_->GetRegisterType(this, inst->VRegB_22c());
David Brazdil68b5c0b2016-01-19 14:25:29 +00004583
4584 // One is not allowed to access fields on uninitialized references, except to write to
4585 // fields in the constructor (before calling another constructor).
4586 // GetInstanceField does an assignability check which will fail for uninitialized types.
4587 // We thus modify the type if the uninitialized reference is a "this" reference (this also
4588 // checks at the same time that we're verifying a constructor).
4589 bool should_adjust = (kAccType == FieldAccessType::kAccPut) &&
4590 object_type.IsUninitializedThisReference();
4591 const RegType& adjusted_type = should_adjust
4592 ? GetRegTypeCache()->FromUninitialized(object_type)
4593 : object_type;
4594 field = GetInstanceField(adjusted_type, field_idx);
Andreas Gampe896df402014-10-20 22:25:29 -07004595 if (UNLIKELY(have_pending_hard_failure_)) {
4596 return;
4597 }
Alex Light4a2c8fc2016-02-12 11:01:54 -08004598 if (should_adjust) {
4599 if (field == nullptr) {
4600 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "Might be accessing a superclass instance field prior "
4601 << "to the superclass being initialized in "
4602 << PrettyMethod(dex_method_idx_, *dex_file_);
4603 } else if (field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
4604 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access superclass instance field "
4605 << PrettyField(field) << " of a not fully initialized "
4606 << "object within the context of "
4607 << PrettyMethod(dex_method_idx_, *dex_file_);
4608 return;
4609 }
4610 }
Ian Rogersb94a27b2011-10-26 00:33:41 -07004611 }
Ian Rogersd8f69b02014-09-10 21:43:52 +00004612 const RegType* field_type = nullptr;
Ian Rogers7b078e82014-09-10 14:44:24 -07004613 if (field != nullptr) {
Andreas Gampe896df402014-10-20 22:25:29 -07004614 if (kAccType == FieldAccessType::kAccPut) {
4615 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
4616 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << PrettyField(field)
4617 << " from other class " << GetDeclaringClass();
Aart Bikc2bc2652016-05-23 14:58:49 -07004618 // Keep hunting for possible hard fails.
Andreas Gampe896df402014-10-20 22:25:29 -07004619 }
4620 }
4621
Mathieu Chartierc7853442015-03-27 14:35:38 -07004622 mirror::Class* field_type_class =
4623 can_load_classes_ ? field->GetType<true>() : field->GetType<false>();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004624 if (field_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07004625 field_type = &FromClass(field->GetTypeDescriptor(), field_type_class,
4626 field_type_class->CannotBeAssignedFromOtherTypes());
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08004627 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004628 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
4629 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004630 }
Ian Rogers0d604842012-04-16 14:50:24 -07004631 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004632 if (field_type == nullptr) {
4633 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
4634 const char* descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
Mathieu Chartierbf99f772014-08-23 16:37:27 -07004635 field_type = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004636 }
Sebastien Hertz757b3042014-03-28 14:34:28 +01004637 DCHECK(field_type != nullptr);
Sebastien Hertz5243e912013-05-21 10:55:07 +02004638 const uint32_t vregA = (is_static) ? inst->VRegA_21c() : inst->VRegA_22c();
Andreas Gampe896df402014-10-20 22:25:29 -07004639 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
4640 "Unexpected third access type");
4641 if (kAccType == FieldAccessType::kAccPut) {
4642 // sput or iput.
4643 if (is_primitive) {
4644 VerifyPrimitivePut(*field_type, insn_type, vregA);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004645 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004646 if (!insn_type.IsAssignableFrom(*field_type)) {
Vladimir Marko414000e2015-06-23 17:45:21 +01004647 // If the field type is not a reference, this is a global failure rather than
4648 // a class change failure as the instructions and the descriptors for the type
4649 // should have been consistent within the same file at compile time.
4650 VerifyError error = field_type->IsReferenceTypes() ? VERIFY_ERROR_BAD_CLASS_SOFT
4651 : VERIFY_ERROR_BAD_CLASS_HARD;
4652 Fail(error) << "expected field " << PrettyField(field)
4653 << " to be compatible with type '" << insn_type
4654 << "' but found type '" << *field_type
4655 << "' in put-object";
Andreas Gampe896df402014-10-20 22:25:29 -07004656 return;
4657 }
4658 work_line_->VerifyRegisterType(this, vregA, *field_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004659 }
Andreas Gampe896df402014-10-20 22:25:29 -07004660 } else if (kAccType == FieldAccessType::kAccGet) {
4661 // sget or iget.
4662 if (is_primitive) {
4663 if (field_type->Equals(insn_type) ||
4664 (field_type->IsFloat() && insn_type.IsInteger()) ||
4665 (field_type->IsDouble() && insn_type.IsLong())) {
4666 // expected that read is of the correct primitive type or that int reads are reading
4667 // floats or long reads are reading doubles
4668 } else {
4669 // This is a global failure rather than a class change failure as the instructions and
4670 // the descriptors for the type should have been consistent within the same file at
4671 // compile time
4672 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
4673 << " to be of type '" << insn_type
4674 << "' but found type '" << *field_type << "' in get";
4675 return;
4676 }
Mathieu Chartiereae2fb22014-01-14 14:31:25 -08004677 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004678 if (!insn_type.IsAssignableFrom(*field_type)) {
Vladimir Marko414000e2015-06-23 17:45:21 +01004679 // If the field type is not a reference, this is a global failure rather than
4680 // a class change failure as the instructions and the descriptors for the type
4681 // should have been consistent within the same file at compile time.
4682 VerifyError error = field_type->IsReferenceTypes() ? VERIFY_ERROR_BAD_CLASS_SOFT
4683 : VERIFY_ERROR_BAD_CLASS_HARD;
4684 Fail(error) << "expected field " << PrettyField(field)
4685 << " to be compatible with type '" << insn_type
4686 << "' but found type '" << *field_type
4687 << "' in get-object";
Andreas Gampe890da292015-07-06 17:20:18 -07004688 if (error != VERIFY_ERROR_BAD_CLASS_HARD) {
Andreas Gampead238ce2015-08-24 21:13:08 -07004689 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, reg_types_.Conflict());
Andreas Gampe890da292015-07-06 17:20:18 -07004690 }
Andreas Gampe896df402014-10-20 22:25:29 -07004691 return;
4692 }
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004693 }
Andreas Gampe896df402014-10-20 22:25:29 -07004694 if (!field_type->IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07004695 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, *field_type);
Andreas Gampe896df402014-10-20 22:25:29 -07004696 } else {
4697 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
4698 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07004699 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004700 LOG(FATAL) << "Unexpected case.";
Ian Rogersd81871c2011-10-03 13:57:23 -07004701 }
4702}
4703
Mathieu Chartierc7853442015-03-27 14:35:38 -07004704ArtField* MethodVerifier::GetQuickFieldAccess(const Instruction* inst,
Ian Rogers98379392014-02-24 16:53:16 -08004705 RegisterLine* reg_line) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004706 DCHECK(IsInstructionIGetQuickOrIPutQuick(inst->Opcode())) << inst->Opcode();
Ian Rogers7b078e82014-09-10 14:44:24 -07004707 const RegType& object_type = reg_line->GetRegisterType(this, inst->VRegB_22c());
Ian Rogers9bc54402014-04-17 16:40:01 -07004708 if (!object_type.HasClass()) {
4709 VLOG(verifier) << "Failed to get mirror::Class* from '" << object_type << "'";
4710 return nullptr;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004711 }
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004712 uint32_t field_offset = static_cast<uint32_t>(inst->VRegC_22c());
Mathieu Chartierc7853442015-03-27 14:35:38 -07004713 ArtField* const f = ArtField::FindInstanceFieldWithOffset(object_type.GetClass(), field_offset);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08004714 DCHECK_EQ(f->GetOffset().Uint32Value(), field_offset);
Sebastien Hertz479fc1e2014-04-04 17:51:34 +02004715 if (f == nullptr) {
4716 VLOG(verifier) << "Failed to find instance field at offset '" << field_offset
4717 << "' from '" << PrettyDescriptor(object_type.GetClass()) << "'";
4718 }
4719 return f;
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004720}
4721
Andreas Gampe896df402014-10-20 22:25:29 -07004722template <MethodVerifier::FieldAccessType kAccType>
4723void MethodVerifier::VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type,
4724 bool is_primitive) {
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07004725 DCHECK(Runtime::Current()->IsStarted() || verify_to_dump_);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004726
Mathieu Chartierc7853442015-03-27 14:35:38 -07004727 ArtField* field = GetQuickFieldAccess(inst, work_line_.get());
Ian Rogers7b078e82014-09-10 14:44:24 -07004728 if (field == nullptr) {
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004729 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field from " << inst->Name();
4730 return;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004731 }
Andreas Gampe896df402014-10-20 22:25:29 -07004732
4733 // For an IPUT_QUICK, we now test for final flag of the field.
4734 if (kAccType == FieldAccessType::kAccPut) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004735 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
4736 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << PrettyField(field)
Sebastien Hertzc15853b2013-06-25 17:36:27 +02004737 << " from other class " << GetDeclaringClass();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004738 return;
4739 }
4740 }
Andreas Gampe896df402014-10-20 22:25:29 -07004741
4742 // Get the field type.
4743 const RegType* field_type;
4744 {
Mathieu Chartierc7853442015-03-27 14:35:38 -07004745 mirror::Class* field_type_class = can_load_classes_ ? field->GetType<true>() :
4746 field->GetType<false>();
Andreas Gampe896df402014-10-20 22:25:29 -07004747
4748 if (field_type_class != nullptr) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07004749 field_type = &FromClass(field->GetTypeDescriptor(),
4750 field_type_class,
Andreas Gampef23f33d2015-06-23 14:18:17 -07004751 field_type_class->CannotBeAssignedFromOtherTypes());
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004752 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004753 Thread* self = Thread::Current();
4754 DCHECK(!can_load_classes_ || self->IsExceptionPending());
4755 self->ClearException();
4756 field_type = &reg_types_.FromDescriptor(field->GetDeclaringClass()->GetClassLoader(),
Mathieu Chartierde40d472015-10-15 17:47:48 -07004757 field->GetTypeDescriptor(),
4758 false);
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004759 }
Andreas Gampe896df402014-10-20 22:25:29 -07004760 if (field_type == nullptr) {
4761 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field type from " << inst->Name();
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004762 return;
4763 }
Andreas Gampe896df402014-10-20 22:25:29 -07004764 }
4765
4766 const uint32_t vregA = inst->VRegA_22c();
4767 static_assert(kAccType == FieldAccessType::kAccPut || kAccType == FieldAccessType::kAccGet,
4768 "Unexpected third access type");
4769 if (kAccType == FieldAccessType::kAccPut) {
4770 if (is_primitive) {
4771 // Primitive field assignability rules are weaker than regular assignability rules
4772 bool instruction_compatible;
4773 bool value_compatible;
4774 const RegType& value_type = work_line_->GetRegisterType(this, vregA);
4775 if (field_type->IsIntegralTypes()) {
4776 instruction_compatible = insn_type.IsIntegralTypes();
4777 value_compatible = value_type.IsIntegralTypes();
4778 } else if (field_type->IsFloat()) {
4779 instruction_compatible = insn_type.IsInteger(); // no [is]put-float, so expect [is]put-int
4780 value_compatible = value_type.IsFloatTypes();
4781 } else if (field_type->IsLong()) {
4782 instruction_compatible = insn_type.IsLong();
4783 value_compatible = value_type.IsLongTypes();
4784 } else if (field_type->IsDouble()) {
4785 instruction_compatible = insn_type.IsLong(); // no [is]put-double, so expect [is]put-long
4786 value_compatible = value_type.IsDoubleTypes();
4787 } else {
4788 instruction_compatible = false; // reference field with primitive store
4789 value_compatible = false; // unused
4790 }
4791 if (!instruction_compatible) {
4792 // This is a global failure rather than a class change failure as the instructions and
4793 // the descriptors for the type should have been consistent within the same file at
4794 // compile time
4795 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
4796 << " to be of type '" << insn_type
4797 << "' but found type '" << *field_type
4798 << "' in put";
4799 return;
4800 }
4801 if (!value_compatible) {
4802 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << vregA
4803 << " of type " << value_type
4804 << " but expected " << *field_type
4805 << " for store to " << PrettyField(field) << " in put";
4806 return;
4807 }
4808 } else {
4809 if (!insn_type.IsAssignableFrom(*field_type)) {
4810 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
4811 << " to be compatible with type '" << insn_type
4812 << "' but found type '" << *field_type
4813 << "' in put-object";
4814 return;
4815 }
4816 work_line_->VerifyRegisterType(this, vregA, *field_type);
4817 }
4818 } else if (kAccType == FieldAccessType::kAccGet) {
4819 if (is_primitive) {
4820 if (field_type->Equals(insn_type) ||
4821 (field_type->IsFloat() && insn_type.IsIntegralTypes()) ||
4822 (field_type->IsDouble() && insn_type.IsLongTypes())) {
4823 // expected that read is of the correct primitive type or that int reads are reading
4824 // floats or long reads are reading doubles
4825 } else {
4826 // This is a global failure rather than a class change failure as the instructions and
4827 // the descriptors for the type should have been consistent within the same file at
4828 // compile time
4829 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
4830 << " to be of type '" << insn_type
4831 << "' but found type '" << *field_type << "' in Get";
4832 return;
4833 }
4834 } else {
4835 if (!insn_type.IsAssignableFrom(*field_type)) {
4836 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
4837 << " to be compatible with type '" << insn_type
4838 << "' but found type '" << *field_type
4839 << "' in get-object";
Andreas Gampead238ce2015-08-24 21:13:08 -07004840 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, reg_types_.Conflict());
Andreas Gampe896df402014-10-20 22:25:29 -07004841 return;
4842 }
4843 }
4844 if (!field_type->IsLowHalf()) {
Andreas Gampead238ce2015-08-24 21:13:08 -07004845 work_line_->SetRegisterType<LockOp::kClear>(this, vregA, *field_type);
Andreas Gampe896df402014-10-20 22:25:29 -07004846 } else {
4847 work_line_->SetRegisterTypeWide(this, vregA, *field_type, field_type->HighHalf(&reg_types_));
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004848 }
4849 } else {
Andreas Gampe896df402014-10-20 22:25:29 -07004850 LOG(FATAL) << "Unexpected case.";
Sebastien Hertz2d6ba512013-05-17 11:31:37 +02004851 }
4852}
4853
Ian Rogers776ac1f2012-04-13 23:36:36 -07004854bool MethodVerifier::CheckNotMoveException(const uint16_t* insns, int insn_idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07004855 if ((insns[insn_idx] & 0xff) == Instruction::MOVE_EXCEPTION) {
jeffhaod5347e02012-03-22 17:25:05 -07004856 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-exception";
Ian Rogersd81871c2011-10-03 13:57:23 -07004857 return false;
4858 }
4859 return true;
4860}
4861
Stephen Kyle9bc61992014-09-22 13:53:15 +01004862bool MethodVerifier::CheckNotMoveResult(const uint16_t* insns, int insn_idx) {
4863 if (((insns[insn_idx] & 0xff) >= Instruction::MOVE_RESULT) &&
4864 ((insns[insn_idx] & 0xff) <= Instruction::MOVE_RESULT_OBJECT)) {
4865 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-result*";
4866 return false;
4867 }
4868 return true;
4869}
4870
4871bool MethodVerifier::CheckNotMoveExceptionOrMoveResult(const uint16_t* insns, int insn_idx) {
4872 return (CheckNotMoveException(insns, insn_idx) && CheckNotMoveResult(insns, insn_idx));
4873}
4874
Ian Rogersebbdd872014-07-07 23:53:08 -07004875bool MethodVerifier::UpdateRegisters(uint32_t next_insn, RegisterLine* merge_line,
4876 bool update_merge_line) {
Ian Rogersd81871c2011-10-03 13:57:23 -07004877 bool changed = true;
4878 RegisterLine* target_line = reg_table_.GetLine(next_insn);
Mathieu Chartierde40d472015-10-15 17:47:48 -07004879 if (!GetInstructionFlags(next_insn).IsVisitedOrChanged()) {
jeffhaobdb76512011-09-07 11:43:16 -07004880 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07004881 * We haven't processed this instruction before, and we haven't touched the registers here, so
4882 * there's nothing to "merge". Copy the registers over and mark it as changed. (This is the
4883 * only way a register can transition out of "unknown", so this is not just an optimization.)
jeffhaobdb76512011-09-07 11:43:16 -07004884 */
Andreas Gampea727e372015-08-25 09:22:37 -07004885 target_line->CopyFromLine(merge_line);
Mathieu Chartierde40d472015-10-15 17:47:48 -07004886 if (GetInstructionFlags(next_insn).IsReturn()) {
Jeff Haob24b4a72013-07-31 13:47:31 -07004887 // Verify that the monitor stack is empty on return.
Andreas Gampea727e372015-08-25 09:22:37 -07004888 merge_line->VerifyMonitorStackEmpty(this);
4889
Ian Rogersb8c78592013-07-25 23:52:52 +00004890 // For returns we only care about the operand to the return, all other registers are dead.
4891 // Initialize them as conflicts so they don't add to GC and deoptimization information.
4892 const Instruction* ret_inst = Instruction::At(code_item_->insns_ + next_insn);
Andreas Gampea727e372015-08-25 09:22:37 -07004893 AdjustReturnLine(this, ret_inst, target_line);
Aart Bik31883642016-06-06 15:02:44 -07004894 // Directly bail if a hard failure was found.
Aart Bikb0526322016-06-01 14:06:00 -07004895 if (have_pending_hard_failure_) {
4896 return false;
4897 }
Ian Rogersb8c78592013-07-25 23:52:52 +00004898 }
jeffhaobdb76512011-09-07 11:43:16 -07004899 } else {
Mathieu Chartier361e04a2016-02-16 14:06:35 -08004900 RegisterLineArenaUniquePtr copy;
Andreas Gampeec6e6c12015-11-05 20:39:56 -08004901 if (kDebugVerify) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07004902 copy.reset(RegisterLine::Create(target_line->NumRegs(), this));
Ian Rogers7b0c5b42012-02-16 15:29:07 -08004903 copy->CopyFromLine(target_line);
4904 }
Ian Rogers7b078e82014-09-10 14:44:24 -07004905 changed = target_line->MergeRegisters(this, merge_line);
Ian Rogersad0b3a32012-04-16 14:50:24 -07004906 if (have_pending_hard_failure_) {
Ian Rogersd81871c2011-10-03 13:57:23 -07004907 return false;
jeffhaobdb76512011-09-07 11:43:16 -07004908 }
Andreas Gampeec6e6c12015-11-05 20:39:56 -08004909 if (kDebugVerify && changed) {
Elliott Hughes398f64b2012-03-26 18:05:48 -07004910 LogVerifyInfo() << "Merging at [" << reinterpret_cast<void*>(work_insn_idx_) << "]"
Elliott Hughesc073b072012-05-24 19:29:17 -07004911 << " to [" << reinterpret_cast<void*>(next_insn) << "]: " << "\n"
Ian Rogers7b078e82014-09-10 14:44:24 -07004912 << copy->Dump(this) << " MERGE\n"
4913 << merge_line->Dump(this) << " ==\n"
4914 << target_line->Dump(this) << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07004915 }
Ian Rogersebbdd872014-07-07 23:53:08 -07004916 if (update_merge_line && changed) {
4917 merge_line->CopyFromLine(target_line);
4918 }
jeffhaobdb76512011-09-07 11:43:16 -07004919 }
Ian Rogersd81871c2011-10-03 13:57:23 -07004920 if (changed) {
Mathieu Chartierde40d472015-10-15 17:47:48 -07004921 GetInstructionFlags(next_insn).SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07004922 }
4923 return true;
4924}
4925
Ian Rogers7b3ddd22013-02-21 15:19:52 -08004926InstructionFlags* MethodVerifier::CurrentInsnFlags() {
Mathieu Chartierde40d472015-10-15 17:47:48 -07004927 return &GetInstructionFlags(work_insn_idx_);
Ian Rogers776ac1f2012-04-13 23:36:36 -07004928}
4929
Ian Rogersd8f69b02014-09-10 21:43:52 +00004930const RegType& MethodVerifier::GetMethodReturnType() {
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004931 if (return_type_ == nullptr) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07004932 if (mirror_method_ != nullptr) {
Andreas Gampe542451c2016-07-26 09:02:02 -07004933 PointerSize pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Vladimir Marko05792b92015-08-03 11:56:49 +01004934 mirror::Class* return_type_class = mirror_method_->GetReturnType(can_load_classes_,
4935 pointer_size);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004936 if (return_type_class != nullptr) {
Andreas Gampef23f33d2015-06-23 14:18:17 -07004937 return_type_ = &FromClass(mirror_method_->GetReturnTypeDescriptor(),
4938 return_type_class,
4939 return_type_class->CannotBeAssignedFromOtherTypes());
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004940 } else {
Ian Rogers7b078e82014-09-10 14:44:24 -07004941 DCHECK(!can_load_classes_ || self_->IsExceptionPending());
4942 self_->ClearException();
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004943 }
4944 }
4945 if (return_type_ == nullptr) {
4946 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
4947 const DexFile::ProtoId& proto_id = dex_file_->GetMethodPrototype(method_id);
4948 uint16_t return_type_idx = proto_id.return_type_idx_;
4949 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx));
Mathieu Chartierbf99f772014-08-23 16:37:27 -07004950 return_type_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogersfc0e94b2013-09-23 23:51:32 -07004951 }
4952 }
4953 return *return_type_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004954}
4955
Ian Rogersd8f69b02014-09-10 21:43:52 +00004956const RegType& MethodVerifier::GetDeclaringClass() {
Ian Rogers7b078e82014-09-10 14:44:24 -07004957 if (declaring_class_ == nullptr) {
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004958 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
Brian Carlstrom93c33962013-07-26 10:37:43 -07004959 const char* descriptor
4960 = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
Mathieu Chartiere401d142015-04-22 13:56:20 -07004961 if (mirror_method_ != nullptr) {
Ian Rogers637c65b2013-05-31 11:46:00 -07004962 mirror::Class* klass = mirror_method_->GetDeclaringClass();
Mathieu Chartierde40d472015-10-15 17:47:48 -07004963 declaring_class_ = &FromClass(descriptor, klass, klass->CannotBeAssignedFromOtherTypes());
Ian Rogers637c65b2013-05-31 11:46:00 -07004964 } else {
Mathieu Chartierbf99f772014-08-23 16:37:27 -07004965 declaring_class_ = &reg_types_.FromDescriptor(GetClassLoader(), descriptor, false);
Ian Rogers637c65b2013-05-31 11:46:00 -07004966 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07004967 }
Ian Rogers637c65b2013-05-31 11:46:00 -07004968 return *declaring_class_;
Ian Rogersad0b3a32012-04-16 14:50:24 -07004969}
4970
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004971std::vector<int32_t> MethodVerifier::DescribeVRegs(uint32_t dex_pc) {
4972 RegisterLine* line = reg_table_.GetLine(dex_pc);
Sebastien Hertzaa0c00c2014-03-14 17:58:54 +01004973 DCHECK(line != nullptr) << "No register line at DEX pc " << StringPrintf("0x%x", dex_pc);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004974 std::vector<int32_t> result;
4975 for (size_t i = 0; i < line->NumRegs(); ++i) {
Ian Rogers7b078e82014-09-10 14:44:24 -07004976 const RegType& type = line->GetRegisterType(this, i);
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004977 if (type.IsConstant()) {
4978 result.push_back(type.IsPreciseConstant() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07004979 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
4980 result.push_back(const_val->ConstantValue());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004981 } else if (type.IsConstantLo()) {
4982 result.push_back(type.IsPreciseConstantLo() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07004983 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
4984 result.push_back(const_val->ConstantValueLo());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004985 } else if (type.IsConstantHi()) {
4986 result.push_back(type.IsPreciseConstantHi() ? kConstant : kImpreciseConstant);
Ian Rogers7b078e82014-09-10 14:44:24 -07004987 const ConstantType* const_val = down_cast<const ConstantType*>(&type);
4988 result.push_back(const_val->ConstantValueHi());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08004989 } else if (type.IsIntegralTypes()) {
4990 result.push_back(kIntVReg);
4991 result.push_back(0);
4992 } else if (type.IsFloat()) {
4993 result.push_back(kFloatVReg);
4994 result.push_back(0);
4995 } else if (type.IsLong()) {
4996 result.push_back(kLongLoVReg);
4997 result.push_back(0);
4998 result.push_back(kLongHiVReg);
4999 result.push_back(0);
5000 ++i;
5001 } else if (type.IsDouble()) {
5002 result.push_back(kDoubleLoVReg);
5003 result.push_back(0);
5004 result.push_back(kDoubleHiVReg);
5005 result.push_back(0);
5006 ++i;
5007 } else if (type.IsUndefined() || type.IsConflict() || type.IsHighHalf()) {
5008 result.push_back(kUndefined);
5009 result.push_back(0);
5010 } else {
Ian Rogers7b3ddd22013-02-21 15:19:52 -08005011 CHECK(type.IsNonZeroReferenceTypes());
Ian Rogers2bcb4a42012-11-08 10:39:18 -08005012 result.push_back(kReferenceVReg);
5013 result.push_back(0);
5014 }
5015 }
5016 return result;
5017}
5018
Ian Rogersd8f69b02014-09-10 21:43:52 +00005019const RegType& MethodVerifier::DetermineCat1Constant(int32_t value, bool precise) {
Sebastien Hertz849600b2013-12-20 10:28:08 +01005020 if (precise) {
5021 // Precise constant type.
5022 return reg_types_.FromCat1Const(value, true);
5023 } else {
5024 // Imprecise constant type.
5025 if (value < -32768) {
5026 return reg_types_.IntConstant();
5027 } else if (value < -128) {
5028 return reg_types_.ShortConstant();
5029 } else if (value < 0) {
5030 return reg_types_.ByteConstant();
5031 } else if (value == 0) {
5032 return reg_types_.Zero();
5033 } else if (value == 1) {
5034 return reg_types_.One();
5035 } else if (value < 128) {
5036 return reg_types_.PosByteConstant();
5037 } else if (value < 32768) {
5038 return reg_types_.PosShortConstant();
5039 } else if (value < 65536) {
5040 return reg_types_.CharConstant();
5041 } else {
5042 return reg_types_.IntConstant();
5043 }
5044 }
5045}
5046
Elliott Hughes0a1038b2012-06-14 16:24:17 -07005047void MethodVerifier::Init() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08005048 art::verifier::RegTypeCache::Init();
Brian Carlstrome7d856b2012-01-11 18:10:55 -08005049}
5050
Elliott Hughes0a1038b2012-06-14 16:24:17 -07005051void MethodVerifier::Shutdown() {
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -08005052 verifier::RegTypeCache::ShutDown();
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08005053}
jeffhaod1224c72012-02-29 13:43:08 -08005054
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07005055void MethodVerifier::VisitStaticRoots(RootVisitor* visitor) {
5056 RegTypeCache::VisitStaticRoots(visitor);
Mathieu Chartier7c438b12014-09-12 17:01:24 -07005057}
5058
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -07005059void MethodVerifier::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) {
5060 reg_types_.VisitRoots(visitor, root_info);
Mathieu Chartierc528dba2013-11-26 12:00:11 -08005061}
5062
Andreas Gampef23f33d2015-06-23 14:18:17 -07005063const RegType& MethodVerifier::FromClass(const char* descriptor,
5064 mirror::Class* klass,
5065 bool precise) {
5066 DCHECK(klass != nullptr);
5067 if (precise && !klass->IsInstantiable() && !klass->IsPrimitive()) {
5068 Fail(VerifyError::VERIFY_ERROR_NO_CLASS) << "Could not create precise reference for "
5069 << "non-instantiable klass " << descriptor;
5070 precise = false;
5071 }
5072 return reg_types_.FromClass(descriptor, klass, precise);
5073}
5074
Ian Rogersd81871c2011-10-03 13:57:23 -07005075} // namespace verifier
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005076} // namespace art