blob: ac9a0c9b2bc625e273be84e4409bcfc348188a89 [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
Ian Rogers776ac1f2012-04-13 23:36:36 -070017#include "method_verifier.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018
Elliott Hughes1f359b02011-07-17 14:27:17 -070019#include <iostream>
20
Brian Carlstrom1f870082011-08-23 16:02:11 -070021#include "class_linker.h"
Brian Carlstrome7d856b2012-01-11 18:10:55 -080022#include "compiler.h"
jeffhaob4df5142011-09-19 20:25:32 -070023#include "dex_cache.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070024#include "dex_file.h"
25#include "dex_instruction.h"
26#include "dex_instruction_visitor.h"
Ian Rogers0c7abda2012-09-19 13:33:42 -070027#include "verifier/dex_gc_map.h"
Ian Rogers84fa0742011-10-25 18:13:30 -070028#include "intern_table.h"
Ian Rogers0571d352011-11-03 19:51:38 -070029#include "leb128.h"
Elliott Hughes1f359b02011-07-17 14:27:17 -070030#include "logging.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080031#include "object_utils.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070032#include "runtime.h"
Elliott Hughes1f359b02011-07-17 14:27:17 -070033#include "stringpiece.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070034
Shih-wei Liao21d28f52012-06-12 05:55:00 -070035#if defined(ART_USE_LLVM_COMPILER) || defined(ART_USE_GREENLAND_COMPILER)
TDYa12789f96052012-07-12 20:49:53 -070036#include "greenland/backend_types.h"
37#include "greenland/inferred_reg_category_map.h"
Logan Chienfca7e872011-12-20 20:08:22 +080038#endif
39
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070040namespace art {
Ian Rogersd81871c2011-10-03 13:57:23 -070041namespace verifier {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070042
Ian Rogers2c8a8572011-10-24 17:11:36 -070043static const bool gDebugVerify = false;
44
Ian Rogers776ac1f2012-04-13 23:36:36 -070045class InsnFlags {
46 public:
47 InsnFlags() : length_(0), flags_(0) {}
48
49 void SetLengthInCodeUnits(size_t length) {
50 CHECK_LT(length, 65536u);
51 length_ = length;
52 }
53 size_t GetLengthInCodeUnits() {
54 return length_;
55 }
56 bool IsOpcode() const {
57 return length_ != 0;
58 }
59
60 void SetInTry() {
61 flags_ |= 1 << kInTry;
62 }
63 void ClearInTry() {
64 flags_ &= ~(1 << kInTry);
65 }
66 bool IsInTry() const {
67 return (flags_ & (1 << kInTry)) != 0;
68 }
69
70 void SetBranchTarget() {
71 flags_ |= 1 << kBranchTarget;
72 }
73 void ClearBranchTarget() {
74 flags_ &= ~(1 << kBranchTarget);
75 }
76 bool IsBranchTarget() const {
77 return (flags_ & (1 << kBranchTarget)) != 0;
78 }
79
80 void SetGcPoint() {
81 flags_ |= 1 << kGcPoint;
82 }
83 void ClearGcPoint() {
84 flags_ &= ~(1 << kGcPoint);
85 }
86 bool IsGcPoint() const {
87 return (flags_ & (1 << kGcPoint)) != 0;
88 }
89
90 void SetVisited() {
91 flags_ |= 1 << kVisited;
92 }
93 void ClearVisited() {
94 flags_ &= ~(1 << kVisited);
95 }
96 bool IsVisited() const {
97 return (flags_ & (1 << kVisited)) != 0;
98 }
99
100 void SetChanged() {
101 flags_ |= 1 << kChanged;
102 }
103 void ClearChanged() {
104 flags_ &= ~(1 << kChanged);
105 }
106 bool IsChanged() const {
107 return (flags_ & (1 << kChanged)) != 0;
108 }
109
110 bool IsVisitedOrChanged() const {
111 return IsVisited() || IsChanged();
112 }
113
114 std::string Dump() {
115 char encoding[6];
116 if (!IsOpcode()) {
117 strncpy(encoding, "XXXXX", sizeof(encoding));
118 } else {
119 strncpy(encoding, "-----", sizeof(encoding));
120 if (IsInTry()) encoding[kInTry] = 'T';
121 if (IsBranchTarget()) encoding[kBranchTarget] = 'B';
122 if (IsGcPoint()) encoding[kGcPoint] = 'G';
123 if (IsVisited()) encoding[kVisited] = 'V';
124 if (IsChanged()) encoding[kChanged] = 'C';
125 }
126 return std::string(encoding);
127 }
Elliott Hughesa21039c2012-06-21 12:09:25 -0700128
Ian Rogers776ac1f2012-04-13 23:36:36 -0700129 private:
130 enum {
131 kInTry,
132 kBranchTarget,
133 kGcPoint,
134 kVisited,
135 kChanged,
136 };
137
138 // Size of instruction in code units
139 uint16_t length_;
140 uint8_t flags_;
Ian Rogers84fa0742011-10-25 18:13:30 -0700141};
Ian Rogersd81871c2011-10-03 13:57:23 -0700142
Ian Rogersd81871c2011-10-03 13:57:23 -0700143void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InsnFlags* flags,
144 uint32_t insns_size, uint16_t registers_size,
Ian Rogers776ac1f2012-04-13 23:36:36 -0700145 MethodVerifier* verifier) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700146 DCHECK_GT(insns_size, 0U);
147
148 for (uint32_t i = 0; i < insns_size; i++) {
149 bool interesting = false;
150 switch (mode) {
151 case kTrackRegsAll:
152 interesting = flags[i].IsOpcode();
153 break;
154 case kTrackRegsGcPoints:
155 interesting = flags[i].IsGcPoint() || flags[i].IsBranchTarget();
156 break;
157 case kTrackRegsBranches:
158 interesting = flags[i].IsBranchTarget();
159 break;
160 default:
161 break;
162 }
163 if (interesting) {
Elliott Hughesa0e18062012-04-13 15:59:59 -0700164 pc_to_register_line_.Put(i, new RegisterLine(registers_size, verifier));
Ian Rogersd81871c2011-10-03 13:57:23 -0700165 }
166 }
167}
168
jeffhaof1e6b7c2012-06-05 18:33:30 -0700169MethodVerifier::FailureKind MethodVerifier::VerifyClass(const Class* klass, std::string& error) {
jeffhaobdb76512011-09-07 11:43:16 -0700170 if (klass->IsVerified()) {
jeffhaof1e6b7c2012-06-05 18:33:30 -0700171 return kNoFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700172 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700173 Class* super = klass->GetSuperClass();
Elliott Hughes91250e02011-12-13 22:30:35 -0800174 if (super == NULL && StringPiece(ClassHelper(klass).GetDescriptor()) != "Ljava/lang/Object;") {
Ian Rogers1c5eb702012-02-01 09:18:34 -0800175 error = "Verifier rejected class ";
176 error += PrettyDescriptor(klass);
177 error += " that has no super class";
jeffhaof1e6b7c2012-06-05 18:33:30 -0700178 return kHardFailure;
Ian Rogersd81871c2011-10-03 13:57:23 -0700179 }
Ian Rogers1c5eb702012-02-01 09:18:34 -0800180 if (super != NULL && super->IsFinal()) {
181 error = "Verifier rejected class ";
182 error += PrettyDescriptor(klass);
183 error += " that attempts to sub-class final class ";
184 error += PrettyDescriptor(super);
jeffhaof1e6b7c2012-06-05 18:33:30 -0700185 return kHardFailure;
Ian Rogersd81871c2011-10-03 13:57:23 -0700186 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700187 ClassHelper kh(klass);
188 const DexFile& dex_file = kh.GetDexFile();
189 uint32_t class_def_idx;
190 if (!dex_file.FindClassDefIndex(kh.GetDescriptor(), class_def_idx)) {
191 error = "Verifier rejected class ";
192 error += PrettyDescriptor(klass);
193 error += " that isn't present in dex file ";
194 error += dex_file.GetLocation();
jeffhaof1e6b7c2012-06-05 18:33:30 -0700195 return kHardFailure;
jeffhaobdb76512011-09-07 11:43:16 -0700196 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700197 return VerifyClass(&dex_file, kh.GetDexCache(), klass->GetClassLoader(), class_def_idx, error);
Shih-wei Liao371814f2011-10-27 16:52:10 -0700198}
199
Ian Rogers365c1022012-06-22 15:05:28 -0700200MethodVerifier::FailureKind MethodVerifier::VerifyClass(const DexFile* dex_file,
201 DexCache* dex_cache, ClassLoader* class_loader, uint32_t class_def_idx, std::string& error) {
jeffhaof56197c2012-03-05 18:01:54 -0800202 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_idx);
203 const byte* class_data = dex_file->GetClassData(class_def);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700204 if (class_data == NULL) {
205 // empty class, probably a marker interface
jeffhaof1e6b7c2012-06-05 18:33:30 -0700206 return kNoFailure;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700207 }
jeffhaof56197c2012-03-05 18:01:54 -0800208 ClassDataItemIterator it(*dex_file, class_data);
209 while (it.HasNextStaticField() || it.HasNextInstanceField()) {
210 it.Next();
211 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700212 size_t error_count = 0;
jeffhaof1e6b7c2012-06-05 18:33:30 -0700213 bool hard_fail = false;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700214 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhaof56197c2012-03-05 18:01:54 -0800215 while (it.HasNextDirectMethod()) {
216 uint32_t method_idx = it.GetMemberIndex();
Ian Rogers08f753d2012-08-24 14:35:25 -0700217 InvokeType type = it.GetMethodInvokeType(class_def);
jeffhaoc0228b82012-08-29 18:15:05 -0700218 Method* method = linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader, NULL, type);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700219 if (method == NULL) {
220 DCHECK(Thread::Current()->IsExceptionPending());
221 // We couldn't resolve the method, but continue regardless.
222 Thread::Current()->ClearException();
223 }
jeffhaof1e6b7c2012-06-05 18:33:30 -0700224 MethodVerifier::FailureKind result = VerifyMethod(method_idx, dex_file, dex_cache, class_loader,
225 class_def_idx, it.GetMethodCodeItem(), method, it.GetMemberAccessFlags());
226 if (result != kNoFailure) {
227 if (result == kHardFailure) {
228 hard_fail = true;
229 if (error_count > 0) {
230 error += "\n";
231 }
232 error = "Verifier rejected class ";
233 error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
234 error += " due to bad method ";
235 error += PrettyMethod(method_idx, *dex_file);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700236 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700237 ++error_count;
jeffhaof56197c2012-03-05 18:01:54 -0800238 }
239 it.Next();
240 }
241 while (it.HasNextVirtualMethod()) {
242 uint32_t method_idx = it.GetMemberIndex();
Ian Rogers08f753d2012-08-24 14:35:25 -0700243 InvokeType type = it.GetMethodInvokeType(class_def);
jeffhaoc0228b82012-08-29 18:15:05 -0700244 Method* method = linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader, NULL, type);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700245 if (method == NULL) {
246 DCHECK(Thread::Current()->IsExceptionPending());
247 // We couldn't resolve the method, but continue regardless.
248 Thread::Current()->ClearException();
249 }
jeffhaof1e6b7c2012-06-05 18:33:30 -0700250 MethodVerifier::FailureKind result = VerifyMethod(method_idx, dex_file, dex_cache, class_loader,
251 class_def_idx, it.GetMethodCodeItem(), method, it.GetMemberAccessFlags());
252 if (result != kNoFailure) {
253 if (result == kHardFailure) {
254 hard_fail = true;
255 if (error_count > 0) {
256 error += "\n";
257 }
258 error = "Verifier rejected class ";
259 error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
260 error += " due to bad method ";
261 error += PrettyMethod(method_idx, *dex_file);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700262 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700263 ++error_count;
jeffhaof56197c2012-03-05 18:01:54 -0800264 }
265 it.Next();
266 }
jeffhaof1e6b7c2012-06-05 18:33:30 -0700267 if (error_count == 0) {
268 return kNoFailure;
269 } else {
270 return hard_fail ? kHardFailure : kSoftFailure;
271 }
jeffhaof56197c2012-03-05 18:01:54 -0800272}
273
jeffhaof1e6b7c2012-06-05 18:33:30 -0700274MethodVerifier::FailureKind MethodVerifier::VerifyMethod(uint32_t method_idx, const DexFile* dex_file,
Ian Rogers365c1022012-06-22 15:05:28 -0700275 DexCache* dex_cache, ClassLoader* class_loader, uint32_t class_def_idx,
jeffhaof1e6b7c2012-06-05 18:33:30 -0700276 const DexFile::CodeItem* code_item, Method* method, uint32_t method_access_flags) {
Ian Rogersc8982582012-09-07 16:53:25 -0700277 MethodVerifier::FailureKind result = kNoFailure;
278 uint64_t start_ns = NanoTime();
279
Ian Rogersad0b3a32012-04-16 14:50:24 -0700280 MethodVerifier verifier(dex_file, dex_cache, class_loader, class_def_idx, code_item, method_idx,
281 method, method_access_flags);
jeffhaof1e6b7c2012-06-05 18:33:30 -0700282 if (verifier.Verify()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700283 // Verification completed, however failures may be pending that didn't cause the verification
284 // to hard fail.
Ian Rogerse551e952012-06-03 22:59:14 -0700285 CHECK(!verifier.have_pending_hard_failure_);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700286 if (verifier.failures_.size() != 0) {
287 verifier.DumpFailures(LOG(INFO) << "Soft verification failures in "
Elliott Hughesc073b072012-05-24 19:29:17 -0700288 << PrettyMethod(method_idx, *dex_file) << "\n");
Ian Rogersc8982582012-09-07 16:53:25 -0700289 result = kSoftFailure;
jeffhaof56197c2012-03-05 18:01:54 -0800290 }
291 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700292 // Bad method data.
293 CHECK_NE(verifier.failures_.size(), 0U);
294 CHECK(verifier.have_pending_hard_failure_);
295 verifier.DumpFailures(LOG(INFO) << "Verification error in "
Elliott Hughesc073b072012-05-24 19:29:17 -0700296 << PrettyMethod(method_idx, *dex_file) << "\n");
jeffhaof56197c2012-03-05 18:01:54 -0800297 if (gDebugVerify) {
Elliott Hughesc073b072012-05-24 19:29:17 -0700298 std::cout << "\n" << verifier.info_messages_.str();
jeffhaof56197c2012-03-05 18:01:54 -0800299 verifier.Dump(std::cout);
300 }
Ian Rogersc8982582012-09-07 16:53:25 -0700301 result = kHardFailure;
jeffhaof56197c2012-03-05 18:01:54 -0800302 }
Ian Rogersc8982582012-09-07 16:53:25 -0700303 uint64_t duration_ns = NanoTime() - start_ns;
304 if (duration_ns > MsToNs(100)) {
305 LOG(WARNING) << "Verification of " << PrettyMethod(method_idx, *dex_file)
306 << " took " << PrettyDuration(duration_ns);
307 }
308 return result;
jeffhaof56197c2012-03-05 18:01:54 -0800309}
310
Ian Rogersad0b3a32012-04-16 14:50:24 -0700311void MethodVerifier::VerifyMethodAndDump(Method* method) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800312 CHECK(method != NULL);
Ian Rogersad0b3a32012-04-16 14:50:24 -0700313 MethodHelper mh(method);
314 MethodVerifier verifier(&mh.GetDexFile(), mh.GetDexCache(), mh.GetClassLoader(),
315 mh.GetClassDefIndex(), mh.GetCodeItem(), method->GetDexMethodIndex(),
316 method, method->GetAccessFlags());
317 verifier.Verify();
Elliott Hughesc073b072012-05-24 19:29:17 -0700318 verifier.DumpFailures(LOG(INFO) << "Dump of method " << PrettyMethod(method) << "\n")
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700319 << verifier.info_messages_.str() << MutatorLockedDumpable<MethodVerifier>(verifier);
jeffhaoba5ebb92011-08-25 17:24:37 -0700320}
321
Ian Rogers776ac1f2012-04-13 23:36:36 -0700322MethodVerifier::MethodVerifier(const DexFile* dex_file, DexCache* dex_cache,
Ian Rogers365c1022012-06-22 15:05:28 -0700323 ClassLoader* class_loader, uint32_t class_def_idx, const DexFile::CodeItem* code_item,
Ian Rogersad0b3a32012-04-16 14:50:24 -0700324 uint32_t method_idx, Method* method, uint32_t method_access_flags)
jeffhaof56197c2012-03-05 18:01:54 -0800325 : work_insn_idx_(-1),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700326 method_idx_(method_idx),
327 foo_method_(method),
328 method_access_flags_(method_access_flags),
jeffhaof56197c2012-03-05 18:01:54 -0800329 dex_file_(dex_file),
330 dex_cache_(dex_cache),
331 class_loader_(class_loader),
332 class_def_idx_(class_def_idx),
333 code_item_(code_item),
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700334 interesting_dex_pc_(-1),
335 monitor_enter_dex_pcs_(NULL),
Ian Rogersad0b3a32012-04-16 14:50:24 -0700336 have_pending_hard_failure_(false),
jeffhaofaf459e2012-08-31 15:32:47 -0700337 have_pending_runtime_throw_failure_(false),
jeffhaof56197c2012-03-05 18:01:54 -0800338 new_instance_count_(0),
339 monitor_enter_count_(0) {
340}
341
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700342void MethodVerifier::FindLocksAtDexPc(Method* m, uint32_t dex_pc, std::vector<uint32_t>& monitor_enter_dex_pcs) {
343 MethodHelper mh(m);
344 MethodVerifier verifier(&mh.GetDexFile(), mh.GetDexCache(), mh.GetClassLoader(),
345 mh.GetClassDefIndex(), mh.GetCodeItem(), m->GetDexMethodIndex(),
346 m, m->GetAccessFlags());
347 verifier.interesting_dex_pc_ = dex_pc;
348 verifier.monitor_enter_dex_pcs_ = &monitor_enter_dex_pcs;
349 verifier.FindLocksAtDexPc();
350}
351
352void MethodVerifier::FindLocksAtDexPc() {
353 CHECK(monitor_enter_dex_pcs_ != NULL);
354 CHECK(code_item_ != NULL); // This only makes sense for methods with code.
355
356 // Strictly speaking, we ought to be able to get away with doing a subset of the full method
357 // verification. In practice, the phase we want relies on data structures set up by all the
358 // earlier passes, so we just run the full method verification and bail out early when we've
359 // got what we wanted.
360 Verify();
361}
362
Ian Rogersad0b3a32012-04-16 14:50:24 -0700363bool MethodVerifier::Verify() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700364 // If there aren't any instructions, make sure that's expected, then exit successfully.
365 if (code_item_ == NULL) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700366 if ((method_access_flags_ & (kAccNative | kAccAbstract)) == 0) {
jeffhaod5347e02012-03-22 17:25:05 -0700367 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "zero-length code in concrete non-native method";
jeffhaobdb76512011-09-07 11:43:16 -0700368 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -0700369 } else {
370 return true;
jeffhaobdb76512011-09-07 11:43:16 -0700371 }
jeffhaobdb76512011-09-07 11:43:16 -0700372 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700373 // Sanity-check the register counts. ins + locals = registers, so make sure that ins <= registers.
374 if (code_item_->ins_size_ > code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700375 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad register counts (ins=" << code_item_->ins_size_
376 << " regs=" << code_item_->registers_size_;
Ian Rogersd81871c2011-10-03 13:57:23 -0700377 return false;
jeffhaobdb76512011-09-07 11:43:16 -0700378 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700379 // Allocate and initialize an array to hold instruction data.
380 insn_flags_.reset(new InsnFlags[code_item_->insns_size_in_code_units_]());
381 // Run through the instructions and see if the width checks out.
382 bool result = ComputeWidthsAndCountOps();
383 // Flag instructions guarded by a "try" block and check exception handlers.
384 result = result && ScanTryCatchBlocks();
385 // Perform static instruction verification.
386 result = result && VerifyInstructions();
Ian Rogersad0b3a32012-04-16 14:50:24 -0700387 // Perform code-flow analysis and return.
388 return result && VerifyCodeFlow();
jeffhaoba5ebb92011-08-25 17:24:37 -0700389}
390
Ian Rogers776ac1f2012-04-13 23:36:36 -0700391std::ostream& MethodVerifier::Fail(VerifyError error) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700392 switch (error) {
393 case VERIFY_ERROR_NO_CLASS:
394 case VERIFY_ERROR_NO_FIELD:
395 case VERIFY_ERROR_NO_METHOD:
396 case VERIFY_ERROR_ACCESS_CLASS:
397 case VERIFY_ERROR_ACCESS_FIELD:
398 case VERIFY_ERROR_ACCESS_METHOD:
Ian Rogers08f753d2012-08-24 14:35:25 -0700399 case VERIFY_ERROR_INSTANTIATION:
400 case VERIFY_ERROR_CLASS_CHANGE:
jeffhaofaf459e2012-08-31 15:32:47 -0700401 if (Runtime::Current()->IsCompiler()) {
402 // If we're optimistically running verification at compile time, turn NO_xxx, ACCESS_xxx,
403 // class change and instantiation errors into soft verification errors so that we re-verify
404 // at runtime. We may fail to find or to agree on access because of not yet available class
405 // loaders, or class loaders that will differ at runtime. In these cases, we don't want to
406 // affect the soundness of the code being compiled. Instead, the generated code runs "slow
407 // paths" that dynamically perform the verification and cause the behavior to be that akin
408 // to an interpreter.
409 error = VERIFY_ERROR_BAD_CLASS_SOFT;
410 } else {
411 have_pending_runtime_throw_failure_ = true;
412 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700413 break;
Ian Rogersad0b3a32012-04-16 14:50:24 -0700414 // Indication that verification should be retried at runtime.
415 case VERIFY_ERROR_BAD_CLASS_SOFT:
416 if (!Runtime::Current()->IsCompiler()) {
417 // It is runtime so hard fail.
418 have_pending_hard_failure_ = true;
419 }
420 break;
jeffhaod5347e02012-03-22 17:25:05 -0700421 // Hard verification failures at compile time will still fail at runtime, so the class is
422 // marked as rejected to prevent it from being compiled.
Ian Rogersad0b3a32012-04-16 14:50:24 -0700423 case VERIFY_ERROR_BAD_CLASS_HARD: {
424 if (Runtime::Current()->IsCompiler()) {
jeffhaof56197c2012-03-05 18:01:54 -0800425 Compiler::ClassReference ref(dex_file_, class_def_idx_);
jeffhaod1224c72012-02-29 13:43:08 -0800426 AddRejectedClass(ref);
jeffhaod1224c72012-02-29 13:43:08 -0800427 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700428 have_pending_hard_failure_ = true;
429 break;
Ian Rogers47a05882012-02-03 12:23:33 -0800430 }
431 }
Ian Rogersad0b3a32012-04-16 14:50:24 -0700432 failures_.push_back(error);
433 std::string location(StringPrintf("%s: [0x%X]", PrettyMethod(method_idx_, *dex_file_).c_str(),
434 work_insn_idx_));
435 std::ostringstream* failure_message = new std::ostringstream(location);
436 failure_messages_.push_back(failure_message);
437 return *failure_message;
438}
439
440void MethodVerifier::PrependToLastFailMessage(std::string prepend) {
441 size_t failure_num = failure_messages_.size();
442 DCHECK_NE(failure_num, 0U);
443 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
444 prepend += last_fail_message->str();
445 failure_messages_[failure_num - 1] = new std::ostringstream(prepend);
446 delete last_fail_message;
447}
448
449void MethodVerifier::AppendToLastFailMessage(std::string append) {
450 size_t failure_num = failure_messages_.size();
451 DCHECK_NE(failure_num, 0U);
452 std::ostringstream* last_fail_message = failure_messages_[failure_num - 1];
453 (*last_fail_message) << append;
Ian Rogers47a05882012-02-03 12:23:33 -0800454}
455
Ian Rogers776ac1f2012-04-13 23:36:36 -0700456bool MethodVerifier::ComputeWidthsAndCountOps() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700457 const uint16_t* insns = code_item_->insns_;
458 size_t insns_size = code_item_->insns_size_in_code_units_;
459 const Instruction* inst = Instruction::At(insns);
jeffhaobdb76512011-09-07 11:43:16 -0700460 size_t new_instance_count = 0;
461 size_t monitor_enter_count = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -0700462 size_t dex_pc = 0;
jeffhaobdb76512011-09-07 11:43:16 -0700463
Ian Rogersd81871c2011-10-03 13:57:23 -0700464 while (dex_pc < insns_size) {
jeffhaobdb76512011-09-07 11:43:16 -0700465 Instruction::Code opcode = inst->Opcode();
466 if (opcode == Instruction::NEW_INSTANCE) {
467 new_instance_count++;
468 } else if (opcode == Instruction::MONITOR_ENTER) {
469 monitor_enter_count++;
470 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700471 size_t inst_size = inst->SizeInCodeUnits();
472 insn_flags_[dex_pc].SetLengthInCodeUnits(inst_size);
473 dex_pc += inst_size;
jeffhaobdb76512011-09-07 11:43:16 -0700474 inst = inst->Next();
475 }
476
Ian Rogersd81871c2011-10-03 13:57:23 -0700477 if (dex_pc != insns_size) {
jeffhaod5347e02012-03-22 17:25:05 -0700478 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "code did not end where expected ("
479 << dex_pc << " vs. " << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700480 return false;
481 }
482
Ian Rogersd81871c2011-10-03 13:57:23 -0700483 new_instance_count_ = new_instance_count;
484 monitor_enter_count_ = monitor_enter_count;
jeffhaobdb76512011-09-07 11:43:16 -0700485 return true;
486}
487
Ian Rogers776ac1f2012-04-13 23:36:36 -0700488bool MethodVerifier::ScanTryCatchBlocks() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700489 uint32_t tries_size = code_item_->tries_size_;
jeffhaobdb76512011-09-07 11:43:16 -0700490 if (tries_size == 0) {
491 return true;
492 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700493 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Ian Rogers0571d352011-11-03 19:51:38 -0700494 const DexFile::TryItem* tries = DexFile::GetTryItems(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -0700495
496 for (uint32_t idx = 0; idx < tries_size; idx++) {
497 const DexFile::TryItem* try_item = &tries[idx];
498 uint32_t start = try_item->start_addr_;
499 uint32_t end = start + try_item->insn_count_;
jeffhaobdb76512011-09-07 11:43:16 -0700500 if ((start >= end) || (start >= insns_size) || (end > insns_size)) {
jeffhaod5347e02012-03-22 17:25:05 -0700501 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad exception entry: startAddr=" << start
502 << " endAddr=" << end << " (size=" << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700503 return false;
504 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700505 if (!insn_flags_[start].IsOpcode()) {
jeffhaod5347e02012-03-22 17:25:05 -0700506 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'try' block starts inside an instruction (" << start << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700507 return false;
508 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700509 for (uint32_t dex_pc = start; dex_pc < end;
510 dex_pc += insn_flags_[dex_pc].GetLengthInCodeUnits()) {
511 insn_flags_[dex_pc].SetInTry();
jeffhaobdb76512011-09-07 11:43:16 -0700512 }
513 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800514 // Iterate over each of the handlers to verify target addresses.
Ian Rogers0571d352011-11-03 19:51:38 -0700515 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -0700516 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
Ian Rogers28ad40d2011-10-27 15:19:26 -0700517 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhaobdb76512011-09-07 11:43:16 -0700518 for (uint32_t idx = 0; idx < handlers_size; idx++) {
Ian Rogers0571d352011-11-03 19:51:38 -0700519 CatchHandlerIterator iterator(handlers_ptr);
520 for (; iterator.HasNext(); iterator.Next()) {
521 uint32_t dex_pc= iterator.GetHandlerAddress();
Ian Rogersd81871c2011-10-03 13:57:23 -0700522 if (!insn_flags_[dex_pc].IsOpcode()) {
jeffhaod5347e02012-03-22 17:25:05 -0700523 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "exception handler starts at bad address (" << dex_pc << ")";
jeffhaobdb76512011-09-07 11:43:16 -0700524 return false;
525 }
jeffhao60f83e32012-02-13 17:16:30 -0800526 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
527 if (inst->Opcode() != Instruction::MOVE_EXCEPTION) {
jeffhaod5347e02012-03-22 17:25:05 -0700528 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "exception handler doesn't start with move-exception ("
Ian Rogersad0b3a32012-04-16 14:50:24 -0700529 << dex_pc << ")";
jeffhao60f83e32012-02-13 17:16:30 -0800530 return false;
531 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700532 insn_flags_[dex_pc].SetBranchTarget();
Ian Rogers28ad40d2011-10-27 15:19:26 -0700533 // Ensure exception types are resolved so that they don't need resolution to be delivered,
534 // unresolved exception types will be ignored by exception delivery
Ian Rogers0571d352011-11-03 19:51:38 -0700535 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
jeffhaof56197c2012-03-05 18:01:54 -0800536 Class* exception_type = linker->ResolveType(*dex_file_, iterator.GetHandlerTypeIndex(),
537 dex_cache_, class_loader_);
Ian Rogers28ad40d2011-10-27 15:19:26 -0700538 if (exception_type == NULL) {
539 DCHECK(Thread::Current()->IsExceptionPending());
540 Thread::Current()->ClearException();
541 }
542 }
jeffhaobdb76512011-09-07 11:43:16 -0700543 }
Ian Rogers0571d352011-11-03 19:51:38 -0700544 handlers_ptr = iterator.EndDataPointer();
jeffhaobdb76512011-09-07 11:43:16 -0700545 }
jeffhaobdb76512011-09-07 11:43:16 -0700546 return true;
547}
548
Ian Rogers776ac1f2012-04-13 23:36:36 -0700549bool MethodVerifier::VerifyInstructions() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700550 const Instruction* inst = Instruction::At(code_item_->insns_);
jeffhaoba5ebb92011-08-25 17:24:37 -0700551
Ian Rogers0c7abda2012-09-19 13:33:42 -0700552 /* Flag the start of the method as a branch target, and a GC point due to stack overflow errors */
Ian Rogersd81871c2011-10-03 13:57:23 -0700553 insn_flags_[0].SetBranchTarget();
Ian Rogers0c7abda2012-09-19 13:33:42 -0700554 insn_flags_[0].SetGcPoint();
Ian Rogersd81871c2011-10-03 13:57:23 -0700555
556 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700557 for (uint32_t dex_pc = 0; dex_pc < insns_size;) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700558 if (!VerifyInstruction(inst, dex_pc)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700559 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -0700560 return false;
561 }
562 /* Flag instructions that are garbage collection points */
563 if (inst->IsBranch() || inst->IsSwitch() || inst->IsThrow() || inst->IsReturn()) {
564 insn_flags_[dex_pc].SetGcPoint();
565 }
566 dex_pc += inst->SizeInCodeUnits();
567 inst = inst->Next();
568 }
569 return true;
570}
571
Ian Rogers776ac1f2012-04-13 23:36:36 -0700572bool MethodVerifier::VerifyInstruction(const Instruction* inst, uint32_t code_offset) {
Elliott Hughesadb8c672012-03-06 16:49:32 -0800573 DecodedInstruction dec_insn(inst);
Ian Rogersd81871c2011-10-03 13:57:23 -0700574 bool result = true;
575 switch (inst->GetVerifyTypeArgumentA()) {
576 case Instruction::kVerifyRegA:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800577 result = result && CheckRegisterIndex(dec_insn.vA);
Ian Rogersd81871c2011-10-03 13:57:23 -0700578 break;
579 case Instruction::kVerifyRegAWide:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800580 result = result && CheckWideRegisterIndex(dec_insn.vA);
Ian Rogersd81871c2011-10-03 13:57:23 -0700581 break;
582 }
583 switch (inst->GetVerifyTypeArgumentB()) {
584 case Instruction::kVerifyRegB:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800585 result = result && CheckRegisterIndex(dec_insn.vB);
Ian Rogersd81871c2011-10-03 13:57:23 -0700586 break;
587 case Instruction::kVerifyRegBField:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800588 result = result && CheckFieldIndex(dec_insn.vB);
Ian Rogersd81871c2011-10-03 13:57:23 -0700589 break;
590 case Instruction::kVerifyRegBMethod:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800591 result = result && CheckMethodIndex(dec_insn.vB);
Ian Rogersd81871c2011-10-03 13:57:23 -0700592 break;
593 case Instruction::kVerifyRegBNewInstance:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800594 result = result && CheckNewInstance(dec_insn.vB);
Ian Rogersd81871c2011-10-03 13:57:23 -0700595 break;
596 case Instruction::kVerifyRegBString:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800597 result = result && CheckStringIndex(dec_insn.vB);
Ian Rogersd81871c2011-10-03 13:57:23 -0700598 break;
599 case Instruction::kVerifyRegBType:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800600 result = result && CheckTypeIndex(dec_insn.vB);
Ian Rogersd81871c2011-10-03 13:57:23 -0700601 break;
602 case Instruction::kVerifyRegBWide:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800603 result = result && CheckWideRegisterIndex(dec_insn.vB);
Ian Rogersd81871c2011-10-03 13:57:23 -0700604 break;
605 }
606 switch (inst->GetVerifyTypeArgumentC()) {
607 case Instruction::kVerifyRegC:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800608 result = result && CheckRegisterIndex(dec_insn.vC);
Ian Rogersd81871c2011-10-03 13:57:23 -0700609 break;
610 case Instruction::kVerifyRegCField:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800611 result = result && CheckFieldIndex(dec_insn.vC);
Ian Rogersd81871c2011-10-03 13:57:23 -0700612 break;
613 case Instruction::kVerifyRegCNewArray:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800614 result = result && CheckNewArray(dec_insn.vC);
Ian Rogersd81871c2011-10-03 13:57:23 -0700615 break;
616 case Instruction::kVerifyRegCType:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800617 result = result && CheckTypeIndex(dec_insn.vC);
Ian Rogersd81871c2011-10-03 13:57:23 -0700618 break;
619 case Instruction::kVerifyRegCWide:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800620 result = result && CheckWideRegisterIndex(dec_insn.vC);
Ian Rogersd81871c2011-10-03 13:57:23 -0700621 break;
622 }
623 switch (inst->GetVerifyExtraFlags()) {
624 case Instruction::kVerifyArrayData:
625 result = result && CheckArrayData(code_offset);
626 break;
627 case Instruction::kVerifyBranchTarget:
628 result = result && CheckBranchTarget(code_offset);
629 break;
630 case Instruction::kVerifySwitchTargets:
631 result = result && CheckSwitchTargets(code_offset);
632 break;
633 case Instruction::kVerifyVarArg:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800634 result = result && CheckVarArgRegs(dec_insn.vA, dec_insn.arg);
Ian Rogersd81871c2011-10-03 13:57:23 -0700635 break;
636 case Instruction::kVerifyVarArgRange:
Elliott Hughesadb8c672012-03-06 16:49:32 -0800637 result = result && CheckVarArgRangeRegs(dec_insn.vA, dec_insn.vC);
Ian Rogersd81871c2011-10-03 13:57:23 -0700638 break;
639 case Instruction::kVerifyError:
jeffhaod5347e02012-03-22 17:25:05 -0700640 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected opcode " << inst->Name();
Ian Rogersd81871c2011-10-03 13:57:23 -0700641 result = false;
642 break;
643 }
644 return result;
645}
646
Ian Rogers776ac1f2012-04-13 23:36:36 -0700647bool MethodVerifier::CheckRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700648 if (idx >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700649 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register index out of range (" << idx << " >= "
650 << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700651 return false;
652 }
653 return true;
654}
655
Ian Rogers776ac1f2012-04-13 23:36:36 -0700656bool MethodVerifier::CheckWideRegisterIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700657 if (idx + 1 >= code_item_->registers_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700658 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "wide register index out of range (" << idx
659 << "+1 >= " << code_item_->registers_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700660 return false;
661 }
662 return true;
663}
664
Ian Rogers776ac1f2012-04-13 23:36:36 -0700665bool MethodVerifier::CheckFieldIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700666 if (idx >= dex_file_->GetHeader().field_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700667 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad field index " << idx << " (max "
668 << dex_file_->GetHeader().field_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700669 return false;
670 }
671 return true;
672}
673
Ian Rogers776ac1f2012-04-13 23:36:36 -0700674bool MethodVerifier::CheckMethodIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700675 if (idx >= dex_file_->GetHeader().method_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700676 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad method index " << idx << " (max "
677 << dex_file_->GetHeader().method_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700678 return false;
679 }
680 return true;
681}
682
Ian Rogers776ac1f2012-04-13 23:36:36 -0700683bool MethodVerifier::CheckNewInstance(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700684 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700685 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
686 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700687 return false;
688 }
689 // We don't need the actual class, just a pointer to the class name.
Ian Rogers0571d352011-11-03 19:51:38 -0700690 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -0700691 if (descriptor[0] != 'L') {
jeffhaod5347e02012-03-22 17:25:05 -0700692 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "can't call new-instance on type '" << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -0700693 return false;
694 }
695 return true;
696}
697
Ian Rogers776ac1f2012-04-13 23:36:36 -0700698bool MethodVerifier::CheckStringIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700699 if (idx >= dex_file_->GetHeader().string_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700700 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad string index " << idx << " (max "
701 << dex_file_->GetHeader().string_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700702 return false;
703 }
704 return true;
705}
706
Ian Rogers776ac1f2012-04-13 23:36:36 -0700707bool MethodVerifier::CheckTypeIndex(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700708 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700709 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
710 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700711 return false;
712 }
713 return true;
714}
715
Ian Rogers776ac1f2012-04-13 23:36:36 -0700716bool MethodVerifier::CheckNewArray(uint32_t idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700717 if (idx >= dex_file_->GetHeader().type_ids_size_) {
jeffhaod5347e02012-03-22 17:25:05 -0700718 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx << " (max "
719 << dex_file_->GetHeader().type_ids_size_ << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700720 return false;
721 }
722 int bracket_count = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700723 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -0700724 const char* cp = descriptor;
725 while (*cp++ == '[') {
726 bracket_count++;
727 }
728 if (bracket_count == 0) {
729 /* The given class must be an array type. */
jeffhaod5347e02012-03-22 17:25:05 -0700730 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "can't new-array class '" << descriptor << "' (not an array)";
Ian Rogersd81871c2011-10-03 13:57:23 -0700731 return false;
732 } else if (bracket_count > 255) {
733 /* It is illegal to create an array of more than 255 dimensions. */
jeffhaod5347e02012-03-22 17:25:05 -0700734 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "can't new-array class '" << descriptor << "' (exceeds limit)";
Ian Rogersd81871c2011-10-03 13:57:23 -0700735 return false;
736 }
737 return true;
738}
739
Ian Rogers776ac1f2012-04-13 23:36:36 -0700740bool MethodVerifier::CheckArrayData(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700741 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
742 const uint16_t* insns = code_item_->insns_ + cur_offset;
743 const uint16_t* array_data;
744 int32_t array_data_offset;
745
746 DCHECK_LT(cur_offset, insn_count);
747 /* make sure the start of the array data table is in range */
748 array_data_offset = insns[1] | (((int32_t) insns[2]) << 16);
749 if ((int32_t) cur_offset + array_data_offset < 0 ||
750 cur_offset + array_data_offset + 2 >= insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -0700751 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data start: at " << cur_offset
752 << ", data offset " << array_data_offset << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -0700753 return false;
754 }
755 /* offset to array data table is a relative branch-style offset */
756 array_data = insns + array_data_offset;
757 /* make sure the table is 32-bit aligned */
758 if ((((uint32_t) array_data) & 0x03) != 0) {
jeffhaod5347e02012-03-22 17:25:05 -0700759 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned array data table: at " << cur_offset
760 << ", data offset " << array_data_offset;
Ian Rogersd81871c2011-10-03 13:57:23 -0700761 return false;
762 }
763 uint32_t value_width = array_data[1];
Elliott Hughes398f64b2012-03-26 18:05:48 -0700764 uint32_t value_count = *reinterpret_cast<const uint32_t*>(&array_data[2]);
Ian Rogersd81871c2011-10-03 13:57:23 -0700765 uint32_t table_size = 4 + (value_width * value_count + 1) / 2;
766 /* make sure the end of the switch is in range */
767 if (cur_offset + array_data_offset + table_size > insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -0700768 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data end: at " << cur_offset
769 << ", data offset " << array_data_offset << ", end "
770 << cur_offset + array_data_offset + table_size
771 << ", count " << insn_count;
Ian Rogersd81871c2011-10-03 13:57:23 -0700772 return false;
773 }
774 return true;
775}
776
Ian Rogers776ac1f2012-04-13 23:36:36 -0700777bool MethodVerifier::CheckBranchTarget(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700778 int32_t offset;
779 bool isConditional, selfOkay;
780 if (!GetBranchOffset(cur_offset, &offset, &isConditional, &selfOkay)) {
781 return false;
782 }
783 if (!selfOkay && offset == 0) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700784 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch offset of zero not allowed at" << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -0700785 return false;
786 }
Elliott Hughes81ff3182012-03-23 20:35:56 -0700787 // Check for 32-bit overflow. This isn't strictly necessary if we can depend on the runtime
788 // to have identical "wrap-around" behavior, but it's unwise to depend on that.
Ian Rogersd81871c2011-10-03 13:57:23 -0700789 if (((int64_t) cur_offset + (int64_t) offset) != (int64_t) (cur_offset + offset)) {
Elliott Hughes398f64b2012-03-26 18:05:48 -0700790 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "branch target overflow " << reinterpret_cast<void*>(cur_offset) << " +" << offset;
Ian Rogersd81871c2011-10-03 13:57:23 -0700791 return false;
792 }
793 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
794 int32_t abs_offset = cur_offset + offset;
795 if (abs_offset < 0 || (uint32_t) abs_offset >= insn_count || !insn_flags_[abs_offset].IsOpcode()) {
jeffhaod5347e02012-03-22 17:25:05 -0700796 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid branch target " << offset << " (-> "
Elliott Hughes398f64b2012-03-26 18:05:48 -0700797 << reinterpret_cast<void*>(abs_offset) << ") at "
798 << reinterpret_cast<void*>(cur_offset);
Ian Rogersd81871c2011-10-03 13:57:23 -0700799 return false;
800 }
801 insn_flags_[abs_offset].SetBranchTarget();
802 return true;
803}
804
Ian Rogers776ac1f2012-04-13 23:36:36 -0700805bool MethodVerifier::GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
Ian Rogersd81871c2011-10-03 13:57:23 -0700806 bool* selfOkay) {
807 const uint16_t* insns = code_item_->insns_ + cur_offset;
808 *pConditional = false;
809 *selfOkay = false;
jeffhaoba5ebb92011-08-25 17:24:37 -0700810 switch (*insns & 0xff) {
811 case Instruction::GOTO:
812 *pOffset = ((int16_t) *insns) >> 8;
jeffhaoba5ebb92011-08-25 17:24:37 -0700813 break;
814 case Instruction::GOTO_32:
815 *pOffset = insns[1] | (((uint32_t) insns[2]) << 16);
jeffhaoba5ebb92011-08-25 17:24:37 -0700816 *selfOkay = true;
817 break;
818 case Instruction::GOTO_16:
819 *pOffset = (int16_t) insns[1];
jeffhaoba5ebb92011-08-25 17:24:37 -0700820 break;
821 case Instruction::IF_EQ:
822 case Instruction::IF_NE:
823 case Instruction::IF_LT:
824 case Instruction::IF_GE:
825 case Instruction::IF_GT:
826 case Instruction::IF_LE:
827 case Instruction::IF_EQZ:
828 case Instruction::IF_NEZ:
829 case Instruction::IF_LTZ:
830 case Instruction::IF_GEZ:
831 case Instruction::IF_GTZ:
832 case Instruction::IF_LEZ:
833 *pOffset = (int16_t) insns[1];
834 *pConditional = true;
jeffhaoba5ebb92011-08-25 17:24:37 -0700835 break;
836 default:
837 return false;
838 break;
839 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700840 return true;
841}
842
Ian Rogers776ac1f2012-04-13 23:36:36 -0700843bool MethodVerifier::CheckSwitchTargets(uint32_t cur_offset) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700844 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -0700845 DCHECK_LT(cur_offset, insn_count);
Ian Rogersd81871c2011-10-03 13:57:23 -0700846 const uint16_t* insns = code_item_->insns_ + cur_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -0700847 /* make sure the start of the switch is in range */
Ian Rogersd81871c2011-10-03 13:57:23 -0700848 int32_t switch_offset = insns[1] | ((int32_t) insns[2]) << 16;
849 if ((int32_t) cur_offset + switch_offset < 0 || cur_offset + switch_offset + 2 >= insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -0700850 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch start: at " << cur_offset
851 << ", switch offset " << switch_offset << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -0700852 return false;
853 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700854 /* offset to switch table is a relative branch-style offset */
Ian Rogersd81871c2011-10-03 13:57:23 -0700855 const uint16_t* switch_insns = insns + switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -0700856 /* make sure the table is 32-bit aligned */
857 if ((((uint32_t) switch_insns) & 0x03) != 0) {
jeffhaod5347e02012-03-22 17:25:05 -0700858 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unaligned switch table: at " << cur_offset
859 << ", switch offset " << switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -0700860 return false;
861 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700862 uint32_t switch_count = switch_insns[1];
863 int32_t keys_offset, targets_offset;
864 uint16_t expected_signature;
jeffhaoba5ebb92011-08-25 17:24:37 -0700865 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
866 /* 0=sig, 1=count, 2/3=firstKey */
867 targets_offset = 4;
868 keys_offset = -1;
869 expected_signature = Instruction::kPackedSwitchSignature;
870 } else {
871 /* 0=sig, 1=count, 2..count*2 = keys */
872 keys_offset = 2;
873 targets_offset = 2 + 2 * switch_count;
874 expected_signature = Instruction::kSparseSwitchSignature;
875 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700876 uint32_t table_size = targets_offset + switch_count * 2;
jeffhaoba5ebb92011-08-25 17:24:37 -0700877 if (switch_insns[0] != expected_signature) {
jeffhaod5347e02012-03-22 17:25:05 -0700878 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << StringPrintf("wrong signature for switch table (%x, wanted %x)",
879 switch_insns[0], expected_signature);
jeffhaoba5ebb92011-08-25 17:24:37 -0700880 return false;
881 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700882 /* make sure the end of the switch is in range */
883 if (cur_offset + switch_offset + table_size > (uint32_t) insn_count) {
jeffhaod5347e02012-03-22 17:25:05 -0700884 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch end: at " << cur_offset << ", switch offset "
885 << switch_offset << ", end "
886 << (cur_offset + switch_offset + table_size)
887 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -0700888 return false;
889 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700890 /* for a sparse switch, verify the keys are in ascending order */
891 if (keys_offset > 0 && switch_count > 1) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700892 int32_t last_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
893 for (uint32_t targ = 1; targ < switch_count; targ++) {
jeffhaoba5ebb92011-08-25 17:24:37 -0700894 int32_t key = (int32_t) switch_insns[keys_offset + targ * 2] |
895 (int32_t) (switch_insns[keys_offset + targ * 2 + 1] << 16);
896 if (key <= last_key) {
jeffhaod5347e02012-03-22 17:25:05 -0700897 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid packed switch: last key=" << last_key
898 << ", this=" << key;
jeffhaoba5ebb92011-08-25 17:24:37 -0700899 return false;
900 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700901 last_key = key;
902 }
903 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700904 /* verify each switch target */
Ian Rogersd81871c2011-10-03 13:57:23 -0700905 for (uint32_t targ = 0; targ < switch_count; targ++) {
906 int32_t offset = (int32_t) switch_insns[targets_offset + targ * 2] |
907 (int32_t) (switch_insns[targets_offset + targ * 2 + 1] << 16);
908 int32_t abs_offset = cur_offset + offset;
909 if (abs_offset < 0 || abs_offset >= (int32_t) insn_count || !insn_flags_[abs_offset].IsOpcode()) {
jeffhaod5347e02012-03-22 17:25:05 -0700910 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid switch target " << offset << " (-> "
Elliott Hughes398f64b2012-03-26 18:05:48 -0700911 << reinterpret_cast<void*>(abs_offset) << ") at "
912 << reinterpret_cast<void*>(cur_offset) << "[" << targ << "]";
jeffhaoba5ebb92011-08-25 17:24:37 -0700913 return false;
914 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700915 insn_flags_[abs_offset].SetBranchTarget();
916 }
917 return true;
918}
919
Ian Rogers776ac1f2012-04-13 23:36:36 -0700920bool MethodVerifier::CheckVarArgRegs(uint32_t vA, uint32_t arg[]) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700921 if (vA > 5) {
jeffhaod5347e02012-03-22 17:25:05 -0700922 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid arg count (" << vA << ") in non-range invoke)";
Ian Rogersd81871c2011-10-03 13:57:23 -0700923 return false;
924 }
925 uint16_t registers_size = code_item_->registers_size_;
926 for (uint32_t idx = 0; idx < vA; idx++) {
jeffhao457cc512012-02-02 16:55:13 -0800927 if (arg[idx] >= registers_size) {
jeffhaod5347e02012-03-22 17:25:05 -0700928 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index (" << arg[idx]
929 << ") in non-range invoke (>= " << registers_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700930 return false;
931 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700932 }
933
934 return true;
935}
936
Ian Rogers776ac1f2012-04-13 23:36:36 -0700937bool MethodVerifier::CheckVarArgRangeRegs(uint32_t vA, uint32_t vC) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700938 uint16_t registers_size = code_item_->registers_size_;
939 // vA/vC are unsigned 8-bit/16-bit quantities for /range instructions, so there's no risk of
940 // integer overflow when adding them here.
941 if (vA + vC > registers_size) {
jeffhaod5347e02012-03-22 17:25:05 -0700942 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid reg index " << vA << "+" << vC << " in range invoke (> "
943 << registers_size << ")";
jeffhaoba5ebb92011-08-25 17:24:37 -0700944 return false;
945 }
jeffhaoba5ebb92011-08-25 17:24:37 -0700946 return true;
947}
948
Ian Rogers30bce5a2012-09-20 16:30:53 -0700949#if !defined(ART_USE_LLVM_COMPILER) && !defined(ART_USE_GREENLAND_COMPILER)
Ian Rogers0c7abda2012-09-19 13:33:42 -0700950static const std::vector<uint8_t>* CreateLengthPrefixedDexGcMap(const std::vector<uint8_t>& gc_map) {
Brian Carlstrom75412882012-01-18 01:26:54 -0800951 std::vector<uint8_t>* length_prefixed_gc_map = new std::vector<uint8_t>;
952 length_prefixed_gc_map->push_back((gc_map.size() & 0xff000000) >> 24);
953 length_prefixed_gc_map->push_back((gc_map.size() & 0x00ff0000) >> 16);
954 length_prefixed_gc_map->push_back((gc_map.size() & 0x0000ff00) >> 8);
955 length_prefixed_gc_map->push_back((gc_map.size() & 0x000000ff) >> 0);
956 length_prefixed_gc_map->insert(length_prefixed_gc_map->end(),
957 gc_map.begin(),
958 gc_map.end());
959 DCHECK_EQ(gc_map.size() + 4, length_prefixed_gc_map->size());
960 DCHECK_EQ(gc_map.size(),
961 static_cast<size_t>((length_prefixed_gc_map->at(0) << 24) |
962 (length_prefixed_gc_map->at(1) << 16) |
963 (length_prefixed_gc_map->at(2) << 8) |
964 (length_prefixed_gc_map->at(3) << 0)));
965 return length_prefixed_gc_map;
966}
Ian Rogers30bce5a2012-09-20 16:30:53 -0700967#endif
Brian Carlstrom75412882012-01-18 01:26:54 -0800968
Ian Rogers776ac1f2012-04-13 23:36:36 -0700969bool MethodVerifier::VerifyCodeFlow() {
Ian Rogersd81871c2011-10-03 13:57:23 -0700970 uint16_t registers_size = code_item_->registers_size_;
971 uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaobdb76512011-09-07 11:43:16 -0700972
Ian Rogersd81871c2011-10-03 13:57:23 -0700973 if (registers_size * insns_size > 4*1024*1024) {
buzbee4922ef92012-02-24 14:32:20 -0800974 LOG(WARNING) << "warning: method is huge (regs=" << registers_size
975 << " insns_size=" << insns_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -0700976 }
977 /* Create and initialize table holding register status */
Elliott Hughes460384f2012-04-04 16:53:10 -0700978 reg_table_.Init(kTrackRegsGcPoints, insn_flags_.get(), insns_size, registers_size, this);
jeffhaobdb76512011-09-07 11:43:16 -0700979
Ian Rogersd81871c2011-10-03 13:57:23 -0700980 work_line_.reset(new RegisterLine(registers_size, this));
981 saved_line_.reset(new RegisterLine(registers_size, this));
jeffhaobdb76512011-09-07 11:43:16 -0700982
Ian Rogersd81871c2011-10-03 13:57:23 -0700983 /* Initialize register types of method arguments. */
984 if (!SetTypesFromSignature()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700985 DCHECK_NE(failures_.size(), 0U);
986 std::string prepend("Bad signature in ");
987 prepend += PrettyMethod(method_idx_, *dex_file_);
988 PrependToLastFailMessage(prepend);
Ian Rogersd81871c2011-10-03 13:57:23 -0700989 return false;
990 }
991 /* Perform code flow verification. */
992 if (!CodeFlowVerifyMethod()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -0700993 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -0700994 return false;
jeffhaobdb76512011-09-07 11:43:16 -0700995 }
996
TDYa127b2eb5c12012-05-24 15:52:10 -0700997 Compiler::MethodReference ref(dex_file_, method_idx_);
998
Shih-wei Liaoe94d9b22012-05-22 09:01:24 -0700999#if !defined(ART_USE_LLVM_COMPILER) && !defined(ART_USE_GREENLAND_COMPILER)
TDYa127b2eb5c12012-05-24 15:52:10 -07001000
Ian Rogersd81871c2011-10-03 13:57:23 -07001001 /* Generate a register map and add it to the method. */
Brian Carlstrom75412882012-01-18 01:26:54 -08001002 UniquePtr<const std::vector<uint8_t> > map(GenerateGcMap());
1003 if (map.get() == NULL) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001004 DCHECK_NE(failures_.size(), 0U);
Ian Rogersd81871c2011-10-03 13:57:23 -07001005 return false; // Not a real failure, but a failure to encode
1006 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001007#ifndef NDEBUG
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001008 VerifyGcMap(*map);
Ian Rogersd81871c2011-10-03 13:57:23 -07001009#endif
Ian Rogers0c7abda2012-09-19 13:33:42 -07001010 const std::vector<uint8_t>* dex_gc_map = CreateLengthPrefixedDexGcMap(*(map.get()));
1011 verifier::MethodVerifier::SetDexGcMap(ref, *dex_gc_map);
Logan Chiendd361c92012-04-10 23:40:37 +08001012
Shih-wei Liaoe94d9b22012-05-22 09:01:24 -07001013#else // defined(ART_USE_LLVM_COMPILER) || defined(ART_USE_GREENLAND_COMPILER)
Logan Chienfca7e872011-12-20 20:08:22 +08001014 /* Generate Inferred Register Category for LLVM-based Code Generator */
1015 const InferredRegCategoryMap* table = GenerateInferredRegCategoryMap();
Ian Rogers776ac1f2012-04-13 23:36:36 -07001016 verifier::MethodVerifier::SetInferredRegCategoryMap(ref, *table);
TDYa127b2eb5c12012-05-24 15:52:10 -07001017
Logan Chienfca7e872011-12-20 20:08:22 +08001018#endif
1019
jeffhaobdb76512011-09-07 11:43:16 -07001020 return true;
1021}
1022
Ian Rogersad0b3a32012-04-16 14:50:24 -07001023std::ostream& MethodVerifier::DumpFailures(std::ostream& os) {
1024 DCHECK_EQ(failures_.size(), failure_messages_.size());
1025 for (size_t i = 0; i < failures_.size(); ++i) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001026 os << failure_messages_[i]->str() << "\n";
Ian Rogersad0b3a32012-04-16 14:50:24 -07001027 }
1028 return os;
1029}
1030
Ian Rogers00f7d0e2012-07-19 15:28:27 -07001031extern "C" void MethodVerifierGdbDump(MethodVerifier* v)
Ian Rogersb726dcb2012-09-05 08:57:23 -07001032 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001033 v->Dump(std::cerr);
1034}
1035
Ian Rogers776ac1f2012-04-13 23:36:36 -07001036void MethodVerifier::Dump(std::ostream& os) {
jeffhaof56197c2012-03-05 18:01:54 -08001037 if (code_item_ == NULL) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001038 os << "Native method\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001039 return;
jeffhaobdb76512011-09-07 11:43:16 -07001040 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001041 DCHECK(code_item_ != NULL);
1042 const Instruction* inst = Instruction::At(code_item_->insns_);
1043 for (size_t dex_pc = 0; dex_pc < code_item_->insns_size_in_code_units_;
1044 dex_pc += insn_flags_[dex_pc].GetLengthInCodeUnits()) {
Elliott Hughesaa6e1cd2012-01-18 19:26:06 -08001045 os << StringPrintf("0x%04zx", dex_pc) << ": " << insn_flags_[dex_pc].Dump()
Elliott Hughesc073b072012-05-24 19:29:17 -07001046 << " " << inst->DumpHex(5) << " " << inst->DumpString(dex_file_) << "\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001047 RegisterLine* reg_line = reg_table_.GetLine(dex_pc);
1048 if (reg_line != NULL) {
Elliott Hughesc073b072012-05-24 19:29:17 -07001049 os << reg_line->Dump() << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07001050 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001051 inst = inst->Next();
1052 }
jeffhaobdb76512011-09-07 11:43:16 -07001053}
1054
Ian Rogersd81871c2011-10-03 13:57:23 -07001055static bool IsPrimitiveDescriptor(char descriptor) {
1056 switch (descriptor) {
jeffhaobdb76512011-09-07 11:43:16 -07001057 case 'I':
1058 case 'C':
1059 case 'S':
1060 case 'B':
1061 case 'Z':
jeffhaobdb76512011-09-07 11:43:16 -07001062 case 'F':
1063 case 'D':
1064 case 'J':
Ian Rogersd81871c2011-10-03 13:57:23 -07001065 return true;
jeffhaobdb76512011-09-07 11:43:16 -07001066 default:
1067 return false;
1068 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001069}
1070
Ian Rogers776ac1f2012-04-13 23:36:36 -07001071bool MethodVerifier::SetTypesFromSignature() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001072 RegisterLine* reg_line = reg_table_.GetLine(0);
1073 int arg_start = code_item_->registers_size_ - code_item_->ins_size_;
1074 size_t expected_args = code_item_->ins_size_; /* long/double count as two */
jeffhaobdb76512011-09-07 11:43:16 -07001075
Ian Rogersd81871c2011-10-03 13:57:23 -07001076 DCHECK_GE(arg_start, 0); /* should have been verified earlier */
1077 //Include the "this" pointer.
1078 size_t cur_arg = 0;
Ian Rogersad0b3a32012-04-16 14:50:24 -07001079 if (!IsStatic()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001080 // If this is a constructor for a class other than java.lang.Object, mark the first ("this")
1081 // argument as uninitialized. This restricts field access until the superclass constructor is
1082 // called.
Ian Rogersad0b3a32012-04-16 14:50:24 -07001083 const RegType& declaring_class = GetDeclaringClass();
1084 if (IsConstructor() && !declaring_class.IsJavaLangObject()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001085 reg_line->SetRegisterType(arg_start + cur_arg,
1086 reg_types_.UninitializedThisArgument(declaring_class));
1087 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001088 reg_line->SetRegisterType(arg_start + cur_arg, declaring_class);
jeffhaobdb76512011-09-07 11:43:16 -07001089 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001090 cur_arg++;
jeffhaobdb76512011-09-07 11:43:16 -07001091 }
1092
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001093 const DexFile::ProtoId& proto_id =
Ian Rogersad0b3a32012-04-16 14:50:24 -07001094 dex_file_->GetMethodPrototype(dex_file_->GetMethodId(method_idx_));
Ian Rogers0571d352011-11-03 19:51:38 -07001095 DexFileParameterIterator iterator(*dex_file_, proto_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07001096
1097 for (; iterator.HasNext(); iterator.Next()) {
1098 const char* descriptor = iterator.GetDescriptor();
1099 if (descriptor == NULL) {
1100 LOG(FATAL) << "Null descriptor";
1101 }
1102 if (cur_arg >= expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07001103 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args
1104 << " args, found more (" << descriptor << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07001105 return false;
1106 }
1107 switch (descriptor[0]) {
1108 case 'L':
1109 case '[':
1110 // We assume that reference arguments are initialized. The only way it could be otherwise
1111 // (assuming the caller was verified) is if the current method is <init>, but in that case
1112 // it's effectively considered initialized the instant we reach here (in the sense that we
1113 // can return without doing anything or call virtual methods).
1114 {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001115 const RegType& reg_type = reg_types_.FromDescriptor(class_loader_, descriptor);
Ian Rogers84fa0742011-10-25 18:13:30 -07001116 reg_line->SetRegisterType(arg_start + cur_arg, reg_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001117 }
1118 break;
1119 case 'Z':
1120 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Boolean());
1121 break;
1122 case 'C':
1123 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Char());
1124 break;
1125 case 'B':
1126 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Byte());
1127 break;
1128 case 'I':
1129 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Integer());
1130 break;
1131 case 'S':
1132 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Short());
1133 break;
1134 case 'F':
1135 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Float());
1136 break;
1137 case 'J':
1138 case 'D': {
1139 const RegType& low_half = descriptor[0] == 'J' ? reg_types_.Long() : reg_types_.Double();
1140 reg_line->SetRegisterType(arg_start + cur_arg, low_half); // implicitly sets high-register
1141 cur_arg++;
1142 break;
1143 }
1144 default:
jeffhaod5347e02012-03-22 17:25:05 -07001145 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected signature type char '" << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001146 return false;
1147 }
1148 cur_arg++;
1149 }
1150 if (cur_arg != expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07001151 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected " << expected_args << " arguments, found " << cur_arg;
Ian Rogersd81871c2011-10-03 13:57:23 -07001152 return false;
1153 }
1154 const char* descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
1155 // Validate return type. We don't do the type lookup; just want to make sure that it has the right
1156 // format. Only major difference from the method argument format is that 'V' is supported.
1157 bool result;
1158 if (IsPrimitiveDescriptor(descriptor[0]) || descriptor[0] == 'V') {
1159 result = descriptor[1] == '\0';
1160 } else if (descriptor[0] == '[') { // single/multi-dimensional array of object/primitive
1161 size_t i = 0;
1162 do {
1163 i++;
1164 } while (descriptor[i] == '['); // process leading [
1165 if (descriptor[i] == 'L') { // object array
1166 do {
1167 i++; // find closing ;
1168 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1169 result = descriptor[i] == ';';
1170 } else { // primitive array
1171 result = IsPrimitiveDescriptor(descriptor[i]) && descriptor[i + 1] == '\0';
1172 }
1173 } else if (descriptor[0] == 'L') {
1174 // could be more thorough here, but shouldn't be required
1175 size_t i = 0;
1176 do {
1177 i++;
1178 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1179 result = descriptor[i] == ';';
1180 } else {
1181 result = false;
1182 }
1183 if (!result) {
jeffhaod5347e02012-03-22 17:25:05 -07001184 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected char in return type descriptor '"
1185 << descriptor << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07001186 }
1187 return result;
jeffhaobdb76512011-09-07 11:43:16 -07001188}
1189
Ian Rogers776ac1f2012-04-13 23:36:36 -07001190bool MethodVerifier::CodeFlowVerifyMethod() {
Ian Rogersd81871c2011-10-03 13:57:23 -07001191 const uint16_t* insns = code_item_->insns_;
1192 const uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaoba5ebb92011-08-25 17:24:37 -07001193
jeffhaobdb76512011-09-07 11:43:16 -07001194 /* Begin by marking the first instruction as "changed". */
Ian Rogersd81871c2011-10-03 13:57:23 -07001195 insn_flags_[0].SetChanged();
1196 uint32_t start_guess = 0;
jeffhaoba5ebb92011-08-25 17:24:37 -07001197
jeffhaobdb76512011-09-07 11:43:16 -07001198 /* Continue until no instructions are marked "changed". */
1199 while (true) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001200 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1201 uint32_t insn_idx = start_guess;
1202 for (; insn_idx < insns_size; insn_idx++) {
1203 if (insn_flags_[insn_idx].IsChanged())
jeffhaobdb76512011-09-07 11:43:16 -07001204 break;
1205 }
jeffhaobdb76512011-09-07 11:43:16 -07001206 if (insn_idx == insns_size) {
1207 if (start_guess != 0) {
1208 /* try again, starting from the top */
1209 start_guess = 0;
1210 continue;
1211 } else {
1212 /* all flags are clear */
1213 break;
1214 }
1215 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001216 // We carry the working set of registers from instruction to instruction. If this address can
1217 // be the target of a branch (or throw) instruction, or if we're skipping around chasing
1218 // "changed" flags, we need to load the set of registers from the table.
1219 // Because we always prefer to continue on to the next instruction, we should never have a
1220 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1221 // target.
1222 work_insn_idx_ = insn_idx;
1223 if (insn_flags_[insn_idx].IsBranchTarget()) {
1224 work_line_->CopyFromLine(reg_table_.GetLine(insn_idx));
jeffhaobdb76512011-09-07 11:43:16 -07001225 } else {
1226#ifndef NDEBUG
1227 /*
1228 * Sanity check: retrieve the stored register line (assuming
1229 * a full table) and make sure it actually matches.
1230 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001231 RegisterLine* register_line = reg_table_.GetLine(insn_idx);
1232 if (register_line != NULL) {
1233 if (work_line_->CompareLine(register_line) != 0) {
1234 Dump(std::cout);
1235 std::cout << info_messages_.str();
Ian Rogersad0b3a32012-04-16 14:50:24 -07001236 LOG(FATAL) << "work_line diverged in " << PrettyMethod(method_idx_, *dex_file_)
Elliott Hughesc073b072012-05-24 19:29:17 -07001237 << "@" << reinterpret_cast<void*>(work_insn_idx_) << "\n"
1238 << " work_line=" << *work_line_ << "\n"
Elliott Hughes398f64b2012-03-26 18:05:48 -07001239 << " expected=" << *register_line;
Ian Rogersd81871c2011-10-03 13:57:23 -07001240 }
jeffhaobdb76512011-09-07 11:43:16 -07001241 }
1242#endif
1243 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001244 if (!CodeFlowVerifyInstruction(&start_guess)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001245 std::string prepend(PrettyMethod(method_idx_, *dex_file_));
1246 prepend += " failed to verify: ";
1247 PrependToLastFailMessage(prepend);
jeffhaoba5ebb92011-08-25 17:24:37 -07001248 return false;
1249 }
jeffhaobdb76512011-09-07 11:43:16 -07001250 /* Clear "changed" and mark as visited. */
Ian Rogersd81871c2011-10-03 13:57:23 -07001251 insn_flags_[insn_idx].SetVisited();
1252 insn_flags_[insn_idx].ClearChanged();
jeffhaobdb76512011-09-07 11:43:16 -07001253 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001254
Ian Rogers1c849e52012-06-28 14:00:33 -07001255 if (gDebugVerify) {
jeffhaobdb76512011-09-07 11:43:16 -07001256 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001257 * Scan for dead code. There's nothing "evil" about dead code
jeffhaobdb76512011-09-07 11:43:16 -07001258 * (besides the wasted space), but it indicates a flaw somewhere
1259 * down the line, possibly in the verifier.
1260 *
1261 * If we've substituted "always throw" instructions into the stream,
1262 * we are almost certainly going to have some dead code.
1263 */
1264 int dead_start = -1;
Ian Rogersd81871c2011-10-03 13:57:23 -07001265 uint32_t insn_idx = 0;
1266 for (; insn_idx < insns_size; insn_idx += insn_flags_[insn_idx].GetLengthInCodeUnits()) {
jeffhaobdb76512011-09-07 11:43:16 -07001267 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001268 * Switch-statement data doesn't get "visited" by scanner. It
jeffhaobdb76512011-09-07 11:43:16 -07001269 * may or may not be preceded by a padding NOP (for alignment).
1270 */
1271 if (insns[insn_idx] == Instruction::kPackedSwitchSignature ||
1272 insns[insn_idx] == Instruction::kSparseSwitchSignature ||
1273 insns[insn_idx] == Instruction::kArrayDataSignature ||
Elliott Hughes380aaa72012-07-09 14:33:15 -07001274 (insns[insn_idx] == Instruction::NOP && (insn_idx + 1 < insns_size) &&
jeffhaobdb76512011-09-07 11:43:16 -07001275 (insns[insn_idx + 1] == Instruction::kPackedSwitchSignature ||
1276 insns[insn_idx + 1] == Instruction::kSparseSwitchSignature ||
1277 insns[insn_idx + 1] == Instruction::kArrayDataSignature))) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001278 insn_flags_[insn_idx].SetVisited();
jeffhaobdb76512011-09-07 11:43:16 -07001279 }
1280
Ian Rogersd81871c2011-10-03 13:57:23 -07001281 if (!insn_flags_[insn_idx].IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001282 if (dead_start < 0)
1283 dead_start = insn_idx;
1284 } else if (dead_start >= 0) {
Elliott Hughes398f64b2012-03-26 18:05:48 -07001285 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start) << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaobdb76512011-09-07 11:43:16 -07001286 dead_start = -1;
1287 }
1288 }
1289 if (dead_start >= 0) {
Elliott Hughes398f64b2012-03-26 18:05:48 -07001290 LogVerifyInfo() << "dead code " << reinterpret_cast<void*>(dead_start) << "-" << reinterpret_cast<void*>(insn_idx - 1);
jeffhaoba5ebb92011-08-25 17:24:37 -07001291 }
1292 }
jeffhaobdb76512011-09-07 11:43:16 -07001293 return true;
1294}
1295
Ian Rogers776ac1f2012-04-13 23:36:36 -07001296bool MethodVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
jeffhaobdb76512011-09-07 11:43:16 -07001297#ifdef VERIFIER_STATS
Ian Rogersd81871c2011-10-03 13:57:23 -07001298 if (CurrentInsnFlags().IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001299 gDvm.verifierStats.instrsReexamined++;
1300 } else {
1301 gDvm.verifierStats.instrsExamined++;
1302 }
1303#endif
1304
Elliott Hughes08fc03a2012-06-26 17:34:00 -07001305 // If we're doing FindLocksAtDexPc, check whether we're at the dex pc we care about.
1306 // We want the state _before_ the instruction, for the case where the dex pc we're
1307 // interested in is itself a monitor-enter instruction (which is a likely place
1308 // for a thread to be suspended).
1309 if (monitor_enter_dex_pcs_ != NULL && work_insn_idx_ == interesting_dex_pc_) {
1310 for (size_t i = 0; i < work_line_->GetMonitorEnterCount(); ++i) {
1311 monitor_enter_dex_pcs_->push_back(work_line_->GetMonitorEnterDexPc(i));
1312 }
1313 }
1314
jeffhaobdb76512011-09-07 11:43:16 -07001315 /*
1316 * Once we finish decoding the instruction, we need to figure out where
jeffhaod1f0fde2011-09-08 17:25:33 -07001317 * we can go from here. There are three possible ways to transfer
jeffhaobdb76512011-09-07 11:43:16 -07001318 * control to another statement:
1319 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001320 * (1) Continue to the next instruction. Applies to all but
jeffhaobdb76512011-09-07 11:43:16 -07001321 * unconditional branches, method returns, and exception throws.
jeffhaod1f0fde2011-09-08 17:25:33 -07001322 * (2) Branch to one or more possible locations. Applies to branches
jeffhaobdb76512011-09-07 11:43:16 -07001323 * and switch statements.
jeffhaod1f0fde2011-09-08 17:25:33 -07001324 * (3) Exception handlers. Applies to any instruction that can
jeffhaobdb76512011-09-07 11:43:16 -07001325 * throw an exception that is handled by an encompassing "try"
1326 * block.
1327 *
1328 * We can also return, in which case there is no successor instruction
1329 * from this point.
1330 *
Elliott Hughesadb8c672012-03-06 16:49:32 -08001331 * The behavior can be determined from the opcode flags.
jeffhaobdb76512011-09-07 11:43:16 -07001332 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001333 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
1334 const Instruction* inst = Instruction::At(insns);
Elliott Hughesadb8c672012-03-06 16:49:32 -08001335 DecodedInstruction dec_insn(inst);
1336 int opcode_flags = Instruction::Flags(inst->Opcode());
jeffhaobdb76512011-09-07 11:43:16 -07001337
jeffhaobdb76512011-09-07 11:43:16 -07001338 int32_t branch_target = 0;
jeffhaobdb76512011-09-07 11:43:16 -07001339 bool just_set_result = false;
Ian Rogers2c8a8572011-10-24 17:11:36 -07001340 if (gDebugVerify) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001341 // Generate processing back trace to debug verifier
Elliott Hughesc073b072012-05-24 19:29:17 -07001342 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << "\n"
1343 << *work_line_.get() << "\n";
Ian Rogersd81871c2011-10-03 13:57:23 -07001344 }
jeffhaobdb76512011-09-07 11:43:16 -07001345
1346 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001347 * Make a copy of the previous register state. If the instruction
jeffhaobdb76512011-09-07 11:43:16 -07001348 * can throw an exception, we will copy/merge this into the "catch"
1349 * address rather than work_line, because we don't want the result
1350 * from the "successful" code path (e.g. a check-cast that "improves"
1351 * a type) to be visible to the exception handler.
1352 */
Ian Rogers776ac1f2012-04-13 23:36:36 -07001353 if ((opcode_flags & Instruction::kThrow) != 0 && CurrentInsnFlags()->IsInTry()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001354 saved_line_->CopyFromLine(work_line_.get());
jeffhaobdb76512011-09-07 11:43:16 -07001355 } else {
1356#ifndef NDEBUG
Ian Rogersd81871c2011-10-03 13:57:23 -07001357 saved_line_->FillWithGarbage();
jeffhaobdb76512011-09-07 11:43:16 -07001358#endif
1359 }
1360
Elliott Hughesadb8c672012-03-06 16:49:32 -08001361 switch (dec_insn.opcode) {
jeffhaobdb76512011-09-07 11:43:16 -07001362 case Instruction::NOP:
1363 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001364 * A "pure" NOP has no effect on anything. Data tables start with
jeffhaobdb76512011-09-07 11:43:16 -07001365 * a signature that looks like a NOP; if we see one of these in
1366 * the course of executing code then we have a problem.
1367 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001368 if (dec_insn.vA != 0) {
jeffhaod5347e02012-03-22 17:25:05 -07001369 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "encountered data table in instruction stream";
jeffhaobdb76512011-09-07 11:43:16 -07001370 }
1371 break;
1372
1373 case Instruction::MOVE:
1374 case Instruction::MOVE_FROM16:
1375 case Instruction::MOVE_16:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001376 work_line_->CopyRegister1(dec_insn.vA, dec_insn.vB, kTypeCategory1nr);
jeffhaobdb76512011-09-07 11:43:16 -07001377 break;
1378 case Instruction::MOVE_WIDE:
1379 case Instruction::MOVE_WIDE_FROM16:
1380 case Instruction::MOVE_WIDE_16:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001381 work_line_->CopyRegister2(dec_insn.vA, dec_insn.vB);
jeffhaobdb76512011-09-07 11:43:16 -07001382 break;
1383 case Instruction::MOVE_OBJECT:
1384 case Instruction::MOVE_OBJECT_FROM16:
1385 case Instruction::MOVE_OBJECT_16:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001386 work_line_->CopyRegister1(dec_insn.vA, dec_insn.vB, kTypeCategoryRef);
jeffhaobdb76512011-09-07 11:43:16 -07001387 break;
1388
1389 /*
1390 * The move-result instructions copy data out of a "pseudo-register"
jeffhaod1f0fde2011-09-08 17:25:33 -07001391 * with the results from the last method invocation. In practice we
jeffhaobdb76512011-09-07 11:43:16 -07001392 * might want to hold the result in an actual CPU register, so the
1393 * Dalvik spec requires that these only appear immediately after an
1394 * invoke or filled-new-array.
1395 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001396 * These calls invalidate the "result" register. (This is now
jeffhaobdb76512011-09-07 11:43:16 -07001397 * redundant with the reset done below, but it can make the debug info
1398 * easier to read in some cases.)
1399 */
1400 case Instruction::MOVE_RESULT:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001401 work_line_->CopyResultRegister1(dec_insn.vA, false);
jeffhaobdb76512011-09-07 11:43:16 -07001402 break;
1403 case Instruction::MOVE_RESULT_WIDE:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001404 work_line_->CopyResultRegister2(dec_insn.vA);
jeffhaobdb76512011-09-07 11:43:16 -07001405 break;
1406 case Instruction::MOVE_RESULT_OBJECT:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001407 work_line_->CopyResultRegister1(dec_insn.vA, true);
jeffhaobdb76512011-09-07 11:43:16 -07001408 break;
1409
Ian Rogersd81871c2011-10-03 13:57:23 -07001410 case Instruction::MOVE_EXCEPTION: {
jeffhaobdb76512011-09-07 11:43:16 -07001411 /*
jeffhao60f83e32012-02-13 17:16:30 -08001412 * This statement can only appear as the first instruction in an exception handler. We verify
1413 * that as part of extracting the exception type from the catch block list.
jeffhaobdb76512011-09-07 11:43:16 -07001414 */
Ian Rogers28ad40d2011-10-27 15:19:26 -07001415 const RegType& res_type = GetCaughtExceptionType();
Elliott Hughesadb8c672012-03-06 16:49:32 -08001416 work_line_->SetRegisterType(dec_insn.vA, res_type);
jeffhaobdb76512011-09-07 11:43:16 -07001417 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001418 }
jeffhaobdb76512011-09-07 11:43:16 -07001419 case Instruction::RETURN_VOID:
Ian Rogersad0b3a32012-04-16 14:50:24 -07001420 if (!IsConstructor() || work_line_->CheckConstructorReturn()) {
1421 if (!GetMethodReturnType().IsConflict()) {
jeffhaod5347e02012-03-22 17:25:05 -07001422 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-void not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07001423 }
jeffhaobdb76512011-09-07 11:43:16 -07001424 }
1425 break;
1426 case Instruction::RETURN:
Ian Rogersad0b3a32012-04-16 14:50:24 -07001427 if (!IsConstructor() || work_line_->CheckConstructorReturn()) {
jeffhaobdb76512011-09-07 11:43:16 -07001428 /* check the method signature */
Ian Rogersd81871c2011-10-03 13:57:23 -07001429 const RegType& return_type = GetMethodReturnType();
1430 if (!return_type.IsCategory1Types()) {
jeffhaod5347e02012-03-22 17:25:05 -07001431 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected non-category 1 return type " << return_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07001432 } else {
1433 // Compilers may generate synthetic functions that write byte values into boolean fields.
1434 // Also, it may use integer values for boolean, byte, short, and character return types.
Elliott Hughesadb8c672012-03-06 16:49:32 -08001435 const RegType& src_type = work_line_->GetRegisterType(dec_insn.vA);
Ian Rogersd81871c2011-10-03 13:57:23 -07001436 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) ||
1437 ((return_type.IsBoolean() || return_type.IsByte() ||
1438 return_type.IsShort() || return_type.IsChar()) &&
1439 src_type.IsInteger()));
1440 /* check the register contents */
Ian Rogersad0b3a32012-04-16 14:50:24 -07001441 bool success =
1442 work_line_->VerifyRegisterType(dec_insn.vA, use_src ? src_type : return_type);
1443 if (!success) {
1444 AppendToLastFailMessage(StringPrintf(" return-1nr on invalid register v%d", dec_insn.vA));
Ian Rogersd81871c2011-10-03 13:57:23 -07001445 }
jeffhaobdb76512011-09-07 11:43:16 -07001446 }
1447 }
1448 break;
1449 case Instruction::RETURN_WIDE:
Ian Rogersad0b3a32012-04-16 14:50:24 -07001450 if (!IsConstructor() || work_line_->CheckConstructorReturn()) {
jeffhaobdb76512011-09-07 11:43:16 -07001451 /* check the method signature */
Ian Rogersd81871c2011-10-03 13:57:23 -07001452 const RegType& return_type = GetMethodReturnType();
1453 if (!return_type.IsCategory2Types()) {
jeffhaod5347e02012-03-22 17:25:05 -07001454 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-wide not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07001455 } else {
1456 /* check the register contents */
Ian Rogersad0b3a32012-04-16 14:50:24 -07001457 bool success = work_line_->VerifyRegisterType(dec_insn.vA, return_type);
1458 if (!success) {
1459 AppendToLastFailMessage(StringPrintf(" return-wide on invalid register v%d", dec_insn.vA));
Ian Rogersd81871c2011-10-03 13:57:23 -07001460 }
jeffhaobdb76512011-09-07 11:43:16 -07001461 }
1462 }
1463 break;
1464 case Instruction::RETURN_OBJECT:
Ian Rogersad0b3a32012-04-16 14:50:24 -07001465 if (!IsConstructor() || work_line_->CheckConstructorReturn()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001466 const RegType& return_type = GetMethodReturnType();
1467 if (!return_type.IsReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001468 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "return-object not expected";
Ian Rogersd81871c2011-10-03 13:57:23 -07001469 } else {
1470 /* return_type is the *expected* return type, not register value */
1471 DCHECK(!return_type.IsZero());
1472 DCHECK(!return_type.IsUninitializedReference());
Elliott Hughesadb8c672012-03-06 16:49:32 -08001473 const RegType& reg_type = work_line_->GetRegisterType(dec_insn.vA);
Ian Rogers9074b992011-10-26 17:41:55 -07001474 // Disallow returning uninitialized values and verify that the reference in vAA is an
1475 // instance of the "return_type"
1476 if (reg_type.IsUninitializedTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001477 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "returning uninitialized object '" << reg_type << "'";
Ian Rogers9074b992011-10-26 17:41:55 -07001478 } else if (!return_type.IsAssignableFrom(reg_type)) {
jeffhao666d9b42012-06-12 11:36:38 -07001479 Fail(reg_type.IsUnresolvedTypes() ? VERIFY_ERROR_BAD_CLASS_SOFT : VERIFY_ERROR_BAD_CLASS_HARD)
1480 << "returning '" << reg_type << "', but expected from declaration '" << return_type << "'";
jeffhaobdb76512011-09-07 11:43:16 -07001481 }
1482 }
1483 }
1484 break;
1485
1486 case Instruction::CONST_4:
1487 case Instruction::CONST_16:
1488 case Instruction::CONST:
1489 /* could be boolean, int, float, or a null reference */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001490 work_line_->SetRegisterType(dec_insn.vA, reg_types_.FromCat1Const((int32_t) dec_insn.vB));
jeffhaobdb76512011-09-07 11:43:16 -07001491 break;
1492 case Instruction::CONST_HIGH16:
1493 /* could be boolean, int, float, or a null reference */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001494 work_line_->SetRegisterType(dec_insn.vA,
1495 reg_types_.FromCat1Const((int32_t) dec_insn.vB << 16));
jeffhaobdb76512011-09-07 11:43:16 -07001496 break;
1497 case Instruction::CONST_WIDE_16:
1498 case Instruction::CONST_WIDE_32:
1499 case Instruction::CONST_WIDE:
1500 case Instruction::CONST_WIDE_HIGH16:
1501 /* could be long or double; resolved upon use */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001502 work_line_->SetRegisterType(dec_insn.vA, reg_types_.ConstLo());
jeffhaobdb76512011-09-07 11:43:16 -07001503 break;
1504 case Instruction::CONST_STRING:
1505 case Instruction::CONST_STRING_JUMBO:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001506 work_line_->SetRegisterType(dec_insn.vA, reg_types_.JavaLangString());
jeffhaobdb76512011-09-07 11:43:16 -07001507 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001508 case Instruction::CONST_CLASS: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07001509 // Get type from instruction if unresolved then we need an access check
1510 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Elliott Hughesadb8c672012-03-06 16:49:32 -08001511 const RegType& res_type = ResolveClassAndCheckAccess(dec_insn.vB);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001512 // Register holds class, ie its type is class, on error it will hold Conflict.
Elliott Hughesadb8c672012-03-06 16:49:32 -08001513 work_line_->SetRegisterType(dec_insn.vA,
Ian Rogersad0b3a32012-04-16 14:50:24 -07001514 res_type.IsConflict() ? res_type : reg_types_.JavaLangClass());
jeffhaobdb76512011-09-07 11:43:16 -07001515 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001516 }
jeffhaobdb76512011-09-07 11:43:16 -07001517 case Instruction::MONITOR_ENTER:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001518 work_line_->PushMonitor(dec_insn.vA, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07001519 break;
1520 case Instruction::MONITOR_EXIT:
1521 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001522 * monitor-exit instructions are odd. They can throw exceptions,
jeffhaobdb76512011-09-07 11:43:16 -07001523 * but when they do they act as if they succeeded and the PC is
jeffhaod1f0fde2011-09-08 17:25:33 -07001524 * pointing to the following instruction. (This behavior goes back
jeffhaobdb76512011-09-07 11:43:16 -07001525 * to the need to handle asynchronous exceptions, a now-deprecated
1526 * feature that Dalvik doesn't support.)
1527 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001528 * In practice we don't need to worry about this. The only
jeffhaobdb76512011-09-07 11:43:16 -07001529 * exceptions that can be thrown from monitor-exit are for a
jeffhaod1f0fde2011-09-08 17:25:33 -07001530 * null reference and -exit without a matching -enter. If the
jeffhaobdb76512011-09-07 11:43:16 -07001531 * structured locking checks are working, the former would have
1532 * failed on the -enter instruction, and the latter is impossible.
1533 *
1534 * This is fortunate, because issue 3221411 prevents us from
1535 * chasing the "can throw" path when monitor verification is
jeffhaod1f0fde2011-09-08 17:25:33 -07001536 * enabled. If we can fully verify the locking we can ignore
jeffhaobdb76512011-09-07 11:43:16 -07001537 * some catch blocks (which will show up as "dead" code when
1538 * we skip them here); if we can't, then the code path could be
1539 * "live" so we still need to check it.
1540 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001541 opcode_flags &= ~Instruction::kThrow;
1542 work_line_->PopMonitor(dec_insn.vA);
jeffhaobdb76512011-09-07 11:43:16 -07001543 break;
1544
Ian Rogers28ad40d2011-10-27 15:19:26 -07001545 case Instruction::CHECK_CAST:
Ian Rogersd81871c2011-10-03 13:57:23 -07001546 case Instruction::INSTANCE_OF: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07001547 /*
1548 * If this instruction succeeds, we will "downcast" register vA to the type in vB. (This
1549 * could be a "upcast" -- not expected, so we don't try to address it.)
1550 *
1551 * If it fails, an exception is thrown, which we deal with later by ignoring the update to
Elliott Hughesadb8c672012-03-06 16:49:32 -08001552 * dec_insn.vA when branching to a handler.
Ian Rogers28ad40d2011-10-27 15:19:26 -07001553 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001554 bool is_checkcast = dec_insn.opcode == Instruction::CHECK_CAST;
Ian Rogers28ad40d2011-10-27 15:19:26 -07001555 const RegType& res_type =
Elliott Hughesadb8c672012-03-06 16:49:32 -08001556 ResolveClassAndCheckAccess(is_checkcast ? dec_insn.vB : dec_insn.vC);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001557 if (res_type.IsConflict()) {
1558 DCHECK_NE(failures_.size(), 0U);
1559 if (!is_checkcast) {
1560 work_line_->SetRegisterType(dec_insn.vA, reg_types_.Boolean());
1561 }
1562 break; // bad class
Ian Rogers9f1ab122011-12-12 08:52:43 -08001563 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07001564 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
1565 const RegType& orig_type =
Elliott Hughesadb8c672012-03-06 16:49:32 -08001566 work_line_->GetRegisterType(is_checkcast ? dec_insn.vA : dec_insn.vB);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001567 if (!res_type.IsNonZeroReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001568 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on unexpected class " << res_type;
Ian Rogers28ad40d2011-10-27 15:19:26 -07001569 } else if (!orig_type.IsReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001570 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "check-cast on non-reference in v" << dec_insn.vA;
jeffhao2a8a90e2011-09-26 14:25:31 -07001571 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07001572 if (is_checkcast) {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001573 work_line_->SetRegisterType(dec_insn.vA, res_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001574 } else {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001575 work_line_->SetRegisterType(dec_insn.vA, reg_types_.Boolean());
jeffhaobdb76512011-09-07 11:43:16 -07001576 }
jeffhaobdb76512011-09-07 11:43:16 -07001577 }
jeffhao2a8a90e2011-09-26 14:25:31 -07001578 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001579 }
1580 case Instruction::ARRAY_LENGTH: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001581 const RegType& res_type = work_line_->GetRegisterType(dec_insn.vB);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001582 if (res_type.IsReferenceTypes()) {
Ian Rogers89310de2012-02-01 13:47:30 -08001583 if (!res_type.IsArrayTypes() && !res_type.IsZero()) { // ie not an array or null
jeffhaod5347e02012-03-22 17:25:05 -07001584 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07001585 } else {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001586 work_line_->SetRegisterType(dec_insn.vA, reg_types_.Integer());
Ian Rogersd81871c2011-10-03 13:57:23 -07001587 }
1588 }
1589 break;
1590 }
1591 case Instruction::NEW_INSTANCE: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001592 const RegType& res_type = ResolveClassAndCheckAccess(dec_insn.vB);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001593 if (res_type.IsConflict()) {
1594 DCHECK_NE(failures_.size(), 0U);
1595 break; // bad class
jeffhao8cd6dda2012-02-22 10:15:34 -08001596 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07001597 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
1598 // can't create an instance of an interface or abstract class */
1599 if (!res_type.IsInstantiableTypes()) {
1600 Fail(VERIFY_ERROR_INSTANTIATION)
1601 << "new-instance on primitive, interface or abstract class" << res_type;
Ian Rogers08f753d2012-08-24 14:35:25 -07001602 // Soft failure so carry on to set register type.
Ian Rogersd81871c2011-10-03 13:57:23 -07001603 }
Ian Rogers08f753d2012-08-24 14:35:25 -07001604 const RegType& uninit_type = reg_types_.Uninitialized(res_type, work_insn_idx_);
1605 // Any registers holding previous allocations from this address that have not yet been
1606 // initialized must be marked invalid.
1607 work_line_->MarkUninitRefsAsInvalid(uninit_type);
1608 // add the new uninitialized reference to the register state
1609 work_line_->SetRegisterType(dec_insn.vA, uninit_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001610 break;
1611 }
Ian Rogers0c4a5062012-02-03 15:18:59 -08001612 case Instruction::NEW_ARRAY:
1613 VerifyNewArray(dec_insn, false, false);
jeffhaobdb76512011-09-07 11:43:16 -07001614 break;
1615 case Instruction::FILLED_NEW_ARRAY:
Ian Rogers0c4a5062012-02-03 15:18:59 -08001616 VerifyNewArray(dec_insn, true, false);
1617 just_set_result = true; // Filled new array sets result register
jeffhaobdb76512011-09-07 11:43:16 -07001618 break;
Ian Rogers0c4a5062012-02-03 15:18:59 -08001619 case Instruction::FILLED_NEW_ARRAY_RANGE:
1620 VerifyNewArray(dec_insn, true, true);
1621 just_set_result = true; // Filled new array range sets result register
1622 break;
jeffhaobdb76512011-09-07 11:43:16 -07001623 case Instruction::CMPL_FLOAT:
1624 case Instruction::CMPG_FLOAT:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001625 if (!work_line_->VerifyRegisterType(dec_insn.vB, reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08001626 break;
1627 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08001628 if (!work_line_->VerifyRegisterType(dec_insn.vC, reg_types_.Float())) {
jeffhao457cc512012-02-02 16:55:13 -08001629 break;
1630 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08001631 work_line_->SetRegisterType(dec_insn.vA, reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07001632 break;
1633 case Instruction::CMPL_DOUBLE:
1634 case Instruction::CMPG_DOUBLE:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001635 if (!work_line_->VerifyRegisterType(dec_insn.vB, reg_types_.Double())) {
jeffhao457cc512012-02-02 16:55:13 -08001636 break;
1637 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08001638 if (!work_line_->VerifyRegisterType(dec_insn.vC, reg_types_.Double())) {
jeffhao457cc512012-02-02 16:55:13 -08001639 break;
1640 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08001641 work_line_->SetRegisterType(dec_insn.vA, reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07001642 break;
1643 case Instruction::CMP_LONG:
Elliott Hughesadb8c672012-03-06 16:49:32 -08001644 if (!work_line_->VerifyRegisterType(dec_insn.vB, reg_types_.Long())) {
jeffhao457cc512012-02-02 16:55:13 -08001645 break;
1646 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08001647 if (!work_line_->VerifyRegisterType(dec_insn.vC, reg_types_.Long())) {
jeffhao457cc512012-02-02 16:55:13 -08001648 break;
1649 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08001650 work_line_->SetRegisterType(dec_insn.vA, reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07001651 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001652 case Instruction::THROW: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001653 const RegType& res_type = work_line_->GetRegisterType(dec_insn.vA);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001654 if (!reg_types_.JavaLangThrowable().IsAssignableFrom(res_type)) {
jeffhaod5347e02012-03-22 17:25:05 -07001655 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "thrown class " << res_type << " not instanceof Throwable";
jeffhaobdb76512011-09-07 11:43:16 -07001656 }
1657 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001658 }
jeffhaobdb76512011-09-07 11:43:16 -07001659 case Instruction::GOTO:
1660 case Instruction::GOTO_16:
1661 case Instruction::GOTO_32:
1662 /* no effect on or use of registers */
1663 break;
1664
1665 case Instruction::PACKED_SWITCH:
1666 case Instruction::SPARSE_SWITCH:
1667 /* verify that vAA is an integer, or can be converted to one */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001668 work_line_->VerifyRegisterType(dec_insn.vA, reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07001669 break;
1670
Ian Rogersd81871c2011-10-03 13:57:23 -07001671 case Instruction::FILL_ARRAY_DATA: {
1672 /* Similar to the verification done for APUT */
Elliott Hughesadb8c672012-03-06 16:49:32 -08001673 const RegType& array_type = work_line_->GetRegisterType(dec_insn.vA);
Ian Rogers89310de2012-02-01 13:47:30 -08001674 /* array_type can be null if the reg type is Zero */
1675 if (!array_type.IsZero()) {
jeffhao457cc512012-02-02 16:55:13 -08001676 if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001677 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with array type " << array_type;
Ian Rogers89310de2012-02-01 13:47:30 -08001678 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -07001679 const RegType& component_type = reg_types_.GetComponentType(array_type, class_loader_);
1680 DCHECK(!component_type.IsConflict());
jeffhao457cc512012-02-02 16:55:13 -08001681 if (component_type.IsNonZeroReferenceTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001682 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid fill-array-data with component type "
1683 << component_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07001684 } else {
jeffhao457cc512012-02-02 16:55:13 -08001685 // Now verify if the element width in the table matches the element width declared in
1686 // the array
1687 const uint16_t* array_data = insns + (insns[1] | (((int32_t) insns[2]) << 16));
1688 if (array_data[0] != Instruction::kArrayDataSignature) {
jeffhaod5347e02012-03-22 17:25:05 -07001689 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid magic for array-data";
jeffhao457cc512012-02-02 16:55:13 -08001690 } else {
1691 size_t elem_width = Primitive::ComponentSize(component_type.GetPrimitiveType());
1692 // Since we don't compress the data in Dex, expect to see equal width of data stored
1693 // in the table and expected from the array class.
1694 if (array_data[1] != elem_width) {
jeffhaod5347e02012-03-22 17:25:05 -07001695 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array-data size mismatch (" << array_data[1]
1696 << " vs " << elem_width << ")";
jeffhao457cc512012-02-02 16:55:13 -08001697 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001698 }
1699 }
jeffhaobdb76512011-09-07 11:43:16 -07001700 }
1701 }
1702 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001703 }
jeffhaobdb76512011-09-07 11:43:16 -07001704 case Instruction::IF_EQ:
Ian Rogersd81871c2011-10-03 13:57:23 -07001705 case Instruction::IF_NE: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001706 const RegType& reg_type1 = work_line_->GetRegisterType(dec_insn.vA);
1707 const RegType& reg_type2 = work_line_->GetRegisterType(dec_insn.vB);
Ian Rogersd81871c2011-10-03 13:57:23 -07001708 bool mismatch = false;
1709 if (reg_type1.IsZero()) { // zero then integral or reference expected
1710 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes();
1711 } else if (reg_type1.IsReferenceTypes()) { // both references?
1712 mismatch = !reg_type2.IsReferenceTypes();
1713 } else { // both integral?
1714 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes();
1715 }
1716 if (mismatch) {
jeffhaod5347e02012-03-22 17:25:05 -07001717 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to if-eq/if-ne (" << reg_type1 << "," << reg_type2
1718 << ") must both be references or integral";
jeffhaobdb76512011-09-07 11:43:16 -07001719 }
1720 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001721 }
jeffhaobdb76512011-09-07 11:43:16 -07001722 case Instruction::IF_LT:
1723 case Instruction::IF_GE:
1724 case Instruction::IF_GT:
Ian Rogersd81871c2011-10-03 13:57:23 -07001725 case Instruction::IF_LE: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001726 const RegType& reg_type1 = work_line_->GetRegisterType(dec_insn.vA);
1727 const RegType& reg_type2 = work_line_->GetRegisterType(dec_insn.vB);
Ian Rogersd81871c2011-10-03 13:57:23 -07001728 if (!reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001729 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "args to 'if' (" << reg_type1 << ","
1730 << reg_type2 << ") must be integral";
jeffhaobdb76512011-09-07 11:43:16 -07001731 }
1732 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001733 }
jeffhaobdb76512011-09-07 11:43:16 -07001734 case Instruction::IF_EQZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07001735 case Instruction::IF_NEZ: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001736 const RegType& reg_type = work_line_->GetRegisterType(dec_insn.vA);
Ian Rogersd81871c2011-10-03 13:57:23 -07001737 if (!reg_type.IsReferenceTypes() && !reg_type.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001738 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type << " unexpected as arg to if-eqz/if-nez";
Ian Rogersd81871c2011-10-03 13:57:23 -07001739 }
jeffhaobdb76512011-09-07 11:43:16 -07001740 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001741 }
jeffhaobdb76512011-09-07 11:43:16 -07001742 case Instruction::IF_LTZ:
1743 case Instruction::IF_GEZ:
1744 case Instruction::IF_GTZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07001745 case Instruction::IF_LEZ: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001746 const RegType& reg_type = work_line_->GetRegisterType(dec_insn.vA);
Ian Rogersd81871c2011-10-03 13:57:23 -07001747 if (!reg_type.IsIntegralTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07001748 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "type " << reg_type
1749 << " unexpected as arg to if-ltz/if-gez/if-gtz/if-lez";
Ian Rogersd81871c2011-10-03 13:57:23 -07001750 }
jeffhaobdb76512011-09-07 11:43:16 -07001751 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001752 }
jeffhaobdb76512011-09-07 11:43:16 -07001753 case Instruction::AGET_BOOLEAN:
Ian Rogersd81871c2011-10-03 13:57:23 -07001754 VerifyAGet(dec_insn, reg_types_.Boolean(), true);
1755 break;
jeffhaobdb76512011-09-07 11:43:16 -07001756 case Instruction::AGET_BYTE:
Ian Rogersd81871c2011-10-03 13:57:23 -07001757 VerifyAGet(dec_insn, reg_types_.Byte(), true);
1758 break;
jeffhaobdb76512011-09-07 11:43:16 -07001759 case Instruction::AGET_CHAR:
Ian Rogersd81871c2011-10-03 13:57:23 -07001760 VerifyAGet(dec_insn, reg_types_.Char(), true);
1761 break;
jeffhaobdb76512011-09-07 11:43:16 -07001762 case Instruction::AGET_SHORT:
Ian Rogersd81871c2011-10-03 13:57:23 -07001763 VerifyAGet(dec_insn, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07001764 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001765 case Instruction::AGET:
1766 VerifyAGet(dec_insn, reg_types_.Integer(), true);
1767 break;
jeffhaobdb76512011-09-07 11:43:16 -07001768 case Instruction::AGET_WIDE:
Ian Rogersd81871c2011-10-03 13:57:23 -07001769 VerifyAGet(dec_insn, reg_types_.Long(), true);
1770 break;
1771 case Instruction::AGET_OBJECT:
1772 VerifyAGet(dec_insn, reg_types_.JavaLangObject(), false);
jeffhaobdb76512011-09-07 11:43:16 -07001773 break;
1774
Ian Rogersd81871c2011-10-03 13:57:23 -07001775 case Instruction::APUT_BOOLEAN:
1776 VerifyAPut(dec_insn, reg_types_.Boolean(), true);
1777 break;
1778 case Instruction::APUT_BYTE:
1779 VerifyAPut(dec_insn, reg_types_.Byte(), true);
1780 break;
1781 case Instruction::APUT_CHAR:
1782 VerifyAPut(dec_insn, reg_types_.Char(), true);
1783 break;
1784 case Instruction::APUT_SHORT:
1785 VerifyAPut(dec_insn, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07001786 break;
1787 case Instruction::APUT:
Ian Rogersd81871c2011-10-03 13:57:23 -07001788 VerifyAPut(dec_insn, reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07001789 break;
1790 case Instruction::APUT_WIDE:
Ian Rogersd81871c2011-10-03 13:57:23 -07001791 VerifyAPut(dec_insn, reg_types_.Long(), true);
jeffhaobdb76512011-09-07 11:43:16 -07001792 break;
1793 case Instruction::APUT_OBJECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07001794 VerifyAPut(dec_insn, reg_types_.JavaLangObject(), false);
jeffhaobdb76512011-09-07 11:43:16 -07001795 break;
1796
jeffhaobdb76512011-09-07 11:43:16 -07001797 case Instruction::IGET_BOOLEAN:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001798 VerifyISGet(dec_insn, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07001799 break;
jeffhaobdb76512011-09-07 11:43:16 -07001800 case Instruction::IGET_BYTE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001801 VerifyISGet(dec_insn, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07001802 break;
jeffhaobdb76512011-09-07 11:43:16 -07001803 case Instruction::IGET_CHAR:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001804 VerifyISGet(dec_insn, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07001805 break;
jeffhaobdb76512011-09-07 11:43:16 -07001806 case Instruction::IGET_SHORT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001807 VerifyISGet(dec_insn, reg_types_.Short(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07001808 break;
1809 case Instruction::IGET:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001810 VerifyISGet(dec_insn, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07001811 break;
1812 case Instruction::IGET_WIDE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001813 VerifyISGet(dec_insn, reg_types_.Long(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07001814 break;
1815 case Instruction::IGET_OBJECT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001816 VerifyISGet(dec_insn, reg_types_.JavaLangObject(), false, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07001817 break;
jeffhaobdb76512011-09-07 11:43:16 -07001818
Ian Rogersd81871c2011-10-03 13:57:23 -07001819 case Instruction::IPUT_BOOLEAN:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001820 VerifyISPut(dec_insn, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07001821 break;
1822 case Instruction::IPUT_BYTE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001823 VerifyISPut(dec_insn, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07001824 break;
1825 case Instruction::IPUT_CHAR:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001826 VerifyISPut(dec_insn, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07001827 break;
1828 case Instruction::IPUT_SHORT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001829 VerifyISPut(dec_insn, reg_types_.Short(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07001830 break;
1831 case Instruction::IPUT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001832 VerifyISPut(dec_insn, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07001833 break;
1834 case Instruction::IPUT_WIDE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001835 VerifyISPut(dec_insn, reg_types_.Long(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07001836 break;
jeffhaobdb76512011-09-07 11:43:16 -07001837 case Instruction::IPUT_OBJECT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001838 VerifyISPut(dec_insn, reg_types_.JavaLangObject(), false, false);
jeffhaobdb76512011-09-07 11:43:16 -07001839 break;
1840
jeffhaobdb76512011-09-07 11:43:16 -07001841 case Instruction::SGET_BOOLEAN:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001842 VerifyISGet(dec_insn, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07001843 break;
jeffhaobdb76512011-09-07 11:43:16 -07001844 case Instruction::SGET_BYTE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001845 VerifyISGet(dec_insn, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07001846 break;
jeffhaobdb76512011-09-07 11:43:16 -07001847 case Instruction::SGET_CHAR:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001848 VerifyISGet(dec_insn, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07001849 break;
jeffhaobdb76512011-09-07 11:43:16 -07001850 case Instruction::SGET_SHORT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001851 VerifyISGet(dec_insn, reg_types_.Short(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07001852 break;
1853 case Instruction::SGET:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001854 VerifyISGet(dec_insn, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07001855 break;
1856 case Instruction::SGET_WIDE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001857 VerifyISGet(dec_insn, reg_types_.Long(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07001858 break;
1859 case Instruction::SGET_OBJECT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001860 VerifyISGet(dec_insn, reg_types_.JavaLangObject(), false, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07001861 break;
1862
1863 case Instruction::SPUT_BOOLEAN:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001864 VerifyISPut(dec_insn, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07001865 break;
1866 case Instruction::SPUT_BYTE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001867 VerifyISPut(dec_insn, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07001868 break;
1869 case Instruction::SPUT_CHAR:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001870 VerifyISPut(dec_insn, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07001871 break;
1872 case Instruction::SPUT_SHORT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001873 VerifyISPut(dec_insn, reg_types_.Short(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07001874 break;
1875 case Instruction::SPUT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001876 VerifyISPut(dec_insn, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07001877 break;
1878 case Instruction::SPUT_WIDE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001879 VerifyISPut(dec_insn, reg_types_.Long(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07001880 break;
1881 case Instruction::SPUT_OBJECT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07001882 VerifyISPut(dec_insn, reg_types_.JavaLangObject(), false, true);
jeffhaobdb76512011-09-07 11:43:16 -07001883 break;
1884
1885 case Instruction::INVOKE_VIRTUAL:
1886 case Instruction::INVOKE_VIRTUAL_RANGE:
1887 case Instruction::INVOKE_SUPER:
Ian Rogersd81871c2011-10-03 13:57:23 -07001888 case Instruction::INVOKE_SUPER_RANGE: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001889 bool is_range = (dec_insn.opcode == Instruction::INVOKE_VIRTUAL_RANGE ||
1890 dec_insn.opcode == Instruction::INVOKE_SUPER_RANGE);
1891 bool is_super = (dec_insn.opcode == Instruction::INVOKE_SUPER ||
1892 dec_insn.opcode == Instruction::INVOKE_SUPER_RANGE);
Ian Rogersd81871c2011-10-03 13:57:23 -07001893 Method* called_method = VerifyInvocationArgs(dec_insn, METHOD_VIRTUAL, is_range, is_super);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001894 const char* descriptor;
1895 if (called_method == NULL) {
1896 uint32_t method_idx = dec_insn.vB;
1897 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
1898 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
1899 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
1900 } else {
1901 descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
jeffhaobdb76512011-09-07 11:43:16 -07001902 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07001903 const RegType& return_type = reg_types_.FromDescriptor(class_loader_, descriptor);
1904 work_line_->SetResultRegisterType(return_type);
1905 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07001906 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001907 }
jeffhaobdb76512011-09-07 11:43:16 -07001908 case Instruction::INVOKE_DIRECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07001909 case Instruction::INVOKE_DIRECT_RANGE: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001910 bool is_range = (dec_insn.opcode == Instruction::INVOKE_DIRECT_RANGE);
Ian Rogersd81871c2011-10-03 13:57:23 -07001911 Method* called_method = VerifyInvocationArgs(dec_insn, METHOD_DIRECT, is_range, false);
Ian Rogers46685432012-06-03 22:26:43 -07001912 const char* return_type_descriptor;
1913 bool is_constructor;
1914 if (called_method == NULL) {
1915 uint32_t method_idx = dec_insn.vB;
1916 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
1917 is_constructor = StringPiece(dex_file_->GetMethodName(method_id)) == "<init>";
1918 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
1919 return_type_descriptor = dex_file_->StringByTypeIdx(return_type_idx);
1920 } else {
1921 is_constructor = called_method->IsConstructor();
1922 return_type_descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
1923 }
1924 if (is_constructor) {
jeffhaobdb76512011-09-07 11:43:16 -07001925 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07001926 * Some additional checks when calling a constructor. We know from the invocation arg check
1927 * that the "this" argument is an instance of called_method->klass. Now we further restrict
1928 * that to require that called_method->klass is the same as this->klass or this->super,
1929 * allowing the latter only if the "this" argument is the same as the "this" argument to
1930 * this method (which implies that we're in a constructor ourselves).
jeffhaobdb76512011-09-07 11:43:16 -07001931 */
jeffhaob57e9522012-04-26 18:08:21 -07001932 const RegType& this_type = work_line_->GetInvocationThis(dec_insn);
1933 if (this_type.IsConflict()) // failure.
1934 break;
jeffhaobdb76512011-09-07 11:43:16 -07001935
jeffhaob57e9522012-04-26 18:08:21 -07001936 /* no null refs allowed (?) */
1937 if (this_type.IsZero()) {
1938 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unable to initialize null ref";
1939 break;
jeffhao2a8a90e2011-09-26 14:25:31 -07001940 }
jeffhaob57e9522012-04-26 18:08:21 -07001941
1942 /* must be in same class or in superclass */
Ian Rogers46685432012-06-03 22:26:43 -07001943 // const RegType& this_super_klass = this_type.GetSuperClass(&reg_types_);
1944 // TODO: re-enable constructor type verification
1945 // if (this_super_klass.IsConflict()) {
jeffhaob57e9522012-04-26 18:08:21 -07001946 // Unknown super class, fail so we re-check at runtime.
Ian Rogers46685432012-06-03 22:26:43 -07001947 // Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "super class unknown for '" << this_type << "'";
1948 // break;
1949 // }
jeffhaob57e9522012-04-26 18:08:21 -07001950
1951 /* arg must be an uninitialized reference */
1952 if (!this_type.IsUninitializedTypes()) {
1953 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Expected initialization on uninitialized reference "
1954 << this_type;
1955 break;
1956 }
1957
1958 /*
1959 * Replace the uninitialized reference with an initialized one. We need to do this for all
1960 * registers that have the same object instance in them, not just the "this" register.
1961 */
1962 work_line_->MarkRefsAsInitialized(this_type);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001963 }
Ian Rogers46685432012-06-03 22:26:43 -07001964 const RegType& return_type = reg_types_.FromDescriptor(class_loader_, return_type_descriptor);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001965 work_line_->SetResultRegisterType(return_type);
1966 just_set_result = true;
1967 break;
1968 }
1969 case Instruction::INVOKE_STATIC:
1970 case Instruction::INVOKE_STATIC_RANGE: {
1971 bool is_range = (dec_insn.opcode == Instruction::INVOKE_STATIC_RANGE);
1972 Method* called_method = VerifyInvocationArgs(dec_insn, METHOD_STATIC, is_range, false);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001973 const char* descriptor;
1974 if (called_method == NULL) {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001975 uint32_t method_idx = dec_insn.vB;
Ian Rogers28ad40d2011-10-27 15:19:26 -07001976 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
1977 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogers0571d352011-11-03 19:51:38 -07001978 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001979 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001980 descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001981 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07001982 const RegType& return_type = reg_types_.FromDescriptor(class_loader_, descriptor);
Ian Rogersd81871c2011-10-03 13:57:23 -07001983 work_line_->SetResultRegisterType(return_type);
jeffhaobdb76512011-09-07 11:43:16 -07001984 just_set_result = true;
1985 }
1986 break;
jeffhaobdb76512011-09-07 11:43:16 -07001987 case Instruction::INVOKE_INTERFACE:
Ian Rogersd81871c2011-10-03 13:57:23 -07001988 case Instruction::INVOKE_INTERFACE_RANGE: {
Elliott Hughesadb8c672012-03-06 16:49:32 -08001989 bool is_range = (dec_insn.opcode == Instruction::INVOKE_INTERFACE_RANGE);
Ian Rogersd81871c2011-10-03 13:57:23 -07001990 Method* abs_method = VerifyInvocationArgs(dec_insn, METHOD_INTERFACE, is_range, false);
Ian Rogersad0b3a32012-04-16 14:50:24 -07001991 if (abs_method != NULL) {
1992 Class* called_interface = abs_method->GetDeclaringClass();
1993 if (!called_interface->IsInterface() && !called_interface->IsObjectClass()) {
1994 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected interface class in invoke-interface '"
1995 << PrettyMethod(abs_method) << "'";
1996 break;
Ian Rogers28ad40d2011-10-27 15:19:26 -07001997 }
Ian Rogers0d604842012-04-16 14:50:24 -07001998 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07001999 /* Get the type of the "this" arg, which should either be a sub-interface of called
2000 * interface or Object (see comments in RegType::JoinClass).
2001 */
2002 const RegType& this_type = work_line_->GetInvocationThis(dec_insn);
2003 if (this_type.IsZero()) {
2004 /* null pointer always passes (and always fails at runtime) */
2005 } else {
2006 if (this_type.IsUninitializedTypes()) {
2007 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "interface call on uninitialized object "
2008 << this_type;
2009 break;
2010 }
2011 // In the past we have tried to assert that "called_interface" is assignable
2012 // from "this_type.GetClass()", however, as we do an imprecise Join
2013 // (RegType::JoinClass) we don't have full information on what interfaces are
2014 // implemented by "this_type". For example, two classes may implement the same
2015 // interfaces and have a common parent that doesn't implement the interface. The
2016 // join will set "this_type" to the parent class and a test that this implements
2017 // the interface will incorrectly fail.
2018 }
2019 /*
2020 * We don't have an object instance, so we can't find the concrete method. However, all of
2021 * the type information is in the abstract method, so we're good.
2022 */
2023 const char* descriptor;
2024 if (abs_method == NULL) {
2025 uint32_t method_idx = dec_insn.vB;
2026 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2027 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
2028 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
2029 } else {
2030 descriptor = MethodHelper(abs_method).GetReturnTypeDescriptor();
2031 }
2032 const RegType& return_type = reg_types_.FromDescriptor(class_loader_, descriptor);
2033 work_line_->SetResultRegisterType(return_type);
2034 work_line_->SetResultRegisterType(return_type);
2035 just_set_result = true;
jeffhaobdb76512011-09-07 11:43:16 -07002036 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002037 }
jeffhaobdb76512011-09-07 11:43:16 -07002038 case Instruction::NEG_INT:
2039 case Instruction::NOT_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002040 work_line_->CheckUnaryOp(dec_insn, reg_types_.Integer(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002041 break;
2042 case Instruction::NEG_LONG:
2043 case Instruction::NOT_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002044 work_line_->CheckUnaryOp(dec_insn, reg_types_.Long(), reg_types_.Long());
jeffhaobdb76512011-09-07 11:43:16 -07002045 break;
2046 case Instruction::NEG_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002047 work_line_->CheckUnaryOp(dec_insn, reg_types_.Float(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002048 break;
2049 case Instruction::NEG_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002050 work_line_->CheckUnaryOp(dec_insn, reg_types_.Double(), reg_types_.Double());
jeffhaobdb76512011-09-07 11:43:16 -07002051 break;
2052 case Instruction::INT_TO_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002053 work_line_->CheckUnaryOp(dec_insn, reg_types_.Long(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002054 break;
2055 case Instruction::INT_TO_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002056 work_line_->CheckUnaryOp(dec_insn, reg_types_.Float(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002057 break;
2058 case Instruction::INT_TO_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002059 work_line_->CheckUnaryOp(dec_insn, reg_types_.Double(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002060 break;
2061 case Instruction::LONG_TO_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002062 work_line_->CheckUnaryOp(dec_insn, reg_types_.Integer(), reg_types_.Long());
jeffhaobdb76512011-09-07 11:43:16 -07002063 break;
2064 case Instruction::LONG_TO_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002065 work_line_->CheckUnaryOp(dec_insn, reg_types_.Float(), reg_types_.Long());
jeffhaobdb76512011-09-07 11:43:16 -07002066 break;
2067 case Instruction::LONG_TO_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002068 work_line_->CheckUnaryOp(dec_insn, reg_types_.Double(), reg_types_.Long());
jeffhaobdb76512011-09-07 11:43:16 -07002069 break;
2070 case Instruction::FLOAT_TO_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002071 work_line_->CheckUnaryOp(dec_insn, reg_types_.Integer(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002072 break;
2073 case Instruction::FLOAT_TO_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002074 work_line_->CheckUnaryOp(dec_insn, reg_types_.Long(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002075 break;
2076 case Instruction::FLOAT_TO_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002077 work_line_->CheckUnaryOp(dec_insn, reg_types_.Double(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002078 break;
2079 case Instruction::DOUBLE_TO_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002080 work_line_->CheckUnaryOp(dec_insn, reg_types_.Integer(), reg_types_.Double());
jeffhaobdb76512011-09-07 11:43:16 -07002081 break;
2082 case Instruction::DOUBLE_TO_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002083 work_line_->CheckUnaryOp(dec_insn, reg_types_.Long(), reg_types_.Double());
jeffhaobdb76512011-09-07 11:43:16 -07002084 break;
2085 case Instruction::DOUBLE_TO_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002086 work_line_->CheckUnaryOp(dec_insn, reg_types_.Float(), reg_types_.Double());
jeffhaobdb76512011-09-07 11:43:16 -07002087 break;
2088 case Instruction::INT_TO_BYTE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002089 work_line_->CheckUnaryOp(dec_insn, reg_types_.Byte(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002090 break;
2091 case Instruction::INT_TO_CHAR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002092 work_line_->CheckUnaryOp(dec_insn, reg_types_.Char(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002093 break;
2094 case Instruction::INT_TO_SHORT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002095 work_line_->CheckUnaryOp(dec_insn, reg_types_.Short(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002096 break;
2097
2098 case Instruction::ADD_INT:
2099 case Instruction::SUB_INT:
2100 case Instruction::MUL_INT:
2101 case Instruction::REM_INT:
2102 case Instruction::DIV_INT:
2103 case Instruction::SHL_INT:
2104 case Instruction::SHR_INT:
2105 case Instruction::USHR_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002106 work_line_->CheckBinaryOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002107 break;
2108 case Instruction::AND_INT:
2109 case Instruction::OR_INT:
2110 case Instruction::XOR_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002111 work_line_->CheckBinaryOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002112 break;
2113 case Instruction::ADD_LONG:
2114 case Instruction::SUB_LONG:
2115 case Instruction::MUL_LONG:
2116 case Instruction::DIV_LONG:
2117 case Instruction::REM_LONG:
2118 case Instruction::AND_LONG:
2119 case Instruction::OR_LONG:
2120 case Instruction::XOR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002121 work_line_->CheckBinaryOp(dec_insn, reg_types_.Long(), reg_types_.Long(), reg_types_.Long(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002122 break;
2123 case Instruction::SHL_LONG:
2124 case Instruction::SHR_LONG:
2125 case Instruction::USHR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002126 /* shift distance is Int, making these different from other binary operations */
2127 work_line_->CheckBinaryOp(dec_insn, reg_types_.Long(), reg_types_.Long(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002128 break;
2129 case Instruction::ADD_FLOAT:
2130 case Instruction::SUB_FLOAT:
2131 case Instruction::MUL_FLOAT:
2132 case Instruction::DIV_FLOAT:
2133 case Instruction::REM_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002134 work_line_->CheckBinaryOp(dec_insn, reg_types_.Float(), reg_types_.Float(), reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002135 break;
2136 case Instruction::ADD_DOUBLE:
2137 case Instruction::SUB_DOUBLE:
2138 case Instruction::MUL_DOUBLE:
2139 case Instruction::DIV_DOUBLE:
2140 case Instruction::REM_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002141 work_line_->CheckBinaryOp(dec_insn, reg_types_.Double(), reg_types_.Double(), reg_types_.Double(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002142 break;
2143 case Instruction::ADD_INT_2ADDR:
2144 case Instruction::SUB_INT_2ADDR:
2145 case Instruction::MUL_INT_2ADDR:
2146 case Instruction::REM_INT_2ADDR:
2147 case Instruction::SHL_INT_2ADDR:
2148 case Instruction::SHR_INT_2ADDR:
2149 case Instruction::USHR_INT_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002150 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002151 break;
2152 case Instruction::AND_INT_2ADDR:
2153 case Instruction::OR_INT_2ADDR:
2154 case Instruction::XOR_INT_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002155 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002156 break;
2157 case Instruction::DIV_INT_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002158 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002159 break;
2160 case Instruction::ADD_LONG_2ADDR:
2161 case Instruction::SUB_LONG_2ADDR:
2162 case Instruction::MUL_LONG_2ADDR:
2163 case Instruction::DIV_LONG_2ADDR:
2164 case Instruction::REM_LONG_2ADDR:
2165 case Instruction::AND_LONG_2ADDR:
2166 case Instruction::OR_LONG_2ADDR:
2167 case Instruction::XOR_LONG_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002168 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Long(), reg_types_.Long(), reg_types_.Long(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002169 break;
2170 case Instruction::SHL_LONG_2ADDR:
2171 case Instruction::SHR_LONG_2ADDR:
2172 case Instruction::USHR_LONG_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002173 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Long(), reg_types_.Long(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002174 break;
2175 case Instruction::ADD_FLOAT_2ADDR:
2176 case Instruction::SUB_FLOAT_2ADDR:
2177 case Instruction::MUL_FLOAT_2ADDR:
2178 case Instruction::DIV_FLOAT_2ADDR:
2179 case Instruction::REM_FLOAT_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002180 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Float(), reg_types_.Float(), reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002181 break;
2182 case Instruction::ADD_DOUBLE_2ADDR:
2183 case Instruction::SUB_DOUBLE_2ADDR:
2184 case Instruction::MUL_DOUBLE_2ADDR:
2185 case Instruction::DIV_DOUBLE_2ADDR:
2186 case Instruction::REM_DOUBLE_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002187 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Double(), reg_types_.Double(), reg_types_.Double(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002188 break;
2189 case Instruction::ADD_INT_LIT16:
2190 case Instruction::RSUB_INT:
2191 case Instruction::MUL_INT_LIT16:
2192 case Instruction::DIV_INT_LIT16:
2193 case Instruction::REM_INT_LIT16:
Ian Rogersd81871c2011-10-03 13:57:23 -07002194 work_line_->CheckLiteralOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002195 break;
2196 case Instruction::AND_INT_LIT16:
2197 case Instruction::OR_INT_LIT16:
2198 case Instruction::XOR_INT_LIT16:
Ian Rogersd81871c2011-10-03 13:57:23 -07002199 work_line_->CheckLiteralOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002200 break;
2201 case Instruction::ADD_INT_LIT8:
2202 case Instruction::RSUB_INT_LIT8:
2203 case Instruction::MUL_INT_LIT8:
2204 case Instruction::DIV_INT_LIT8:
2205 case Instruction::REM_INT_LIT8:
2206 case Instruction::SHL_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07002207 case Instruction::SHR_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07002208 case Instruction::USHR_INT_LIT8:
Ian Rogersd81871c2011-10-03 13:57:23 -07002209 work_line_->CheckLiteralOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002210 break;
2211 case Instruction::AND_INT_LIT8:
2212 case Instruction::OR_INT_LIT8:
2213 case Instruction::XOR_INT_LIT8:
Ian Rogersd81871c2011-10-03 13:57:23 -07002214 work_line_->CheckLiteralOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002215 break;
2216
Ian Rogersd81871c2011-10-03 13:57:23 -07002217 /* These should never appear during verification. */
jeffhao9a4f0032012-08-30 16:17:40 -07002218 case Instruction::UNUSED_ED:
jeffhaobdb76512011-09-07 11:43:16 -07002219 case Instruction::UNUSED_EE:
2220 case Instruction::UNUSED_EF:
2221 case Instruction::UNUSED_F2:
2222 case Instruction::UNUSED_F3:
2223 case Instruction::UNUSED_F4:
2224 case Instruction::UNUSED_F5:
2225 case Instruction::UNUSED_F6:
2226 case Instruction::UNUSED_F7:
2227 case Instruction::UNUSED_F8:
2228 case Instruction::UNUSED_F9:
2229 case Instruction::UNUSED_FA:
2230 case Instruction::UNUSED_FB:
jeffhaobdb76512011-09-07 11:43:16 -07002231 case Instruction::UNUSED_F0:
2232 case Instruction::UNUSED_F1:
2233 case Instruction::UNUSED_E3:
2234 case Instruction::UNUSED_E8:
2235 case Instruction::UNUSED_E7:
2236 case Instruction::UNUSED_E4:
2237 case Instruction::UNUSED_E9:
2238 case Instruction::UNUSED_FC:
2239 case Instruction::UNUSED_E5:
2240 case Instruction::UNUSED_EA:
2241 case Instruction::UNUSED_FD:
2242 case Instruction::UNUSED_E6:
2243 case Instruction::UNUSED_EB:
2244 case Instruction::UNUSED_FE:
jeffhaobdb76512011-09-07 11:43:16 -07002245 case Instruction::UNUSED_3E:
2246 case Instruction::UNUSED_3F:
2247 case Instruction::UNUSED_40:
2248 case Instruction::UNUSED_41:
2249 case Instruction::UNUSED_42:
2250 case Instruction::UNUSED_43:
2251 case Instruction::UNUSED_73:
2252 case Instruction::UNUSED_79:
2253 case Instruction::UNUSED_7A:
2254 case Instruction::UNUSED_EC:
2255 case Instruction::UNUSED_FF:
jeffhaod5347e02012-03-22 17:25:05 -07002256 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Unexpected opcode " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07002257 break;
2258
2259 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002260 * DO NOT add a "default" clause here. Without it the compiler will
jeffhaobdb76512011-09-07 11:43:16 -07002261 * complain if an instruction is missing (which is desirable).
2262 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002263 } // end - switch (dec_insn.opcode)
jeffhaobdb76512011-09-07 11:43:16 -07002264
Ian Rogersad0b3a32012-04-16 14:50:24 -07002265 if (have_pending_hard_failure_) {
2266 if (!Runtime::Current()->IsStarted()) {
jeffhaob57e9522012-04-26 18:08:21 -07002267 /* When compiling, check that the last failure is a hard failure */
Ian Rogersad0b3a32012-04-16 14:50:24 -07002268 CHECK_EQ(failures_[failures_.size() - 1], VERIFY_ERROR_BAD_CLASS_HARD);
Ian Rogerse1758fe2012-04-19 11:31:15 -07002269 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002270 /* immediate failure, reject class */
2271 info_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_);
2272 return false;
jeffhaofaf459e2012-08-31 15:32:47 -07002273 } else if (have_pending_runtime_throw_failure_) {
2274 /* slow path will throw, mark following code as unreachable */
2275 opcode_flags = Instruction::kThrow;
jeffhaobdb76512011-09-07 11:43:16 -07002276 }
jeffhaobdb76512011-09-07 11:43:16 -07002277 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002278 * If we didn't just set the result register, clear it out. This ensures that you can only use
2279 * "move-result" immediately after the result is set. (We could check this statically, but it's
2280 * not expensive and it makes our debugging output cleaner.)
jeffhaobdb76512011-09-07 11:43:16 -07002281 */
2282 if (!just_set_result) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002283 work_line_->SetResultTypeToUnknown();
jeffhaobdb76512011-09-07 11:43:16 -07002284 }
2285
jeffhaoa0a764a2011-09-16 10:43:38 -07002286 /* Handle "continue". Tag the next consecutive instruction. */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002287 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogers776ac1f2012-04-13 23:36:36 -07002288 uint32_t next_insn_idx = work_insn_idx_ + CurrentInsnFlags()->GetLengthInCodeUnits();
Ian Rogersd81871c2011-10-03 13:57:23 -07002289 if (next_insn_idx >= code_item_->insns_size_in_code_units_) {
jeffhaod5347e02012-03-22 17:25:05 -07002290 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Execution can walk off end of code area";
jeffhaobdb76512011-09-07 11:43:16 -07002291 return false;
2292 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002293 // The only way to get to a move-exception instruction is to get thrown there. Make sure the
2294 // next instruction isn't one.
jeffhaod5347e02012-03-22 17:25:05 -07002295 if (!CheckNotMoveException(code_item_->insns_, next_insn_idx)) {
jeffhaobdb76512011-09-07 11:43:16 -07002296 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002297 }
2298 RegisterLine* next_line = reg_table_.GetLine(next_insn_idx);
2299 if (next_line != NULL) {
2300 // Merge registers into what we have for the next instruction, and set the "changed" flag if
2301 // needed.
2302 if (!UpdateRegisters(next_insn_idx, work_line_.get())) {
jeffhaobdb76512011-09-07 11:43:16 -07002303 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002304 }
jeffhaobdb76512011-09-07 11:43:16 -07002305 } else {
2306 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002307 * We're not recording register data for the next instruction, so we don't know what the prior
2308 * state was. We have to assume that something has changed and re-evaluate it.
jeffhaobdb76512011-09-07 11:43:16 -07002309 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002310 insn_flags_[next_insn_idx].SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07002311 }
2312 }
2313
2314 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002315 * Handle "branch". Tag the branch target.
jeffhaobdb76512011-09-07 11:43:16 -07002316 *
2317 * NOTE: instructions like Instruction::EQZ provide information about the
jeffhaod1f0fde2011-09-08 17:25:33 -07002318 * state of the register when the branch is taken or not taken. For example,
jeffhaobdb76512011-09-07 11:43:16 -07002319 * somebody could get a reference field, check it for zero, and if the
2320 * branch is taken immediately store that register in a boolean field
jeffhaod1f0fde2011-09-08 17:25:33 -07002321 * since the value is known to be zero. We do not currently account for
jeffhaobdb76512011-09-07 11:43:16 -07002322 * that, and will reject the code.
2323 *
2324 * TODO: avoid re-fetching the branch target
2325 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002326 if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07002327 bool isConditional, selfOkay;
Ian Rogersd81871c2011-10-03 13:57:23 -07002328 if (!GetBranchOffset(work_insn_idx_, &branch_target, &isConditional, &selfOkay)) {
jeffhaobdb76512011-09-07 11:43:16 -07002329 /* should never happen after static verification */
jeffhaod5347e02012-03-22 17:25:05 -07002330 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad branch";
jeffhaobdb76512011-09-07 11:43:16 -07002331 return false;
2332 }
Elliott Hughesadb8c672012-03-06 16:49:32 -08002333 DCHECK_EQ(isConditional, (opcode_flags & Instruction::kContinue) != 0);
jeffhaod5347e02012-03-22 17:25:05 -07002334 if (!CheckNotMoveException(code_item_->insns_, work_insn_idx_ + branch_target)) {
jeffhaobdb76512011-09-07 11:43:16 -07002335 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002336 }
jeffhaobdb76512011-09-07 11:43:16 -07002337 /* update branch target, set "changed" if appropriate */
Ian Rogersd81871c2011-10-03 13:57:23 -07002338 if (!UpdateRegisters(work_insn_idx_ + branch_target, work_line_.get())) {
jeffhaobdb76512011-09-07 11:43:16 -07002339 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002340 }
jeffhaobdb76512011-09-07 11:43:16 -07002341 }
2342
2343 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002344 * Handle "switch". Tag all possible branch targets.
jeffhaobdb76512011-09-07 11:43:16 -07002345 *
2346 * We've already verified that the table is structurally sound, so we
2347 * just need to walk through and tag the targets.
2348 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002349 if ((opcode_flags & Instruction::kSwitch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07002350 int offset_to_switch = insns[1] | (((int32_t) insns[2]) << 16);
2351 const uint16_t* switch_insns = insns + offset_to_switch;
2352 int switch_count = switch_insns[1];
2353 int offset_to_targets, targ;
2354
2355 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
2356 /* 0 = sig, 1 = count, 2/3 = first key */
2357 offset_to_targets = 4;
2358 } else {
2359 /* 0 = sig, 1 = count, 2..count * 2 = keys */
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07002360 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH);
jeffhaobdb76512011-09-07 11:43:16 -07002361 offset_to_targets = 2 + 2 * switch_count;
2362 }
2363
2364 /* verify each switch target */
2365 for (targ = 0; targ < switch_count; targ++) {
2366 int offset;
2367 uint32_t abs_offset;
2368
2369 /* offsets are 32-bit, and only partly endian-swapped */
2370 offset = switch_insns[offset_to_targets + targ * 2] |
2371 (((int32_t) switch_insns[offset_to_targets + targ * 2 + 1]) << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07002372 abs_offset = work_insn_idx_ + offset;
2373 DCHECK_LT(abs_offset, code_item_->insns_size_in_code_units_);
jeffhaod5347e02012-03-22 17:25:05 -07002374 if (!CheckNotMoveException(code_item_->insns_, abs_offset)) {
jeffhaobdb76512011-09-07 11:43:16 -07002375 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002376 }
2377 if (!UpdateRegisters(abs_offset, work_line_.get()))
jeffhaobdb76512011-09-07 11:43:16 -07002378 return false;
2379 }
2380 }
2381
2382 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002383 * Handle instructions that can throw and that are sitting in a "try" block. (If they're not in a
2384 * "try" block when they throw, control transfers out of the method.)
jeffhaobdb76512011-09-07 11:43:16 -07002385 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002386 if ((opcode_flags & Instruction::kThrow) != 0 && insn_flags_[work_insn_idx_].IsInTry()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002387 bool within_catch_all = false;
Ian Rogers0571d352011-11-03 19:51:38 -07002388 CatchHandlerIterator iterator(*code_item_, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07002389
Ian Rogers0571d352011-11-03 19:51:38 -07002390 for (; iterator.HasNext(); iterator.Next()) {
2391 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002392 within_catch_all = true;
2393 }
jeffhaobdb76512011-09-07 11:43:16 -07002394 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002395 * Merge registers into the "catch" block. We want to use the "savedRegs" rather than
2396 * "work_regs", because at runtime the exception will be thrown before the instruction
2397 * modifies any registers.
jeffhaobdb76512011-09-07 11:43:16 -07002398 */
Ian Rogers0571d352011-11-03 19:51:38 -07002399 if (!UpdateRegisters(iterator.GetHandlerAddress(), saved_line_.get())) {
jeffhaobdb76512011-09-07 11:43:16 -07002400 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002401 }
jeffhaobdb76512011-09-07 11:43:16 -07002402 }
2403
2404 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002405 * If the monitor stack depth is nonzero, there must be a "catch all" handler for this
2406 * instruction. This does apply to monitor-exit because of async exception handling.
jeffhaobdb76512011-09-07 11:43:16 -07002407 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002408 if (work_line_->MonitorStackDepth() > 0 && !within_catch_all) {
jeffhaobdb76512011-09-07 11:43:16 -07002409 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002410 * The state in work_line reflects the post-execution state. If the current instruction is a
2411 * monitor-enter and the monitor stack was empty, we don't need a catch-all (if it throws,
jeffhaobdb76512011-09-07 11:43:16 -07002412 * it will do so before grabbing the lock).
2413 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002414 if (dec_insn.opcode != Instruction::MONITOR_ENTER || work_line_->MonitorStackDepth() != 1) {
jeffhaod5347e02012-03-22 17:25:05 -07002415 Fail(VERIFY_ERROR_BAD_CLASS_HARD)
Ian Rogersd81871c2011-10-03 13:57:23 -07002416 << "expected to be within a catch-all for an instruction where a monitor is held";
jeffhaobdb76512011-09-07 11:43:16 -07002417 return false;
2418 }
2419 }
2420 }
2421
jeffhaod1f0fde2011-09-08 17:25:33 -07002422 /* If we're returning from the method, make sure monitor stack is empty. */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002423 if ((opcode_flags & Instruction::kReturn) != 0) {
Elliott Hughesb25c3f62012-03-26 16:35:06 -07002424 if (!work_line_->VerifyMonitorStackEmpty()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002425 return false;
2426 }
jeffhaobdb76512011-09-07 11:43:16 -07002427 }
2428
2429 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002430 * Update start_guess. Advance to the next instruction of that's
2431 * possible, otherwise use the branch target if one was found. If
jeffhaobdb76512011-09-07 11:43:16 -07002432 * neither of those exists we're in a return or throw; leave start_guess
2433 * alone and let the caller sort it out.
2434 */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002435 if ((opcode_flags & Instruction::kContinue) != 0) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002436 *start_guess = work_insn_idx_ + insn_flags_[work_insn_idx_].GetLengthInCodeUnits();
Elliott Hughesadb8c672012-03-06 16:49:32 -08002437 } else if ((opcode_flags & Instruction::kBranch) != 0) {
jeffhaobdb76512011-09-07 11:43:16 -07002438 /* we're still okay if branch_target is zero */
Ian Rogersd81871c2011-10-03 13:57:23 -07002439 *start_guess = work_insn_idx_ + branch_target;
jeffhaobdb76512011-09-07 11:43:16 -07002440 }
2441
Ian Rogersd81871c2011-10-03 13:57:23 -07002442 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
2443 DCHECK(insn_flags_[*start_guess].IsOpcode());
jeffhaobdb76512011-09-07 11:43:16 -07002444
2445 return true;
2446}
2447
Ian Rogers776ac1f2012-04-13 23:36:36 -07002448const RegType& MethodVerifier::ResolveClassAndCheckAccess(uint32_t class_idx) {
Ian Rogers0571d352011-11-03 19:51:38 -07002449 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002450 const RegType& referrer = GetDeclaringClass();
2451 Class* klass = dex_cache_->GetResolvedType(class_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002452 const RegType& result =
2453 klass != NULL ? reg_types_.FromClass(klass)
Ian Rogersad0b3a32012-04-16 14:50:24 -07002454 : reg_types_.FromDescriptor(class_loader_, descriptor);
2455 if (result.IsConflict()) {
2456 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "accessing broken descriptor '" << descriptor
2457 << "' in " << referrer;
2458 return result;
2459 }
Ian Rogerse1758fe2012-04-19 11:31:15 -07002460 if (klass == NULL && !result.IsUnresolvedTypes()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002461 dex_cache_->SetResolvedType(class_idx, result.GetClass());
Ian Rogerse1758fe2012-04-19 11:31:15 -07002462 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002463 // Check if access is allowed. Unresolved types use xxxWithAccessCheck to
Ian Rogers28ad40d2011-10-27 15:19:26 -07002464 // check at runtime if access is allowed and so pass here.
Ian Rogersad0b3a32012-04-16 14:50:24 -07002465 if (!result.IsUnresolvedTypes() && !referrer.IsUnresolvedTypes() && !referrer.CanAccess(result)) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002466 Fail(VERIFY_ERROR_ACCESS_CLASS) << "illegal class access: '"
Ian Rogersad0b3a32012-04-16 14:50:24 -07002467 << referrer << "' -> '" << result << "'";
Ian Rogers28ad40d2011-10-27 15:19:26 -07002468 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002469 return result;
Ian Rogersd81871c2011-10-03 13:57:23 -07002470}
2471
Ian Rogers776ac1f2012-04-13 23:36:36 -07002472const RegType& MethodVerifier::GetCaughtExceptionType() {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002473 const RegType* common_super = NULL;
Ian Rogersd81871c2011-10-03 13:57:23 -07002474 if (code_item_->tries_size_ != 0) {
Ian Rogers0571d352011-11-03 19:51:38 -07002475 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
Ian Rogersd81871c2011-10-03 13:57:23 -07002476 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
2477 for (uint32_t i = 0; i < handlers_size; i++) {
Ian Rogers0571d352011-11-03 19:51:38 -07002478 CatchHandlerIterator iterator(handlers_ptr);
2479 for (; iterator.HasNext(); iterator.Next()) {
2480 if (iterator.GetHandlerAddress() == (uint32_t) work_insn_idx_) {
2481 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002482 common_super = &reg_types_.JavaLangThrowable();
Ian Rogersd81871c2011-10-03 13:57:23 -07002483 } else {
Ian Rogers0571d352011-11-03 19:51:38 -07002484 const RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex());
Ian Rogersc4762272012-02-01 15:55:55 -08002485 if (common_super == NULL) {
2486 // Unconditionally assign for the first handler. We don't assert this is a Throwable
2487 // as that is caught at runtime
2488 common_super = &exception;
Elliott Hughesb25c3f62012-03-26 16:35:06 -07002489 } else if (!reg_types_.JavaLangThrowable().IsAssignableFrom(exception)) {
Ian Rogersc4762272012-02-01 15:55:55 -08002490 // We don't know enough about the type and the common path merge will result in
2491 // Conflict. Fail here knowing the correct thing can be done at runtime.
jeffhaod5347e02012-03-22 17:25:05 -07002492 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unexpected non-exception class " << exception;
Ian Rogersad0b3a32012-04-16 14:50:24 -07002493 return reg_types_.Conflict();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002494 } else if (common_super->Equals(exception)) {
Ian Rogersc4762272012-02-01 15:55:55 -08002495 // odd case, but nothing to do
Ian Rogersd81871c2011-10-03 13:57:23 -07002496 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002497 common_super = &common_super->Merge(exception, &reg_types_);
2498 CHECK(reg_types_.JavaLangThrowable().IsAssignableFrom(*common_super));
Ian Rogersd81871c2011-10-03 13:57:23 -07002499 }
2500 }
2501 }
2502 }
Ian Rogers0571d352011-11-03 19:51:38 -07002503 handlers_ptr = iterator.EndDataPointer();
Ian Rogersd81871c2011-10-03 13:57:23 -07002504 }
2505 }
2506 if (common_super == NULL) {
2507 /* no catch blocks, or no catches with classes we can find */
jeffhaod5347e02012-03-22 17:25:05 -07002508 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "unable to find exception handler";
Ian Rogersad0b3a32012-04-16 14:50:24 -07002509 return reg_types_.Conflict();
Ian Rogersd81871c2011-10-03 13:57:23 -07002510 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002511 return *common_super;
Ian Rogersd81871c2011-10-03 13:57:23 -07002512}
2513
Ian Rogersad0b3a32012-04-16 14:50:24 -07002514Method* MethodVerifier::ResolveMethodAndCheckAccess(uint32_t dex_method_idx, MethodType method_type) {
2515 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx);
Ian Rogers90040192011-12-16 08:54:29 -08002516 const RegType& klass_type = ResolveClassAndCheckAccess(method_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002517 if (klass_type.IsConflict()) {
2518 std::string append(" in attempt to access method ");
2519 append += dex_file_->GetMethodName(method_id);
2520 AppendToLastFailMessage(append);
Ian Rogers90040192011-12-16 08:54:29 -08002521 return NULL;
2522 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002523 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers90040192011-12-16 08:54:29 -08002524 return NULL; // Can't resolve Class so no more to do here
2525 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002526 Class* klass = klass_type.GetClass();
Ian Rogersad0b3a32012-04-16 14:50:24 -07002527 const RegType& referrer = GetDeclaringClass();
2528 Method* res_method = dex_cache_->GetResolvedMethod(dex_method_idx);
Ian Rogersd81871c2011-10-03 13:57:23 -07002529 if (res_method == NULL) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07002530 const char* name = dex_file_->GetMethodName(method_id);
Ian Rogers0571d352011-11-03 19:51:38 -07002531 std::string signature(dex_file_->CreateMethodSignature(method_id.proto_idx_, NULL));
jeffhao8cd6dda2012-02-22 10:15:34 -08002532
2533 if (method_type == METHOD_DIRECT || method_type == METHOD_STATIC) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002534 res_method = klass->FindDirectMethod(name, signature);
jeffhao8cd6dda2012-02-22 10:15:34 -08002535 } else if (method_type == METHOD_INTERFACE) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002536 res_method = klass->FindInterfaceMethod(name, signature);
2537 } else {
2538 res_method = klass->FindVirtualMethod(name, signature);
2539 }
2540 if (res_method != NULL) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002541 dex_cache_->SetResolvedMethod(dex_method_idx, res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07002542 } else {
jeffhao8cd6dda2012-02-22 10:15:34 -08002543 // If a virtual or interface method wasn't found with the expected type, look in
2544 // the direct methods. This can happen when the wrong invoke type is used or when
2545 // a class has changed, and will be flagged as an error in later checks.
2546 if (method_type == METHOD_INTERFACE || method_type == METHOD_VIRTUAL) {
2547 res_method = klass->FindDirectMethod(name, signature);
2548 }
2549 if (res_method == NULL) {
2550 Fail(VERIFY_ERROR_NO_METHOD) << "couldn't find method "
2551 << PrettyDescriptor(klass) << "." << name
2552 << " " << signature;
2553 return NULL;
2554 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002555 }
2556 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002557 // Make sure calls to constructors are "direct". There are additional restrictions but we don't
2558 // enforce them here.
2559 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) {
jeffhaod5347e02012-03-22 17:25:05 -07002560 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting non-direct call to constructor "
2561 << PrettyMethod(res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07002562 return NULL;
2563 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002564 // Disallow any calls to class initializers.
2565 if (MethodHelper(res_method).IsClassInitializer()) {
jeffhaod5347e02012-03-22 17:25:05 -07002566 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "rejecting call to class initializer "
2567 << PrettyMethod(res_method);
jeffhao8cd6dda2012-02-22 10:15:34 -08002568 return NULL;
2569 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002570 // Check if access is allowed.
Ian Rogersad0b3a32012-04-16 14:50:24 -07002571 if (!referrer.CanAccessMember(res_method->GetDeclaringClass(), res_method->GetAccessFlags())) {
jeffhao8cd6dda2012-02-22 10:15:34 -08002572 Fail(VERIFY_ERROR_ACCESS_METHOD) << "illegal method access (call " << PrettyMethod(res_method)
Ian Rogersad0b3a32012-04-16 14:50:24 -07002573 << " from " << referrer << ")";
jeffhaob57e9522012-04-26 18:08:21 -07002574 return res_method;
jeffhao8cd6dda2012-02-22 10:15:34 -08002575 }
jeffhaode0d9c92012-02-27 13:58:13 -08002576 // Check that invoke-virtual and invoke-super are not used on private methods of the same class.
2577 if (res_method->IsPrivate() && method_type == METHOD_VIRTUAL) {
jeffhaod5347e02012-03-22 17:25:05 -07002578 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invoke-super/virtual can't be used on private method "
2579 << PrettyMethod(res_method);
jeffhaode0d9c92012-02-27 13:58:13 -08002580 return NULL;
2581 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002582 // Check that interface methods match interface classes.
2583 if (klass->IsInterface() && method_type != METHOD_INTERFACE) {
2584 Fail(VERIFY_ERROR_CLASS_CHANGE) << "non-interface method " << PrettyMethod(res_method)
2585 << " is in an interface class " << PrettyClass(klass);
2586 return NULL;
2587 } else if (!klass->IsInterface() && method_type == METHOD_INTERFACE) {
2588 Fail(VERIFY_ERROR_CLASS_CHANGE) << "interface method " << PrettyMethod(res_method)
2589 << " is in a non-interface class " << PrettyClass(klass);
2590 return NULL;
2591 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002592 // See if the method type implied by the invoke instruction matches the access flags for the
2593 // target method.
2594 if ((method_type == METHOD_DIRECT && !res_method->IsDirect()) ||
2595 (method_type == METHOD_STATIC && !res_method->IsStatic()) ||
2596 ((method_type == METHOD_VIRTUAL || method_type == METHOD_INTERFACE) && res_method->IsDirect())
2597 ) {
Ian Rogers2fc14272012-08-30 10:56:57 -07002598 Fail(VERIFY_ERROR_CLASS_CHANGE) << "invoke type (" << method_type << ") does not match method "
2599 " type of " << PrettyMethod(res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07002600 return NULL;
2601 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002602 return res_method;
2603}
2604
Ian Rogers776ac1f2012-04-13 23:36:36 -07002605Method* MethodVerifier::VerifyInvocationArgs(const DecodedInstruction& dec_insn,
Ian Rogers46685432012-06-03 22:26:43 -07002606 MethodType method_type, bool is_range, bool is_super) {
jeffhao8cd6dda2012-02-22 10:15:34 -08002607 // Resolve the method. This could be an abstract or concrete method depending on what sort of call
2608 // we're making.
Elliott Hughesadb8c672012-03-06 16:49:32 -08002609 Method* res_method = ResolveMethodAndCheckAccess(dec_insn.vB, method_type);
jeffhao8cd6dda2012-02-22 10:15:34 -08002610 if (res_method == NULL) { // error or class is unresolved
2611 return NULL;
2612 }
2613
Ian Rogersd81871c2011-10-03 13:57:23 -07002614 // If we're using invoke-super(method), make sure that the executing method's class' superclass
2615 // has a vtable entry for the target method.
2616 if (is_super) {
2617 DCHECK(method_type == METHOD_VIRTUAL);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002618 const RegType& super = GetDeclaringClass().GetSuperClass(&reg_types_);
Ian Rogers529781d2012-07-23 17:24:29 -07002619 if (super.IsUnresolvedTypes()) {
jeffhao4d8df822012-04-24 17:09:36 -07002620 Fail(VERIFY_ERROR_NO_METHOD) << "unknown super class in invoke-super from "
2621 << PrettyMethod(method_idx_, *dex_file_)
2622 << " to super " << PrettyMethod(res_method);
2623 return NULL;
2624 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002625 Class* super_klass = super.GetClass();
2626 if (res_method->GetMethodIndex() >= super_klass->GetVTable()->GetLength()) {
jeffhao4d8df822012-04-24 17:09:36 -07002627 MethodHelper mh(res_method);
2628 Fail(VERIFY_ERROR_NO_METHOD) << "invalid invoke-super from "
2629 << PrettyMethod(method_idx_, *dex_file_)
2630 << " to super " << super
2631 << "." << mh.GetName()
2632 << mh.GetSignature();
Ian Rogersd81871c2011-10-03 13:57:23 -07002633 return NULL;
2634 }
2635 }
2636 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
2637 // match the call to the signature. Also, we might might be calling through an abstract method
2638 // definition (which doesn't have register count values).
Elliott Hughesadb8c672012-03-06 16:49:32 -08002639 size_t expected_args = dec_insn.vA;
Ian Rogersd81871c2011-10-03 13:57:23 -07002640 /* caught by static verifier */
2641 DCHECK(is_range || expected_args <= 5);
2642 if (expected_args > code_item_->outs_size_) {
jeffhaod5347e02012-03-22 17:25:05 -07002643 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid argument count (" << expected_args
Ian Rogersd81871c2011-10-03 13:57:23 -07002644 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
2645 return NULL;
2646 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08002647
jeffhaobdb76512011-09-07 11:43:16 -07002648 /*
Ian Rogersad0b3a32012-04-16 14:50:24 -07002649 * Check the "this" argument, which must be an instance of the class that declared the method.
2650 * For an interface class, we don't do the full interface merge (see JoinClass), so we can't do a
2651 * rigorous check here (which is okay since we have to do it at runtime).
jeffhaobdb76512011-09-07 11:43:16 -07002652 */
Ian Rogers7b0c5b42012-02-16 15:29:07 -08002653 size_t actual_args = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -07002654 if (!res_method->IsStatic()) {
2655 const RegType& actual_arg_type = work_line_->GetInvocationThis(dec_insn);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002656 if (actual_arg_type.IsConflict()) { // GetInvocationThis failed.
Ian Rogersd81871c2011-10-03 13:57:23 -07002657 return NULL;
2658 }
2659 if (actual_arg_type.IsUninitializedReference() && !res_method->IsConstructor()) {
jeffhaod5347e02012-03-22 17:25:05 -07002660 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "'this' arg must be initialized";
Ian Rogersd81871c2011-10-03 13:57:23 -07002661 return NULL;
2662 }
2663 if (method_type != METHOD_INTERFACE && !actual_arg_type.IsZero()) {
Ian Rogers9074b992011-10-26 17:41:55 -07002664 const RegType& res_method_class = reg_types_.FromClass(res_method->GetDeclaringClass());
2665 if (!res_method_class.IsAssignableFrom(actual_arg_type)) {
jeffhaod5347e02012-03-22 17:25:05 -07002666 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "'this' argument '" << actual_arg_type
Ian Rogers7b0c5b42012-02-16 15:29:07 -08002667 << "' not instance of '" << res_method_class << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07002668 return NULL;
2669 }
2670 }
2671 actual_args++;
2672 }
2673 /*
2674 * Process the target method's signature. This signature may or may not
2675 * have been verified, so we can't assume it's properly formed.
2676 */
Ian Rogers7b0c5b42012-02-16 15:29:07 -08002677 MethodHelper mh(res_method);
2678 const DexFile::TypeList* params = mh.GetParameterTypeList();
2679 size_t params_size = params == NULL ? 0 : params->Size();
2680 for (size_t param_index = 0; param_index < params_size; param_index++) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002681 if (actual_args >= expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07002682 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invalid call to '" << PrettyMethod(res_method)
Ian Rogers7b0c5b42012-02-16 15:29:07 -08002683 << "'. Expected " << expected_args << " arguments, processing argument " << actual_args
2684 << " (where longs/doubles count twice).";
Ian Rogersd81871c2011-10-03 13:57:23 -07002685 return NULL;
2686 }
Ian Rogers7b0c5b42012-02-16 15:29:07 -08002687 const char* descriptor =
2688 mh.GetTypeDescriptorFromTypeIdx(params->GetTypeItem(param_index).type_idx_);
2689 if (descriptor == NULL) {
jeffhaod5347e02012-03-22 17:25:05 -07002690 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
Ian Rogers7b0c5b42012-02-16 15:29:07 -08002691 << " missing signature component";
2692 return NULL;
Ian Rogersd81871c2011-10-03 13:57:23 -07002693 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002694 const RegType& reg_type = reg_types_.FromDescriptor(class_loader_, descriptor);
Elliott Hughesadb8c672012-03-06 16:49:32 -08002695 uint32_t get_reg = is_range ? dec_insn.vC + actual_args : dec_insn.arg[actual_args];
Ian Rogers84fa0742011-10-25 18:13:30 -07002696 if (!work_line_->VerifyRegisterType(get_reg, reg_type)) {
jeffhaob57e9522012-04-26 18:08:21 -07002697 return res_method;
Ian Rogersd81871c2011-10-03 13:57:23 -07002698 }
2699 actual_args = reg_type.IsLongOrDoubleTypes() ? actual_args + 2 : actual_args + 1;
2700 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002701 if (actual_args != expected_args) {
jeffhaod5347e02012-03-22 17:25:05 -07002702 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Rejecting invocation of " << PrettyMethod(res_method)
Ian Rogers7b0c5b42012-02-16 15:29:07 -08002703 << " expected " << expected_args << " arguments, found " << actual_args;
Ian Rogersd81871c2011-10-03 13:57:23 -07002704 return NULL;
2705 } else {
2706 return res_method;
2707 }
2708}
2709
Ian Rogers776ac1f2012-04-13 23:36:36 -07002710void MethodVerifier::VerifyNewArray(const DecodedInstruction& dec_insn, bool is_filled,
Ian Rogers0c4a5062012-02-03 15:18:59 -08002711 bool is_range) {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002712 const RegType& res_type = ResolveClassAndCheckAccess(is_filled ? dec_insn.vB : dec_insn.vC);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002713 if (res_type.IsConflict()) { // bad class
2714 DCHECK_NE(failures_.size(), 0U);
Ian Rogers0c4a5062012-02-03 15:18:59 -08002715 } else {
2716 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
2717 if (!res_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002718 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "new-array on non-array class " << res_type;
Ian Rogers0c4a5062012-02-03 15:18:59 -08002719 } else if (!is_filled) {
2720 /* make sure "size" register is valid type */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002721 work_line_->VerifyRegisterType(dec_insn.vB, reg_types_.Integer());
Ian Rogers0c4a5062012-02-03 15:18:59 -08002722 /* set register type to array class */
Elliott Hughesadb8c672012-03-06 16:49:32 -08002723 work_line_->SetRegisterType(dec_insn.vA, res_type);
Ian Rogers0c4a5062012-02-03 15:18:59 -08002724 } else {
2725 // Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of
2726 // the list and fail. It's legal, if silly, for arg_count to be zero.
Ian Rogersad0b3a32012-04-16 14:50:24 -07002727 const RegType& expected_type = reg_types_.GetComponentType(res_type, class_loader_);
Elliott Hughesadb8c672012-03-06 16:49:32 -08002728 uint32_t arg_count = dec_insn.vA;
Ian Rogers0c4a5062012-02-03 15:18:59 -08002729 for (size_t ui = 0; ui < arg_count; ui++) {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002730 uint32_t get_reg = is_range ? dec_insn.vC + ui : dec_insn.arg[ui];
Ian Rogers0c4a5062012-02-03 15:18:59 -08002731 if (!work_line_->VerifyRegisterType(get_reg, expected_type)) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002732 work_line_->SetResultRegisterType(reg_types_.Conflict());
Ian Rogers0c4a5062012-02-03 15:18:59 -08002733 return;
2734 }
2735 }
2736 // filled-array result goes into "result" register
2737 work_line_->SetResultRegisterType(res_type);
2738 }
2739 }
2740}
2741
Ian Rogers776ac1f2012-04-13 23:36:36 -07002742void MethodVerifier::VerifyAGet(const DecodedInstruction& dec_insn,
Ian Rogersd81871c2011-10-03 13:57:23 -07002743 const RegType& insn_type, bool is_primitive) {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002744 const RegType& index_type = work_line_->GetRegisterType(dec_insn.vC);
Ian Rogersd81871c2011-10-03 13:57:23 -07002745 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002746 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07002747 } else {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002748 const RegType& array_type = work_line_->GetRegisterType(dec_insn.vB);
Ian Rogers89310de2012-02-01 13:47:30 -08002749 if (array_type.IsZero()) {
2750 // Null array class; this code path will fail at runtime. Infer a merge-able type from the
2751 // instruction type. TODO: have a proper notion of bottom here.
2752 if (!is_primitive || insn_type.IsCategory1Types()) {
2753 // Reference or category 1
Elliott Hughesadb8c672012-03-06 16:49:32 -08002754 work_line_->SetRegisterType(dec_insn.vA, reg_types_.Zero());
Ian Rogersd81871c2011-10-03 13:57:23 -07002755 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08002756 // Category 2
Elliott Hughesadb8c672012-03-06 16:49:32 -08002757 work_line_->SetRegisterType(dec_insn.vA, reg_types_.ConstLo());
Ian Rogers89310de2012-02-01 13:47:30 -08002758 }
jeffhaofc3144e2012-02-01 17:21:15 -08002759 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002760 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aget";
Ian Rogers89310de2012-02-01 13:47:30 -08002761 } else {
2762 /* verify the class */
Ian Rogersad0b3a32012-04-16 14:50:24 -07002763 const RegType& component_type = reg_types_.GetComponentType(array_type, class_loader_);
jeffhaofc3144e2012-02-01 17:21:15 -08002764 if (!component_type.IsReferenceTypes() && !is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07002765 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08002766 << " source for aget-object";
2767 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07002768 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08002769 << " source for category 1 aget";
2770 } else if (is_primitive && !insn_type.Equals(component_type) &&
2771 !((insn_type.IsInteger() && component_type.IsFloat()) ||
2772 (insn_type.IsLong() && component_type.IsDouble()))) {
jeffhaod5347e02012-03-22 17:25:05 -07002773 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array type " << array_type
Ian Rogersd81871c2011-10-03 13:57:23 -07002774 << " incompatible with aget of type " << insn_type;
Ian Rogers89310de2012-02-01 13:47:30 -08002775 } else {
Ian Rogersd81871c2011-10-03 13:57:23 -07002776 // Use knowledge of the field type which is stronger than the type inferred from the
2777 // instruction, which can't differentiate object types and ints from floats, longs from
2778 // doubles.
Elliott Hughesadb8c672012-03-06 16:49:32 -08002779 work_line_->SetRegisterType(dec_insn.vA, component_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002780 }
2781 }
2782 }
2783}
2784
Ian Rogers776ac1f2012-04-13 23:36:36 -07002785void MethodVerifier::VerifyAPut(const DecodedInstruction& dec_insn,
Ian Rogersd81871c2011-10-03 13:57:23 -07002786 const RegType& insn_type, bool is_primitive) {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002787 const RegType& index_type = work_line_->GetRegisterType(dec_insn.vC);
Ian Rogersd81871c2011-10-03 13:57:23 -07002788 if (!index_type.IsArrayIndexTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002789 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07002790 } else {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002791 const RegType& array_type = work_line_->GetRegisterType(dec_insn.vB);
Ian Rogers89310de2012-02-01 13:47:30 -08002792 if (array_type.IsZero()) {
2793 // Null array type; this code path will fail at runtime. Infer a merge-able type from the
2794 // instruction type.
jeffhaofc3144e2012-02-01 17:21:15 -08002795 } else if (!array_type.IsArrayTypes()) {
jeffhaod5347e02012-03-22 17:25:05 -07002796 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "not array type " << array_type << " with aput";
Ian Rogers89310de2012-02-01 13:47:30 -08002797 } else {
2798 /* verify the class */
Ian Rogersad0b3a32012-04-16 14:50:24 -07002799 const RegType& component_type = reg_types_.GetComponentType(array_type, class_loader_);
jeffhaofc3144e2012-02-01 17:21:15 -08002800 if (!component_type.IsReferenceTypes() && !is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07002801 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "primitive array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08002802 << " source for aput-object";
2803 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
jeffhaod5347e02012-03-22 17:25:05 -07002804 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "reference array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08002805 << " source for category 1 aput";
2806 } else if (is_primitive && !insn_type.Equals(component_type) &&
2807 !((insn_type.IsInteger() && component_type.IsFloat()) ||
2808 (insn_type.IsLong() && component_type.IsDouble()))) {
jeffhaod5347e02012-03-22 17:25:05 -07002809 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "array type " << array_type
Ian Rogers89310de2012-02-01 13:47:30 -08002810 << " incompatible with aput of type " << insn_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002811 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08002812 // The instruction agrees with the type of array, confirm the value to be stored does too
2813 // Note: we use the instruction type (rather than the component type) for aput-object as
2814 // incompatible classes will be caught at runtime as an array store exception
Elliott Hughesadb8c672012-03-06 16:49:32 -08002815 work_line_->VerifyRegisterType(dec_insn.vA, is_primitive ? component_type : insn_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002816 }
2817 }
2818 }
2819}
2820
Ian Rogers776ac1f2012-04-13 23:36:36 -07002821Field* MethodVerifier::GetStaticField(int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08002822 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
2823 // Check access to class
2824 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002825 if (klass_type.IsConflict()) { // bad class
2826 AppendToLastFailMessage(StringPrintf(" in attempt to access static field %d (%s) in %s",
2827 field_idx, dex_file_->GetFieldName(field_id),
2828 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers90040192011-12-16 08:54:29 -08002829 return NULL;
2830 }
Elliott Hughesb25c3f62012-03-26 16:35:06 -07002831 if (klass_type.IsUnresolvedTypes()) {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002832 return NULL; // Can't resolve Class so no more to do here, will do checking at runtime.
Ian Rogers90040192011-12-16 08:54:29 -08002833 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002834 Field* field = Runtime::Current()->GetClassLinker()->ResolveFieldJLS(*dex_file_, field_idx,
2835 dex_cache_, class_loader_);
Ian Rogersd81871c2011-10-03 13:57:23 -07002836 if (field == NULL) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07002837 LOG(INFO) << "unable to resolve static field " << field_idx << " ("
2838 << dex_file_->GetFieldName(field_id) << ") in "
2839 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07002840 DCHECK(Thread::Current()->IsExceptionPending());
2841 Thread::Current()->ClearException();
2842 return NULL;
Ian Rogersad0b3a32012-04-16 14:50:24 -07002843 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
2844 field->GetAccessFlags())) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002845 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access static field " << PrettyField(field)
Ian Rogersad0b3a32012-04-16 14:50:24 -07002846 << " from " << GetDeclaringClass();
Ian Rogersd81871c2011-10-03 13:57:23 -07002847 return NULL;
2848 } else if (!field->IsStatic()) {
2849 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field) << " to be static";
2850 return NULL;
2851 } else {
2852 return field;
2853 }
2854}
2855
Ian Rogers776ac1f2012-04-13 23:36:36 -07002856Field* MethodVerifier::GetInstanceField(const RegType& obj_type, int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08002857 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
2858 // Check access to class
2859 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
Ian Rogersad0b3a32012-04-16 14:50:24 -07002860 if (klass_type.IsConflict()) {
2861 AppendToLastFailMessage(StringPrintf(" in attempt to access instance field %d (%s) in %s",
2862 field_idx, dex_file_->GetFieldName(field_id),
2863 dex_file_->GetFieldDeclaringClassDescriptor(field_id)));
Ian Rogers90040192011-12-16 08:54:29 -08002864 return NULL;
2865 }
jeffhao8cd6dda2012-02-22 10:15:34 -08002866 if (klass_type.IsUnresolvedTypes()) {
Ian Rogers90040192011-12-16 08:54:29 -08002867 return NULL; // Can't resolve Class so no more to do here
2868 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002869 Field* field = Runtime::Current()->GetClassLinker()->ResolveFieldJLS(*dex_file_, field_idx,
2870 dex_cache_, class_loader_);
Ian Rogersd81871c2011-10-03 13:57:23 -07002871 if (field == NULL) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07002872 LOG(INFO) << "unable to resolve instance field " << field_idx << " ("
2873 << dex_file_->GetFieldName(field_id) << ") in "
2874 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07002875 DCHECK(Thread::Current()->IsExceptionPending());
2876 Thread::Current()->ClearException();
2877 return NULL;
Ian Rogersad0b3a32012-04-16 14:50:24 -07002878 } else if (!GetDeclaringClass().CanAccessMember(field->GetDeclaringClass(),
2879 field->GetAccessFlags())) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002880 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access instance field " << PrettyField(field)
Ian Rogersad0b3a32012-04-16 14:50:24 -07002881 << " from " << GetDeclaringClass();
Ian Rogersd81871c2011-10-03 13:57:23 -07002882 return NULL;
2883 } else if (field->IsStatic()) {
2884 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field)
2885 << " to not be static";
2886 return NULL;
2887 } else if (obj_type.IsZero()) {
2888 // Cannot infer and check type, however, access will cause null pointer exception
2889 return field;
Ian Rogerse1758fe2012-04-19 11:31:15 -07002890 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002891 const RegType& field_klass = reg_types_.FromClass(field->GetDeclaringClass());
2892 if (obj_type.IsUninitializedTypes() &&
2893 (!IsConstructor() || GetDeclaringClass().Equals(obj_type) ||
2894 !field_klass.Equals(GetDeclaringClass()))) {
2895 // Field accesses through uninitialized references are only allowable for constructors where
2896 // the field is declared in this class
2897 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "cannot access instance field " << PrettyField(field)
2898 << " of a not fully initialized object within the context of "
2899 << PrettyMethod(method_idx_, *dex_file_);
2900 return NULL;
2901 } else if (!field_klass.IsAssignableFrom(obj_type)) {
2902 // Trying to access C1.field1 using reference of type C2, which is neither C1 or a sub-class
2903 // of C1. For resolution to occur the declared class of the field must be compatible with
2904 // obj_type, we've discovered this wasn't so, so report the field didn't exist.
2905 Fail(VERIFY_ERROR_NO_FIELD) << "cannot access instance field " << PrettyField(field)
2906 << " from object of type " << obj_type;
2907 return NULL;
2908 } else {
2909 return field;
2910 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002911 }
2912}
2913
Ian Rogers776ac1f2012-04-13 23:36:36 -07002914void MethodVerifier::VerifyISGet(const DecodedInstruction& dec_insn,
Ian Rogersb94a27b2011-10-26 00:33:41 -07002915 const RegType& insn_type, bool is_primitive, bool is_static) {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002916 uint32_t field_idx = is_static ? dec_insn.vB : dec_insn.vC;
Ian Rogersb94a27b2011-10-26 00:33:41 -07002917 Field* field;
2918 if (is_static) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07002919 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07002920 } else {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002921 const RegType& object_type = work_line_->GetRegisterType(dec_insn.vB);
Ian Rogersf4028cc2011-11-02 14:56:39 -07002922 field = GetInstanceField(object_type, field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07002923 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002924 const char* descriptor;
Ian Rogers365c1022012-06-22 15:05:28 -07002925 ClassLoader* loader;
Ian Rogersad0b3a32012-04-16 14:50:24 -07002926 if (field != NULL) {
2927 descriptor = FieldHelper(field).GetTypeDescriptor();
2928 loader = field->GetDeclaringClass()->GetClassLoader();
Ian Rogersf4028cc2011-11-02 14:56:39 -07002929 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002930 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
2931 descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
2932 loader = class_loader_;
Ian Rogers0d604842012-04-16 14:50:24 -07002933 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002934 const RegType& field_type = reg_types_.FromDescriptor(loader, descriptor);
2935 if (is_primitive) {
2936 if (field_type.Equals(insn_type) ||
2937 (field_type.IsFloat() && insn_type.IsIntegralTypes()) ||
2938 (field_type.IsDouble() && insn_type.IsLongTypes())) {
2939 // expected that read is of the correct primitive type or that int reads are reading
2940 // floats or long reads are reading doubles
2941 } else {
2942 // This is a global failure rather than a class change failure as the instructions and
2943 // the descriptors for the type should have been consistent within the same file at
2944 // compile time
2945 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
2946 << " to be of type '" << insn_type
2947 << "' but found type '" << field_type << "' in get";
Ian Rogersad0b3a32012-04-16 14:50:24 -07002948 return;
2949 }
2950 } else {
2951 if (!insn_type.IsAssignableFrom(field_type)) {
2952 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
2953 << " to be compatible with type '" << insn_type
2954 << "' but found type '" << field_type
2955 << "' in get-object";
2956 work_line_->SetRegisterType(dec_insn.vA, reg_types_.Conflict());
2957 return;
2958 }
2959 }
2960 work_line_->SetRegisterType(dec_insn.vA, field_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002961}
2962
Ian Rogers776ac1f2012-04-13 23:36:36 -07002963void MethodVerifier::VerifyISPut(const DecodedInstruction& dec_insn,
Ian Rogersb94a27b2011-10-26 00:33:41 -07002964 const RegType& insn_type, bool is_primitive, bool is_static) {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002965 uint32_t field_idx = is_static ? dec_insn.vB : dec_insn.vC;
Ian Rogersb94a27b2011-10-26 00:33:41 -07002966 Field* field;
2967 if (is_static) {
Ian Rogers55d249f2011-11-02 16:48:09 -07002968 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07002969 } else {
Elliott Hughesadb8c672012-03-06 16:49:32 -08002970 const RegType& object_type = work_line_->GetRegisterType(dec_insn.vB);
Ian Rogers55d249f2011-11-02 16:48:09 -07002971 field = GetInstanceField(object_type, field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07002972 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07002973 const char* descriptor;
Ian Rogers365c1022012-06-22 15:05:28 -07002974 ClassLoader* loader;
Ian Rogersad0b3a32012-04-16 14:50:24 -07002975 if (field != NULL) {
2976 descriptor = FieldHelper(field).GetTypeDescriptor();
2977 loader = field->GetDeclaringClass()->GetClassLoader();
Ian Rogers55d249f2011-11-02 16:48:09 -07002978 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -07002979 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
2980 descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
2981 loader = class_loader_;
2982 }
2983 const RegType& field_type = reg_types_.FromDescriptor(loader, descriptor);
2984 if (field != NULL) {
2985 if (field->IsFinal() && field->GetDeclaringClass() != GetDeclaringClass().GetClass()) {
2986 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << PrettyField(field)
2987 << " from other class " << GetDeclaringClass();
2988 return;
2989 }
2990 }
2991 if (is_primitive) {
2992 // Primitive field assignability rules are weaker than regular assignability rules
2993 bool instruction_compatible;
2994 bool value_compatible;
2995 const RegType& value_type = work_line_->GetRegisterType(dec_insn.vA);
2996 if (field_type.IsIntegralTypes()) {
2997 instruction_compatible = insn_type.IsIntegralTypes();
2998 value_compatible = value_type.IsIntegralTypes();
2999 } else if (field_type.IsFloat()) {
3000 instruction_compatible = insn_type.IsInteger(); // no [is]put-float, so expect [is]put-int
3001 value_compatible = value_type.IsFloatTypes();
3002 } else if (field_type.IsLong()) {
3003 instruction_compatible = insn_type.IsLong();
3004 value_compatible = value_type.IsLongTypes();
3005 } else if (field_type.IsDouble()) {
3006 instruction_compatible = insn_type.IsLong(); // no [is]put-double, so expect [is]put-long
3007 value_compatible = value_type.IsDoubleTypes();
Ian Rogers55d249f2011-11-02 16:48:09 -07003008 } else {
Ian Rogersad0b3a32012-04-16 14:50:24 -07003009 instruction_compatible = false; // reference field with primitive store
3010 value_compatible = false; // unused
Ian Rogersd81871c2011-10-03 13:57:23 -07003011 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003012 if (!instruction_compatible) {
3013 // This is a global failure rather than a class change failure as the instructions and
3014 // the descriptors for the type should have been consistent within the same file at
3015 // compile time
3016 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "expected field " << PrettyField(field)
3017 << " to be of type '" << insn_type
3018 << "' but found type '" << field_type
3019 << "' in put";
3020 return;
Ian Rogers55d249f2011-11-02 16:48:09 -07003021 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003022 if (!value_compatible) {
3023 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected value in v" << dec_insn.vA
3024 << " of type " << value_type
3025 << " but expected " << field_type
3026 << " for store to " << PrettyField(field) << " in put";
3027 return;
Ian Rogersd81871c2011-10-03 13:57:23 -07003028 }
Ian Rogersad0b3a32012-04-16 14:50:24 -07003029 } else {
3030 if (!insn_type.IsAssignableFrom(field_type)) {
3031 Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "expected field " << PrettyField(field)
3032 << " to be compatible with type '" << insn_type
3033 << "' but found type '" << field_type
3034 << "' in put-object";
3035 return;
3036 }
3037 work_line_->VerifyRegisterType(dec_insn.vA, field_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07003038 }
3039}
3040
Ian Rogers776ac1f2012-04-13 23:36:36 -07003041bool MethodVerifier::CheckNotMoveException(const uint16_t* insns, int insn_idx) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003042 if ((insns[insn_idx] & 0xff) == Instruction::MOVE_EXCEPTION) {
jeffhaod5347e02012-03-22 17:25:05 -07003043 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid use of move-exception";
Ian Rogersd81871c2011-10-03 13:57:23 -07003044 return false;
3045 }
3046 return true;
3047}
3048
Ian Rogers776ac1f2012-04-13 23:36:36 -07003049bool MethodVerifier::UpdateRegisters(uint32_t next_insn, const RegisterLine* merge_line) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003050 bool changed = true;
3051 RegisterLine* target_line = reg_table_.GetLine(next_insn);
3052 if (!insn_flags_[next_insn].IsVisitedOrChanged()) {
jeffhaobdb76512011-09-07 11:43:16 -07003053 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003054 * We haven't processed this instruction before, and we haven't touched the registers here, so
3055 * there's nothing to "merge". Copy the registers over and mark it as changed. (This is the
3056 * only way a register can transition out of "unknown", so this is not just an optimization.)
jeffhaobdb76512011-09-07 11:43:16 -07003057 */
Ian Rogersd81871c2011-10-03 13:57:23 -07003058 target_line->CopyFromLine(merge_line);
jeffhaobdb76512011-09-07 11:43:16 -07003059 } else {
Ian Rogers7b0c5b42012-02-16 15:29:07 -08003060 UniquePtr<RegisterLine> copy(gDebugVerify ? new RegisterLine(target_line->NumRegs(), this) : NULL);
3061 if (gDebugVerify) {
3062 copy->CopyFromLine(target_line);
3063 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003064 changed = target_line->MergeRegisters(merge_line);
Ian Rogersad0b3a32012-04-16 14:50:24 -07003065 if (have_pending_hard_failure_) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003066 return false;
jeffhaobdb76512011-09-07 11:43:16 -07003067 }
Ian Rogers2c8a8572011-10-24 17:11:36 -07003068 if (gDebugVerify && changed) {
Elliott Hughes398f64b2012-03-26 18:05:48 -07003069 LogVerifyInfo() << "Merging at [" << reinterpret_cast<void*>(work_insn_idx_) << "]"
Elliott Hughesc073b072012-05-24 19:29:17 -07003070 << " to [" << reinterpret_cast<void*>(next_insn) << "]: " << "\n"
3071 << *copy.get() << " MERGE\n"
3072 << *merge_line << " ==\n"
3073 << *target_line << "\n";
jeffhaobdb76512011-09-07 11:43:16 -07003074 }
3075 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003076 if (changed) {
3077 insn_flags_[next_insn].SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07003078 }
3079 return true;
3080}
3081
Ian Rogers776ac1f2012-04-13 23:36:36 -07003082InsnFlags* MethodVerifier::CurrentInsnFlags() {
3083 return &insn_flags_[work_insn_idx_];
3084}
3085
Ian Rogersad0b3a32012-04-16 14:50:24 -07003086const RegType& MethodVerifier::GetMethodReturnType() {
3087 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx_);
3088 const DexFile::ProtoId& proto_id = dex_file_->GetMethodPrototype(method_id);
3089 uint16_t return_type_idx = proto_id.return_type_idx_;
3090 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(return_type_idx));
3091 return reg_types_.FromDescriptor(class_loader_, descriptor);
3092}
3093
3094const RegType& MethodVerifier::GetDeclaringClass() {
3095 if (foo_method_ != NULL) {
3096 return reg_types_.FromClass(foo_method_->GetDeclaringClass());
3097 } else {
3098 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx_);
3099 const char* descriptor = dex_file_->GetTypeDescriptor(dex_file_->GetTypeId(method_id.class_idx_));
3100 return reg_types_.FromDescriptor(class_loader_, descriptor);
3101 }
3102}
3103
Ian Rogers776ac1f2012-04-13 23:36:36 -07003104void MethodVerifier::ComputeGcMapSizes(size_t* gc_points, size_t* ref_bitmap_bits,
Ian Rogersd81871c2011-10-03 13:57:23 -07003105 size_t* log2_max_gc_pc) {
3106 size_t local_gc_points = 0;
3107 size_t max_insn = 0;
3108 size_t max_ref_reg = -1;
3109 for (size_t i = 0; i < code_item_->insns_size_in_code_units_; i++) {
3110 if (insn_flags_[i].IsGcPoint()) {
3111 local_gc_points++;
3112 max_insn = i;
3113 RegisterLine* line = reg_table_.GetLine(i);
Ian Rogers84fa0742011-10-25 18:13:30 -07003114 max_ref_reg = line->GetMaxNonZeroReferenceReg(max_ref_reg);
jeffhaobdb76512011-09-07 11:43:16 -07003115 }
3116 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003117 *gc_points = local_gc_points;
3118 *ref_bitmap_bits = max_ref_reg + 1; // if max register is 0 we need 1 bit to encode (ie +1)
3119 size_t i = 0;
Ian Rogers6b0870d2011-12-15 19:38:12 -08003120 while ((1U << i) <= max_insn) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003121 i++;
3122 }
3123 *log2_max_gc_pc = i;
jeffhaobdb76512011-09-07 11:43:16 -07003124}
3125
Ian Rogers776ac1f2012-04-13 23:36:36 -07003126const std::vector<uint8_t>* MethodVerifier::GenerateGcMap() {
Ian Rogersd81871c2011-10-03 13:57:23 -07003127 size_t num_entries, ref_bitmap_bits, pc_bits;
3128 ComputeGcMapSizes(&num_entries, &ref_bitmap_bits, &pc_bits);
3129 // There's a single byte to encode the size of each bitmap
jeffhao60f83e32012-02-13 17:16:30 -08003130 if (ref_bitmap_bits >= (8 /* bits per byte */ * 8192 /* 13-bit size */ )) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003131 // TODO: either a better GC map format or per method failures
jeffhaod5347e02012-03-22 17:25:05 -07003132 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot encode GC map for method with "
Ian Rogersd81871c2011-10-03 13:57:23 -07003133 << ref_bitmap_bits << " registers";
jeffhaobdb76512011-09-07 11:43:16 -07003134 return NULL;
3135 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003136 size_t ref_bitmap_bytes = (ref_bitmap_bits + 7) / 8;
3137 // There are 2 bytes to encode the number of entries
3138 if (num_entries >= 65536) {
3139 // TODO: either a better GC map format or per method failures
jeffhaod5347e02012-03-22 17:25:05 -07003140 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot encode GC map for method with "
Ian Rogersd81871c2011-10-03 13:57:23 -07003141 << num_entries << " entries";
jeffhaobdb76512011-09-07 11:43:16 -07003142 return NULL;
3143 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003144 size_t pc_bytes;
jeffhaod1f0fde2011-09-08 17:25:33 -07003145 RegisterMapFormat format;
Ian Rogers6b0870d2011-12-15 19:38:12 -08003146 if (pc_bits <= 8) {
jeffhaod1f0fde2011-09-08 17:25:33 -07003147 format = kRegMapFormatCompact8;
Ian Rogersd81871c2011-10-03 13:57:23 -07003148 pc_bytes = 1;
Ian Rogers6b0870d2011-12-15 19:38:12 -08003149 } else if (pc_bits <= 16) {
jeffhaod1f0fde2011-09-08 17:25:33 -07003150 format = kRegMapFormatCompact16;
Ian Rogersd81871c2011-10-03 13:57:23 -07003151 pc_bytes = 2;
jeffhaoa0a764a2011-09-16 10:43:38 -07003152 } else {
Ian Rogersd81871c2011-10-03 13:57:23 -07003153 // TODO: either a better GC map format or per method failures
jeffhaod5347e02012-03-22 17:25:05 -07003154 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot encode GC map for method with "
Ian Rogersd81871c2011-10-03 13:57:23 -07003155 << (1 << pc_bits) << " instructions (number is rounded up to nearest power of 2)";
3156 return NULL;
3157 }
Elliott Hughesb25c3f62012-03-26 16:35:06 -07003158 size_t table_size = ((pc_bytes + ref_bitmap_bytes) * num_entries) + 4;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003159 std::vector<uint8_t>* table = new std::vector<uint8_t>;
Ian Rogersd81871c2011-10-03 13:57:23 -07003160 if (table == NULL) {
jeffhaod5347e02012-03-22 17:25:05 -07003161 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Failed to encode GC map (size=" << table_size << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07003162 return NULL;
3163 }
3164 // Write table header
Ian Rogers46c6bb22012-09-18 13:47:36 -07003165 table->push_back(format | ((ref_bitmap_bytes >> DexPcToReferenceMap::kRegMapFormatShift) &
3166 ~DexPcToReferenceMap::kRegMapFormatMask));
jeffhao60f83e32012-02-13 17:16:30 -08003167 table->push_back(ref_bitmap_bytes & 0xFF);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003168 table->push_back(num_entries & 0xFF);
3169 table->push_back((num_entries >> 8) & 0xFF);
Ian Rogersd81871c2011-10-03 13:57:23 -07003170 // Write table data
Ian Rogersd81871c2011-10-03 13:57:23 -07003171 for (size_t i = 0; i < code_item_->insns_size_in_code_units_; i++) {
3172 if (insn_flags_[i].IsGcPoint()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003173 table->push_back(i & 0xFF);
Ian Rogersd81871c2011-10-03 13:57:23 -07003174 if (pc_bytes == 2) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003175 table->push_back((i >> 8) & 0xFF);
Ian Rogersd81871c2011-10-03 13:57:23 -07003176 }
3177 RegisterLine* line = reg_table_.GetLine(i);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003178 line->WriteReferenceBitMap(*table, ref_bitmap_bytes);
Ian Rogersd81871c2011-10-03 13:57:23 -07003179 }
3180 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003181 DCHECK_EQ(table->size(), table_size);
Ian Rogersd81871c2011-10-03 13:57:23 -07003182 return table;
3183}
jeffhaoa0a764a2011-09-16 10:43:38 -07003184
Ian Rogers776ac1f2012-04-13 23:36:36 -07003185void MethodVerifier::VerifyGcMap(const std::vector<uint8_t>& data) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003186 // Check that for every GC point there is a map entry, there aren't entries for non-GC points,
3187 // that the table data is well formed and all references are marked (or not) in the bitmap
Ian Rogers46c6bb22012-09-18 13:47:36 -07003188 DexPcToReferenceMap map(&data[0], data.size());
Ian Rogersd81871c2011-10-03 13:57:23 -07003189 size_t map_index = 0;
Elliott Hughesb25c3f62012-03-26 16:35:06 -07003190 for (size_t i = 0; i < code_item_->insns_size_in_code_units_; i++) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003191 const uint8_t* reg_bitmap = map.FindBitMap(i, false);
3192 if (insn_flags_[i].IsGcPoint()) {
3193 CHECK_LT(map_index, map.NumEntries());
Ian Rogers46c6bb22012-09-18 13:47:36 -07003194 CHECK_EQ(map.GetDexPc(map_index), i);
Ian Rogersd81871c2011-10-03 13:57:23 -07003195 CHECK_EQ(map.GetBitMap(map_index), reg_bitmap);
3196 map_index++;
3197 RegisterLine* line = reg_table_.GetLine(i);
Elliott Hughesb25c3f62012-03-26 16:35:06 -07003198 for (size_t j = 0; j < code_item_->registers_size_; j++) {
Ian Rogers84fa0742011-10-25 18:13:30 -07003199 if (line->GetRegisterType(j).IsNonZeroReferenceTypes()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003200 CHECK_LT(j / 8, map.RegWidth());
3201 CHECK_EQ((reg_bitmap[j / 8] >> (j % 8)) & 1, 1);
3202 } else if ((j / 8) < map.RegWidth()) {
3203 CHECK_EQ((reg_bitmap[j / 8] >> (j % 8)) & 1, 0);
3204 } else {
3205 // If a register doesn't contain a reference then the bitmap may be shorter than the line
3206 }
3207 }
3208 } else {
3209 CHECK(reg_bitmap == NULL);
3210 }
3211 }
3212}
jeffhaoa0a764a2011-09-16 10:43:38 -07003213
Ian Rogers0c7abda2012-09-19 13:33:42 -07003214void MethodVerifier::SetDexGcMap(Compiler::MethodReference ref, const std::vector<uint8_t>& gc_map) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003215 {
Ian Rogers0c7abda2012-09-19 13:33:42 -07003216 MutexLock mu(*dex_gc_maps_lock_);
3217 DexGcMapTable::iterator it = dex_gc_maps_->find(ref);
3218 if (it != dex_gc_maps_->end()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003219 delete it->second;
Ian Rogers0c7abda2012-09-19 13:33:42 -07003220 dex_gc_maps_->erase(it);
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003221 }
Ian Rogers0c7abda2012-09-19 13:33:42 -07003222 dex_gc_maps_->Put(ref, &gc_map);
Brian Carlstrom73a15f42012-01-17 18:14:39 -08003223 }
Ian Rogers0c7abda2012-09-19 13:33:42 -07003224 CHECK(GetDexGcMap(ref) != NULL);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003225}
3226
Ian Rogers0c7abda2012-09-19 13:33:42 -07003227const std::vector<uint8_t>* MethodVerifier::GetDexGcMap(Compiler::MethodReference ref) {
3228 MutexLock mu(*dex_gc_maps_lock_);
3229 DexGcMapTable::const_iterator it = dex_gc_maps_->find(ref);
3230 if (it == dex_gc_maps_->end()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003231 return NULL;
3232 }
3233 CHECK(it->second != NULL);
3234 return it->second;
3235}
3236
Ian Rogers0c7abda2012-09-19 13:33:42 -07003237Mutex* MethodVerifier::dex_gc_maps_lock_ = NULL;
3238MethodVerifier::DexGcMapTable* MethodVerifier::dex_gc_maps_ = NULL;
Elliott Hughes0a1038b2012-06-14 16:24:17 -07003239
3240Mutex* MethodVerifier::rejected_classes_lock_ = NULL;
3241MethodVerifier::RejectedClassesTable* MethodVerifier::rejected_classes_ = NULL;
3242
3243#if defined(ART_USE_LLVM_COMPILER) || defined(ART_USE_GREENLAND_COMPILER)
3244Mutex* MethodVerifier::inferred_reg_category_maps_lock_ = NULL;
3245MethodVerifier::InferredRegCategoryMapTable* MethodVerifier::inferred_reg_category_maps_ = NULL;
3246#endif
3247
3248void MethodVerifier::Init() {
Ian Rogers0c7abda2012-09-19 13:33:42 -07003249 dex_gc_maps_lock_ = new Mutex("verifier GC maps lock");
Elliott Hughes0a1038b2012-06-14 16:24:17 -07003250 {
Ian Rogers0c7abda2012-09-19 13:33:42 -07003251 MutexLock mu(*dex_gc_maps_lock_);
3252 dex_gc_maps_ = new MethodVerifier::DexGcMapTable;
Elliott Hughes0a1038b2012-06-14 16:24:17 -07003253 }
3254
3255 rejected_classes_lock_ = new Mutex("verifier rejected classes lock");
3256 {
3257 MutexLock mu(*rejected_classes_lock_);
3258 rejected_classes_ = new MethodVerifier::RejectedClassesTable;
3259 }
3260
3261#if defined(ART_USE_LLVM_COMPILER) || defined(ART_USE_GREENLAND_COMPILER)
3262 inferred_reg_category_maps_lock_ = new Mutex("verifier GC maps lock");
3263 {
3264 MutexLock mu(*inferred_reg_category_maps_lock_);
3265 inferred_reg_category_maps_ = new MethodVerifier::InferredRegCategoryMapTable;
3266 }
3267#endif
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003268}
3269
Elliott Hughes0a1038b2012-06-14 16:24:17 -07003270void MethodVerifier::Shutdown() {
3271 {
Ian Rogers0c7abda2012-09-19 13:33:42 -07003272 MutexLock mu(*dex_gc_maps_lock_);
3273 STLDeleteValues(dex_gc_maps_);
3274 delete dex_gc_maps_;
3275 dex_gc_maps_ = NULL;
Elliott Hughes0a1038b2012-06-14 16:24:17 -07003276 }
Ian Rogers0c7abda2012-09-19 13:33:42 -07003277 delete dex_gc_maps_lock_;
3278 dex_gc_maps_lock_ = NULL;
Elliott Hughes0a1038b2012-06-14 16:24:17 -07003279
3280 {
3281 MutexLock mu(*rejected_classes_lock_);
3282 delete rejected_classes_;
3283 rejected_classes_ = NULL;
3284 }
3285 delete rejected_classes_lock_;
3286 rejected_classes_lock_ = NULL;
3287
3288#if defined(ART_USE_LLVM_COMPILER) || defined(ART_USE_GREENLAND_COMPILER)
3289 {
3290 MutexLock mu(*inferred_reg_category_maps_lock_);
3291 STLDeleteValues(inferred_reg_category_maps_);
3292 delete inferred_reg_category_maps_;
3293 inferred_reg_category_maps_ = NULL;
3294 }
3295 delete inferred_reg_category_maps_lock_;
3296 inferred_reg_category_maps_lock_ = NULL;
3297#endif
Elliott Hughesb3bd5f02012-03-08 21:05:27 -08003298}
jeffhaod1224c72012-02-29 13:43:08 -08003299
Ian Rogers776ac1f2012-04-13 23:36:36 -07003300void MethodVerifier::AddRejectedClass(Compiler::ClassReference ref) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -07003301 {
3302 MutexLock mu(*rejected_classes_lock_);
3303 rejected_classes_->insert(ref);
3304 }
jeffhaod1224c72012-02-29 13:43:08 -08003305 CHECK(IsClassRejected(ref));
3306}
3307
Ian Rogers776ac1f2012-04-13 23:36:36 -07003308bool MethodVerifier::IsClassRejected(Compiler::ClassReference ref) {
Elliott Hughes0a1038b2012-06-14 16:24:17 -07003309 MutexLock mu(*rejected_classes_lock_);
3310 return (rejected_classes_->find(ref) != rejected_classes_->end());
jeffhaod1224c72012-02-29 13:43:08 -08003311}
3312
Shih-wei Liaoe94d9b22012-05-22 09:01:24 -07003313#if defined(ART_USE_LLVM_COMPILER) || defined(ART_USE_GREENLAND_COMPILER)
TDYa12789f96052012-07-12 20:49:53 -07003314const greenland::InferredRegCategoryMap* MethodVerifier::GenerateInferredRegCategoryMap() {
Logan Chienfca7e872011-12-20 20:08:22 +08003315 uint32_t insns_size = code_item_->insns_size_in_code_units_;
3316 uint16_t regs_size = code_item_->registers_size_;
3317
Shih-wei Liao21d28f52012-06-12 05:55:00 -07003318 UniquePtr<InferredRegCategoryMap> table(new InferredRegCategoryMap(insns_size, regs_size));
Logan Chienfca7e872011-12-20 20:08:22 +08003319
3320 for (size_t i = 0; i < insns_size; ++i) {
3321 if (RegisterLine* line = reg_table_.GetLine(i)) {
TDYa127526643e2012-05-26 01:01:48 -07003322 const Instruction* inst = Instruction::At(code_item_->insns_ + i);
3323
3324 // GC points
3325 if (inst->IsBranch() || inst->IsInvoke()) {
3326 for (size_t r = 0; r < regs_size; ++r) {
3327 const RegType &rt = line->GetRegisterType(r);
3328 if (rt.IsNonZeroReferenceTypes()) {
3329 table->SetRegCanBeObject(r);
3330 }
TDYa127b2eb5c12012-05-24 15:52:10 -07003331 }
3332 }
3333
TDYa127526643e2012-05-26 01:01:48 -07003334 /* We only use InferredRegCategoryMap in one case */
3335 if (inst->IsBranch()) {
TDYa127b2eb5c12012-05-24 15:52:10 -07003336 for (size_t r = 0; r < regs_size; ++r) {
3337 const RegType &rt = line->GetRegisterType(r);
3338
3339 if (rt.IsZero()) {
TDYa12789f96052012-07-12 20:49:53 -07003340 table->SetRegCategory(i, r, greenland::kRegZero);
TDYa127b2eb5c12012-05-24 15:52:10 -07003341 } else if (rt.IsCategory1Types()) {
TDYa12789f96052012-07-12 20:49:53 -07003342 table->SetRegCategory(i, r, greenland::kRegCat1nr);
TDYa127b2eb5c12012-05-24 15:52:10 -07003343 } else if (rt.IsCategory2Types()) {
TDYa12789f96052012-07-12 20:49:53 -07003344 table->SetRegCategory(i, r, greenland::kRegCat2);
TDYa127b2eb5c12012-05-24 15:52:10 -07003345 } else if (rt.IsReferenceTypes()) {
TDYa12789f96052012-07-12 20:49:53 -07003346 table->SetRegCategory(i, r, greenland::kRegObject);
TDYa127b2eb5c12012-05-24 15:52:10 -07003347 } else {
TDYa12789f96052012-07-12 20:49:53 -07003348 table->SetRegCategory(i, r, greenland::kRegUnknown);
TDYa127b2eb5c12012-05-24 15:52:10 -07003349 }
Logan Chienfca7e872011-12-20 20:08:22 +08003350 }
3351 }
3352 }
3353 }
3354
3355 return table.release();
3356}
Logan Chiendd361c92012-04-10 23:40:37 +08003357
Ian Rogers776ac1f2012-04-13 23:36:36 -07003358void MethodVerifier::SetInferredRegCategoryMap(Compiler::MethodReference ref,
3359 const InferredRegCategoryMap& inferred_reg_category_map) {
Shih-wei Liaocd05a622012-08-15 00:02:05 -07003360 {
3361 MutexLock mu(*inferred_reg_category_maps_lock_);
3362 InferredRegCategoryMapTable::iterator it = inferred_reg_category_maps_->find(ref);
3363 if (it == inferred_reg_category_maps_->end()) {
3364 inferred_reg_category_maps_->Put(ref, &inferred_reg_category_map);
3365 } else {
3366 CHECK(*(it->second) == inferred_reg_category_map);
3367 delete &inferred_reg_category_map;
3368 }
Logan Chiendd361c92012-04-10 23:40:37 +08003369 }
Logan Chiendd361c92012-04-10 23:40:37 +08003370 CHECK(GetInferredRegCategoryMap(ref) != NULL);
3371}
3372
TDYa12789f96052012-07-12 20:49:53 -07003373const greenland::InferredRegCategoryMap*
Ian Rogers776ac1f2012-04-13 23:36:36 -07003374MethodVerifier::GetInferredRegCategoryMap(Compiler::MethodReference ref) {
Logan Chiendd361c92012-04-10 23:40:37 +08003375 MutexLock mu(*inferred_reg_category_maps_lock_);
3376
3377 InferredRegCategoryMapTable::const_iterator it =
3378 inferred_reg_category_maps_->find(ref);
3379
3380 if (it == inferred_reg_category_maps_->end()) {
3381 return NULL;
3382 }
3383 CHECK(it->second != NULL);
3384 return it->second;
3385}
Logan Chienfca7e872011-12-20 20:08:22 +08003386#endif
3387
Ian Rogersd81871c2011-10-03 13:57:23 -07003388} // namespace verifier
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003389} // namespace art