blob: 0fcaabd7259ee3feeec2c03e4ee03fc553908cdb [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
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "dex_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"
jeffhaobdb76512011-09-07 11:43:16 -070027#include "dex_verifier.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
35namespace art {
Ian Rogersd81871c2011-10-03 13:57:23 -070036namespace verifier {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070037
Ian Rogers2c8a8572011-10-24 17:11:36 -070038static const bool gDebugVerify = false;
39
Ian Rogersd81871c2011-10-03 13:57:23 -070040std::ostream& operator<<(std::ostream& os, const VerifyError& rhs) {
Brian Carlstrom75412882012-01-18 01:26:54 -080041 switch (rhs) {
42 case VERIFY_ERROR_NONE: os << "VERIFY_ERROR_NONE"; break;
43 case VERIFY_ERROR_GENERIC: os << "VERIFY_ERROR_GENERIC"; break;
44 case VERIFY_ERROR_NO_CLASS: os << "VERIFY_ERROR_NO_CLASS"; break;
45 case VERIFY_ERROR_NO_FIELD: os << "VERIFY_ERROR_NO_FIELD"; break;
46 case VERIFY_ERROR_NO_METHOD: os << "VERIFY_ERROR_NO_METHOD"; break;
47 case VERIFY_ERROR_ACCESS_CLASS: os << "VERIFY_ERROR_ACCESS_CLASS"; break;
48 case VERIFY_ERROR_ACCESS_FIELD: os << "VERIFY_ERROR_ACCESS_FIELD"; break;
49 case VERIFY_ERROR_ACCESS_METHOD: os << "VERIFY_ERROR_ACCESS_METHOD"; break;
50 case VERIFY_ERROR_CLASS_CHANGE: os << "VERIFY_ERROR_CLASS_CHANGE"; break;
51 case VERIFY_ERROR_INSTANTIATION: os << "VERIFY_ERROR_INSTANTIATION"; break;
52 default:
53 os << "VerifyError[" << static_cast<int>(rhs) << "]";
54 break;
55 }
56 return os;
Ian Rogersd81871c2011-10-03 13:57:23 -070057}
jeffhaobdb76512011-09-07 11:43:16 -070058
Ian Rogers84fa0742011-10-25 18:13:30 -070059static const char* type_strings[] = {
60 "Unknown",
61 "Conflict",
62 "Boolean",
63 "Byte",
64 "Short",
65 "Char",
66 "Integer",
67 "Float",
68 "Long (Low Half)",
69 "Long (High Half)",
70 "Double (Low Half)",
71 "Double (High Half)",
72 "64-bit Constant (Low Half)",
73 "64-bit Constant (High Half)",
74 "32-bit Constant",
75 "Unresolved Reference",
76 "Uninitialized Reference",
77 "Uninitialized This Reference",
Ian Rogers28ad40d2011-10-27 15:19:26 -070078 "Unresolved And Uninitialized Reference",
Ian Rogers84fa0742011-10-25 18:13:30 -070079 "Reference",
80};
Ian Rogersd81871c2011-10-03 13:57:23 -070081
Ian Rogers2c8a8572011-10-24 17:11:36 -070082std::string RegType::Dump() const {
Ian Rogers84fa0742011-10-25 18:13:30 -070083 DCHECK(type_ >= kRegTypeUnknown && type_ <= kRegTypeReference);
84 std::string result;
85 if (IsConstant()) {
86 uint32_t val = ConstantValue();
87 if (val == 0) {
88 result = "Zero";
Ian Rogersd81871c2011-10-03 13:57:23 -070089 } else {
Ian Rogers84fa0742011-10-25 18:13:30 -070090 if(IsConstantShort()) {
91 result = StringPrintf("32-bit Constant: %d", val);
92 } else {
93 result = StringPrintf("32-bit Constant: 0x%x", val);
94 }
95 }
96 } else {
97 result = type_strings[type_];
98 if (IsReferenceTypes()) {
99 result += ": ";
Ian Rogers28ad40d2011-10-27 15:19:26 -0700100 if (IsUnresolvedTypes()) {
Ian Rogers84fa0742011-10-25 18:13:30 -0700101 result += PrettyDescriptor(GetDescriptor());
102 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800103 result += PrettyDescriptor(GetClass());
Ian Rogers84fa0742011-10-25 18:13:30 -0700104 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700105 }
106 }
Ian Rogers84fa0742011-10-25 18:13:30 -0700107 return result;
Ian Rogersd81871c2011-10-03 13:57:23 -0700108}
109
110const RegType& RegType::HighHalf(RegTypeCache* cache) const {
111 CHECK(IsLowHalf());
112 if (type_ == kRegTypeLongLo) {
113 return cache->FromType(kRegTypeLongHi);
114 } else if (type_ == kRegTypeDoubleLo) {
115 return cache->FromType(kRegTypeDoubleHi);
116 } else {
117 return cache->FromType(kRegTypeConstHi);
118 }
119}
120
121/*
122 * A basic Join operation on classes. For a pair of types S and T the Join, written S v T = J, is
123 * S <: J, T <: J and for-all U such that S <: U, T <: U then J <: U. That is J is the parent of
124 * S and T such that there isn't a parent of both S and T that isn't also the parent of J (ie J
125 * is the deepest (lowest upper bound) parent of S and T).
126 *
127 * This operation applies for regular classes and arrays, however, for interface types there needn't
128 * be a partial ordering on the types. We could solve the problem of a lack of a partial order by
129 * introducing sets of types, however, the only operation permissible on an interface is
130 * invoke-interface. In the tradition of Java verifiers we defer the verification of interface
131 * types until an invoke-interface call on the interface typed reference at runtime and allow
Ian Rogers5ed29bf2011-10-26 12:22:21 -0700132 * the perversion of any Object being assignable to an interface type (note, however, that we don't
133 * allow assignment of Object or Interface to any concrete subclass of Object and are therefore type
134 * safe; further the Join on a Object cannot result in a sub-class by definition).
Ian Rogersd81871c2011-10-03 13:57:23 -0700135 */
136Class* RegType::ClassJoin(Class* s, Class* t) {
137 DCHECK(!s->IsPrimitive()) << PrettyClass(s);
138 DCHECK(!t->IsPrimitive()) << PrettyClass(t);
139 if (s == t) {
140 return s;
141 } else if (s->IsAssignableFrom(t)) {
142 return s;
143 } else if (t->IsAssignableFrom(s)) {
144 return t;
145 } else if (s->IsArrayClass() && t->IsArrayClass()) {
146 Class* s_ct = s->GetComponentType();
147 Class* t_ct = t->GetComponentType();
148 if (s_ct->IsPrimitive() || t_ct->IsPrimitive()) {
149 // Given the types aren't the same, if either array is of primitive types then the only
150 // common parent is java.lang.Object
151 Class* result = s->GetSuperClass(); // short-cut to java.lang.Object
152 DCHECK(result->IsObjectClass());
153 return result;
154 }
155 Class* common_elem = ClassJoin(s_ct, t_ct);
156 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
157 const ClassLoader* class_loader = s->GetClassLoader();
Elliott Hughes95572412011-12-13 18:14:20 -0800158 std::string descriptor("[");
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800159 descriptor += ClassHelper(common_elem).GetDescriptor();
Ian Rogersd81871c2011-10-03 13:57:23 -0700160 Class* array_class = class_linker->FindClass(descriptor.c_str(), class_loader);
161 DCHECK(array_class != NULL);
162 return array_class;
163 } else {
164 size_t s_depth = s->Depth();
165 size_t t_depth = t->Depth();
166 // Get s and t to the same depth in the hierarchy
167 if (s_depth > t_depth) {
168 while (s_depth > t_depth) {
169 s = s->GetSuperClass();
170 s_depth--;
171 }
172 } else {
173 while (t_depth > s_depth) {
174 t = t->GetSuperClass();
175 t_depth--;
176 }
177 }
178 // Go up the hierarchy until we get to the common parent
179 while (s != t) {
180 s = s->GetSuperClass();
181 t = t->GetSuperClass();
182 }
183 return s;
184 }
185}
186
Ian Rogersb5e95b92011-10-25 23:28:55 -0700187bool RegType::IsAssignableFrom(const RegType& src) const {
188 if (Equals(src)) {
189 return true;
Ian Rogersd81871c2011-10-03 13:57:23 -0700190 } else {
Ian Rogersb5e95b92011-10-25 23:28:55 -0700191 switch (GetType()) {
Ian Rogers9074b992011-10-26 17:41:55 -0700192 case RegType::kRegTypeBoolean: return src.IsBooleanTypes();
193 case RegType::kRegTypeByte: return src.IsByteTypes();
194 case RegType::kRegTypeShort: return src.IsShortTypes();
195 case RegType::kRegTypeChar: return src.IsCharTypes();
196 case RegType::kRegTypeInteger: return src.IsIntegralTypes();
197 case RegType::kRegTypeFloat: return src.IsFloatTypes();
198 case RegType::kRegTypeLongLo: return src.IsLongTypes();
199 case RegType::kRegTypeDoubleLo: return src.IsDoubleTypes();
Ian Rogers84fa0742011-10-25 18:13:30 -0700200 default:
Ian Rogersb5e95b92011-10-25 23:28:55 -0700201 if (!IsReferenceTypes()) {
202 LOG(FATAL) << "Unexpected register type in IsAssignableFrom: '" << src << "'";
Ian Rogers84fa0742011-10-25 18:13:30 -0700203 }
Ian Rogersb5e95b92011-10-25 23:28:55 -0700204 if (src.IsZero()) {
Ian Rogers9074b992011-10-26 17:41:55 -0700205 return true; // all reference types can be assigned null
206 } else if (!src.IsReferenceTypes()) {
207 return false; // expect src to be a reference type
208 } else if (IsJavaLangObject()) {
209 return true; // all reference types can be assigned to Object
210 } else if (!IsUnresolvedTypes() && GetClass()->IsInterface()) {
Ian Rogers5ed29bf2011-10-26 12:22:21 -0700211 return true; // We allow assignment to any interface, see comment in ClassJoin
Ian Rogers5d86e522012-02-01 11:45:24 -0800212 } else if (IsJavaLangObjectArray()) {
Ian Rogers89310de2012-02-01 13:47:30 -0800213 return src.IsObjectArrayTypes(); // All reference arrays may be assigned to Object[]
Ian Rogers9074b992011-10-26 17:41:55 -0700214 } else if (!IsUnresolvedTypes() && !src.IsUnresolvedTypes() &&
Ian Rogers5ed29bf2011-10-26 12:22:21 -0700215 GetClass()->IsAssignableFrom(src.GetClass())) {
216 // We're assignable from the Class point-of-view
Ian Rogersb5e95b92011-10-25 23:28:55 -0700217 return true;
Ian Rogersd81871c2011-10-03 13:57:23 -0700218 } else {
Ian Rogersb5e95b92011-10-25 23:28:55 -0700219 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -0700220 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700221 }
222 }
223}
224
Ian Rogers84fa0742011-10-25 18:13:30 -0700225static const RegType& SelectNonConstant(const RegType& a, const RegType& b) {
226 return a.IsConstant() ? b : a;
227}
jeffhaobdb76512011-09-07 11:43:16 -0700228
Ian Rogersd81871c2011-10-03 13:57:23 -0700229const RegType& RegType::Merge(const RegType& incoming_type, RegTypeCache* reg_types) const {
230 DCHECK(!Equals(incoming_type)); // Trivial equality handled by caller
Ian Rogers84fa0742011-10-25 18:13:30 -0700231 if (IsUnknown() && incoming_type.IsUnknown()) {
232 return *this; // Unknown MERGE Unknown => Unknown
233 } else if (IsConflict()) {
234 return *this; // Conflict MERGE * => Conflict
235 } else if (incoming_type.IsConflict()) {
236 return incoming_type; // * MERGE Conflict => Conflict
237 } else if (IsUnknown() || incoming_type.IsUnknown()) {
238 return reg_types->Conflict(); // Unknown MERGE * => Conflict
239 } else if(IsConstant() && incoming_type.IsConstant()) {
240 int32_t val1 = ConstantValue();
241 int32_t val2 = incoming_type.ConstantValue();
242 if (val1 >= 0 && val2 >= 0) {
243 // +ve1 MERGE +ve2 => MAX(+ve1, +ve2)
244 if (val1 >= val2) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700245 return *this;
Ian Rogers84fa0742011-10-25 18:13:30 -0700246 } else {
247 return incoming_type;
248 }
249 } else if (val1 < 0 && val2 < 0) {
250 // -ve1 MERGE -ve2 => MIN(-ve1, -ve2)
251 if (val1 <= val2) {
252 return *this;
253 } else {
254 return incoming_type;
255 }
256 } else {
257 // Values are +ve and -ve, choose smallest signed type in which they both fit
258 if (IsConstantByte()) {
259 if (incoming_type.IsConstantByte()) {
260 return reg_types->ByteConstant();
261 } else if (incoming_type.IsConstantShort()) {
262 return reg_types->ShortConstant();
263 } else {
264 return reg_types->IntConstant();
265 }
266 } else if (IsConstantShort()) {
Ian Rogers1592bc72011-10-27 20:08:53 -0700267 if (incoming_type.IsConstantShort()) {
Ian Rogers84fa0742011-10-25 18:13:30 -0700268 return reg_types->ShortConstant();
269 } else {
270 return reg_types->IntConstant();
271 }
272 } else {
273 return reg_types->IntConstant();
274 }
275 }
276 } else if (IsIntegralTypes() && incoming_type.IsIntegralTypes()) {
277 if (IsBooleanTypes() && incoming_type.IsBooleanTypes()) {
278 return reg_types->Boolean(); // boolean MERGE boolean => boolean
279 }
280 if (IsByteTypes() && incoming_type.IsByteTypes()) {
281 return reg_types->Byte(); // byte MERGE byte => byte
282 }
283 if (IsShortTypes() && incoming_type.IsShortTypes()) {
284 return reg_types->Short(); // short MERGE short => short
285 }
286 if (IsCharTypes() && incoming_type.IsCharTypes()) {
287 return reg_types->Char(); // char MERGE char => char
288 }
289 return reg_types->Integer(); // int MERGE * => int
290 } else if ((IsFloatTypes() && incoming_type.IsFloatTypes()) ||
291 (IsLongTypes() && incoming_type.IsLongTypes()) ||
292 (IsLongHighTypes() && incoming_type.IsLongHighTypes()) ||
293 (IsDoubleTypes() && incoming_type.IsDoubleTypes()) ||
294 (IsDoubleHighTypes() && incoming_type.IsDoubleHighTypes())) {
295 // check constant case was handled prior to entry
296 DCHECK(!IsConstant() || !incoming_type.IsConstant());
297 // float/long/double MERGE float/long/double_constant => float/long/double
298 return SelectNonConstant(*this, incoming_type);
299 } else if (IsReferenceTypes() && incoming_type.IsReferenceTypes()) {
Ian Rogers9074b992011-10-26 17:41:55 -0700300 if (IsZero() || incoming_type.IsZero()) {
Ian Rogers84fa0742011-10-25 18:13:30 -0700301 return SelectNonConstant(*this, incoming_type); // 0 MERGE ref => ref
Ian Rogers9074b992011-10-26 17:41:55 -0700302 } else if (IsJavaLangObject() || incoming_type.IsJavaLangObject()) {
303 return reg_types->JavaLangObject(); // Object MERGE ref => Object
304 } else if (IsUninitializedTypes() || incoming_type.IsUninitializedTypes() ||
305 IsUnresolvedTypes() || incoming_type.IsUnresolvedTypes()) {
306 // Can only merge an unresolved or uninitialized type with itself, 0 or Object, we've already
307 // checked these so => Conflict
Ian Rogers84fa0742011-10-25 18:13:30 -0700308 return reg_types->Conflict();
309 } else { // Two reference types, compute Join
310 Class* c1 = GetClass();
311 Class* c2 = incoming_type.GetClass();
312 DCHECK(c1 != NULL && !c1->IsPrimitive());
313 DCHECK(c2 != NULL && !c2->IsPrimitive());
314 Class* join_class = ClassJoin(c1, c2);
315 if (c1 == join_class) {
316 return *this;
317 } else if (c2 == join_class) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700318 return incoming_type;
319 } else {
Ian Rogers84fa0742011-10-25 18:13:30 -0700320 return reg_types->FromClass(join_class);
Ian Rogersd81871c2011-10-03 13:57:23 -0700321 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700322 }
Ian Rogers84fa0742011-10-25 18:13:30 -0700323 } else {
324 return reg_types->Conflict(); // Unexpected types => Conflict
Ian Rogersd81871c2011-10-03 13:57:23 -0700325 }
326}
327
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700328static RegType::Type RegTypeFromPrimitiveType(Primitive::Type prim_type) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700329 switch (prim_type) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700330 case Primitive::kPrimBoolean: return RegType::kRegTypeBoolean;
331 case Primitive::kPrimByte: return RegType::kRegTypeByte;
332 case Primitive::kPrimShort: return RegType::kRegTypeShort;
333 case Primitive::kPrimChar: return RegType::kRegTypeChar;
334 case Primitive::kPrimInt: return RegType::kRegTypeInteger;
335 case Primitive::kPrimLong: return RegType::kRegTypeLongLo;
336 case Primitive::kPrimFloat: return RegType::kRegTypeFloat;
337 case Primitive::kPrimDouble: return RegType::kRegTypeDoubleLo;
338 case Primitive::kPrimVoid:
339 default: return RegType::kRegTypeUnknown;
Ian Rogersd81871c2011-10-03 13:57:23 -0700340 }
341}
342
343static RegType::Type RegTypeFromDescriptor(const std::string& descriptor) {
344 if (descriptor.length() == 1) {
345 switch (descriptor[0]) {
346 case 'Z': return RegType::kRegTypeBoolean;
347 case 'B': return RegType::kRegTypeByte;
348 case 'S': return RegType::kRegTypeShort;
349 case 'C': return RegType::kRegTypeChar;
350 case 'I': return RegType::kRegTypeInteger;
351 case 'J': return RegType::kRegTypeLongLo;
352 case 'F': return RegType::kRegTypeFloat;
353 case 'D': return RegType::kRegTypeDoubleLo;
354 case 'V':
355 default: return RegType::kRegTypeUnknown;
356 }
357 } else if(descriptor[0] == 'L' || descriptor[0] == '[') {
358 return RegType::kRegTypeReference;
359 } else {
360 return RegType::kRegTypeUnknown;
361 }
362}
363
364std::ostream& operator<<(std::ostream& os, const RegType& rhs) {
Ian Rogers2c8a8572011-10-24 17:11:36 -0700365 os << rhs.Dump();
Ian Rogersd81871c2011-10-03 13:57:23 -0700366 return os;
367}
368
369const RegType& RegTypeCache::FromDescriptor(const ClassLoader* loader,
Ian Rogers672297c2012-01-10 14:50:55 -0800370 const char* descriptor) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700371 return From(RegTypeFromDescriptor(descriptor), loader, descriptor);
372}
373
374const RegType& RegTypeCache::From(RegType::Type type, const ClassLoader* loader,
Ian Rogers672297c2012-01-10 14:50:55 -0800375 const char* descriptor) {
Ian Rogers84fa0742011-10-25 18:13:30 -0700376 if (type <= RegType::kRegTypeLastFixedLocation) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700377 // entries should be sized greater than primitive types
378 DCHECK_GT(entries_.size(), static_cast<size_t>(type));
379 RegType* entry = entries_[type];
380 if (entry == NULL) {
Ian Rogers84fa0742011-10-25 18:13:30 -0700381 Class* klass = NULL;
Ian Rogers672297c2012-01-10 14:50:55 -0800382 if (strlen(descriptor) != 0) {
383 klass = Runtime::Current()->GetClassLinker()->FindSystemClass(descriptor);
Ian Rogersd81871c2011-10-03 13:57:23 -0700384 }
Ian Rogers84fa0742011-10-25 18:13:30 -0700385 entry = new RegType(type, klass, 0, type);
Ian Rogersd81871c2011-10-03 13:57:23 -0700386 entries_[type] = entry;
387 }
388 return *entry;
389 } else {
390 DCHECK (type == RegType::kRegTypeReference);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800391 ClassHelper kh;
Ian Rogers84fa0742011-10-25 18:13:30 -0700392 for (size_t i = RegType::kRegTypeLastFixedLocation + 1; i < entries_.size(); i++) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700393 RegType* cur_entry = entries_[i];
Ian Rogers84fa0742011-10-25 18:13:30 -0700394 // check resolved and unresolved references, ignore uninitialized references
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800395 if (cur_entry->IsReference()) {
396 kh.ChangeClass(cur_entry->GetClass());
Ian Rogers672297c2012-01-10 14:50:55 -0800397 if (strcmp(descriptor, kh.GetDescriptor()) == 0) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800398 return *cur_entry;
399 }
Ian Rogers84fa0742011-10-25 18:13:30 -0700400 } else if (cur_entry->IsUnresolvedReference() &&
401 cur_entry->GetDescriptor()->Equals(descriptor)) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700402 return *cur_entry;
403 }
404 }
Ian Rogers672297c2012-01-10 14:50:55 -0800405 Class* klass = Runtime::Current()->GetClassLinker()->FindClass(descriptor, loader);
Ian Rogers2c8a8572011-10-24 17:11:36 -0700406 if (klass != NULL) {
Ian Rogers84fa0742011-10-25 18:13:30 -0700407 // Able to resolve so create resolved register type
408 RegType* entry = new RegType(type, klass, 0, entries_.size());
Ian Rogers2c8a8572011-10-24 17:11:36 -0700409 entries_.push_back(entry);
410 return *entry;
411 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -0700412 // TODO: we assume unresolved, but we may be able to do better by validating whether the
413 // descriptor string is valid
Ian Rogers84fa0742011-10-25 18:13:30 -0700414 // Unable to resolve so create unresolved register type
Ian Rogers2c8a8572011-10-24 17:11:36 -0700415 DCHECK(Thread::Current()->IsExceptionPending());
Ian Rogers84fa0742011-10-25 18:13:30 -0700416 Thread::Current()->ClearException();
Ian Rogers672297c2012-01-10 14:50:55 -0800417 if (IsValidDescriptor(descriptor)) {
Ian Rogers28ad40d2011-10-27 15:19:26 -0700418 String* string_descriptor =
Ian Rogers672297c2012-01-10 14:50:55 -0800419 Runtime::Current()->GetInternTable()->InternStrong(descriptor);
Ian Rogers28ad40d2011-10-27 15:19:26 -0700420 RegType* entry = new RegType(RegType::kRegTypeUnresolvedReference, string_descriptor, 0,
421 entries_.size());
422 entries_.push_back(entry);
423 return *entry;
424 } else {
425 // The descriptor is broken return the unknown type as there's nothing sensible that
426 // could be done at runtime
427 return Unknown();
428 }
Ian Rogers2c8a8572011-10-24 17:11:36 -0700429 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700430 }
431}
432
433const RegType& RegTypeCache::FromClass(Class* klass) {
434 if (klass->IsPrimitive()) {
435 RegType::Type type = RegTypeFromPrimitiveType(klass->GetPrimitiveType());
436 // entries should be sized greater than primitive types
437 DCHECK_GT(entries_.size(), static_cast<size_t>(type));
438 RegType* entry = entries_[type];
439 if (entry == NULL) {
Ian Rogers84fa0742011-10-25 18:13:30 -0700440 entry = new RegType(type, klass, 0, type);
Ian Rogersd81871c2011-10-03 13:57:23 -0700441 entries_[type] = entry;
442 }
443 return *entry;
444 } else {
Ian Rogers84fa0742011-10-25 18:13:30 -0700445 for (size_t i = RegType::kRegTypeLastFixedLocation + 1; i < entries_.size(); i++) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700446 RegType* cur_entry = entries_[i];
Ian Rogers84fa0742011-10-25 18:13:30 -0700447 if (cur_entry->IsReference() && cur_entry->GetClass() == klass) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700448 return *cur_entry;
449 }
450 }
Ian Rogers84fa0742011-10-25 18:13:30 -0700451 RegType* entry = new RegType(RegType::kRegTypeReference, klass, 0, entries_.size());
Ian Rogersd81871c2011-10-03 13:57:23 -0700452 entries_.push_back(entry);
453 return *entry;
454 }
455}
456
Ian Rogers28ad40d2011-10-27 15:19:26 -0700457const RegType& RegTypeCache::Uninitialized(const RegType& type, uint32_t allocation_pc) {
458 RegType* entry;
459 if (type.IsUnresolvedTypes()) {
460 String* descriptor = type.GetDescriptor();
461 for (size_t i = RegType::kRegTypeLastFixedLocation + 1; i < entries_.size(); i++) {
462 RegType* cur_entry = entries_[i];
463 if (cur_entry->IsUnresolvedAndUninitializedReference() &&
464 cur_entry->GetAllocationPc() == allocation_pc &&
465 cur_entry->GetDescriptor() == descriptor) {
466 return *cur_entry;
467 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700468 }
Ian Rogers28ad40d2011-10-27 15:19:26 -0700469 entry = new RegType(RegType::kRegTypeUnresolvedAndUninitializedReference,
470 descriptor, allocation_pc, entries_.size());
471 } else {
472 Class* klass = type.GetClass();
473 for (size_t i = RegType::kRegTypeLastFixedLocation + 1; i < entries_.size(); i++) {
474 RegType* cur_entry = entries_[i];
475 if (cur_entry->IsUninitializedReference() &&
476 cur_entry->GetAllocationPc() == allocation_pc &&
477 cur_entry->GetClass() == klass) {
478 return *cur_entry;
479 }
480 }
481 entry = new RegType(RegType::kRegTypeUninitializedReference,
482 klass, allocation_pc, entries_.size());
Ian Rogersd81871c2011-10-03 13:57:23 -0700483 }
Ian Rogers28ad40d2011-10-27 15:19:26 -0700484 entries_.push_back(entry);
485 return *entry;
486}
487
488const RegType& RegTypeCache::FromUninitialized(const RegType& uninit_type) {
489 RegType* entry;
490 if (uninit_type.IsUnresolvedTypes()) {
491 String* descriptor = uninit_type.GetDescriptor();
492 for (size_t i = RegType::kRegTypeLastFixedLocation + 1; i < entries_.size(); i++) {
493 RegType* cur_entry = entries_[i];
494 if (cur_entry->IsUnresolvedReference() && cur_entry->GetDescriptor() == descriptor) {
495 return *cur_entry;
496 }
497 }
498 entry = new RegType(RegType::kRegTypeUnresolvedReference, descriptor, 0, entries_.size());
499 } else {
500 Class* klass = uninit_type.GetClass();
501 for (size_t i = RegType::kRegTypeLastFixedLocation + 1; i < entries_.size(); i++) {
502 RegType* cur_entry = entries_[i];
503 if (cur_entry->IsReference() && cur_entry->GetClass() == klass) {
504 return *cur_entry;
505 }
506 }
507 entry = new RegType(RegType::kRegTypeReference, klass, 0, entries_.size());
508 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700509 entries_.push_back(entry);
510 return *entry;
511}
512
513const RegType& RegTypeCache::UninitializedThisArgument(Class* klass) {
Ian Rogers84fa0742011-10-25 18:13:30 -0700514 for (size_t i = RegType::kRegTypeLastFixedLocation + 1; i < entries_.size(); i++) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700515 RegType* cur_entry = entries_[i];
516 if (cur_entry->IsUninitializedThisReference() && cur_entry->GetClass() == klass) {
517 return *cur_entry;
518 }
519 }
Ian Rogers84fa0742011-10-25 18:13:30 -0700520 RegType* entry = new RegType(RegType::kRegTypeUninitializedThisReference, klass, 0,
Ian Rogersd81871c2011-10-03 13:57:23 -0700521 entries_.size());
522 entries_.push_back(entry);
523 return *entry;
524}
525
526const RegType& RegTypeCache::FromType(RegType::Type type) {
527 CHECK(type < RegType::kRegTypeReference);
528 switch (type) {
529 case RegType::kRegTypeBoolean: return From(type, NULL, "Z");
530 case RegType::kRegTypeByte: return From(type, NULL, "B");
531 case RegType::kRegTypeShort: return From(type, NULL, "S");
532 case RegType::kRegTypeChar: return From(type, NULL, "C");
533 case RegType::kRegTypeInteger: return From(type, NULL, "I");
534 case RegType::kRegTypeFloat: return From(type, NULL, "F");
535 case RegType::kRegTypeLongLo:
536 case RegType::kRegTypeLongHi: return From(type, NULL, "J");
537 case RegType::kRegTypeDoubleLo:
538 case RegType::kRegTypeDoubleHi: return From(type, NULL, "D");
539 default: return From(type, NULL, "");
540 }
541}
542
543const RegType& RegTypeCache::FromCat1Const(int32_t value) {
Ian Rogers84fa0742011-10-25 18:13:30 -0700544 for (size_t i = RegType::kRegTypeLastFixedLocation + 1; i < entries_.size(); i++) {
545 RegType* cur_entry = entries_[i];
546 if (cur_entry->IsConstant() && cur_entry->ConstantValue() == value) {
547 return *cur_entry;
548 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700549 }
Ian Rogers84fa0742011-10-25 18:13:30 -0700550 RegType* entry = new RegType(RegType::kRegTypeConst, NULL, value, entries_.size());
551 entries_.push_back(entry);
552 return *entry;
Ian Rogersd81871c2011-10-03 13:57:23 -0700553}
554
Ian Rogers28ad40d2011-10-27 15:19:26 -0700555const RegType& RegTypeCache::GetComponentType(const RegType& array, const ClassLoader* loader) {
Ian Rogers89310de2012-02-01 13:47:30 -0800556 CHECK(array.IsArrayTypes());
Ian Rogers28ad40d2011-10-27 15:19:26 -0700557 if (array.IsUnresolvedTypes()) {
Elliott Hughes95572412011-12-13 18:14:20 -0800558 std::string descriptor(array.GetDescriptor()->ToModifiedUtf8());
559 std::string component(descriptor.substr(1, descriptor.size() - 1));
Ian Rogers672297c2012-01-10 14:50:55 -0800560 return FromDescriptor(loader, component.c_str());
Ian Rogers28ad40d2011-10-27 15:19:26 -0700561 } else {
562 return FromClass(array.GetClass()->GetComponentType());
563 }
564}
565
566
Ian Rogersd81871c2011-10-03 13:57:23 -0700567bool RegisterLine::CheckConstructorReturn() const {
568 for (size_t i = 0; i < num_regs_; i++) {
569 if (GetRegisterType(i).IsUninitializedThisReference()) {
570 verifier_->Fail(VERIFY_ERROR_GENERIC)
571 << "Constructor returning without calling superclass constructor";
572 return false;
573 }
574 }
575 return true;
576}
577
578void RegisterLine::SetRegisterType(uint32_t vdst, const RegType& new_type) {
579 DCHECK(vdst < num_regs_);
580 if (new_type.IsLowHalf()) {
581 line_[vdst] = new_type.GetId();
582 line_[vdst + 1] = new_type.HighHalf(verifier_->GetRegTypeCache()).GetId();
583 } else if (new_type.IsHighHalf()) {
584 /* should never set these explicitly */
585 verifier_->Fail(VERIFY_ERROR_GENERIC) << "Explicit set of high register type";
586 } else if (new_type.IsConflict()) { // should only be set during a merge
587 verifier_->Fail(VERIFY_ERROR_GENERIC) << "Set register to unknown type " << new_type;
588 } else {
589 line_[vdst] = new_type.GetId();
590 }
591 // Clear the monitor entry bits for this register.
592 ClearAllRegToLockDepths(vdst);
593}
594
595void RegisterLine::SetResultTypeToUnknown() {
596 uint16_t unknown_id = verifier_->GetRegTypeCache()->Unknown().GetId();
597 result_[0] = unknown_id;
598 result_[1] = unknown_id;
599}
600
601void RegisterLine::SetResultRegisterType(const RegType& new_type) {
602 result_[0] = new_type.GetId();
603 if(new_type.IsLowHalf()) {
604 DCHECK_EQ(new_type.HighHalf(verifier_->GetRegTypeCache()).GetId(), new_type.GetId() + 1);
605 result_[1] = new_type.GetId() + 1;
606 } else {
607 result_[1] = verifier_->GetRegTypeCache()->Unknown().GetId();
608 }
609}
610
611const RegType& RegisterLine::GetRegisterType(uint32_t vsrc) const {
612 // The register index was validated during the static pass, so we don't need to check it here.
613 DCHECK_LT(vsrc, num_regs_);
614 return verifier_->GetRegTypeCache()->GetFromId(line_[vsrc]);
615}
616
617const RegType& RegisterLine::GetInvocationThis(const Instruction::DecodedInstruction& dec_insn) {
618 if (dec_insn.vA_ < 1) {
619 verifier_->Fail(VERIFY_ERROR_GENERIC) << "invoke lacks 'this'";
620 return verifier_->GetRegTypeCache()->Unknown();
621 }
622 /* get the element type of the array held in vsrc */
623 const RegType& this_type = GetRegisterType(dec_insn.vC_);
624 if (!this_type.IsReferenceTypes()) {
625 verifier_->Fail(VERIFY_ERROR_GENERIC) << "tried to get class from non-reference register v"
626 << dec_insn.vC_ << " (type=" << this_type << ")";
627 return verifier_->GetRegTypeCache()->Unknown();
628 }
629 return this_type;
630}
631
Ian Rogersd81871c2011-10-03 13:57:23 -0700632bool RegisterLine::VerifyRegisterType(uint32_t vsrc, const RegType& check_type) {
633 // Verify the src register type against the check type refining the type of the register
634 const RegType& src_type = GetRegisterType(vsrc);
Ian Rogersb5e95b92011-10-25 23:28:55 -0700635 if (!check_type.IsAssignableFrom(src_type)) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700636 verifier_->Fail(VERIFY_ERROR_GENERIC) << "register v" << vsrc << " has type " << src_type
637 << " but expected " << check_type;
638 return false;
639 }
640 // The register at vsrc has a defined type, we know the lower-upper-bound, but this is less
641 // precise than the subtype in vsrc so leave it for reference types. For primitive types
642 // if they are a defined type then they are as precise as we can get, however, for constant
643 // types we may wish to refine them. Unfortunately constant propagation has rendered this useless.
644 return true;
645}
646
647void RegisterLine::MarkRefsAsInitialized(const RegType& uninit_type) {
Ian Rogers28ad40d2011-10-27 15:19:26 -0700648 DCHECK(uninit_type.IsUninitializedTypes());
649 const RegType& init_type = verifier_->GetRegTypeCache()->FromUninitialized(uninit_type);
650 size_t changed = 0;
651 for (size_t i = 0; i < num_regs_; i++) {
652 if (GetRegisterType(i).Equals(uninit_type)) {
653 line_[i] = init_type.GetId();
654 changed++;
Ian Rogersd81871c2011-10-03 13:57:23 -0700655 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700656 }
Ian Rogers28ad40d2011-10-27 15:19:26 -0700657 DCHECK_GT(changed, 0u);
Ian Rogersd81871c2011-10-03 13:57:23 -0700658}
659
660void RegisterLine::MarkUninitRefsAsInvalid(const RegType& uninit_type) {
661 for (size_t i = 0; i < num_regs_; i++) {
662 if (GetRegisterType(i).Equals(uninit_type)) {
663 line_[i] = verifier_->GetRegTypeCache()->Conflict().GetId();
664 ClearAllRegToLockDepths(i);
665 }
666 }
667}
668
669void RegisterLine::CopyRegister1(uint32_t vdst, uint32_t vsrc, TypeCategory cat) {
670 DCHECK(cat == kTypeCategory1nr || cat == kTypeCategoryRef);
671 const RegType& type = GetRegisterType(vsrc);
672 SetRegisterType(vdst, type);
673 if ((cat == kTypeCategory1nr && !type.IsCategory1Types()) ||
674 (cat == kTypeCategoryRef && !type.IsReferenceTypes())) {
675 verifier_->Fail(VERIFY_ERROR_GENERIC) << "copy1 v" << vdst << "<-v" << vsrc << " type=" << type
676 << " cat=" << static_cast<int>(cat);
677 } else if (cat == kTypeCategoryRef) {
678 CopyRegToLockDepth(vdst, vsrc);
679 }
680}
681
682void RegisterLine::CopyRegister2(uint32_t vdst, uint32_t vsrc) {
683 const RegType& type_l = GetRegisterType(vsrc);
684 const RegType& type_h = GetRegisterType(vsrc + 1);
685
686 if (!type_l.CheckWidePair(type_h)) {
687 verifier_->Fail(VERIFY_ERROR_GENERIC) << "copy2 v" << vdst << "<-v" << vsrc
688 << " type=" << type_l << "/" << type_h;
689 } else {
690 SetRegisterType(vdst, type_l); // implicitly sets the second half
691 }
692}
693
694void RegisterLine::CopyResultRegister1(uint32_t vdst, bool is_reference) {
695 const RegType& type = verifier_->GetRegTypeCache()->GetFromId(result_[0]);
696 if ((!is_reference && !type.IsCategory1Types()) ||
697 (is_reference && !type.IsReferenceTypes())) {
698 verifier_->Fail(VERIFY_ERROR_GENERIC)
699 << "copyRes1 v" << vdst << "<- result0" << " type=" << type;
700 } else {
701 DCHECK(verifier_->GetRegTypeCache()->GetFromId(result_[1]).IsUnknown());
702 SetRegisterType(vdst, type);
703 result_[0] = verifier_->GetRegTypeCache()->Unknown().GetId();
704 }
705}
706
707/*
708 * Implement "move-result-wide". Copy the category-2 value from the result
709 * register to another register, and reset the result register.
710 */
711void RegisterLine::CopyResultRegister2(uint32_t vdst) {
712 const RegType& type_l = verifier_->GetRegTypeCache()->GetFromId(result_[0]);
713 const RegType& type_h = verifier_->GetRegTypeCache()->GetFromId(result_[1]);
714 if (!type_l.IsCategory2Types()) {
715 verifier_->Fail(VERIFY_ERROR_GENERIC)
716 << "copyRes2 v" << vdst << "<- result0" << " type=" << type_l;
717 } else {
718 DCHECK(type_l.CheckWidePair(type_h)); // Set should never allow this case
719 SetRegisterType(vdst, type_l); // also sets the high
720 result_[0] = verifier_->GetRegTypeCache()->Unknown().GetId();
721 result_[1] = verifier_->GetRegTypeCache()->Unknown().GetId();
722 }
723}
724
725void RegisterLine::CheckUnaryOp(const Instruction::DecodedInstruction& dec_insn,
726 const RegType& dst_type, const RegType& src_type) {
727 if (VerifyRegisterType(dec_insn.vB_, src_type)) {
728 SetRegisterType(dec_insn.vA_, dst_type);
729 }
730}
731
732void RegisterLine::CheckBinaryOp(const Instruction::DecodedInstruction& dec_insn,
733 const RegType& dst_type,
734 const RegType& src_type1, const RegType& src_type2,
735 bool check_boolean_op) {
736 if (VerifyRegisterType(dec_insn.vB_, src_type1) &&
737 VerifyRegisterType(dec_insn.vC_, src_type2)) {
738 if (check_boolean_op) {
739 DCHECK(dst_type.IsInteger());
740 if (GetRegisterType(dec_insn.vB_).IsBooleanTypes() &&
741 GetRegisterType(dec_insn.vC_).IsBooleanTypes()) {
742 SetRegisterType(dec_insn.vA_, verifier_->GetRegTypeCache()->Boolean());
743 return;
744 }
745 }
746 SetRegisterType(dec_insn.vA_, dst_type);
747 }
748}
749
750void RegisterLine::CheckBinaryOp2addr(const Instruction::DecodedInstruction& dec_insn,
751 const RegType& dst_type, const RegType& src_type1,
752 const RegType& src_type2, bool check_boolean_op) {
753 if (VerifyRegisterType(dec_insn.vA_, src_type1) &&
754 VerifyRegisterType(dec_insn.vB_, src_type2)) {
755 if (check_boolean_op) {
756 DCHECK(dst_type.IsInteger());
757 if (GetRegisterType(dec_insn.vA_).IsBooleanTypes() &&
758 GetRegisterType(dec_insn.vB_).IsBooleanTypes()) {
759 SetRegisterType(dec_insn.vA_, verifier_->GetRegTypeCache()->Boolean());
760 return;
761 }
762 }
763 SetRegisterType(dec_insn.vA_, dst_type);
764 }
765}
766
767void RegisterLine::CheckLiteralOp(const Instruction::DecodedInstruction& dec_insn,
768 const RegType& dst_type, const RegType& src_type,
769 bool check_boolean_op) {
770 if (VerifyRegisterType(dec_insn.vB_, src_type)) {
771 if (check_boolean_op) {
772 DCHECK(dst_type.IsInteger());
773 /* check vB with the call, then check the constant manually */
774 if (GetRegisterType(dec_insn.vB_).IsBooleanTypes() &&
775 (dec_insn.vC_ == 0 || dec_insn.vC_ == 1)) {
776 SetRegisterType(dec_insn.vA_, verifier_->GetRegTypeCache()->Boolean());
777 return;
778 }
779 }
780 SetRegisterType(dec_insn.vA_, dst_type);
781 }
782}
783
784void RegisterLine::PushMonitor(uint32_t reg_idx, int32_t insn_idx) {
785 const RegType& reg_type = GetRegisterType(reg_idx);
786 if (!reg_type.IsReferenceTypes()) {
787 verifier_->Fail(VERIFY_ERROR_GENERIC) << "monitor-enter on non-object (" << reg_type << ")";
Elliott Hughesfbef9462011-12-14 14:24:40 -0800788 } else if (monitors_.size() >= 32) {
789 verifier_->Fail(VERIFY_ERROR_GENERIC) << "monitor-enter stack overflow: " << monitors_.size();
Ian Rogersd81871c2011-10-03 13:57:23 -0700790 } else {
791 SetRegToLockDepth(reg_idx, monitors_.size());
Ian Rogers55d249f2011-11-02 16:48:09 -0700792 monitors_.push_back(insn_idx);
Ian Rogersd81871c2011-10-03 13:57:23 -0700793 }
794}
795
796void RegisterLine::PopMonitor(uint32_t reg_idx) {
797 const RegType& reg_type = GetRegisterType(reg_idx);
798 if (!reg_type.IsReferenceTypes()) {
799 verifier_->Fail(VERIFY_ERROR_GENERIC) << "monitor-exit on non-object (" << reg_type << ")";
800 } else if (monitors_.empty()) {
801 verifier_->Fail(VERIFY_ERROR_GENERIC) << "monitor-exit stack underflow";
802 } else {
Ian Rogers55d249f2011-11-02 16:48:09 -0700803 monitors_.pop_back();
Ian Rogersd81871c2011-10-03 13:57:23 -0700804 if(!IsSetLockDepth(reg_idx, monitors_.size())) {
805 // Bug 3215458: Locks and unlocks are on objects, if that object is a literal then before
806 // format "036" the constant collector may create unlocks on the same object but referenced
807 // via different registers.
808 ((verifier_->DexFileVersion() >= 36) ? verifier_->Fail(VERIFY_ERROR_GENERIC)
809 : verifier_->LogVerifyInfo())
810 << "monitor-exit not unlocking the top of the monitor stack";
811 } else {
812 // Record the register was unlocked
813 ClearRegToLockDepth(reg_idx, monitors_.size());
814 }
815 }
816}
817
818bool RegisterLine::VerifyMonitorStackEmpty() {
819 if (MonitorStackDepth() != 0) {
820 verifier_->Fail(VERIFY_ERROR_GENERIC) << "expected empty monitor stack";
821 return false;
822 } else {
823 return true;
824 }
825}
826
827bool RegisterLine::MergeRegisters(const RegisterLine* incoming_line) {
828 bool changed = false;
829 for (size_t idx = 0; idx < num_regs_; idx++) {
830 if (line_[idx] != incoming_line->line_[idx]) {
831 const RegType& incoming_reg_type = incoming_line->GetRegisterType(idx);
832 const RegType& cur_type = GetRegisterType(idx);
833 const RegType& new_type = cur_type.Merge(incoming_reg_type, verifier_->GetRegTypeCache());
834 changed = changed || !cur_type.Equals(new_type);
835 line_[idx] = new_type.GetId();
836 }
837 }
Ian Rogers55d249f2011-11-02 16:48:09 -0700838 if(monitors_.size() != incoming_line->monitors_.size()) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700839 verifier_->Fail(VERIFY_ERROR_GENERIC) << "mismatched stack depths (depth="
840 << MonitorStackDepth() << ", incoming depth=" << incoming_line->MonitorStackDepth() << ")";
841 } else if (reg_to_lock_depths_ != incoming_line->reg_to_lock_depths_) {
842 for (uint32_t idx = 0; idx < num_regs_; idx++) {
843 size_t depths = reg_to_lock_depths_.count(idx);
844 size_t incoming_depths = incoming_line->reg_to_lock_depths_.count(idx);
845 if (depths != incoming_depths) {
846 if (depths == 0 || incoming_depths == 0) {
847 reg_to_lock_depths_.erase(idx);
848 } else {
849 verifier_->Fail(VERIFY_ERROR_GENERIC) << "mismatched stack depths for register v" << idx
850 << ": " << depths << " != " << incoming_depths;
851 break;
852 }
853 }
854 }
855 }
856 return changed;
857}
858
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800859void RegisterLine::WriteReferenceBitMap(std::vector<uint8_t>& data, size_t max_bytes) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700860 for (size_t i = 0; i < num_regs_; i += 8) {
861 uint8_t val = 0;
862 for (size_t j = 0; j < 8 && (i + j) < num_regs_; j++) {
863 // Note: we write 1 for a Reference but not for Null
Ian Rogers84fa0742011-10-25 18:13:30 -0700864 if (GetRegisterType(i + j).IsNonZeroReferenceTypes()) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700865 val |= 1 << j;
866 }
867 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800868 if ((i / 8) >= max_bytes) {
869 DCHECK_EQ(0, val);
870 continue;
Ian Rogersd81871c2011-10-03 13:57:23 -0700871 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800872 DCHECK_LT(i / 8, max_bytes) << "val=" << static_cast<uint32_t>(val);
873 data.push_back(val);
Ian Rogersd81871c2011-10-03 13:57:23 -0700874 }
875}
876
877std::ostream& operator<<(std::ostream& os, const RegisterLine& rhs) {
Ian Rogers2c8a8572011-10-24 17:11:36 -0700878 os << rhs.Dump();
Ian Rogersd81871c2011-10-03 13:57:23 -0700879 return os;
880}
881
882
883void PcToRegisterLineTable::Init(RegisterTrackingMode mode, InsnFlags* flags,
884 uint32_t insns_size, uint16_t registers_size,
885 DexVerifier* verifier) {
886 DCHECK_GT(insns_size, 0U);
887
888 for (uint32_t i = 0; i < insns_size; i++) {
889 bool interesting = false;
890 switch (mode) {
891 case kTrackRegsAll:
892 interesting = flags[i].IsOpcode();
893 break;
894 case kTrackRegsGcPoints:
895 interesting = flags[i].IsGcPoint() || flags[i].IsBranchTarget();
896 break;
897 case kTrackRegsBranches:
898 interesting = flags[i].IsBranchTarget();
899 break;
900 default:
901 break;
902 }
903 if (interesting) {
904 pc_to_register_line_[i] = new RegisterLine(registers_size, verifier);
905 }
906 }
907}
908
Ian Rogers1c5eb702012-02-01 09:18:34 -0800909bool DexVerifier::VerifyClass(const Class* klass, std::string& error) {
jeffhaobdb76512011-09-07 11:43:16 -0700910 if (klass->IsVerified()) {
911 return true;
912 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700913 Class* super = klass->GetSuperClass();
Elliott Hughes91250e02011-12-13 22:30:35 -0800914 if (super == NULL && StringPiece(ClassHelper(klass).GetDescriptor()) != "Ljava/lang/Object;") {
Ian Rogers1c5eb702012-02-01 09:18:34 -0800915 error = "Verifier rejected class ";
916 error += PrettyDescriptor(klass);
917 error += " that has no super class";
Ian Rogersd81871c2011-10-03 13:57:23 -0700918 return false;
919 }
Ian Rogers1c5eb702012-02-01 09:18:34 -0800920 if (super != NULL && super->IsFinal()) {
921 error = "Verifier rejected class ";
922 error += PrettyDescriptor(klass);
923 error += " that attempts to sub-class final class ";
924 error += PrettyDescriptor(super);
925 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -0700926 }
jeffhaobdb76512011-09-07 11:43:16 -0700927 for (size_t i = 0; i < klass->NumDirectMethods(); ++i) {
928 Method* method = klass->GetDirectMethod(i);
929 if (!VerifyMethod(method)) {
Ian Rogers1c5eb702012-02-01 09:18:34 -0800930 error = "Verifier rejected class ";
931 error += PrettyDescriptor(klass);
932 error += " due to bad method ";
933 error += PrettyMethod(method, true);
jeffhaobdb76512011-09-07 11:43:16 -0700934 return false;
935 }
936 }
937 for (size_t i = 0; i < klass->NumVirtualMethods(); ++i) {
938 Method* method = klass->GetVirtualMethod(i);
939 if (!VerifyMethod(method)) {
Ian Rogers1c5eb702012-02-01 09:18:34 -0800940 error = "Verifier rejected class ";
941 error += PrettyDescriptor(klass);
942 error += " due to bad method ";
943 error += PrettyMethod(method, true);
jeffhaobdb76512011-09-07 11:43:16 -0700944 return false;
945 }
946 }
947 return true;
jeffhaoba5ebb92011-08-25 17:24:37 -0700948}
949
jeffhaobdb76512011-09-07 11:43:16 -0700950bool DexVerifier::VerifyMethod(Method* method) {
Ian Rogersd81871c2011-10-03 13:57:23 -0700951 DexVerifier verifier(method);
952 bool success = verifier.Verify();
Brian Carlstrom75412882012-01-18 01:26:54 -0800953 CHECK_EQ(success, verifier.failure_ == VERIFY_ERROR_NONE);
954
Ian Rogersd81871c2011-10-03 13:57:23 -0700955 // We expect either success and no verification error, or failure and a generic failure to
956 // reject the class.
957 if (success) {
958 if (verifier.failure_ != VERIFY_ERROR_NONE) {
959 LOG(FATAL) << "Unhandled failure in verification of " << PrettyMethod(method) << std::endl
960 << verifier.fail_messages_;
961 }
962 } else {
963 LOG(INFO) << "Verification error in " << PrettyMethod(method) << " "
Ian Rogers5ed29bf2011-10-26 12:22:21 -0700964 << verifier.fail_messages_.str();
Ian Rogers2c8a8572011-10-24 17:11:36 -0700965 if (gDebugVerify) {
Ian Rogers5ed29bf2011-10-26 12:22:21 -0700966 std::cout << std::endl << verifier.info_messages_.str();
Ian Rogers2c8a8572011-10-24 17:11:36 -0700967 verifier.Dump(std::cout);
968 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700969 DCHECK_EQ(verifier.failure_, VERIFY_ERROR_GENERIC);
970 }
971 return success;
972}
973
Shih-wei Liao371814f2011-10-27 16:52:10 -0700974void DexVerifier::VerifyMethodAndDump(Method* method) {
975 DexVerifier verifier(method);
976 verifier.Verify();
977
Elliott Hughese0918552011-10-28 17:18:29 -0700978 LOG(INFO) << "Dump of method " << PrettyMethod(method) << " "
979 << verifier.fail_messages_.str() << std::endl
980 << verifier.info_messages_.str() << Dumpable<DexVerifier>(verifier);
Shih-wei Liao371814f2011-10-27 16:52:10 -0700981}
982
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800983DexVerifier::DexVerifier(Method* method)
984 : work_insn_idx_(-1),
985 method_(method),
986 failure_(VERIFY_ERROR_NONE),
987 new_instance_count_(0),
988 monitor_enter_count_(0) {
989 CHECK(method != NULL);
jeffhaobdb76512011-09-07 11:43:16 -0700990 const DexCache* dex_cache = method->GetDeclaringClass()->GetDexCache();
Brian Carlstromc12a17a2012-01-17 18:02:32 -0800991 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogersd81871c2011-10-03 13:57:23 -0700992 dex_file_ = &class_linker->FindDexFile(dex_cache);
993 code_item_ = dex_file_->GetCodeItem(method->GetCodeItemOffset());
jeffhaoba5ebb92011-08-25 17:24:37 -0700994}
995
Ian Rogersd81871c2011-10-03 13:57:23 -0700996bool DexVerifier::Verify() {
997 // If there aren't any instructions, make sure that's expected, then exit successfully.
998 if (code_item_ == NULL) {
999 if (!method_->IsNative() && !method_->IsAbstract()) {
1000 Fail(VERIFY_ERROR_GENERIC) << "zero-length code in concrete non-native method";
jeffhaobdb76512011-09-07 11:43:16 -07001001 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07001002 } else {
1003 return true;
jeffhaobdb76512011-09-07 11:43:16 -07001004 }
jeffhaobdb76512011-09-07 11:43:16 -07001005 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001006 // Sanity-check the register counts. ins + locals = registers, so make sure that ins <= registers.
1007 if (code_item_->ins_size_ > code_item_->registers_size_) {
1008 Fail(VERIFY_ERROR_GENERIC) << "bad register counts (ins=" << code_item_->ins_size_
1009 << " regs=" << code_item_->registers_size_;
1010 return false;
jeffhaobdb76512011-09-07 11:43:16 -07001011 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001012 // Allocate and initialize an array to hold instruction data.
1013 insn_flags_.reset(new InsnFlags[code_item_->insns_size_in_code_units_]());
1014 // Run through the instructions and see if the width checks out.
1015 bool result = ComputeWidthsAndCountOps();
1016 // Flag instructions guarded by a "try" block and check exception handlers.
1017 result = result && ScanTryCatchBlocks();
1018 // Perform static instruction verification.
1019 result = result && VerifyInstructions();
1020 // Perform code flow analysis.
1021 result = result && VerifyCodeFlow();
jeffhaobdb76512011-09-07 11:43:16 -07001022 return result;
jeffhaoba5ebb92011-08-25 17:24:37 -07001023}
1024
Ian Rogersd81871c2011-10-03 13:57:23 -07001025bool DexVerifier::ComputeWidthsAndCountOps() {
1026 const uint16_t* insns = code_item_->insns_;
1027 size_t insns_size = code_item_->insns_size_in_code_units_;
1028 const Instruction* inst = Instruction::At(insns);
jeffhaobdb76512011-09-07 11:43:16 -07001029 size_t new_instance_count = 0;
1030 size_t monitor_enter_count = 0;
Ian Rogersd81871c2011-10-03 13:57:23 -07001031 size_t dex_pc = 0;
jeffhaobdb76512011-09-07 11:43:16 -07001032
Ian Rogersd81871c2011-10-03 13:57:23 -07001033 while (dex_pc < insns_size) {
jeffhaobdb76512011-09-07 11:43:16 -07001034 Instruction::Code opcode = inst->Opcode();
1035 if (opcode == Instruction::NEW_INSTANCE) {
1036 new_instance_count++;
1037 } else if (opcode == Instruction::MONITOR_ENTER) {
1038 monitor_enter_count++;
1039 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001040 size_t inst_size = inst->SizeInCodeUnits();
1041 insn_flags_[dex_pc].SetLengthInCodeUnits(inst_size);
1042 dex_pc += inst_size;
jeffhaobdb76512011-09-07 11:43:16 -07001043 inst = inst->Next();
1044 }
1045
Ian Rogersd81871c2011-10-03 13:57:23 -07001046 if (dex_pc != insns_size) {
1047 Fail(VERIFY_ERROR_GENERIC) << "code did not end where expected ("
1048 << dex_pc << " vs. " << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001049 return false;
1050 }
1051
Ian Rogersd81871c2011-10-03 13:57:23 -07001052 new_instance_count_ = new_instance_count;
1053 monitor_enter_count_ = monitor_enter_count;
jeffhaobdb76512011-09-07 11:43:16 -07001054 return true;
1055}
1056
Ian Rogersd81871c2011-10-03 13:57:23 -07001057bool DexVerifier::ScanTryCatchBlocks() {
1058 uint32_t tries_size = code_item_->tries_size_;
jeffhaobdb76512011-09-07 11:43:16 -07001059 if (tries_size == 0) {
1060 return true;
1061 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001062 uint32_t insns_size = code_item_->insns_size_in_code_units_;
Ian Rogers0571d352011-11-03 19:51:38 -07001063 const DexFile::TryItem* tries = DexFile::GetTryItems(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001064
1065 for (uint32_t idx = 0; idx < tries_size; idx++) {
1066 const DexFile::TryItem* try_item = &tries[idx];
1067 uint32_t start = try_item->start_addr_;
1068 uint32_t end = start + try_item->insn_count_;
jeffhaobdb76512011-09-07 11:43:16 -07001069 if ((start >= end) || (start >= insns_size) || (end > insns_size)) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001070 Fail(VERIFY_ERROR_GENERIC) << "bad exception entry: startAddr=" << start
1071 << " endAddr=" << end << " (size=" << insns_size << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001072 return false;
1073 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001074 if (!insn_flags_[start].IsOpcode()) {
1075 Fail(VERIFY_ERROR_GENERIC) << "'try' block starts inside an instruction (" << start << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001076 return false;
1077 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001078 for (uint32_t dex_pc = start; dex_pc < end;
1079 dex_pc += insn_flags_[dex_pc].GetLengthInCodeUnits()) {
1080 insn_flags_[dex_pc].SetInTry();
jeffhaobdb76512011-09-07 11:43:16 -07001081 }
1082 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001083 // Iterate over each of the handlers to verify target addresses.
Ian Rogers0571d352011-11-03 19:51:38 -07001084 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
jeffhaobdb76512011-09-07 11:43:16 -07001085 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001086 ClassLinker* linker = Runtime::Current()->GetClassLinker();
jeffhaobdb76512011-09-07 11:43:16 -07001087 for (uint32_t idx = 0; idx < handlers_size; idx++) {
Ian Rogers0571d352011-11-03 19:51:38 -07001088 CatchHandlerIterator iterator(handlers_ptr);
1089 for (; iterator.HasNext(); iterator.Next()) {
1090 uint32_t dex_pc= iterator.GetHandlerAddress();
Ian Rogersd81871c2011-10-03 13:57:23 -07001091 if (!insn_flags_[dex_pc].IsOpcode()) {
1092 Fail(VERIFY_ERROR_GENERIC) << "exception handler starts at bad address (" << dex_pc << ")";
jeffhaobdb76512011-09-07 11:43:16 -07001093 return false;
1094 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001095 insn_flags_[dex_pc].SetBranchTarget();
Ian Rogers28ad40d2011-10-27 15:19:26 -07001096 // Ensure exception types are resolved so that they don't need resolution to be delivered,
1097 // unresolved exception types will be ignored by exception delivery
Ian Rogers0571d352011-11-03 19:51:38 -07001098 if (iterator.GetHandlerTypeIndex() != DexFile::kDexNoIndex16) {
1099 Class* exception_type = linker->ResolveType(iterator.GetHandlerTypeIndex(), method_);
Ian Rogers28ad40d2011-10-27 15:19:26 -07001100 if (exception_type == NULL) {
1101 DCHECK(Thread::Current()->IsExceptionPending());
1102 Thread::Current()->ClearException();
1103 }
1104 }
jeffhaobdb76512011-09-07 11:43:16 -07001105 }
Ian Rogers0571d352011-11-03 19:51:38 -07001106 handlers_ptr = iterator.EndDataPointer();
jeffhaobdb76512011-09-07 11:43:16 -07001107 }
jeffhaobdb76512011-09-07 11:43:16 -07001108 return true;
1109}
1110
Ian Rogersd81871c2011-10-03 13:57:23 -07001111bool DexVerifier::VerifyInstructions() {
1112 const Instruction* inst = Instruction::At(code_item_->insns_);
jeffhaoba5ebb92011-08-25 17:24:37 -07001113
Ian Rogersd81871c2011-10-03 13:57:23 -07001114 /* Flag the start of the method as a branch target. */
1115 insn_flags_[0].SetBranchTarget();
1116
1117 uint32_t insns_size = code_item_->insns_size_in_code_units_;
1118 for(uint32_t dex_pc = 0; dex_pc < insns_size;) {
1119 if (!VerifyInstruction(inst, dex_pc)) {
Ian Rogers2c8a8572011-10-24 17:11:36 -07001120 DCHECK_NE(failure_, VERIFY_ERROR_NONE);
1121 fail_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_) << " at " << dex_pc;
Ian Rogersd81871c2011-10-03 13:57:23 -07001122 return false;
1123 }
1124 /* Flag instructions that are garbage collection points */
1125 if (inst->IsBranch() || inst->IsSwitch() || inst->IsThrow() || inst->IsReturn()) {
1126 insn_flags_[dex_pc].SetGcPoint();
1127 }
1128 dex_pc += inst->SizeInCodeUnits();
1129 inst = inst->Next();
1130 }
1131 return true;
1132}
1133
1134bool DexVerifier::VerifyInstruction(const Instruction* inst, uint32_t code_offset) {
1135 Instruction::DecodedInstruction dec_insn(inst);
1136 bool result = true;
1137 switch (inst->GetVerifyTypeArgumentA()) {
1138 case Instruction::kVerifyRegA:
1139 result = result && CheckRegisterIndex(dec_insn.vA_);
1140 break;
1141 case Instruction::kVerifyRegAWide:
1142 result = result && CheckWideRegisterIndex(dec_insn.vA_);
1143 break;
1144 }
1145 switch (inst->GetVerifyTypeArgumentB()) {
1146 case Instruction::kVerifyRegB:
1147 result = result && CheckRegisterIndex(dec_insn.vB_);
1148 break;
1149 case Instruction::kVerifyRegBField:
1150 result = result && CheckFieldIndex(dec_insn.vB_);
1151 break;
1152 case Instruction::kVerifyRegBMethod:
1153 result = result && CheckMethodIndex(dec_insn.vB_);
1154 break;
1155 case Instruction::kVerifyRegBNewInstance:
1156 result = result && CheckNewInstance(dec_insn.vB_);
1157 break;
1158 case Instruction::kVerifyRegBString:
1159 result = result && CheckStringIndex(dec_insn.vB_);
1160 break;
1161 case Instruction::kVerifyRegBType:
1162 result = result && CheckTypeIndex(dec_insn.vB_);
1163 break;
1164 case Instruction::kVerifyRegBWide:
1165 result = result && CheckWideRegisterIndex(dec_insn.vB_);
1166 break;
1167 }
1168 switch (inst->GetVerifyTypeArgumentC()) {
1169 case Instruction::kVerifyRegC:
1170 result = result && CheckRegisterIndex(dec_insn.vC_);
1171 break;
1172 case Instruction::kVerifyRegCField:
1173 result = result && CheckFieldIndex(dec_insn.vC_);
1174 break;
1175 case Instruction::kVerifyRegCNewArray:
1176 result = result && CheckNewArray(dec_insn.vC_);
1177 break;
1178 case Instruction::kVerifyRegCType:
1179 result = result && CheckTypeIndex(dec_insn.vC_);
1180 break;
1181 case Instruction::kVerifyRegCWide:
1182 result = result && CheckWideRegisterIndex(dec_insn.vC_);
1183 break;
1184 }
1185 switch (inst->GetVerifyExtraFlags()) {
1186 case Instruction::kVerifyArrayData:
1187 result = result && CheckArrayData(code_offset);
1188 break;
1189 case Instruction::kVerifyBranchTarget:
1190 result = result && CheckBranchTarget(code_offset);
1191 break;
1192 case Instruction::kVerifySwitchTargets:
1193 result = result && CheckSwitchTargets(code_offset);
1194 break;
1195 case Instruction::kVerifyVarArg:
1196 result = result && CheckVarArgRegs(dec_insn.vA_, dec_insn.arg_);
1197 break;
1198 case Instruction::kVerifyVarArgRange:
1199 result = result && CheckVarArgRangeRegs(dec_insn.vA_, dec_insn.vC_);
1200 break;
1201 case Instruction::kVerifyError:
1202 Fail(VERIFY_ERROR_GENERIC) << "unexpected opcode " << inst->Name();
1203 result = false;
1204 break;
1205 }
1206 return result;
1207}
1208
1209bool DexVerifier::CheckRegisterIndex(uint32_t idx) {
1210 if (idx >= code_item_->registers_size_) {
1211 Fail(VERIFY_ERROR_GENERIC) << "register index out of range (" << idx << " >= "
1212 << code_item_->registers_size_ << ")";
1213 return false;
1214 }
1215 return true;
1216}
1217
1218bool DexVerifier::CheckWideRegisterIndex(uint32_t idx) {
1219 if (idx + 1 >= code_item_->registers_size_) {
1220 Fail(VERIFY_ERROR_GENERIC) << "wide register index out of range (" << idx
1221 << "+1 >= " << code_item_->registers_size_ << ")";
1222 return false;
1223 }
1224 return true;
1225}
1226
1227bool DexVerifier::CheckFieldIndex(uint32_t idx) {
1228 if (idx >= dex_file_->GetHeader().field_ids_size_) {
1229 Fail(VERIFY_ERROR_GENERIC) << "bad field index " << idx << " (max "
1230 << dex_file_->GetHeader().field_ids_size_ << ")";
1231 return false;
1232 }
1233 return true;
1234}
1235
1236bool DexVerifier::CheckMethodIndex(uint32_t idx) {
1237 if (idx >= dex_file_->GetHeader().method_ids_size_) {
1238 Fail(VERIFY_ERROR_GENERIC) << "bad method index " << idx << " (max "
1239 << dex_file_->GetHeader().method_ids_size_ << ")";
1240 return false;
1241 }
1242 return true;
1243}
1244
1245bool DexVerifier::CheckNewInstance(uint32_t idx) {
1246 if (idx >= dex_file_->GetHeader().type_ids_size_) {
1247 Fail(VERIFY_ERROR_GENERIC) << "bad type index " << idx << " (max "
1248 << dex_file_->GetHeader().type_ids_size_ << ")";
1249 return false;
1250 }
1251 // We don't need the actual class, just a pointer to the class name.
Ian Rogers0571d352011-11-03 19:51:38 -07001252 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -07001253 if (descriptor[0] != 'L') {
1254 Fail(VERIFY_ERROR_GENERIC) << "can't call new-instance on type '" << descriptor << "'";
1255 return false;
1256 }
1257 return true;
1258}
1259
1260bool DexVerifier::CheckStringIndex(uint32_t idx) {
1261 if (idx >= dex_file_->GetHeader().string_ids_size_) {
1262 Fail(VERIFY_ERROR_GENERIC) << "bad string index " << idx << " (max "
1263 << dex_file_->GetHeader().string_ids_size_ << ")";
1264 return false;
1265 }
1266 return true;
1267}
1268
1269bool DexVerifier::CheckTypeIndex(uint32_t idx) {
1270 if (idx >= dex_file_->GetHeader().type_ids_size_) {
1271 Fail(VERIFY_ERROR_GENERIC) << "bad type index " << idx << " (max "
1272 << dex_file_->GetHeader().type_ids_size_ << ")";
1273 return false;
1274 }
1275 return true;
1276}
1277
1278bool DexVerifier::CheckNewArray(uint32_t idx) {
1279 if (idx >= dex_file_->GetHeader().type_ids_size_) {
1280 Fail(VERIFY_ERROR_GENERIC) << "bad type index " << idx << " (max "
1281 << dex_file_->GetHeader().type_ids_size_ << ")";
1282 return false;
1283 }
1284 int bracket_count = 0;
Ian Rogers0571d352011-11-03 19:51:38 -07001285 const char* descriptor = dex_file_->StringByTypeIdx(idx);
Ian Rogersd81871c2011-10-03 13:57:23 -07001286 const char* cp = descriptor;
1287 while (*cp++ == '[') {
1288 bracket_count++;
1289 }
1290 if (bracket_count == 0) {
1291 /* The given class must be an array type. */
1292 Fail(VERIFY_ERROR_GENERIC) << "can't new-array class '" << descriptor << "' (not an array)";
1293 return false;
1294 } else if (bracket_count > 255) {
1295 /* It is illegal to create an array of more than 255 dimensions. */
1296 Fail(VERIFY_ERROR_GENERIC) << "can't new-array class '" << descriptor << "' (exceeds limit)";
1297 return false;
1298 }
1299 return true;
1300}
1301
1302bool DexVerifier::CheckArrayData(uint32_t cur_offset) {
1303 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
1304 const uint16_t* insns = code_item_->insns_ + cur_offset;
1305 const uint16_t* array_data;
1306 int32_t array_data_offset;
1307
1308 DCHECK_LT(cur_offset, insn_count);
1309 /* make sure the start of the array data table is in range */
1310 array_data_offset = insns[1] | (((int32_t) insns[2]) << 16);
1311 if ((int32_t) cur_offset + array_data_offset < 0 ||
1312 cur_offset + array_data_offset + 2 >= insn_count) {
1313 Fail(VERIFY_ERROR_GENERIC) << "invalid array data start: at " << cur_offset
1314 << ", data offset " << array_data_offset << ", count " << insn_count;
1315 return false;
1316 }
1317 /* offset to array data table is a relative branch-style offset */
1318 array_data = insns + array_data_offset;
1319 /* make sure the table is 32-bit aligned */
1320 if ((((uint32_t) array_data) & 0x03) != 0) {
1321 Fail(VERIFY_ERROR_GENERIC) << "unaligned array data table: at " << cur_offset
1322 << ", data offset " << array_data_offset;
1323 return false;
1324 }
1325 uint32_t value_width = array_data[1];
1326 uint32_t value_count = *(uint32_t*) (&array_data[2]);
1327 uint32_t table_size = 4 + (value_width * value_count + 1) / 2;
1328 /* make sure the end of the switch is in range */
1329 if (cur_offset + array_data_offset + table_size > insn_count) {
1330 Fail(VERIFY_ERROR_GENERIC) << "invalid array data end: at " << cur_offset
1331 << ", data offset " << array_data_offset << ", end "
1332 << cur_offset + array_data_offset + table_size
1333 << ", count " << insn_count;
1334 return false;
1335 }
1336 return true;
1337}
1338
1339bool DexVerifier::CheckBranchTarget(uint32_t cur_offset) {
1340 int32_t offset;
1341 bool isConditional, selfOkay;
1342 if (!GetBranchOffset(cur_offset, &offset, &isConditional, &selfOkay)) {
1343 return false;
1344 }
1345 if (!selfOkay && offset == 0) {
1346 Fail(VERIFY_ERROR_GENERIC) << "branch offset of zero not allowed at" << (void*) cur_offset;
1347 return false;
1348 }
1349 // Check for 32-bit overflow. This isn't strictly necessary if we can depend on the VM to have
1350 // identical "wrap-around" behavior, but it's unwise to depend on that.
1351 if (((int64_t) cur_offset + (int64_t) offset) != (int64_t) (cur_offset + offset)) {
1352 Fail(VERIFY_ERROR_GENERIC) << "branch target overflow " << (void*) cur_offset << " +" << offset;
1353 return false;
1354 }
1355 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
1356 int32_t abs_offset = cur_offset + offset;
1357 if (abs_offset < 0 || (uint32_t) abs_offset >= insn_count || !insn_flags_[abs_offset].IsOpcode()) {
1358 Fail(VERIFY_ERROR_GENERIC) << "invalid branch target " << offset << " (-> "
1359 << (void*) abs_offset << ") at " << (void*) cur_offset;
1360 return false;
1361 }
1362 insn_flags_[abs_offset].SetBranchTarget();
1363 return true;
1364}
1365
1366bool DexVerifier::GetBranchOffset(uint32_t cur_offset, int32_t* pOffset, bool* pConditional,
1367 bool* selfOkay) {
1368 const uint16_t* insns = code_item_->insns_ + cur_offset;
1369 *pConditional = false;
1370 *selfOkay = false;
jeffhaoba5ebb92011-08-25 17:24:37 -07001371 switch (*insns & 0xff) {
1372 case Instruction::GOTO:
1373 *pOffset = ((int16_t) *insns) >> 8;
jeffhaoba5ebb92011-08-25 17:24:37 -07001374 break;
1375 case Instruction::GOTO_32:
1376 *pOffset = insns[1] | (((uint32_t) insns[2]) << 16);
jeffhaoba5ebb92011-08-25 17:24:37 -07001377 *selfOkay = true;
1378 break;
1379 case Instruction::GOTO_16:
1380 *pOffset = (int16_t) insns[1];
jeffhaoba5ebb92011-08-25 17:24:37 -07001381 break;
1382 case Instruction::IF_EQ:
1383 case Instruction::IF_NE:
1384 case Instruction::IF_LT:
1385 case Instruction::IF_GE:
1386 case Instruction::IF_GT:
1387 case Instruction::IF_LE:
1388 case Instruction::IF_EQZ:
1389 case Instruction::IF_NEZ:
1390 case Instruction::IF_LTZ:
1391 case Instruction::IF_GEZ:
1392 case Instruction::IF_GTZ:
1393 case Instruction::IF_LEZ:
1394 *pOffset = (int16_t) insns[1];
1395 *pConditional = true;
jeffhaoba5ebb92011-08-25 17:24:37 -07001396 break;
1397 default:
1398 return false;
1399 break;
1400 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001401 return true;
1402}
1403
Ian Rogersd81871c2011-10-03 13:57:23 -07001404bool DexVerifier::CheckSwitchTargets(uint32_t cur_offset) {
1405 const uint32_t insn_count = code_item_->insns_size_in_code_units_;
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07001406 DCHECK_LT(cur_offset, insn_count);
Ian Rogersd81871c2011-10-03 13:57:23 -07001407 const uint16_t* insns = code_item_->insns_ + cur_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001408 /* make sure the start of the switch is in range */
Ian Rogersd81871c2011-10-03 13:57:23 -07001409 int32_t switch_offset = insns[1] | ((int32_t) insns[2]) << 16;
1410 if ((int32_t) cur_offset + switch_offset < 0 || cur_offset + switch_offset + 2 >= insn_count) {
1411 Fail(VERIFY_ERROR_GENERIC) << "invalid switch start: at " << cur_offset
1412 << ", switch offset " << switch_offset << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001413 return false;
1414 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001415 /* offset to switch table is a relative branch-style offset */
Ian Rogersd81871c2011-10-03 13:57:23 -07001416 const uint16_t* switch_insns = insns + switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001417 /* make sure the table is 32-bit aligned */
1418 if ((((uint32_t) switch_insns) & 0x03) != 0) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001419 Fail(VERIFY_ERROR_GENERIC) << "unaligned switch table: at " << cur_offset
1420 << ", switch offset " << switch_offset;
jeffhaoba5ebb92011-08-25 17:24:37 -07001421 return false;
1422 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001423 uint32_t switch_count = switch_insns[1];
1424 int32_t keys_offset, targets_offset;
1425 uint16_t expected_signature;
jeffhaoba5ebb92011-08-25 17:24:37 -07001426 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
1427 /* 0=sig, 1=count, 2/3=firstKey */
1428 targets_offset = 4;
1429 keys_offset = -1;
1430 expected_signature = Instruction::kPackedSwitchSignature;
1431 } else {
1432 /* 0=sig, 1=count, 2..count*2 = keys */
1433 keys_offset = 2;
1434 targets_offset = 2 + 2 * switch_count;
1435 expected_signature = Instruction::kSparseSwitchSignature;
1436 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001437 uint32_t table_size = targets_offset + switch_count * 2;
jeffhaoba5ebb92011-08-25 17:24:37 -07001438 if (switch_insns[0] != expected_signature) {
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -08001439 Fail(VERIFY_ERROR_GENERIC) << StringPrintf("wrong signature for switch table (%x, wanted %x)",
1440 switch_insns[0], expected_signature);
jeffhaoba5ebb92011-08-25 17:24:37 -07001441 return false;
1442 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001443 /* make sure the end of the switch is in range */
1444 if (cur_offset + switch_offset + table_size > (uint32_t) insn_count) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001445 Fail(VERIFY_ERROR_GENERIC) << "invalid switch end: at " << cur_offset << ", switch offset "
1446 << switch_offset << ", end "
1447 << (cur_offset + switch_offset + table_size)
1448 << ", count " << insn_count;
jeffhaoba5ebb92011-08-25 17:24:37 -07001449 return false;
1450 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001451 /* for a sparse switch, verify the keys are in ascending order */
1452 if (keys_offset > 0 && switch_count > 1) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001453 int32_t last_key = switch_insns[keys_offset] | (switch_insns[keys_offset + 1] << 16);
1454 for (uint32_t targ = 1; targ < switch_count; targ++) {
jeffhaoba5ebb92011-08-25 17:24:37 -07001455 int32_t key = (int32_t) switch_insns[keys_offset + targ * 2] |
1456 (int32_t) (switch_insns[keys_offset + targ * 2 + 1] << 16);
1457 if (key <= last_key) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001458 Fail(VERIFY_ERROR_GENERIC) << "invalid packed switch: last key=" << last_key
1459 << ", this=" << key;
jeffhaoba5ebb92011-08-25 17:24:37 -07001460 return false;
1461 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001462 last_key = key;
1463 }
1464 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001465 /* verify each switch target */
Ian Rogersd81871c2011-10-03 13:57:23 -07001466 for (uint32_t targ = 0; targ < switch_count; targ++) {
1467 int32_t offset = (int32_t) switch_insns[targets_offset + targ * 2] |
1468 (int32_t) (switch_insns[targets_offset + targ * 2 + 1] << 16);
1469 int32_t abs_offset = cur_offset + offset;
1470 if (abs_offset < 0 || abs_offset >= (int32_t) insn_count || !insn_flags_[abs_offset].IsOpcode()) {
1471 Fail(VERIFY_ERROR_GENERIC) << "invalid switch target " << offset << " (-> "
1472 << (void*) abs_offset << ") at "
1473 << (void*) cur_offset << "[" << targ << "]";
jeffhaoba5ebb92011-08-25 17:24:37 -07001474 return false;
1475 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001476 insn_flags_[abs_offset].SetBranchTarget();
1477 }
1478 return true;
1479}
1480
1481bool DexVerifier::CheckVarArgRegs(uint32_t vA, uint32_t arg[]) {
1482 if (vA > 5) {
1483 Fail(VERIFY_ERROR_GENERIC) << "invalid arg count (" << vA << ") in non-range invoke)";
1484 return false;
1485 }
1486 uint16_t registers_size = code_item_->registers_size_;
1487 for (uint32_t idx = 0; idx < vA; idx++) {
1488 if (arg[idx] > registers_size) {
1489 Fail(VERIFY_ERROR_GENERIC) << "invalid reg index (" << arg[idx]
1490 << ") in non-range invoke (> " << registers_size << ")";
1491 return false;
1492 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001493 }
1494
1495 return true;
1496}
1497
Ian Rogersd81871c2011-10-03 13:57:23 -07001498bool DexVerifier::CheckVarArgRangeRegs(uint32_t vA, uint32_t vC) {
1499 uint16_t registers_size = code_item_->registers_size_;
1500 // vA/vC are unsigned 8-bit/16-bit quantities for /range instructions, so there's no risk of
1501 // integer overflow when adding them here.
1502 if (vA + vC > registers_size) {
1503 Fail(VERIFY_ERROR_GENERIC) << "invalid reg index " << vA << "+" << vC << " in range invoke (> "
1504 << registers_size << ")";
jeffhaoba5ebb92011-08-25 17:24:37 -07001505 return false;
1506 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001507 return true;
1508}
1509
Brian Carlstrom75412882012-01-18 01:26:54 -08001510const std::vector<uint8_t>* CreateLengthPrefixedGcMap(const std::vector<uint8_t>& gc_map) {
1511 std::vector<uint8_t>* length_prefixed_gc_map = new std::vector<uint8_t>;
1512 length_prefixed_gc_map->push_back((gc_map.size() & 0xff000000) >> 24);
1513 length_prefixed_gc_map->push_back((gc_map.size() & 0x00ff0000) >> 16);
1514 length_prefixed_gc_map->push_back((gc_map.size() & 0x0000ff00) >> 8);
1515 length_prefixed_gc_map->push_back((gc_map.size() & 0x000000ff) >> 0);
1516 length_prefixed_gc_map->insert(length_prefixed_gc_map->end(),
1517 gc_map.begin(),
1518 gc_map.end());
1519 DCHECK_EQ(gc_map.size() + 4, length_prefixed_gc_map->size());
1520 DCHECK_EQ(gc_map.size(),
1521 static_cast<size_t>((length_prefixed_gc_map->at(0) << 24) |
1522 (length_prefixed_gc_map->at(1) << 16) |
1523 (length_prefixed_gc_map->at(2) << 8) |
1524 (length_prefixed_gc_map->at(3) << 0)));
1525 return length_prefixed_gc_map;
1526}
1527
Ian Rogersd81871c2011-10-03 13:57:23 -07001528bool DexVerifier::VerifyCodeFlow() {
1529 uint16_t registers_size = code_item_->registers_size_;
1530 uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaobdb76512011-09-07 11:43:16 -07001531
Ian Rogersd81871c2011-10-03 13:57:23 -07001532 if (registers_size * insns_size > 4*1024*1024) {
1533 Fail(VERIFY_ERROR_GENERIC) << "warning: method is huge (regs=" << registers_size
1534 << " insns_size=" << insns_size << ")";
1535 }
1536 /* Create and initialize table holding register status */
1537 reg_table_.Init(PcToRegisterLineTable::kTrackRegsGcPoints, insn_flags_.get(), insns_size,
1538 registers_size, this);
jeffhaobdb76512011-09-07 11:43:16 -07001539
Ian Rogersd81871c2011-10-03 13:57:23 -07001540 work_line_.reset(new RegisterLine(registers_size, this));
1541 saved_line_.reset(new RegisterLine(registers_size, this));
jeffhaobdb76512011-09-07 11:43:16 -07001542
Ian Rogersd81871c2011-10-03 13:57:23 -07001543 /* Initialize register types of method arguments. */
1544 if (!SetTypesFromSignature()) {
Ian Rogers2c8a8572011-10-24 17:11:36 -07001545 DCHECK_NE(failure_, VERIFY_ERROR_NONE);
1546 fail_messages_ << "Bad signature in " << PrettyMethod(method_);
Ian Rogersd81871c2011-10-03 13:57:23 -07001547 return false;
1548 }
1549 /* Perform code flow verification. */
1550 if (!CodeFlowVerifyMethod()) {
Brian Carlstrom75412882012-01-18 01:26:54 -08001551 DCHECK_NE(failure_, VERIFY_ERROR_NONE);
Ian Rogersd81871c2011-10-03 13:57:23 -07001552 return false;
jeffhaobdb76512011-09-07 11:43:16 -07001553 }
1554
Ian Rogersd81871c2011-10-03 13:57:23 -07001555 /* Generate a register map and add it to the method. */
Brian Carlstrom75412882012-01-18 01:26:54 -08001556 UniquePtr<const std::vector<uint8_t> > map(GenerateGcMap());
1557 if (map.get() == NULL) {
1558 DCHECK_NE(failure_, VERIFY_ERROR_NONE);
Ian Rogersd81871c2011-10-03 13:57:23 -07001559 return false; // Not a real failure, but a failure to encode
1560 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001561#ifndef NDEBUG
Brian Carlstrome7d856b2012-01-11 18:10:55 -08001562 VerifyGcMap(*map);
Ian Rogersd81871c2011-10-03 13:57:23 -07001563#endif
Brian Carlstrom75412882012-01-18 01:26:54 -08001564 const std::vector<uint8_t>* gc_map = CreateLengthPrefixedGcMap(*(map.get()));
1565 Compiler::MethodReference ref(dex_file_, method_->GetDexMethodIndex());
1566 verifier::DexVerifier::SetGcMap(ref, *gc_map);
1567 method_->SetGcMap(&gc_map->at(0));
jeffhaobdb76512011-09-07 11:43:16 -07001568 return true;
1569}
1570
Ian Rogersd81871c2011-10-03 13:57:23 -07001571void DexVerifier::Dump(std::ostream& os) {
1572 if (method_->IsNative()) {
1573 os << "Native method" << std::endl;
1574 return;
jeffhaobdb76512011-09-07 11:43:16 -07001575 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001576 DCHECK(code_item_ != NULL);
1577 const Instruction* inst = Instruction::At(code_item_->insns_);
1578 for (size_t dex_pc = 0; dex_pc < code_item_->insns_size_in_code_units_;
1579 dex_pc += insn_flags_[dex_pc].GetLengthInCodeUnits()) {
Elliott Hughesaa6e1cd2012-01-18 19:26:06 -08001580 os << StringPrintf("0x%04zx", dex_pc) << ": " << insn_flags_[dex_pc].Dump()
Ian Rogers2c8a8572011-10-24 17:11:36 -07001581 << " " << inst->DumpHex(5) << " " << inst->DumpString(dex_file_) << std::endl;
Ian Rogersd81871c2011-10-03 13:57:23 -07001582 RegisterLine* reg_line = reg_table_.GetLine(dex_pc);
1583 if (reg_line != NULL) {
Ian Rogers2c8a8572011-10-24 17:11:36 -07001584 os << reg_line->Dump() << std::endl;
jeffhaobdb76512011-09-07 11:43:16 -07001585 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001586 inst = inst->Next();
1587 }
jeffhaobdb76512011-09-07 11:43:16 -07001588}
1589
Ian Rogersd81871c2011-10-03 13:57:23 -07001590static bool IsPrimitiveDescriptor(char descriptor) {
1591 switch (descriptor) {
jeffhaobdb76512011-09-07 11:43:16 -07001592 case 'I':
1593 case 'C':
1594 case 'S':
1595 case 'B':
1596 case 'Z':
jeffhaobdb76512011-09-07 11:43:16 -07001597 case 'F':
1598 case 'D':
1599 case 'J':
Ian Rogersd81871c2011-10-03 13:57:23 -07001600 return true;
jeffhaobdb76512011-09-07 11:43:16 -07001601 default:
1602 return false;
1603 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001604}
1605
Ian Rogersd81871c2011-10-03 13:57:23 -07001606bool DexVerifier::SetTypesFromSignature() {
1607 RegisterLine* reg_line = reg_table_.GetLine(0);
1608 int arg_start = code_item_->registers_size_ - code_item_->ins_size_;
1609 size_t expected_args = code_item_->ins_size_; /* long/double count as two */
jeffhaobdb76512011-09-07 11:43:16 -07001610
Ian Rogersd81871c2011-10-03 13:57:23 -07001611 DCHECK_GE(arg_start, 0); /* should have been verified earlier */
1612 //Include the "this" pointer.
1613 size_t cur_arg = 0;
1614 if (!method_->IsStatic()) {
1615 // If this is a constructor for a class other than java.lang.Object, mark the first ("this")
1616 // argument as uninitialized. This restricts field access until the superclass constructor is
1617 // called.
1618 Class* declaring_class = method_->GetDeclaringClass();
1619 if (method_->IsConstructor() && !declaring_class->IsObjectClass()) {
1620 reg_line->SetRegisterType(arg_start + cur_arg,
1621 reg_types_.UninitializedThisArgument(declaring_class));
1622 } else {
1623 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.FromClass(declaring_class));
jeffhaobdb76512011-09-07 11:43:16 -07001624 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001625 cur_arg++;
jeffhaobdb76512011-09-07 11:43:16 -07001626 }
1627
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08001628 const DexFile::ProtoId& proto_id =
1629 dex_file_->GetMethodPrototype(dex_file_->GetMethodId(method_->GetDexMethodIndex()));
Ian Rogers0571d352011-11-03 19:51:38 -07001630 DexFileParameterIterator iterator(*dex_file_, proto_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07001631
1632 for (; iterator.HasNext(); iterator.Next()) {
1633 const char* descriptor = iterator.GetDescriptor();
1634 if (descriptor == NULL) {
1635 LOG(FATAL) << "Null descriptor";
1636 }
1637 if (cur_arg >= expected_args) {
1638 Fail(VERIFY_ERROR_GENERIC) << "expected " << expected_args
1639 << " args, found more (" << descriptor << ")";
1640 return false;
1641 }
1642 switch (descriptor[0]) {
1643 case 'L':
1644 case '[':
1645 // We assume that reference arguments are initialized. The only way it could be otherwise
1646 // (assuming the caller was verified) is if the current method is <init>, but in that case
1647 // it's effectively considered initialized the instant we reach here (in the sense that we
1648 // can return without doing anything or call virtual methods).
1649 {
1650 const RegType& reg_type =
1651 reg_types_.FromDescriptor(method_->GetDeclaringClass()->GetClassLoader(), descriptor);
Ian Rogers84fa0742011-10-25 18:13:30 -07001652 reg_line->SetRegisterType(arg_start + cur_arg, reg_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07001653 }
1654 break;
1655 case 'Z':
1656 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Boolean());
1657 break;
1658 case 'C':
1659 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Char());
1660 break;
1661 case 'B':
1662 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Byte());
1663 break;
1664 case 'I':
1665 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Integer());
1666 break;
1667 case 'S':
1668 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Short());
1669 break;
1670 case 'F':
1671 reg_line->SetRegisterType(arg_start + cur_arg, reg_types_.Float());
1672 break;
1673 case 'J':
1674 case 'D': {
1675 const RegType& low_half = descriptor[0] == 'J' ? reg_types_.Long() : reg_types_.Double();
1676 reg_line->SetRegisterType(arg_start + cur_arg, low_half); // implicitly sets high-register
1677 cur_arg++;
1678 break;
1679 }
1680 default:
1681 Fail(VERIFY_ERROR_GENERIC) << "unexpected signature type char '" << descriptor << "'";
1682 return false;
1683 }
1684 cur_arg++;
1685 }
1686 if (cur_arg != expected_args) {
1687 Fail(VERIFY_ERROR_GENERIC) << "expected " << expected_args << " arguments, found " << cur_arg;
1688 return false;
1689 }
1690 const char* descriptor = dex_file_->GetReturnTypeDescriptor(proto_id);
1691 // Validate return type. We don't do the type lookup; just want to make sure that it has the right
1692 // format. Only major difference from the method argument format is that 'V' is supported.
1693 bool result;
1694 if (IsPrimitiveDescriptor(descriptor[0]) || descriptor[0] == 'V') {
1695 result = descriptor[1] == '\0';
1696 } else if (descriptor[0] == '[') { // single/multi-dimensional array of object/primitive
1697 size_t i = 0;
1698 do {
1699 i++;
1700 } while (descriptor[i] == '['); // process leading [
1701 if (descriptor[i] == 'L') { // object array
1702 do {
1703 i++; // find closing ;
1704 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1705 result = descriptor[i] == ';';
1706 } else { // primitive array
1707 result = IsPrimitiveDescriptor(descriptor[i]) && descriptor[i + 1] == '\0';
1708 }
1709 } else if (descriptor[0] == 'L') {
1710 // could be more thorough here, but shouldn't be required
1711 size_t i = 0;
1712 do {
1713 i++;
1714 } while (descriptor[i] != ';' && descriptor[i] != '\0');
1715 result = descriptor[i] == ';';
1716 } else {
1717 result = false;
1718 }
1719 if (!result) {
1720 Fail(VERIFY_ERROR_GENERIC) << "unexpected char in return type descriptor '"
1721 << descriptor << "'";
1722 }
1723 return result;
jeffhaobdb76512011-09-07 11:43:16 -07001724}
1725
Ian Rogersd81871c2011-10-03 13:57:23 -07001726bool DexVerifier::CodeFlowVerifyMethod() {
1727 const uint16_t* insns = code_item_->insns_;
1728 const uint32_t insns_size = code_item_->insns_size_in_code_units_;
jeffhaoba5ebb92011-08-25 17:24:37 -07001729
jeffhaobdb76512011-09-07 11:43:16 -07001730 /* Begin by marking the first instruction as "changed". */
Ian Rogersd81871c2011-10-03 13:57:23 -07001731 insn_flags_[0].SetChanged();
1732 uint32_t start_guess = 0;
jeffhaoba5ebb92011-08-25 17:24:37 -07001733
jeffhaobdb76512011-09-07 11:43:16 -07001734 /* Continue until no instructions are marked "changed". */
1735 while (true) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001736 // Find the first marked one. Use "start_guess" as a way to find one quickly.
1737 uint32_t insn_idx = start_guess;
1738 for (; insn_idx < insns_size; insn_idx++) {
1739 if (insn_flags_[insn_idx].IsChanged())
jeffhaobdb76512011-09-07 11:43:16 -07001740 break;
1741 }
jeffhaobdb76512011-09-07 11:43:16 -07001742 if (insn_idx == insns_size) {
1743 if (start_guess != 0) {
1744 /* try again, starting from the top */
1745 start_guess = 0;
1746 continue;
1747 } else {
1748 /* all flags are clear */
1749 break;
1750 }
1751 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001752 // We carry the working set of registers from instruction to instruction. If this address can
1753 // be the target of a branch (or throw) instruction, or if we're skipping around chasing
1754 // "changed" flags, we need to load the set of registers from the table.
1755 // Because we always prefer to continue on to the next instruction, we should never have a
1756 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1757 // target.
1758 work_insn_idx_ = insn_idx;
1759 if (insn_flags_[insn_idx].IsBranchTarget()) {
1760 work_line_->CopyFromLine(reg_table_.GetLine(insn_idx));
jeffhaobdb76512011-09-07 11:43:16 -07001761 } else {
1762#ifndef NDEBUG
1763 /*
1764 * Sanity check: retrieve the stored register line (assuming
1765 * a full table) and make sure it actually matches.
1766 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001767 RegisterLine* register_line = reg_table_.GetLine(insn_idx);
1768 if (register_line != NULL) {
1769 if (work_line_->CompareLine(register_line) != 0) {
1770 Dump(std::cout);
1771 std::cout << info_messages_.str();
1772 LOG(FATAL) << "work_line diverged in " << PrettyMethod(method_)
1773 << "@" << (void*)work_insn_idx_ << std::endl
1774 << " work_line=" << *work_line_ << std::endl
1775 << " expected=" << *register_line;
1776 }
jeffhaobdb76512011-09-07 11:43:16 -07001777 }
1778#endif
1779 }
Ian Rogersd81871c2011-10-03 13:57:23 -07001780 if (!CodeFlowVerifyInstruction(&start_guess)) {
1781 fail_messages_ << std::endl << PrettyMethod(method_) << " failed to verify";
jeffhaoba5ebb92011-08-25 17:24:37 -07001782 return false;
1783 }
jeffhaobdb76512011-09-07 11:43:16 -07001784 /* Clear "changed" and mark as visited. */
Ian Rogersd81871c2011-10-03 13:57:23 -07001785 insn_flags_[insn_idx].SetVisited();
1786 insn_flags_[insn_idx].ClearChanged();
jeffhaobdb76512011-09-07 11:43:16 -07001787 }
jeffhaoba5ebb92011-08-25 17:24:37 -07001788
Ian Rogersd81871c2011-10-03 13:57:23 -07001789 if (DEAD_CODE_SCAN && ((method_->GetAccessFlags() & kAccWritable) == 0)) {
jeffhaobdb76512011-09-07 11:43:16 -07001790 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001791 * Scan for dead code. There's nothing "evil" about dead code
jeffhaobdb76512011-09-07 11:43:16 -07001792 * (besides the wasted space), but it indicates a flaw somewhere
1793 * down the line, possibly in the verifier.
1794 *
1795 * If we've substituted "always throw" instructions into the stream,
1796 * we are almost certainly going to have some dead code.
1797 */
1798 int dead_start = -1;
Ian Rogersd81871c2011-10-03 13:57:23 -07001799 uint32_t insn_idx = 0;
1800 for (; insn_idx < insns_size; insn_idx += insn_flags_[insn_idx].GetLengthInCodeUnits()) {
jeffhaobdb76512011-09-07 11:43:16 -07001801 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001802 * Switch-statement data doesn't get "visited" by scanner. It
jeffhaobdb76512011-09-07 11:43:16 -07001803 * may or may not be preceded by a padding NOP (for alignment).
1804 */
1805 if (insns[insn_idx] == Instruction::kPackedSwitchSignature ||
1806 insns[insn_idx] == Instruction::kSparseSwitchSignature ||
1807 insns[insn_idx] == Instruction::kArrayDataSignature ||
1808 (insns[insn_idx] == Instruction::NOP &&
1809 (insns[insn_idx + 1] == Instruction::kPackedSwitchSignature ||
1810 insns[insn_idx + 1] == Instruction::kSparseSwitchSignature ||
1811 insns[insn_idx + 1] == Instruction::kArrayDataSignature))) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001812 insn_flags_[insn_idx].SetVisited();
jeffhaobdb76512011-09-07 11:43:16 -07001813 }
1814
Ian Rogersd81871c2011-10-03 13:57:23 -07001815 if (!insn_flags_[insn_idx].IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001816 if (dead_start < 0)
1817 dead_start = insn_idx;
1818 } else if (dead_start >= 0) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001819 LogVerifyInfo() << "dead code " << (void*) dead_start << "-" << (void*) (insn_idx - 1);
jeffhaobdb76512011-09-07 11:43:16 -07001820 dead_start = -1;
1821 }
1822 }
1823 if (dead_start >= 0) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001824 LogVerifyInfo() << "dead code " << (void*) dead_start << "-" << (void*) (insn_idx - 1);
jeffhaoba5ebb92011-08-25 17:24:37 -07001825 }
1826 }
jeffhaobdb76512011-09-07 11:43:16 -07001827 return true;
1828}
1829
Ian Rogersd81871c2011-10-03 13:57:23 -07001830bool DexVerifier::CodeFlowVerifyInstruction(uint32_t* start_guess) {
jeffhaobdb76512011-09-07 11:43:16 -07001831#ifdef VERIFIER_STATS
Ian Rogersd81871c2011-10-03 13:57:23 -07001832 if (CurrentInsnFlags().IsVisited()) {
jeffhaobdb76512011-09-07 11:43:16 -07001833 gDvm.verifierStats.instrsReexamined++;
1834 } else {
1835 gDvm.verifierStats.instrsExamined++;
1836 }
1837#endif
1838
1839 /*
1840 * Once we finish decoding the instruction, we need to figure out where
jeffhaod1f0fde2011-09-08 17:25:33 -07001841 * we can go from here. There are three possible ways to transfer
jeffhaobdb76512011-09-07 11:43:16 -07001842 * control to another statement:
1843 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001844 * (1) Continue to the next instruction. Applies to all but
jeffhaobdb76512011-09-07 11:43:16 -07001845 * unconditional branches, method returns, and exception throws.
jeffhaod1f0fde2011-09-08 17:25:33 -07001846 * (2) Branch to one or more possible locations. Applies to branches
jeffhaobdb76512011-09-07 11:43:16 -07001847 * and switch statements.
jeffhaod1f0fde2011-09-08 17:25:33 -07001848 * (3) Exception handlers. Applies to any instruction that can
jeffhaobdb76512011-09-07 11:43:16 -07001849 * throw an exception that is handled by an encompassing "try"
1850 * block.
1851 *
1852 * We can also return, in which case there is no successor instruction
1853 * from this point.
1854 *
1855 * The behavior can be determined from the OpcodeFlags.
1856 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001857 const uint16_t* insns = code_item_->insns_ + work_insn_idx_;
1858 const Instruction* inst = Instruction::At(insns);
jeffhaobdb76512011-09-07 11:43:16 -07001859 Instruction::DecodedInstruction dec_insn(inst);
1860 int opcode_flag = inst->Flag();
1861
jeffhaobdb76512011-09-07 11:43:16 -07001862 int32_t branch_target = 0;
jeffhaobdb76512011-09-07 11:43:16 -07001863 bool just_set_result = false;
Ian Rogers2c8a8572011-10-24 17:11:36 -07001864 if (gDebugVerify) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001865 // Generate processing back trace to debug verifier
Ian Rogers5ed29bf2011-10-26 12:22:21 -07001866 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << std::endl
1867 << *work_line_.get() << std::endl;
Ian Rogersd81871c2011-10-03 13:57:23 -07001868 }
jeffhaobdb76512011-09-07 11:43:16 -07001869
1870 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001871 * Make a copy of the previous register state. If the instruction
jeffhaobdb76512011-09-07 11:43:16 -07001872 * can throw an exception, we will copy/merge this into the "catch"
1873 * address rather than work_line, because we don't want the result
1874 * from the "successful" code path (e.g. a check-cast that "improves"
1875 * a type) to be visible to the exception handler.
1876 */
Ian Rogersd81871c2011-10-03 13:57:23 -07001877 if ((opcode_flag & Instruction::kThrow) != 0 && CurrentInsnFlags().IsInTry()) {
1878 saved_line_->CopyFromLine(work_line_.get());
jeffhaobdb76512011-09-07 11:43:16 -07001879 } else {
1880#ifndef NDEBUG
Ian Rogersd81871c2011-10-03 13:57:23 -07001881 saved_line_->FillWithGarbage();
jeffhaobdb76512011-09-07 11:43:16 -07001882#endif
1883 }
1884
1885 switch (dec_insn.opcode_) {
1886 case Instruction::NOP:
1887 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07001888 * A "pure" NOP has no effect on anything. Data tables start with
jeffhaobdb76512011-09-07 11:43:16 -07001889 * a signature that looks like a NOP; if we see one of these in
1890 * the course of executing code then we have a problem.
1891 */
1892 if (dec_insn.vA_ != 0) {
Ian Rogersd81871c2011-10-03 13:57:23 -07001893 Fail(VERIFY_ERROR_GENERIC) << "encountered data table in instruction stream";
jeffhaobdb76512011-09-07 11:43:16 -07001894 }
1895 break;
1896
1897 case Instruction::MOVE:
1898 case Instruction::MOVE_FROM16:
1899 case Instruction::MOVE_16:
Ian Rogersd81871c2011-10-03 13:57:23 -07001900 work_line_->CopyRegister1(dec_insn.vA_, dec_insn.vB_, kTypeCategory1nr);
jeffhaobdb76512011-09-07 11:43:16 -07001901 break;
1902 case Instruction::MOVE_WIDE:
1903 case Instruction::MOVE_WIDE_FROM16:
1904 case Instruction::MOVE_WIDE_16:
Ian Rogersd81871c2011-10-03 13:57:23 -07001905 work_line_->CopyRegister2(dec_insn.vA_, dec_insn.vB_);
jeffhaobdb76512011-09-07 11:43:16 -07001906 break;
1907 case Instruction::MOVE_OBJECT:
1908 case Instruction::MOVE_OBJECT_FROM16:
1909 case Instruction::MOVE_OBJECT_16:
Ian Rogersd81871c2011-10-03 13:57:23 -07001910 work_line_->CopyRegister1(dec_insn.vA_, dec_insn.vB_, kTypeCategoryRef);
jeffhaobdb76512011-09-07 11:43:16 -07001911 break;
1912
1913 /*
1914 * The move-result instructions copy data out of a "pseudo-register"
jeffhaod1f0fde2011-09-08 17:25:33 -07001915 * with the results from the last method invocation. In practice we
jeffhaobdb76512011-09-07 11:43:16 -07001916 * might want to hold the result in an actual CPU register, so the
1917 * Dalvik spec requires that these only appear immediately after an
1918 * invoke or filled-new-array.
1919 *
jeffhaod1f0fde2011-09-08 17:25:33 -07001920 * These calls invalidate the "result" register. (This is now
jeffhaobdb76512011-09-07 11:43:16 -07001921 * redundant with the reset done below, but it can make the debug info
1922 * easier to read in some cases.)
1923 */
1924 case Instruction::MOVE_RESULT:
Ian Rogersd81871c2011-10-03 13:57:23 -07001925 work_line_->CopyResultRegister1(dec_insn.vA_, false);
jeffhaobdb76512011-09-07 11:43:16 -07001926 break;
1927 case Instruction::MOVE_RESULT_WIDE:
Ian Rogersd81871c2011-10-03 13:57:23 -07001928 work_line_->CopyResultRegister2(dec_insn.vA_);
jeffhaobdb76512011-09-07 11:43:16 -07001929 break;
1930 case Instruction::MOVE_RESULT_OBJECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07001931 work_line_->CopyResultRegister1(dec_insn.vA_, true);
jeffhaobdb76512011-09-07 11:43:16 -07001932 break;
1933
Ian Rogersd81871c2011-10-03 13:57:23 -07001934 case Instruction::MOVE_EXCEPTION: {
jeffhaobdb76512011-09-07 11:43:16 -07001935 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07001936 * This statement can only appear as the first instruction in an exception handler (though not
1937 * all exception handlers need to have one of these). We verify that as part of extracting the
jeffhaobdb76512011-09-07 11:43:16 -07001938 * exception type from the catch block list.
jeffhaobdb76512011-09-07 11:43:16 -07001939 */
Ian Rogers28ad40d2011-10-27 15:19:26 -07001940 const RegType& res_type = GetCaughtExceptionType();
1941 work_line_->SetRegisterType(dec_insn.vA_, res_type);
jeffhaobdb76512011-09-07 11:43:16 -07001942 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07001943 }
jeffhaobdb76512011-09-07 11:43:16 -07001944 case Instruction::RETURN_VOID:
Ian Rogersd81871c2011-10-03 13:57:23 -07001945 if (!method_->IsConstructor() || work_line_->CheckConstructorReturn()) {
1946 if (!GetMethodReturnType().IsUnknown()) {
1947 Fail(VERIFY_ERROR_GENERIC) << "return-void not expected";
1948 }
jeffhaobdb76512011-09-07 11:43:16 -07001949 }
1950 break;
1951 case Instruction::RETURN:
Ian Rogersd81871c2011-10-03 13:57:23 -07001952 if (!method_->IsConstructor() || work_line_->CheckConstructorReturn()) {
jeffhaobdb76512011-09-07 11:43:16 -07001953 /* check the method signature */
Ian Rogersd81871c2011-10-03 13:57:23 -07001954 const RegType& return_type = GetMethodReturnType();
1955 if (!return_type.IsCategory1Types()) {
1956 Fail(VERIFY_ERROR_GENERIC) << "unexpected non-category 1 return type " << return_type;
1957 } else {
1958 // Compilers may generate synthetic functions that write byte values into boolean fields.
1959 // Also, it may use integer values for boolean, byte, short, and character return types.
1960 const RegType& src_type = work_line_->GetRegisterType(dec_insn.vA_);
1961 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) ||
1962 ((return_type.IsBoolean() || return_type.IsByte() ||
1963 return_type.IsShort() || return_type.IsChar()) &&
1964 src_type.IsInteger()));
1965 /* check the register contents */
1966 work_line_->VerifyRegisterType(dec_insn.vA_, use_src ? src_type : return_type);
1967 if (failure_ != VERIFY_ERROR_NONE) {
Ian Rogers84fa0742011-10-25 18:13:30 -07001968 fail_messages_ << " return-1nr on invalid register v" << dec_insn.vA_;
Ian Rogersd81871c2011-10-03 13:57:23 -07001969 }
jeffhaobdb76512011-09-07 11:43:16 -07001970 }
1971 }
1972 break;
1973 case Instruction::RETURN_WIDE:
Ian Rogersd81871c2011-10-03 13:57:23 -07001974 if (!method_->IsConstructor() || work_line_->CheckConstructorReturn()) {
jeffhaobdb76512011-09-07 11:43:16 -07001975 /* check the method signature */
Ian Rogersd81871c2011-10-03 13:57:23 -07001976 const RegType& return_type = GetMethodReturnType();
1977 if (!return_type.IsCategory2Types()) {
1978 Fail(VERIFY_ERROR_GENERIC) << "return-wide not expected";
1979 } else {
1980 /* check the register contents */
1981 work_line_->VerifyRegisterType(dec_insn.vA_, return_type);
1982 if (failure_ != VERIFY_ERROR_NONE) {
Ian Rogers84fa0742011-10-25 18:13:30 -07001983 fail_messages_ << " return-wide on invalid register pair v" << dec_insn.vA_;
Ian Rogersd81871c2011-10-03 13:57:23 -07001984 }
jeffhaobdb76512011-09-07 11:43:16 -07001985 }
1986 }
1987 break;
1988 case Instruction::RETURN_OBJECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07001989 if (!method_->IsConstructor() || work_line_->CheckConstructorReturn()) {
1990 const RegType& return_type = GetMethodReturnType();
1991 if (!return_type.IsReferenceTypes()) {
1992 Fail(VERIFY_ERROR_GENERIC) << "return-object not expected";
1993 } else {
1994 /* return_type is the *expected* return type, not register value */
1995 DCHECK(!return_type.IsZero());
1996 DCHECK(!return_type.IsUninitializedReference());
Ian Rogers9074b992011-10-26 17:41:55 -07001997 const RegType& reg_type = work_line_->GetRegisterType(dec_insn.vA_);
1998 // Disallow returning uninitialized values and verify that the reference in vAA is an
1999 // instance of the "return_type"
2000 if (reg_type.IsUninitializedTypes()) {
2001 Fail(VERIFY_ERROR_GENERIC) << "returning uninitialized object '" << reg_type << "'";
2002 } else if (!return_type.IsAssignableFrom(reg_type)) {
2003 Fail(VERIFY_ERROR_GENERIC) << "returning '" << reg_type
2004 << "', but expected from declaration '" << return_type << "'";
jeffhaobdb76512011-09-07 11:43:16 -07002005 }
2006 }
2007 }
2008 break;
2009
2010 case Instruction::CONST_4:
2011 case Instruction::CONST_16:
2012 case Instruction::CONST:
2013 /* could be boolean, int, float, or a null reference */
Ian Rogersd81871c2011-10-03 13:57:23 -07002014 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.FromCat1Const((int32_t) dec_insn.vB_));
jeffhaobdb76512011-09-07 11:43:16 -07002015 break;
2016 case Instruction::CONST_HIGH16:
2017 /* could be boolean, int, float, or a null reference */
Ian Rogersd81871c2011-10-03 13:57:23 -07002018 work_line_->SetRegisterType(dec_insn.vA_,
2019 reg_types_.FromCat1Const((int32_t) dec_insn.vB_ << 16));
jeffhaobdb76512011-09-07 11:43:16 -07002020 break;
2021 case Instruction::CONST_WIDE_16:
2022 case Instruction::CONST_WIDE_32:
2023 case Instruction::CONST_WIDE:
2024 case Instruction::CONST_WIDE_HIGH16:
2025 /* could be long or double; resolved upon use */
Ian Rogersd81871c2011-10-03 13:57:23 -07002026 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.ConstLo());
jeffhaobdb76512011-09-07 11:43:16 -07002027 break;
2028 case Instruction::CONST_STRING:
2029 case Instruction::CONST_STRING_JUMBO:
Ian Rogersd81871c2011-10-03 13:57:23 -07002030 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.JavaLangString());
jeffhaobdb76512011-09-07 11:43:16 -07002031 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002032 case Instruction::CONST_CLASS: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002033 // Get type from instruction if unresolved then we need an access check
2034 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
2035 const RegType& res_type = ResolveClassAndCheckAccess(dec_insn.vB_);
2036 // Register holds class, ie its type is class, but on error we keep it Unknown
2037 work_line_->SetRegisterType(dec_insn.vA_,
2038 res_type.IsUnknown() ? res_type : reg_types_.JavaLangClass());
jeffhaobdb76512011-09-07 11:43:16 -07002039 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002040 }
jeffhaobdb76512011-09-07 11:43:16 -07002041 case Instruction::MONITOR_ENTER:
Ian Rogersd81871c2011-10-03 13:57:23 -07002042 work_line_->PushMonitor(dec_insn.vA_, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07002043 break;
2044 case Instruction::MONITOR_EXIT:
2045 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002046 * monitor-exit instructions are odd. They can throw exceptions,
jeffhaobdb76512011-09-07 11:43:16 -07002047 * but when they do they act as if they succeeded and the PC is
jeffhaod1f0fde2011-09-08 17:25:33 -07002048 * pointing to the following instruction. (This behavior goes back
jeffhaobdb76512011-09-07 11:43:16 -07002049 * to the need to handle asynchronous exceptions, a now-deprecated
2050 * feature that Dalvik doesn't support.)
2051 *
jeffhaod1f0fde2011-09-08 17:25:33 -07002052 * In practice we don't need to worry about this. The only
jeffhaobdb76512011-09-07 11:43:16 -07002053 * exceptions that can be thrown from monitor-exit are for a
jeffhaod1f0fde2011-09-08 17:25:33 -07002054 * null reference and -exit without a matching -enter. If the
jeffhaobdb76512011-09-07 11:43:16 -07002055 * structured locking checks are working, the former would have
2056 * failed on the -enter instruction, and the latter is impossible.
2057 *
2058 * This is fortunate, because issue 3221411 prevents us from
2059 * chasing the "can throw" path when monitor verification is
jeffhaod1f0fde2011-09-08 17:25:33 -07002060 * enabled. If we can fully verify the locking we can ignore
jeffhaobdb76512011-09-07 11:43:16 -07002061 * some catch blocks (which will show up as "dead" code when
2062 * we skip them here); if we can't, then the code path could be
2063 * "live" so we still need to check it.
2064 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002065 opcode_flag &= ~Instruction::kThrow;
2066 work_line_->PopMonitor(dec_insn.vA_);
jeffhaobdb76512011-09-07 11:43:16 -07002067 break;
2068
Ian Rogers28ad40d2011-10-27 15:19:26 -07002069 case Instruction::CHECK_CAST:
Ian Rogersd81871c2011-10-03 13:57:23 -07002070 case Instruction::INSTANCE_OF: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002071 /*
2072 * If this instruction succeeds, we will "downcast" register vA to the type in vB. (This
2073 * could be a "upcast" -- not expected, so we don't try to address it.)
2074 *
2075 * If it fails, an exception is thrown, which we deal with later by ignoring the update to
2076 * dec_insn.vA_ when branching to a handler.
2077 */
2078 bool is_checkcast = dec_insn.opcode_ == Instruction::CHECK_CAST;
2079 const RegType& res_type =
2080 ResolveClassAndCheckAccess(is_checkcast ? dec_insn.vB_ : dec_insn.vC_);
Ian Rogers9f1ab122011-12-12 08:52:43 -08002081 if (res_type.IsUnknown()) {
2082 CHECK_NE(failure_, VERIFY_ERROR_NONE);
2083 break; // couldn't resolve class
2084 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002085 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
2086 const RegType& orig_type =
2087 work_line_->GetRegisterType(is_checkcast ? dec_insn.vA_ : dec_insn.vB_);
2088 if (!res_type.IsNonZeroReferenceTypes()) {
2089 Fail(VERIFY_ERROR_GENERIC) << "check-cast on unexpected class " << res_type;
2090 } else if (!orig_type.IsReferenceTypes()) {
2091 Fail(VERIFY_ERROR_GENERIC) << "check-cast on non-reference in v" << dec_insn.vA_;
jeffhao2a8a90e2011-09-26 14:25:31 -07002092 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002093 if (is_checkcast) {
2094 work_line_->SetRegisterType(dec_insn.vA_, res_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002095 } else {
Ian Rogersd81871c2011-10-03 13:57:23 -07002096 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.Boolean());
jeffhaobdb76512011-09-07 11:43:16 -07002097 }
jeffhaobdb76512011-09-07 11:43:16 -07002098 }
jeffhao2a8a90e2011-09-26 14:25:31 -07002099 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002100 }
2101 case Instruction::ARRAY_LENGTH: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002102 const RegType& res_type = work_line_->GetRegisterType(dec_insn.vB_);
2103 if (res_type.IsReferenceTypes()) {
Ian Rogers89310de2012-02-01 13:47:30 -08002104 if (!res_type.IsArrayTypes() && !res_type.IsZero()) { // ie not an array or null
Ian Rogers28ad40d2011-10-27 15:19:26 -07002105 Fail(VERIFY_ERROR_GENERIC) << "array-length on non-array " << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002106 } else {
2107 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.Integer());
2108 }
2109 }
2110 break;
2111 }
2112 case Instruction::NEW_INSTANCE: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002113 const RegType& res_type = ResolveClassAndCheckAccess(dec_insn.vB_);
2114 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
2115 // can't create an instance of an interface or abstract class */
2116 if (!res_type.IsInstantiableTypes()) {
2117 Fail(VERIFY_ERROR_INSTANTIATION)
2118 << "new-instance on primitive, interface or abstract class" << res_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07002119 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002120 const RegType& uninit_type = reg_types_.Uninitialized(res_type, work_insn_idx_);
2121 // Any registers holding previous allocations from this address that have not yet been
2122 // initialized must be marked invalid.
2123 work_line_->MarkUninitRefsAsInvalid(uninit_type);
2124 // add the new uninitialized reference to the register state
2125 work_line_->SetRegisterType(dec_insn.vA_, uninit_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002126 }
2127 break;
2128 }
2129 case Instruction::NEW_ARRAY: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002130 const RegType& res_type = ResolveClassAndCheckAccess(dec_insn.vC_);
2131 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Ian Rogers89310de2012-02-01 13:47:30 -08002132 if (!res_type.IsArrayTypes()) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002133 Fail(VERIFY_ERROR_GENERIC) << "new-array on non-array class " << res_type;
jeffhaobdb76512011-09-07 11:43:16 -07002134 } else {
2135 /* make sure "size" register is valid type */
Ian Rogersd81871c2011-10-03 13:57:23 -07002136 work_line_->VerifyRegisterType(dec_insn.vB_, reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002137 /* set register type to array class */
Ian Rogers28ad40d2011-10-27 15:19:26 -07002138 work_line_->SetRegisterType(dec_insn.vA_, res_type);
jeffhaobdb76512011-09-07 11:43:16 -07002139 }
2140 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002141 }
jeffhaobdb76512011-09-07 11:43:16 -07002142 case Instruction::FILLED_NEW_ARRAY:
Ian Rogersd81871c2011-10-03 13:57:23 -07002143 case Instruction::FILLED_NEW_ARRAY_RANGE: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002144 const RegType& res_type = ResolveClassAndCheckAccess(dec_insn.vB_);
2145 // TODO: check Compiler::CanAccessTypeWithoutChecks returns false when res_type is unresolved
Ian Rogers89310de2012-02-01 13:47:30 -08002146 if (!res_type.IsArrayTypes()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002147 Fail(VERIFY_ERROR_GENERIC) << "filled-new-array on non-array class";
jeffhaobdb76512011-09-07 11:43:16 -07002148 } else {
jeffhaoe0cfb6f2011-09-22 16:42:56 -07002149 bool is_range = (dec_insn.opcode_ == Instruction::FILLED_NEW_ARRAY_RANGE);
jeffhaobdb76512011-09-07 11:43:16 -07002150 /* check the arguments to the instruction */
Ian Rogers28ad40d2011-10-27 15:19:26 -07002151 VerifyFilledNewArrayRegs(dec_insn, res_type, is_range);
jeffhaobdb76512011-09-07 11:43:16 -07002152 /* filled-array result goes into "result" register */
Ian Rogers28ad40d2011-10-27 15:19:26 -07002153 work_line_->SetResultRegisterType(res_type);
jeffhaobdb76512011-09-07 11:43:16 -07002154 just_set_result = true;
2155 }
2156 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002157 }
jeffhaobdb76512011-09-07 11:43:16 -07002158 case Instruction::CMPL_FLOAT:
2159 case Instruction::CMPG_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002160 work_line_->VerifyRegisterType(dec_insn.vB_, reg_types_.Float());
2161 work_line_->VerifyRegisterType(dec_insn.vC_, reg_types_.Float());
2162 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002163 break;
2164 case Instruction::CMPL_DOUBLE:
2165 case Instruction::CMPG_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002166 work_line_->VerifyRegisterType(dec_insn.vB_, reg_types_.Double());
2167 work_line_->VerifyRegisterType(dec_insn.vC_, reg_types_.Double());
2168 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002169 break;
2170 case Instruction::CMP_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002171 work_line_->VerifyRegisterType(dec_insn.vB_, reg_types_.Long());
2172 work_line_->VerifyRegisterType(dec_insn.vC_, reg_types_.Long());
2173 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002174 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002175 case Instruction::THROW: {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002176 const RegType& res_type = work_line_->GetRegisterType(dec_insn.vA_);
2177 if (!reg_types_.JavaLangThrowable().IsAssignableFrom(res_type)) {
2178 Fail(VERIFY_ERROR_GENERIC) << "thrown class " << res_type << " not instanceof Throwable";
jeffhaobdb76512011-09-07 11:43:16 -07002179 }
2180 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002181 }
jeffhaobdb76512011-09-07 11:43:16 -07002182 case Instruction::GOTO:
2183 case Instruction::GOTO_16:
2184 case Instruction::GOTO_32:
2185 /* no effect on or use of registers */
2186 break;
2187
2188 case Instruction::PACKED_SWITCH:
2189 case Instruction::SPARSE_SWITCH:
2190 /* verify that vAA is an integer, or can be converted to one */
Ian Rogersd81871c2011-10-03 13:57:23 -07002191 work_line_->VerifyRegisterType(dec_insn.vA_, reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002192 break;
2193
Ian Rogersd81871c2011-10-03 13:57:23 -07002194 case Instruction::FILL_ARRAY_DATA: {
2195 /* Similar to the verification done for APUT */
Ian Rogers89310de2012-02-01 13:47:30 -08002196 const RegType& array_type = work_line_->GetRegisterType(dec_insn.vA_);
2197 /* array_type can be null if the reg type is Zero */
2198 if (!array_type.IsZero()) {
2199 const RegType& component_type = reg_types_.GetComponentType(array_type,
2200 method_->GetDeclaringClass()->GetClassLoader());
2201 DCHECK(!component_type.IsUnknown());
2202 if (!array_type.IsArrayTypes() || component_type.IsNonZeroReferenceTypes()) {
2203 Fail(VERIFY_ERROR_GENERIC) << "invalid fill-array-data on " << array_type;
2204 } else {
2205 // Now verify if the element width in the table matches the element width declared in
2206 // the array
2207 const uint16_t* array_data = insns + (insns[1] | (((int32_t) insns[2]) << 16));
2208 if (array_data[0] != Instruction::kArrayDataSignature) {
2209 Fail(VERIFY_ERROR_GENERIC) << "invalid magic for array-data";
Ian Rogersd81871c2011-10-03 13:57:23 -07002210 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08002211 size_t elem_width = Primitive::ComponentSize(component_type.GetPrimitiveType());
2212 // Since we don't compress the data in Dex, expect to see equal width of data stored
2213 // in the table and expected from the array class.
2214 if (array_data[1] != elem_width) {
2215 Fail(VERIFY_ERROR_GENERIC) << "array-data size mismatch (" << array_data[1]
2216 << " vs " << elem_width << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07002217 }
2218 }
jeffhaobdb76512011-09-07 11:43:16 -07002219 }
2220 }
2221 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002222 }
jeffhaobdb76512011-09-07 11:43:16 -07002223 case Instruction::IF_EQ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002224 case Instruction::IF_NE: {
2225 const RegType& reg_type1 = work_line_->GetRegisterType(dec_insn.vA_);
2226 const RegType& reg_type2 = work_line_->GetRegisterType(dec_insn.vB_);
2227 bool mismatch = false;
2228 if (reg_type1.IsZero()) { // zero then integral or reference expected
2229 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes();
2230 } else if (reg_type1.IsReferenceTypes()) { // both references?
2231 mismatch = !reg_type2.IsReferenceTypes();
2232 } else { // both integral?
2233 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes();
2234 }
2235 if (mismatch) {
2236 Fail(VERIFY_ERROR_GENERIC) << "args to if-eq/if-ne (" << reg_type1 << "," << reg_type2
2237 << ") must both be references or integral";
jeffhaobdb76512011-09-07 11:43:16 -07002238 }
2239 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002240 }
jeffhaobdb76512011-09-07 11:43:16 -07002241 case Instruction::IF_LT:
2242 case Instruction::IF_GE:
2243 case Instruction::IF_GT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002244 case Instruction::IF_LE: {
2245 const RegType& reg_type1 = work_line_->GetRegisterType(dec_insn.vA_);
2246 const RegType& reg_type2 = work_line_->GetRegisterType(dec_insn.vB_);
2247 if (!reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes()) {
2248 Fail(VERIFY_ERROR_GENERIC) << "args to 'if' (" << reg_type1 << ","
2249 << reg_type2 << ") must be integral";
jeffhaobdb76512011-09-07 11:43:16 -07002250 }
2251 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002252 }
jeffhaobdb76512011-09-07 11:43:16 -07002253 case Instruction::IF_EQZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002254 case Instruction::IF_NEZ: {
2255 const RegType& reg_type = work_line_->GetRegisterType(dec_insn.vA_);
2256 if (!reg_type.IsReferenceTypes() && !reg_type.IsIntegralTypes()) {
2257 Fail(VERIFY_ERROR_GENERIC) << "type " << reg_type << " unexpected as arg to if-eqz/if-nez";
2258 }
jeffhaobdb76512011-09-07 11:43:16 -07002259 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002260 }
jeffhaobdb76512011-09-07 11:43:16 -07002261 case Instruction::IF_LTZ:
2262 case Instruction::IF_GEZ:
2263 case Instruction::IF_GTZ:
Ian Rogersd81871c2011-10-03 13:57:23 -07002264 case Instruction::IF_LEZ: {
2265 const RegType& reg_type = work_line_->GetRegisterType(dec_insn.vA_);
2266 if (!reg_type.IsIntegralTypes()) {
2267 Fail(VERIFY_ERROR_GENERIC) << "type " << reg_type
2268 << " unexpected as arg to if-ltz/if-gez/if-gtz/if-lez";
2269 }
jeffhaobdb76512011-09-07 11:43:16 -07002270 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002271 }
jeffhaobdb76512011-09-07 11:43:16 -07002272 case Instruction::AGET_BOOLEAN:
Ian Rogersd81871c2011-10-03 13:57:23 -07002273 VerifyAGet(dec_insn, reg_types_.Boolean(), true);
2274 break;
jeffhaobdb76512011-09-07 11:43:16 -07002275 case Instruction::AGET_BYTE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002276 VerifyAGet(dec_insn, reg_types_.Byte(), true);
2277 break;
jeffhaobdb76512011-09-07 11:43:16 -07002278 case Instruction::AGET_CHAR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002279 VerifyAGet(dec_insn, reg_types_.Char(), true);
2280 break;
jeffhaobdb76512011-09-07 11:43:16 -07002281 case Instruction::AGET_SHORT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002282 VerifyAGet(dec_insn, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002283 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002284 case Instruction::AGET:
2285 VerifyAGet(dec_insn, reg_types_.Integer(), true);
2286 break;
jeffhaobdb76512011-09-07 11:43:16 -07002287 case Instruction::AGET_WIDE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002288 VerifyAGet(dec_insn, reg_types_.Long(), true);
2289 break;
2290 case Instruction::AGET_OBJECT:
2291 VerifyAGet(dec_insn, reg_types_.JavaLangObject(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002292 break;
2293
Ian Rogersd81871c2011-10-03 13:57:23 -07002294 case Instruction::APUT_BOOLEAN:
2295 VerifyAPut(dec_insn, reg_types_.Boolean(), true);
2296 break;
2297 case Instruction::APUT_BYTE:
2298 VerifyAPut(dec_insn, reg_types_.Byte(), true);
2299 break;
2300 case Instruction::APUT_CHAR:
2301 VerifyAPut(dec_insn, reg_types_.Char(), true);
2302 break;
2303 case Instruction::APUT_SHORT:
2304 VerifyAPut(dec_insn, reg_types_.Short(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002305 break;
2306 case Instruction::APUT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002307 VerifyAPut(dec_insn, reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002308 break;
2309 case Instruction::APUT_WIDE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002310 VerifyAPut(dec_insn, reg_types_.Long(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002311 break;
2312 case Instruction::APUT_OBJECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002313 VerifyAPut(dec_insn, reg_types_.JavaLangObject(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002314 break;
2315
jeffhaobdb76512011-09-07 11:43:16 -07002316 case Instruction::IGET_BOOLEAN:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002317 VerifyISGet(dec_insn, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002318 break;
jeffhaobdb76512011-09-07 11:43:16 -07002319 case Instruction::IGET_BYTE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002320 VerifyISGet(dec_insn, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002321 break;
jeffhaobdb76512011-09-07 11:43:16 -07002322 case Instruction::IGET_CHAR:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002323 VerifyISGet(dec_insn, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002324 break;
jeffhaobdb76512011-09-07 11:43:16 -07002325 case Instruction::IGET_SHORT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002326 VerifyISGet(dec_insn, reg_types_.Short(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002327 break;
2328 case Instruction::IGET:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002329 VerifyISGet(dec_insn, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002330 break;
2331 case Instruction::IGET_WIDE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002332 VerifyISGet(dec_insn, reg_types_.Long(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002333 break;
2334 case Instruction::IGET_OBJECT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002335 VerifyISGet(dec_insn, reg_types_.JavaLangObject(), false, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002336 break;
jeffhaobdb76512011-09-07 11:43:16 -07002337
Ian Rogersd81871c2011-10-03 13:57:23 -07002338 case Instruction::IPUT_BOOLEAN:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002339 VerifyISPut(dec_insn, reg_types_.Boolean(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002340 break;
2341 case Instruction::IPUT_BYTE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002342 VerifyISPut(dec_insn, reg_types_.Byte(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002343 break;
2344 case Instruction::IPUT_CHAR:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002345 VerifyISPut(dec_insn, reg_types_.Char(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002346 break;
2347 case Instruction::IPUT_SHORT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002348 VerifyISPut(dec_insn, reg_types_.Short(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002349 break;
2350 case Instruction::IPUT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002351 VerifyISPut(dec_insn, reg_types_.Integer(), true, false);
jeffhaobdb76512011-09-07 11:43:16 -07002352 break;
2353 case Instruction::IPUT_WIDE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002354 VerifyISPut(dec_insn, reg_types_.Long(), true, false);
Ian Rogersd81871c2011-10-03 13:57:23 -07002355 break;
jeffhaobdb76512011-09-07 11:43:16 -07002356 case Instruction::IPUT_OBJECT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002357 VerifyISPut(dec_insn, reg_types_.JavaLangObject(), false, false);
jeffhaobdb76512011-09-07 11:43:16 -07002358 break;
2359
jeffhaobdb76512011-09-07 11:43:16 -07002360 case Instruction::SGET_BOOLEAN:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002361 VerifyISGet(dec_insn, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002362 break;
jeffhaobdb76512011-09-07 11:43:16 -07002363 case Instruction::SGET_BYTE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002364 VerifyISGet(dec_insn, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002365 break;
jeffhaobdb76512011-09-07 11:43:16 -07002366 case Instruction::SGET_CHAR:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002367 VerifyISGet(dec_insn, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002368 break;
jeffhaobdb76512011-09-07 11:43:16 -07002369 case Instruction::SGET_SHORT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002370 VerifyISGet(dec_insn, reg_types_.Short(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002371 break;
2372 case Instruction::SGET:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002373 VerifyISGet(dec_insn, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002374 break;
2375 case Instruction::SGET_WIDE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002376 VerifyISGet(dec_insn, reg_types_.Long(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002377 break;
2378 case Instruction::SGET_OBJECT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002379 VerifyISGet(dec_insn, reg_types_.JavaLangObject(), false, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002380 break;
2381
2382 case Instruction::SPUT_BOOLEAN:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002383 VerifyISPut(dec_insn, reg_types_.Boolean(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002384 break;
2385 case Instruction::SPUT_BYTE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002386 VerifyISPut(dec_insn, reg_types_.Byte(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002387 break;
2388 case Instruction::SPUT_CHAR:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002389 VerifyISPut(dec_insn, reg_types_.Char(), true, true);
Ian Rogersd81871c2011-10-03 13:57:23 -07002390 break;
2391 case Instruction::SPUT_SHORT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002392 VerifyISPut(dec_insn, reg_types_.Short(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002393 break;
2394 case Instruction::SPUT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002395 VerifyISPut(dec_insn, reg_types_.Integer(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002396 break;
2397 case Instruction::SPUT_WIDE:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002398 VerifyISPut(dec_insn, reg_types_.Long(), true, true);
jeffhaobdb76512011-09-07 11:43:16 -07002399 break;
2400 case Instruction::SPUT_OBJECT:
Ian Rogersb94a27b2011-10-26 00:33:41 -07002401 VerifyISPut(dec_insn, reg_types_.JavaLangObject(), false, true);
jeffhaobdb76512011-09-07 11:43:16 -07002402 break;
2403
2404 case Instruction::INVOKE_VIRTUAL:
2405 case Instruction::INVOKE_VIRTUAL_RANGE:
2406 case Instruction::INVOKE_SUPER:
Ian Rogersd81871c2011-10-03 13:57:23 -07002407 case Instruction::INVOKE_SUPER_RANGE: {
2408 bool is_range = (dec_insn.opcode_ == Instruction::INVOKE_VIRTUAL_RANGE ||
2409 dec_insn.opcode_ == Instruction::INVOKE_SUPER_RANGE);
2410 bool is_super = (dec_insn.opcode_ == Instruction::INVOKE_SUPER ||
2411 dec_insn.opcode_ == Instruction::INVOKE_SUPER_RANGE);
2412 Method* called_method = VerifyInvocationArgs(dec_insn, METHOD_VIRTUAL, is_range, is_super);
2413 if (failure_ == VERIFY_ERROR_NONE) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002414 const char* descriptor;
2415 if (called_method == NULL) {
2416 uint32_t method_idx = dec_insn.vB_;
2417 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2418 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogers0571d352011-11-03 19:51:38 -07002419 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002420 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002421 descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002422 }
Ian Rogers9074b992011-10-26 17:41:55 -07002423 const RegType& return_type =
Ian Rogers28ad40d2011-10-27 15:19:26 -07002424 reg_types_.FromDescriptor(method_->GetDeclaringClass()->GetClassLoader(), descriptor);
Ian Rogersd81871c2011-10-03 13:57:23 -07002425 work_line_->SetResultRegisterType(return_type);
jeffhaobdb76512011-09-07 11:43:16 -07002426 just_set_result = true;
2427 }
2428 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002429 }
jeffhaobdb76512011-09-07 11:43:16 -07002430 case Instruction::INVOKE_DIRECT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002431 case Instruction::INVOKE_DIRECT_RANGE: {
2432 bool is_range = (dec_insn.opcode_ == Instruction::INVOKE_DIRECT_RANGE);
2433 Method* called_method = VerifyInvocationArgs(dec_insn, METHOD_DIRECT, is_range, false);
2434 if (failure_ == VERIFY_ERROR_NONE) {
jeffhaobdb76512011-09-07 11:43:16 -07002435 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002436 * Some additional checks when calling a constructor. We know from the invocation arg check
2437 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2438 * that to require that called_method->klass is the same as this->klass or this->super,
2439 * allowing the latter only if the "this" argument is the same as the "this" argument to
2440 * this method (which implies that we're in a constructor ourselves).
jeffhaobdb76512011-09-07 11:43:16 -07002441 */
Ian Rogers28ad40d2011-10-27 15:19:26 -07002442 bool is_constructor;
2443 if (called_method != NULL) {
2444 is_constructor = called_method->IsConstructor();
2445 } else {
2446 uint32_t method_idx = dec_insn.vB_;
2447 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2448 const char* name = dex_file_->GetMethodName(method_id);
2449 is_constructor = strcmp(name, "<init>") == 0;
2450 }
2451 if (is_constructor) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002452 const RegType& this_type = work_line_->GetInvocationThis(dec_insn);
2453 if (failure_ != VERIFY_ERROR_NONE)
jeffhaobdb76512011-09-07 11:43:16 -07002454 break;
2455
2456 /* no null refs allowed (?) */
Ian Rogersd81871c2011-10-03 13:57:23 -07002457 if (this_type.IsZero()) {
2458 Fail(VERIFY_ERROR_GENERIC) << "unable to initialize null ref";
jeffhaobdb76512011-09-07 11:43:16 -07002459 break;
2460 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002461 if (called_method != NULL) {
2462 Class* this_class = this_type.GetClass();
2463 DCHECK(this_class != NULL);
2464 /* must be in same class or in superclass */
2465 if (called_method->GetDeclaringClass() == this_class->GetSuperClass()) {
2466 if (this_class != method_->GetDeclaringClass()) {
2467 Fail(VERIFY_ERROR_GENERIC)
2468 << "invoke-direct <init> on super only allowed for 'this' in <init>";
2469 break;
2470 }
2471 } else if (called_method->GetDeclaringClass() != this_class) {
2472 Fail(VERIFY_ERROR_GENERIC) << "invoke-direct <init> must be on current class or super";
jeffhaobdb76512011-09-07 11:43:16 -07002473 break;
2474 }
jeffhaobdb76512011-09-07 11:43:16 -07002475 }
2476
2477 /* arg must be an uninitialized reference */
Ian Rogers84fa0742011-10-25 18:13:30 -07002478 if (!this_type.IsUninitializedTypes()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002479 Fail(VERIFY_ERROR_GENERIC) << "Expected initialization on uninitialized reference "
2480 << this_type;
jeffhaobdb76512011-09-07 11:43:16 -07002481 break;
2482 }
2483
2484 /*
Ian Rogers84fa0742011-10-25 18:13:30 -07002485 * Replace the uninitialized reference with an initialized one. We need to do this for all
2486 * registers that have the same object instance in them, not just the "this" register.
jeffhaobdb76512011-09-07 11:43:16 -07002487 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002488 work_line_->MarkRefsAsInitialized(this_type);
2489 if (failure_ != VERIFY_ERROR_NONE)
jeffhaobdb76512011-09-07 11:43:16 -07002490 break;
jeffhao2a8a90e2011-09-26 14:25:31 -07002491 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002492 const char* descriptor;
2493 if (called_method == NULL) {
2494 uint32_t method_idx = dec_insn.vB_;
2495 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2496 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogers0571d352011-11-03 19:51:38 -07002497 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002498 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002499 descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002500 }
Ian Rogers9074b992011-10-26 17:41:55 -07002501 const RegType& return_type =
Ian Rogers28ad40d2011-10-27 15:19:26 -07002502 reg_types_.FromDescriptor(method_->GetDeclaringClass()->GetClassLoader(), descriptor);
Ian Rogersd81871c2011-10-03 13:57:23 -07002503 work_line_->SetResultRegisterType(return_type);
jeffhaobdb76512011-09-07 11:43:16 -07002504 just_set_result = true;
2505 }
2506 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002507 }
jeffhaobdb76512011-09-07 11:43:16 -07002508 case Instruction::INVOKE_STATIC:
Ian Rogersd81871c2011-10-03 13:57:23 -07002509 case Instruction::INVOKE_STATIC_RANGE: {
2510 bool is_range = (dec_insn.opcode_ == Instruction::INVOKE_STATIC_RANGE);
2511 Method* called_method = VerifyInvocationArgs(dec_insn, METHOD_STATIC, is_range, false);
2512 if (failure_ == VERIFY_ERROR_NONE) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002513 const char* descriptor;
2514 if (called_method == NULL) {
2515 uint32_t method_idx = dec_insn.vB_;
2516 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2517 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogers0571d352011-11-03 19:51:38 -07002518 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002519 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002520 descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002521 }
Ian Rogers9074b992011-10-26 17:41:55 -07002522 const RegType& return_type =
Ian Rogers28ad40d2011-10-27 15:19:26 -07002523 reg_types_.FromDescriptor(method_->GetDeclaringClass()->GetClassLoader(), descriptor);
Ian Rogersd81871c2011-10-03 13:57:23 -07002524 work_line_->SetResultRegisterType(return_type);
2525 just_set_result = true;
2526 }
jeffhaobdb76512011-09-07 11:43:16 -07002527 }
2528 break;
2529 case Instruction::INVOKE_INTERFACE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002530 case Instruction::INVOKE_INTERFACE_RANGE: {
2531 bool is_range = (dec_insn.opcode_ == Instruction::INVOKE_INTERFACE_RANGE);
2532 Method* abs_method = VerifyInvocationArgs(dec_insn, METHOD_INTERFACE, is_range, false);
2533 if (failure_ == VERIFY_ERROR_NONE) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002534 if (abs_method != NULL) {
2535 Class* called_interface = abs_method->GetDeclaringClass();
Ian Rogersf3c1f782011-11-02 14:12:15 -07002536 if (!called_interface->IsInterface() && !called_interface->IsObjectClass()) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07002537 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected interface class in invoke-interface '"
2538 << PrettyMethod(abs_method) << "'";
2539 break;
2540 }
2541 }
2542 /* Get the type of the "this" arg, which should either be a sub-interface of called
2543 * interface or Object (see comments in RegType::JoinClass).
2544 */
2545 const RegType& this_type = work_line_->GetInvocationThis(dec_insn);
2546 if (failure_ == VERIFY_ERROR_NONE) {
2547 if (this_type.IsZero()) {
2548 /* null pointer always passes (and always fails at runtime) */
2549 } else {
2550 if (this_type.IsUninitializedTypes()) {
2551 Fail(VERIFY_ERROR_GENERIC) << "interface call on uninitialized object "
2552 << this_type;
2553 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002554 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07002555 // In the past we have tried to assert that "called_interface" is assignable
2556 // from "this_type.GetClass()", however, as we do an imprecise Join
2557 // (RegType::JoinClass) we don't have full information on what interfaces are
2558 // implemented by "this_type". For example, two classes may implement the same
2559 // interfaces and have a common parent that doesn't implement the interface. The
2560 // join will set "this_type" to the parent class and a test that this implements
2561 // the interface will incorrectly fail.
jeffhaobdb76512011-09-07 11:43:16 -07002562 }
2563 }
jeffhaobdb76512011-09-07 11:43:16 -07002564 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002565 * We don't have an object instance, so we can't find the concrete method. However, all of
2566 * the type information is in the abstract method, so we're good.
jeffhaobdb76512011-09-07 11:43:16 -07002567 */
Ian Rogers28ad40d2011-10-27 15:19:26 -07002568 const char* descriptor;
2569 if (abs_method == NULL) {
2570 uint32_t method_idx = dec_insn.vB_;
2571 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
2572 uint32_t return_type_idx = dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_;
Ian Rogers0571d352011-11-03 19:51:38 -07002573 descriptor = dex_file_->StringByTypeIdx(return_type_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07002574 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08002575 descriptor = MethodHelper(abs_method).GetReturnTypeDescriptor();
Ian Rogers28ad40d2011-10-27 15:19:26 -07002576 }
Ian Rogers9074b992011-10-26 17:41:55 -07002577 const RegType& return_type =
Ian Rogers28ad40d2011-10-27 15:19:26 -07002578 reg_types_.FromDescriptor(method_->GetDeclaringClass()->GetClassLoader(), descriptor);
2579 work_line_->SetResultRegisterType(return_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07002580 work_line_->SetResultRegisterType(return_type);
jeffhaobdb76512011-09-07 11:43:16 -07002581 just_set_result = true;
2582 }
2583 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07002584 }
jeffhaobdb76512011-09-07 11:43:16 -07002585 case Instruction::NEG_INT:
2586 case Instruction::NOT_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002587 work_line_->CheckUnaryOp(dec_insn, reg_types_.Integer(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002588 break;
2589 case Instruction::NEG_LONG:
2590 case Instruction::NOT_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002591 work_line_->CheckUnaryOp(dec_insn, reg_types_.Long(), reg_types_.Long());
jeffhaobdb76512011-09-07 11:43:16 -07002592 break;
2593 case Instruction::NEG_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002594 work_line_->CheckUnaryOp(dec_insn, reg_types_.Float(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002595 break;
2596 case Instruction::NEG_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002597 work_line_->CheckUnaryOp(dec_insn, reg_types_.Double(), reg_types_.Double());
jeffhaobdb76512011-09-07 11:43:16 -07002598 break;
2599 case Instruction::INT_TO_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002600 work_line_->CheckUnaryOp(dec_insn, reg_types_.Long(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002601 break;
2602 case Instruction::INT_TO_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002603 work_line_->CheckUnaryOp(dec_insn, reg_types_.Float(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002604 break;
2605 case Instruction::INT_TO_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002606 work_line_->CheckUnaryOp(dec_insn, reg_types_.Double(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002607 break;
2608 case Instruction::LONG_TO_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002609 work_line_->CheckUnaryOp(dec_insn, reg_types_.Integer(), reg_types_.Long());
jeffhaobdb76512011-09-07 11:43:16 -07002610 break;
2611 case Instruction::LONG_TO_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002612 work_line_->CheckUnaryOp(dec_insn, reg_types_.Float(), reg_types_.Long());
jeffhaobdb76512011-09-07 11:43:16 -07002613 break;
2614 case Instruction::LONG_TO_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002615 work_line_->CheckUnaryOp(dec_insn, reg_types_.Double(), reg_types_.Long());
jeffhaobdb76512011-09-07 11:43:16 -07002616 break;
2617 case Instruction::FLOAT_TO_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002618 work_line_->CheckUnaryOp(dec_insn, reg_types_.Integer(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002619 break;
2620 case Instruction::FLOAT_TO_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002621 work_line_->CheckUnaryOp(dec_insn, reg_types_.Long(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002622 break;
2623 case Instruction::FLOAT_TO_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002624 work_line_->CheckUnaryOp(dec_insn, reg_types_.Double(), reg_types_.Float());
jeffhaobdb76512011-09-07 11:43:16 -07002625 break;
2626 case Instruction::DOUBLE_TO_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002627 work_line_->CheckUnaryOp(dec_insn, reg_types_.Integer(), reg_types_.Double());
jeffhaobdb76512011-09-07 11:43:16 -07002628 break;
2629 case Instruction::DOUBLE_TO_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002630 work_line_->CheckUnaryOp(dec_insn, reg_types_.Long(), reg_types_.Double());
jeffhaobdb76512011-09-07 11:43:16 -07002631 break;
2632 case Instruction::DOUBLE_TO_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002633 work_line_->CheckUnaryOp(dec_insn, reg_types_.Float(), reg_types_.Double());
jeffhaobdb76512011-09-07 11:43:16 -07002634 break;
2635 case Instruction::INT_TO_BYTE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002636 work_line_->CheckUnaryOp(dec_insn, reg_types_.Byte(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002637 break;
2638 case Instruction::INT_TO_CHAR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002639 work_line_->CheckUnaryOp(dec_insn, reg_types_.Char(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002640 break;
2641 case Instruction::INT_TO_SHORT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002642 work_line_->CheckUnaryOp(dec_insn, reg_types_.Short(), reg_types_.Integer());
jeffhaobdb76512011-09-07 11:43:16 -07002643 break;
2644
2645 case Instruction::ADD_INT:
2646 case Instruction::SUB_INT:
2647 case Instruction::MUL_INT:
2648 case Instruction::REM_INT:
2649 case Instruction::DIV_INT:
2650 case Instruction::SHL_INT:
2651 case Instruction::SHR_INT:
2652 case Instruction::USHR_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002653 work_line_->CheckBinaryOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002654 break;
2655 case Instruction::AND_INT:
2656 case Instruction::OR_INT:
2657 case Instruction::XOR_INT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002658 work_line_->CheckBinaryOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002659 break;
2660 case Instruction::ADD_LONG:
2661 case Instruction::SUB_LONG:
2662 case Instruction::MUL_LONG:
2663 case Instruction::DIV_LONG:
2664 case Instruction::REM_LONG:
2665 case Instruction::AND_LONG:
2666 case Instruction::OR_LONG:
2667 case Instruction::XOR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002668 work_line_->CheckBinaryOp(dec_insn, reg_types_.Long(), reg_types_.Long(), reg_types_.Long(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002669 break;
2670 case Instruction::SHL_LONG:
2671 case Instruction::SHR_LONG:
2672 case Instruction::USHR_LONG:
Ian Rogersd81871c2011-10-03 13:57:23 -07002673 /* shift distance is Int, making these different from other binary operations */
2674 work_line_->CheckBinaryOp(dec_insn, reg_types_.Long(), reg_types_.Long(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002675 break;
2676 case Instruction::ADD_FLOAT:
2677 case Instruction::SUB_FLOAT:
2678 case Instruction::MUL_FLOAT:
2679 case Instruction::DIV_FLOAT:
2680 case Instruction::REM_FLOAT:
Ian Rogersd81871c2011-10-03 13:57:23 -07002681 work_line_->CheckBinaryOp(dec_insn, reg_types_.Float(), reg_types_.Float(), reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002682 break;
2683 case Instruction::ADD_DOUBLE:
2684 case Instruction::SUB_DOUBLE:
2685 case Instruction::MUL_DOUBLE:
2686 case Instruction::DIV_DOUBLE:
2687 case Instruction::REM_DOUBLE:
Ian Rogersd81871c2011-10-03 13:57:23 -07002688 work_line_->CheckBinaryOp(dec_insn, reg_types_.Double(), reg_types_.Double(), reg_types_.Double(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002689 break;
2690 case Instruction::ADD_INT_2ADDR:
2691 case Instruction::SUB_INT_2ADDR:
2692 case Instruction::MUL_INT_2ADDR:
2693 case Instruction::REM_INT_2ADDR:
2694 case Instruction::SHL_INT_2ADDR:
2695 case Instruction::SHR_INT_2ADDR:
2696 case Instruction::USHR_INT_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002697 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002698 break;
2699 case Instruction::AND_INT_2ADDR:
2700 case Instruction::OR_INT_2ADDR:
2701 case Instruction::XOR_INT_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002702 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002703 break;
2704 case Instruction::DIV_INT_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002705 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Integer(), reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002706 break;
2707 case Instruction::ADD_LONG_2ADDR:
2708 case Instruction::SUB_LONG_2ADDR:
2709 case Instruction::MUL_LONG_2ADDR:
2710 case Instruction::DIV_LONG_2ADDR:
2711 case Instruction::REM_LONG_2ADDR:
2712 case Instruction::AND_LONG_2ADDR:
2713 case Instruction::OR_LONG_2ADDR:
2714 case Instruction::XOR_LONG_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002715 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Long(), reg_types_.Long(), reg_types_.Long(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002716 break;
2717 case Instruction::SHL_LONG_2ADDR:
2718 case Instruction::SHR_LONG_2ADDR:
2719 case Instruction::USHR_LONG_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002720 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Long(), reg_types_.Long(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002721 break;
2722 case Instruction::ADD_FLOAT_2ADDR:
2723 case Instruction::SUB_FLOAT_2ADDR:
2724 case Instruction::MUL_FLOAT_2ADDR:
2725 case Instruction::DIV_FLOAT_2ADDR:
2726 case Instruction::REM_FLOAT_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002727 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Float(), reg_types_.Float(), reg_types_.Float(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002728 break;
2729 case Instruction::ADD_DOUBLE_2ADDR:
2730 case Instruction::SUB_DOUBLE_2ADDR:
2731 case Instruction::MUL_DOUBLE_2ADDR:
2732 case Instruction::DIV_DOUBLE_2ADDR:
2733 case Instruction::REM_DOUBLE_2ADDR:
Ian Rogersd81871c2011-10-03 13:57:23 -07002734 work_line_->CheckBinaryOp2addr(dec_insn, reg_types_.Double(), reg_types_.Double(), reg_types_.Double(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002735 break;
2736 case Instruction::ADD_INT_LIT16:
2737 case Instruction::RSUB_INT:
2738 case Instruction::MUL_INT_LIT16:
2739 case Instruction::DIV_INT_LIT16:
2740 case Instruction::REM_INT_LIT16:
Ian Rogersd81871c2011-10-03 13:57:23 -07002741 work_line_->CheckLiteralOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002742 break;
2743 case Instruction::AND_INT_LIT16:
2744 case Instruction::OR_INT_LIT16:
2745 case Instruction::XOR_INT_LIT16:
Ian Rogersd81871c2011-10-03 13:57:23 -07002746 work_line_->CheckLiteralOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002747 break;
2748 case Instruction::ADD_INT_LIT8:
2749 case Instruction::RSUB_INT_LIT8:
2750 case Instruction::MUL_INT_LIT8:
2751 case Instruction::DIV_INT_LIT8:
2752 case Instruction::REM_INT_LIT8:
2753 case Instruction::SHL_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07002754 case Instruction::SHR_INT_LIT8:
jeffhaobdb76512011-09-07 11:43:16 -07002755 case Instruction::USHR_INT_LIT8:
Ian Rogersd81871c2011-10-03 13:57:23 -07002756 work_line_->CheckLiteralOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), false);
jeffhaobdb76512011-09-07 11:43:16 -07002757 break;
2758 case Instruction::AND_INT_LIT8:
2759 case Instruction::OR_INT_LIT8:
2760 case Instruction::XOR_INT_LIT8:
Ian Rogersd81871c2011-10-03 13:57:23 -07002761 work_line_->CheckLiteralOp(dec_insn, reg_types_.Integer(), reg_types_.Integer(), true);
jeffhaobdb76512011-09-07 11:43:16 -07002762 break;
2763
2764 /*
2765 * This falls into the general category of "optimized" instructions,
jeffhaod1f0fde2011-09-08 17:25:33 -07002766 * which don't generally appear during verification. Because it's
jeffhaobdb76512011-09-07 11:43:16 -07002767 * inserted in the course of verification, we can expect to see it here.
2768 */
jeffhaob4df5142011-09-19 20:25:32 -07002769 case Instruction::THROW_VERIFICATION_ERROR:
jeffhaobdb76512011-09-07 11:43:16 -07002770 break;
2771
Ian Rogersd81871c2011-10-03 13:57:23 -07002772 /* These should never appear during verification. */
jeffhaobdb76512011-09-07 11:43:16 -07002773 case Instruction::UNUSED_EE:
2774 case Instruction::UNUSED_EF:
2775 case Instruction::UNUSED_F2:
2776 case Instruction::UNUSED_F3:
2777 case Instruction::UNUSED_F4:
2778 case Instruction::UNUSED_F5:
2779 case Instruction::UNUSED_F6:
2780 case Instruction::UNUSED_F7:
2781 case Instruction::UNUSED_F8:
2782 case Instruction::UNUSED_F9:
2783 case Instruction::UNUSED_FA:
2784 case Instruction::UNUSED_FB:
jeffhaobdb76512011-09-07 11:43:16 -07002785 case Instruction::UNUSED_F0:
2786 case Instruction::UNUSED_F1:
2787 case Instruction::UNUSED_E3:
2788 case Instruction::UNUSED_E8:
2789 case Instruction::UNUSED_E7:
2790 case Instruction::UNUSED_E4:
2791 case Instruction::UNUSED_E9:
2792 case Instruction::UNUSED_FC:
2793 case Instruction::UNUSED_E5:
2794 case Instruction::UNUSED_EA:
2795 case Instruction::UNUSED_FD:
2796 case Instruction::UNUSED_E6:
2797 case Instruction::UNUSED_EB:
2798 case Instruction::UNUSED_FE:
jeffhaobdb76512011-09-07 11:43:16 -07002799 case Instruction::UNUSED_3E:
2800 case Instruction::UNUSED_3F:
2801 case Instruction::UNUSED_40:
2802 case Instruction::UNUSED_41:
2803 case Instruction::UNUSED_42:
2804 case Instruction::UNUSED_43:
2805 case Instruction::UNUSED_73:
2806 case Instruction::UNUSED_79:
2807 case Instruction::UNUSED_7A:
2808 case Instruction::UNUSED_EC:
2809 case Instruction::UNUSED_FF:
Ian Rogers2c8a8572011-10-24 17:11:36 -07002810 Fail(VERIFY_ERROR_GENERIC) << "Unexpected opcode " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07002811 break;
2812
2813 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002814 * DO NOT add a "default" clause here. Without it the compiler will
jeffhaobdb76512011-09-07 11:43:16 -07002815 * complain if an instruction is missing (which is desirable).
2816 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002817 } // end - switch (dec_insn.opcode_)
jeffhaobdb76512011-09-07 11:43:16 -07002818
Ian Rogersd81871c2011-10-03 13:57:23 -07002819 if (failure_ != VERIFY_ERROR_NONE) {
2820 if (failure_ == VERIFY_ERROR_GENERIC) {
jeffhaobdb76512011-09-07 11:43:16 -07002821 /* immediate failure, reject class */
Ian Rogers2c8a8572011-10-24 17:11:36 -07002822 fail_messages_ << std::endl << "Rejecting opcode " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07002823 return false;
2824 } else {
2825 /* replace opcode and continue on */
Ian Rogers2c8a8572011-10-24 17:11:36 -07002826 fail_messages_ << std::endl << "Replacing opcode " << inst->DumpString(dex_file_);
Ian Rogersd81871c2011-10-03 13:57:23 -07002827 ReplaceFailingInstruction();
jeffhaobdb76512011-09-07 11:43:16 -07002828 /* IMPORTANT: method->insns may have been changed */
Ian Rogersd81871c2011-10-03 13:57:23 -07002829 insns = code_item_->insns_ + work_insn_idx_;
jeffhaobdb76512011-09-07 11:43:16 -07002830 /* continue on as if we just handled a throw-verification-error */
Ian Rogersd81871c2011-10-03 13:57:23 -07002831 failure_ = VERIFY_ERROR_NONE;
jeffhaobdb76512011-09-07 11:43:16 -07002832 opcode_flag = Instruction::kThrow;
2833 }
2834 }
jeffhaobdb76512011-09-07 11:43:16 -07002835 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002836 * If we didn't just set the result register, clear it out. This ensures that you can only use
2837 * "move-result" immediately after the result is set. (We could check this statically, but it's
2838 * not expensive and it makes our debugging output cleaner.)
jeffhaobdb76512011-09-07 11:43:16 -07002839 */
2840 if (!just_set_result) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002841 work_line_->SetResultTypeToUnknown();
jeffhaobdb76512011-09-07 11:43:16 -07002842 }
2843
jeffhaoa0a764a2011-09-16 10:43:38 -07002844 /* Handle "continue". Tag the next consecutive instruction. */
jeffhaobdb76512011-09-07 11:43:16 -07002845 if ((opcode_flag & Instruction::kContinue) != 0) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002846 uint32_t next_insn_idx = work_insn_idx_ + CurrentInsnFlags().GetLengthInCodeUnits();
2847 if (next_insn_idx >= code_item_->insns_size_in_code_units_) {
2848 Fail(VERIFY_ERROR_GENERIC) << "Execution can walk off end of code area";
jeffhaobdb76512011-09-07 11:43:16 -07002849 return false;
2850 }
Ian Rogersd81871c2011-10-03 13:57:23 -07002851 // The only way to get to a move-exception instruction is to get thrown there. Make sure the
2852 // next instruction isn't one.
2853 if (!CheckMoveException(code_item_->insns_, next_insn_idx)) {
jeffhaobdb76512011-09-07 11:43:16 -07002854 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002855 }
2856 RegisterLine* next_line = reg_table_.GetLine(next_insn_idx);
2857 if (next_line != NULL) {
2858 // Merge registers into what we have for the next instruction, and set the "changed" flag if
2859 // needed.
2860 if (!UpdateRegisters(next_insn_idx, work_line_.get())) {
jeffhaobdb76512011-09-07 11:43:16 -07002861 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002862 }
jeffhaobdb76512011-09-07 11:43:16 -07002863 } else {
2864 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002865 * We're not recording register data for the next instruction, so we don't know what the prior
2866 * state was. We have to assume that something has changed and re-evaluate it.
jeffhaobdb76512011-09-07 11:43:16 -07002867 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002868 insn_flags_[next_insn_idx].SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07002869 }
2870 }
2871
2872 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002873 * Handle "branch". Tag the branch target.
jeffhaobdb76512011-09-07 11:43:16 -07002874 *
2875 * NOTE: instructions like Instruction::EQZ provide information about the
jeffhaod1f0fde2011-09-08 17:25:33 -07002876 * state of the register when the branch is taken or not taken. For example,
jeffhaobdb76512011-09-07 11:43:16 -07002877 * somebody could get a reference field, check it for zero, and if the
2878 * branch is taken immediately store that register in a boolean field
jeffhaod1f0fde2011-09-08 17:25:33 -07002879 * since the value is known to be zero. We do not currently account for
jeffhaobdb76512011-09-07 11:43:16 -07002880 * that, and will reject the code.
2881 *
2882 * TODO: avoid re-fetching the branch target
2883 */
2884 if ((opcode_flag & Instruction::kBranch) != 0) {
2885 bool isConditional, selfOkay;
Ian Rogersd81871c2011-10-03 13:57:23 -07002886 if (!GetBranchOffset(work_insn_idx_, &branch_target, &isConditional, &selfOkay)) {
jeffhaobdb76512011-09-07 11:43:16 -07002887 /* should never happen after static verification */
Ian Rogersd81871c2011-10-03 13:57:23 -07002888 Fail(VERIFY_ERROR_GENERIC) << "bad branch";
jeffhaobdb76512011-09-07 11:43:16 -07002889 return false;
2890 }
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07002891 DCHECK_EQ(isConditional, (opcode_flag & Instruction::kContinue) != 0);
Ian Rogersd81871c2011-10-03 13:57:23 -07002892 if (!CheckMoveException(code_item_->insns_, work_insn_idx_ + branch_target)) {
jeffhaobdb76512011-09-07 11:43:16 -07002893 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002894 }
jeffhaobdb76512011-09-07 11:43:16 -07002895 /* update branch target, set "changed" if appropriate */
Ian Rogersd81871c2011-10-03 13:57:23 -07002896 if (!UpdateRegisters(work_insn_idx_ + branch_target, work_line_.get())) {
jeffhaobdb76512011-09-07 11:43:16 -07002897 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002898 }
jeffhaobdb76512011-09-07 11:43:16 -07002899 }
2900
2901 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002902 * Handle "switch". Tag all possible branch targets.
jeffhaobdb76512011-09-07 11:43:16 -07002903 *
2904 * We've already verified that the table is structurally sound, so we
2905 * just need to walk through and tag the targets.
2906 */
2907 if ((opcode_flag & Instruction::kSwitch) != 0) {
2908 int offset_to_switch = insns[1] | (((int32_t) insns[2]) << 16);
2909 const uint16_t* switch_insns = insns + offset_to_switch;
2910 int switch_count = switch_insns[1];
2911 int offset_to_targets, targ;
2912
2913 if ((*insns & 0xff) == Instruction::PACKED_SWITCH) {
2914 /* 0 = sig, 1 = count, 2/3 = first key */
2915 offset_to_targets = 4;
2916 } else {
2917 /* 0 = sig, 1 = count, 2..count * 2 = keys */
Brian Carlstrom5b8e4c82011-09-18 01:38:59 -07002918 DCHECK((*insns & 0xff) == Instruction::SPARSE_SWITCH);
jeffhaobdb76512011-09-07 11:43:16 -07002919 offset_to_targets = 2 + 2 * switch_count;
2920 }
2921
2922 /* verify each switch target */
2923 for (targ = 0; targ < switch_count; targ++) {
2924 int offset;
2925 uint32_t abs_offset;
2926
2927 /* offsets are 32-bit, and only partly endian-swapped */
2928 offset = switch_insns[offset_to_targets + targ * 2] |
2929 (((int32_t) switch_insns[offset_to_targets + targ * 2 + 1]) << 16);
Ian Rogersd81871c2011-10-03 13:57:23 -07002930 abs_offset = work_insn_idx_ + offset;
2931 DCHECK_LT(abs_offset, code_item_->insns_size_in_code_units_);
2932 if (!CheckMoveException(code_item_->insns_, abs_offset)) {
jeffhaobdb76512011-09-07 11:43:16 -07002933 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002934 }
2935 if (!UpdateRegisters(abs_offset, work_line_.get()))
jeffhaobdb76512011-09-07 11:43:16 -07002936 return false;
2937 }
2938 }
2939
2940 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002941 * Handle instructions that can throw and that are sitting in a "try" block. (If they're not in a
2942 * "try" block when they throw, control transfers out of the method.)
jeffhaobdb76512011-09-07 11:43:16 -07002943 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002944 if ((opcode_flag & Instruction::kThrow) != 0 && insn_flags_[work_insn_idx_].IsInTry()) {
2945 bool within_catch_all = false;
Ian Rogers0571d352011-11-03 19:51:38 -07002946 CatchHandlerIterator iterator(*code_item_, work_insn_idx_);
jeffhaobdb76512011-09-07 11:43:16 -07002947
Ian Rogers0571d352011-11-03 19:51:38 -07002948 for (; iterator.HasNext(); iterator.Next()) {
2949 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002950 within_catch_all = true;
2951 }
jeffhaobdb76512011-09-07 11:43:16 -07002952 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002953 * Merge registers into the "catch" block. We want to use the "savedRegs" rather than
2954 * "work_regs", because at runtime the exception will be thrown before the instruction
2955 * modifies any registers.
jeffhaobdb76512011-09-07 11:43:16 -07002956 */
Ian Rogers0571d352011-11-03 19:51:38 -07002957 if (!UpdateRegisters(iterator.GetHandlerAddress(), saved_line_.get())) {
jeffhaobdb76512011-09-07 11:43:16 -07002958 return false;
Ian Rogersd81871c2011-10-03 13:57:23 -07002959 }
jeffhaobdb76512011-09-07 11:43:16 -07002960 }
2961
2962 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002963 * If the monitor stack depth is nonzero, there must be a "catch all" handler for this
2964 * instruction. This does apply to monitor-exit because of async exception handling.
jeffhaobdb76512011-09-07 11:43:16 -07002965 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002966 if (work_line_->MonitorStackDepth() > 0 && !within_catch_all) {
jeffhaobdb76512011-09-07 11:43:16 -07002967 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07002968 * The state in work_line reflects the post-execution state. If the current instruction is a
2969 * monitor-enter and the monitor stack was empty, we don't need a catch-all (if it throws,
jeffhaobdb76512011-09-07 11:43:16 -07002970 * it will do so before grabbing the lock).
2971 */
Ian Rogersd81871c2011-10-03 13:57:23 -07002972 if (dec_insn.opcode_ != Instruction::MONITOR_ENTER || work_line_->MonitorStackDepth() != 1) {
2973 Fail(VERIFY_ERROR_GENERIC)
2974 << "expected to be within a catch-all for an instruction where a monitor is held";
jeffhaobdb76512011-09-07 11:43:16 -07002975 return false;
2976 }
2977 }
2978 }
2979
jeffhaod1f0fde2011-09-08 17:25:33 -07002980 /* If we're returning from the method, make sure monitor stack is empty. */
Ian Rogersd81871c2011-10-03 13:57:23 -07002981 if ((opcode_flag & Instruction::kReturn) != 0) {
2982 if(!work_line_->VerifyMonitorStackEmpty()) {
2983 return false;
2984 }
jeffhaobdb76512011-09-07 11:43:16 -07002985 }
2986
2987 /*
jeffhaod1f0fde2011-09-08 17:25:33 -07002988 * Update start_guess. Advance to the next instruction of that's
2989 * possible, otherwise use the branch target if one was found. If
jeffhaobdb76512011-09-07 11:43:16 -07002990 * neither of those exists we're in a return or throw; leave start_guess
2991 * alone and let the caller sort it out.
2992 */
2993 if ((opcode_flag & Instruction::kContinue) != 0) {
Ian Rogersd81871c2011-10-03 13:57:23 -07002994 *start_guess = work_insn_idx_ + insn_flags_[work_insn_idx_].GetLengthInCodeUnits();
jeffhaobdb76512011-09-07 11:43:16 -07002995 } else if ((opcode_flag & Instruction::kBranch) != 0) {
2996 /* we're still okay if branch_target is zero */
Ian Rogersd81871c2011-10-03 13:57:23 -07002997 *start_guess = work_insn_idx_ + branch_target;
jeffhaobdb76512011-09-07 11:43:16 -07002998 }
2999
Ian Rogersd81871c2011-10-03 13:57:23 -07003000 DCHECK_LT(*start_guess, code_item_->insns_size_in_code_units_);
3001 DCHECK(insn_flags_[*start_guess].IsOpcode());
jeffhaobdb76512011-09-07 11:43:16 -07003002
3003 return true;
3004}
3005
Ian Rogers28ad40d2011-10-27 15:19:26 -07003006const RegType& DexVerifier::ResolveClassAndCheckAccess(uint32_t class_idx) {
Ian Rogers0571d352011-11-03 19:51:38 -07003007 const char* descriptor = dex_file_->StringByTypeIdx(class_idx);
Ian Rogers28ad40d2011-10-27 15:19:26 -07003008 Class* referrer = method_->GetDeclaringClass();
3009 Class* klass = method_->GetDexCacheResolvedTypes()->Get(class_idx);
3010 const RegType& result =
3011 klass != NULL ? reg_types_.FromClass(klass)
3012 : reg_types_.FromDescriptor(referrer->GetClassLoader(), descriptor);
3013 if (klass == NULL && !result.IsUnresolvedTypes()) {
3014 method_->GetDexCacheResolvedTypes()->Set(class_idx, result.GetClass());
Ian Rogersd81871c2011-10-03 13:57:23 -07003015 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003016 // Check if access is allowed. Unresolved types use AllocObjectFromCodeWithAccessCheck to
3017 // check at runtime if access is allowed and so pass here.
3018 if (!result.IsUnresolvedTypes() && !referrer->CanAccess(result.GetClass())) {
3019 Fail(VERIFY_ERROR_ACCESS_CLASS) << "illegal class access: '"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003020 << PrettyDescriptor(referrer) << "' -> '"
Ian Rogers28ad40d2011-10-27 15:19:26 -07003021 << result << "'";
3022 return reg_types_.Unknown();
3023 } else {
3024 return result;
3025 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003026}
3027
Ian Rogers28ad40d2011-10-27 15:19:26 -07003028const RegType& DexVerifier::GetCaughtExceptionType() {
3029 const RegType* common_super = NULL;
Ian Rogersd81871c2011-10-03 13:57:23 -07003030 if (code_item_->tries_size_ != 0) {
Ian Rogers0571d352011-11-03 19:51:38 -07003031 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item_, 0);
Ian Rogersd81871c2011-10-03 13:57:23 -07003032 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
3033 for (uint32_t i = 0; i < handlers_size; i++) {
Ian Rogers0571d352011-11-03 19:51:38 -07003034 CatchHandlerIterator iterator(handlers_ptr);
3035 for (; iterator.HasNext(); iterator.Next()) {
3036 if (iterator.GetHandlerAddress() == (uint32_t) work_insn_idx_) {
3037 if (iterator.GetHandlerTypeIndex() == DexFile::kDexNoIndex16) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07003038 common_super = &reg_types_.JavaLangThrowable();
Ian Rogersd81871c2011-10-03 13:57:23 -07003039 } else {
Ian Rogers0571d352011-11-03 19:51:38 -07003040 const RegType& exception = ResolveClassAndCheckAccess(iterator.GetHandlerTypeIndex());
Ian Rogersc4762272012-02-01 15:55:55 -08003041 if (common_super == NULL) {
3042 // Unconditionally assign for the first handler. We don't assert this is a Throwable
3043 // as that is caught at runtime
3044 common_super = &exception;
3045 } else if(!reg_types_.JavaLangThrowable().IsAssignableFrom(exception)) {
3046 // We don't know enough about the type and the common path merge will result in
3047 // Conflict. Fail here knowing the correct thing can be done at runtime.
Ian Rogers28ad40d2011-10-27 15:19:26 -07003048 Fail(VERIFY_ERROR_GENERIC) << "unexpected non-exception class " << exception;
3049 return reg_types_.Unknown();
Ian Rogers28ad40d2011-10-27 15:19:26 -07003050 } else if (common_super->Equals(exception)) {
Ian Rogersc4762272012-02-01 15:55:55 -08003051 // odd case, but nothing to do
Ian Rogersd81871c2011-10-03 13:57:23 -07003052 } else {
Ian Rogers28ad40d2011-10-27 15:19:26 -07003053 common_super = &common_super->Merge(exception, &reg_types_);
3054 CHECK(reg_types_.JavaLangThrowable().IsAssignableFrom(*common_super));
Ian Rogersd81871c2011-10-03 13:57:23 -07003055 }
3056 }
3057 }
3058 }
Ian Rogers0571d352011-11-03 19:51:38 -07003059 handlers_ptr = iterator.EndDataPointer();
Ian Rogersd81871c2011-10-03 13:57:23 -07003060 }
3061 }
3062 if (common_super == NULL) {
3063 /* no catch blocks, or no catches with classes we can find */
3064 Fail(VERIFY_ERROR_GENERIC) << "unable to find exception handler";
Ian Rogersc4762272012-02-01 15:55:55 -08003065 return reg_types_.Unknown();
Ian Rogersd81871c2011-10-03 13:57:23 -07003066 }
Ian Rogers28ad40d2011-10-27 15:19:26 -07003067 return *common_super;
Ian Rogersd81871c2011-10-03 13:57:23 -07003068}
3069
3070Method* DexVerifier::ResolveMethodAndCheckAccess(uint32_t method_idx, bool is_direct) {
Ian Rogers90040192011-12-16 08:54:29 -08003071 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
3072 const RegType& klass_type = ResolveClassAndCheckAccess(method_id.class_idx_);
3073 if (failure_ != VERIFY_ERROR_NONE) {
3074 fail_messages_ << " in attempt to access method " << dex_file_->GetMethodName(method_id);
3075 return NULL;
3076 }
3077 if(klass_type.IsUnresolvedTypes()) {
3078 return NULL; // Can't resolve Class so no more to do here
3079 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003080 Class* referrer = method_->GetDeclaringClass();
3081 DexCache* dex_cache = referrer->GetDexCache();
3082 Method* res_method = dex_cache->GetResolvedMethod(method_idx);
3083 if (res_method == NULL) {
Ian Rogers28ad40d2011-10-27 15:19:26 -07003084 Class* klass = klass_type.GetClass();
Brian Carlstrom6b4ef022011-10-23 14:59:04 -07003085 const char* name = dex_file_->GetMethodName(method_id);
Ian Rogers0571d352011-11-03 19:51:38 -07003086 std::string signature(dex_file_->CreateMethodSignature(method_id.proto_idx_, NULL));
Ian Rogersd81871c2011-10-03 13:57:23 -07003087 if (is_direct) {
3088 res_method = klass->FindDirectMethod(name, signature);
3089 } else if (klass->IsInterface()) {
3090 res_method = klass->FindInterfaceMethod(name, signature);
3091 } else {
3092 res_method = klass->FindVirtualMethod(name, signature);
3093 }
3094 if (res_method != NULL) {
3095 dex_cache->SetResolvedMethod(method_idx, res_method);
3096 } else {
3097 Fail(VERIFY_ERROR_NO_METHOD) << "couldn't find method "
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003098 << PrettyDescriptor(klass) << "." << name
Ian Rogersd81871c2011-10-03 13:57:23 -07003099 << " " << signature;
3100 return NULL;
3101 }
3102 }
3103 /* Check if access is allowed. */
3104 if (!referrer->CanAccessMember(res_method->GetDeclaringClass(), res_method->GetAccessFlags())) {
3105 Fail(VERIFY_ERROR_ACCESS_METHOD) << "illegal method access (call " << PrettyMethod(res_method)
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003106 << " from " << PrettyDescriptor(referrer) << ")";
Ian Rogersd81871c2011-10-03 13:57:23 -07003107 return NULL;
3108 }
3109 return res_method;
3110}
3111
3112Method* DexVerifier::VerifyInvocationArgs(const Instruction::DecodedInstruction& dec_insn,
3113 MethodType method_type, bool is_range, bool is_super) {
3114 // Resolve the method. This could be an abstract or concrete method depending on what sort of call
3115 // we're making.
3116 Method* res_method = ResolveMethodAndCheckAccess(dec_insn.vB_,
3117 (method_type == METHOD_DIRECT || method_type == METHOD_STATIC));
Ian Rogers28ad40d2011-10-27 15:19:26 -07003118 if (res_method == NULL) { // error or class is unresolved
Ian Rogersd81871c2011-10-03 13:57:23 -07003119 return NULL;
3120 }
3121 // Make sure calls to constructors are "direct". There are additional restrictions but we don't
3122 // enforce them here.
3123 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) {
3124 Fail(VERIFY_ERROR_GENERIC) << "rejecting non-direct call to constructor "
3125 << PrettyMethod(res_method);
3126 return NULL;
3127 }
3128 // See if the method type implied by the invoke instruction matches the access flags for the
3129 // target method.
3130 if ((method_type == METHOD_DIRECT && !res_method->IsDirect()) ||
3131 (method_type == METHOD_STATIC && !res_method->IsStatic()) ||
3132 ((method_type == METHOD_VIRTUAL || method_type == METHOD_INTERFACE) && res_method->IsDirect())
3133 ) {
Ian Rogers573db4a2011-12-13 15:30:50 -08003134 Fail(VERIFY_ERROR_CLASS_CHANGE) << "invoke type does not match method type of "
3135 << PrettyMethod(res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07003136 return NULL;
3137 }
3138 // If we're using invoke-super(method), make sure that the executing method's class' superclass
3139 // has a vtable entry for the target method.
3140 if (is_super) {
3141 DCHECK(method_type == METHOD_VIRTUAL);
3142 Class* super = method_->GetDeclaringClass()->GetSuperClass();
3143 if (super == NULL || res_method->GetMethodIndex() > super->GetVTable()->GetLength()) {
3144 if (super == NULL) { // Only Object has no super class
3145 Fail(VERIFY_ERROR_NO_METHOD) << "invalid invoke-super from " << PrettyMethod(method_)
3146 << " to super " << PrettyMethod(res_method);
3147 } else {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003148 MethodHelper mh(res_method);
Ian Rogersd81871c2011-10-03 13:57:23 -07003149 Fail(VERIFY_ERROR_NO_METHOD) << "invalid invoke-super from " << PrettyMethod(method_)
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003150 << " to super " << PrettyDescriptor(super)
3151 << "." << mh.GetName()
3152 << mh.GetSignature();
Ian Rogersd81871c2011-10-03 13:57:23 -07003153 }
3154 return NULL;
3155 }
3156 }
3157 // We use vAA as our expected arg count, rather than res_method->insSize, because we need to
3158 // match the call to the signature. Also, we might might be calling through an abstract method
3159 // definition (which doesn't have register count values).
3160 int expected_args = dec_insn.vA_;
3161 /* caught by static verifier */
3162 DCHECK(is_range || expected_args <= 5);
3163 if (expected_args > code_item_->outs_size_) {
3164 Fail(VERIFY_ERROR_GENERIC) << "invalid arg count (" << expected_args
3165 << ") exceeds outsSize (" << code_item_->outs_size_ << ")";
3166 return NULL;
3167 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003168 std::string sig(MethodHelper(res_method).GetSignature());
Ian Rogersd81871c2011-10-03 13:57:23 -07003169 if (sig[0] != '(') {
3170 Fail(VERIFY_ERROR_GENERIC) << "rejecting call to " << res_method
3171 << " as descriptor doesn't start with '(': " << sig;
3172 return NULL;
3173 }
jeffhaobdb76512011-09-07 11:43:16 -07003174 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003175 * Check the "this" argument, which must be an instance of the class
3176 * that declared the method. For an interface class, we don't do the
3177 * full interface merge, so we can't do a rigorous check here (which
3178 * is okay since we have to do it at runtime).
jeffhaobdb76512011-09-07 11:43:16 -07003179 */
Ian Rogersd81871c2011-10-03 13:57:23 -07003180 int actual_args = 0;
3181 if (!res_method->IsStatic()) {
3182 const RegType& actual_arg_type = work_line_->GetInvocationThis(dec_insn);
3183 if (failure_ != VERIFY_ERROR_NONE) {
3184 return NULL;
3185 }
3186 if (actual_arg_type.IsUninitializedReference() && !res_method->IsConstructor()) {
3187 Fail(VERIFY_ERROR_GENERIC) << "'this' arg must be initialized";
3188 return NULL;
3189 }
3190 if (method_type != METHOD_INTERFACE && !actual_arg_type.IsZero()) {
Ian Rogers9074b992011-10-26 17:41:55 -07003191 const RegType& res_method_class = reg_types_.FromClass(res_method->GetDeclaringClass());
3192 if (!res_method_class.IsAssignableFrom(actual_arg_type)) {
3193 Fail(VERIFY_ERROR_GENERIC) << "'this' arg '" << actual_arg_type << "' not instance of '"
3194 << res_method_class << "'";
Ian Rogersd81871c2011-10-03 13:57:23 -07003195 return NULL;
3196 }
3197 }
3198 actual_args++;
3199 }
3200 /*
3201 * Process the target method's signature. This signature may or may not
3202 * have been verified, so we can't assume it's properly formed.
3203 */
3204 size_t sig_offset = 0;
3205 for (sig_offset = 1; sig_offset < sig.size() && sig[sig_offset] != ')'; sig_offset++) {
3206 if (actual_args >= expected_args) {
3207 Fail(VERIFY_ERROR_GENERIC) << "Rejecting invalid call to '" << PrettyMethod(res_method)
3208 << "'. Expected " << expected_args << " args, found more ("
3209 << sig.substr(sig_offset) << ")";
3210 return NULL;
3211 }
3212 std::string descriptor;
3213 if ((sig[sig_offset] == 'L') || (sig[sig_offset] == '[')) {
3214 size_t end;
3215 if (sig[sig_offset] == 'L') {
3216 end = sig.find(';', sig_offset);
3217 } else {
3218 for(end = sig_offset + 1; sig[end] == '['; end++) ;
3219 if (sig[end] == 'L') {
3220 end = sig.find(';', end);
3221 }
3222 }
3223 if (end == std::string::npos) {
3224 Fail(VERIFY_ERROR_GENERIC) << "Rejecting invocation of " << PrettyMethod(res_method)
3225 << "bad signature component '" << sig << "' (missing ';')";
3226 return NULL;
3227 }
3228 descriptor = sig.substr(sig_offset, end - sig_offset + 1);
3229 sig_offset = end;
3230 } else {
3231 descriptor = sig[sig_offset];
3232 }
3233 const RegType& reg_type =
Ian Rogers672297c2012-01-10 14:50:55 -08003234 reg_types_.FromDescriptor(method_->GetDeclaringClass()->GetClassLoader(),
3235 descriptor.c_str());
Ian Rogers84fa0742011-10-25 18:13:30 -07003236 uint32_t get_reg = is_range ? dec_insn.vC_ + actual_args : dec_insn.arg_[actual_args];
3237 if (!work_line_->VerifyRegisterType(get_reg, reg_type)) {
3238 return NULL;
Ian Rogersd81871c2011-10-03 13:57:23 -07003239 }
3240 actual_args = reg_type.IsLongOrDoubleTypes() ? actual_args + 2 : actual_args + 1;
3241 }
3242 if (sig[sig_offset] != ')') {
3243 Fail(VERIFY_ERROR_GENERIC) << "invocation target: bad signature" << PrettyMethod(res_method);
3244 return NULL;
3245 }
3246 if (actual_args != expected_args) {
3247 Fail(VERIFY_ERROR_GENERIC) << "Rejecting invocation of " << PrettyMethod(res_method)
3248 << " expected " << expected_args << " args, found " << actual_args;
3249 return NULL;
3250 } else {
3251 return res_method;
3252 }
3253}
3254
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003255const RegType& DexVerifier::GetMethodReturnType() {
3256 return reg_types_.FromDescriptor(method_->GetDeclaringClass()->GetClassLoader(),
3257 MethodHelper(method_).GetReturnTypeDescriptor());
3258}
3259
Ian Rogersd81871c2011-10-03 13:57:23 -07003260void DexVerifier::VerifyAGet(const Instruction::DecodedInstruction& dec_insn,
3261 const RegType& insn_type, bool is_primitive) {
3262 const RegType& index_type = work_line_->GetRegisterType(dec_insn.vC_);
3263 if (!index_type.IsArrayIndexTypes()) {
3264 Fail(VERIFY_ERROR_GENERIC) << "Invalid reg type for array index (" << index_type << ")";
3265 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08003266 const RegType& array_type = work_line_->GetRegisterType(dec_insn.vB_);
3267 if (array_type.IsZero()) {
3268 // Null array class; this code path will fail at runtime. Infer a merge-able type from the
3269 // instruction type. TODO: have a proper notion of bottom here.
3270 if (!is_primitive || insn_type.IsCategory1Types()) {
3271 // Reference or category 1
3272 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.Zero());
Ian Rogersd81871c2011-10-03 13:57:23 -07003273 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08003274 // Category 2
3275 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.ConstLo());
3276 }
3277 } else {
3278 /* verify the class */
3279 const RegType& component_type = reg_types_.GetComponentType(array_type,
3280 method_->GetDeclaringClass()->GetClassLoader());
3281 if (!array_type.IsArrayTypes()) {
3282 Fail(VERIFY_ERROR_GENERIC) << "not array type " << array_type << " with aget";
3283 } else if (!component_type.IsReferenceTypes() && !is_primitive) {
3284 Fail(VERIFY_ERROR_GENERIC) << "primitive array type " << array_type
3285 << " source for aget-object";
3286 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
3287 Fail(VERIFY_ERROR_GENERIC) << "reference array type " << array_type
3288 << " source for category 1 aget";
3289 } else if (is_primitive && !insn_type.Equals(component_type) &&
3290 !((insn_type.IsInteger() && component_type.IsFloat()) ||
3291 (insn_type.IsLong() && component_type.IsDouble()))) {
3292 Fail(VERIFY_ERROR_GENERIC) << "array type " << array_type
Ian Rogersd81871c2011-10-03 13:57:23 -07003293 << " incompatible with aget of type " << insn_type;
Ian Rogers89310de2012-02-01 13:47:30 -08003294 } else {
Ian Rogersd81871c2011-10-03 13:57:23 -07003295 // Use knowledge of the field type which is stronger than the type inferred from the
3296 // instruction, which can't differentiate object types and ints from floats, longs from
3297 // doubles.
3298 work_line_->SetRegisterType(dec_insn.vA_, component_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07003299 }
3300 }
3301 }
3302}
3303
3304void DexVerifier::VerifyAPut(const Instruction::DecodedInstruction& dec_insn,
3305 const RegType& insn_type, bool is_primitive) {
3306 const RegType& index_type = work_line_->GetRegisterType(dec_insn.vC_);
3307 if (!index_type.IsArrayIndexTypes()) {
3308 Fail(VERIFY_ERROR_GENERIC) << "Invalid reg type for array index (" << index_type << ")";
3309 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08003310 const RegType& array_type = work_line_->GetRegisterType(dec_insn.vB_);
3311 if (array_type.IsZero()) {
3312 // Null array type; this code path will fail at runtime. Infer a merge-able type from the
3313 // instruction type.
3314 } else {
3315 /* verify the class */
3316 const RegType& component_type = reg_types_.GetComponentType(array_type,
3317 method_->GetDeclaringClass()->GetClassLoader());
3318 if (!array_type.IsArrayTypes()) {
3319 Fail(VERIFY_ERROR_GENERIC) << "not array type " << array_type << " with aput";
3320 } else if (!component_type.IsReferenceTypes() && !is_primitive) {
3321 Fail(VERIFY_ERROR_GENERIC) << "primitive array type " << array_type
3322 << " source for aput-object";
3323 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
3324 Fail(VERIFY_ERROR_GENERIC) << "reference array type " << array_type
3325 << " source for category 1 aput";
3326 } else if (is_primitive && !insn_type.Equals(component_type) &&
3327 !((insn_type.IsInteger() && component_type.IsFloat()) ||
3328 (insn_type.IsLong() && component_type.IsDouble()))) {
3329 Fail(VERIFY_ERROR_GENERIC) << "array type " << array_type
3330 << " incompatible with aput of type " << insn_type;
Ian Rogersd81871c2011-10-03 13:57:23 -07003331 } else {
Ian Rogers89310de2012-02-01 13:47:30 -08003332 // The instruction agrees with the type of array, confirm the value to be stored does too
3333 // Note: we use the instruction type (rather than the component type) for aput-object as
3334 // incompatible classes will be caught at runtime as an array store exception
3335 work_line_->VerifyRegisterType(dec_insn.vA_, is_primitive ? component_type : insn_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07003336 }
3337 }
3338 }
3339}
3340
3341Field* DexVerifier::GetStaticField(int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08003342 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3343 // Check access to class
3344 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
3345 if (failure_ != VERIFY_ERROR_NONE) {
3346 fail_messages_ << " in attempt to access static field " << field_idx << " ("
3347 << dex_file_->GetFieldName(field_id) << ") in "
3348 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
3349 return NULL;
3350 }
3351 if(klass_type.IsUnresolvedTypes()) {
3352 return NULL; // Can't resolve Class so no more to do here
3353 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003354 Field* field = Runtime::Current()->GetClassLinker()->ResolveFieldJLS(field_idx, method_);
Ian Rogersd81871c2011-10-03 13:57:23 -07003355 if (field == NULL) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07003356 LOG(INFO) << "unable to resolve static field " << field_idx << " ("
3357 << dex_file_->GetFieldName(field_id) << ") in "
3358 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07003359 DCHECK(Thread::Current()->IsExceptionPending());
3360 Thread::Current()->ClearException();
3361 return NULL;
3362 } else if (!method_->GetDeclaringClass()->CanAccessMember(field->GetDeclaringClass(),
3363 field->GetAccessFlags())) {
3364 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access static field " << PrettyField(field)
3365 << " from " << PrettyClass(method_->GetDeclaringClass());
3366 return NULL;
3367 } else if (!field->IsStatic()) {
3368 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field) << " to be static";
3369 return NULL;
3370 } else {
3371 return field;
3372 }
3373}
3374
Ian Rogersd81871c2011-10-03 13:57:23 -07003375Field* DexVerifier::GetInstanceField(const RegType& obj_type, int field_idx) {
Ian Rogers90040192011-12-16 08:54:29 -08003376 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3377 // Check access to class
3378 const RegType& klass_type = ResolveClassAndCheckAccess(field_id.class_idx_);
3379 if (failure_ != VERIFY_ERROR_NONE) {
3380 fail_messages_ << " in attempt to access instance field " << field_idx << " ("
3381 << dex_file_->GetFieldName(field_id) << ") in "
3382 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
3383 return NULL;
3384 }
3385 if(klass_type.IsUnresolvedTypes()) {
3386 return NULL; // Can't resolve Class so no more to do here
3387 }
Ian Rogersb067ac22011-12-13 18:05:09 -08003388 Field* field = Runtime::Current()->GetClassLinker()->ResolveFieldJLS(field_idx, method_);
Ian Rogersd81871c2011-10-03 13:57:23 -07003389 if (field == NULL) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07003390 LOG(INFO) << "unable to resolve instance field " << field_idx << " ("
3391 << dex_file_->GetFieldName(field_id) << ") in "
3392 << dex_file_->GetFieldDeclaringClassDescriptor(field_id);
Ian Rogersd81871c2011-10-03 13:57:23 -07003393 DCHECK(Thread::Current()->IsExceptionPending());
3394 Thread::Current()->ClearException();
3395 return NULL;
3396 } else if (!method_->GetDeclaringClass()->CanAccessMember(field->GetDeclaringClass(),
3397 field->GetAccessFlags())) {
3398 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot access instance field " << PrettyField(field)
3399 << " from " << PrettyClass(method_->GetDeclaringClass());
3400 return NULL;
3401 } else if (field->IsStatic()) {
3402 Fail(VERIFY_ERROR_CLASS_CHANGE) << "expected field " << PrettyField(field)
3403 << " to not be static";
3404 return NULL;
3405 } else if (obj_type.IsZero()) {
3406 // Cannot infer and check type, however, access will cause null pointer exception
3407 return field;
3408 } else if(obj_type.IsUninitializedReference() &&
3409 (!method_->IsConstructor() || method_->GetDeclaringClass() != obj_type.GetClass() ||
3410 field->GetDeclaringClass() != method_->GetDeclaringClass())) {
3411 // Field accesses through uninitialized references are only allowable for constructors where
3412 // the field is declared in this class
3413 Fail(VERIFY_ERROR_GENERIC) << "cannot access instance field " << PrettyField(field)
3414 << " of a not fully initialized object within the context of "
3415 << PrettyMethod(method_);
3416 return NULL;
3417 } else if(!field->GetDeclaringClass()->IsAssignableFrom(obj_type.GetClass())) {
3418 // Trying to access C1.field1 using reference of type C2, which is neither C1 or a sub-class
3419 // of C1. For resolution to occur the declared class of the field must be compatible with
3420 // obj_type, we've discovered this wasn't so, so report the field didn't exist.
3421 Fail(VERIFY_ERROR_NO_FIELD) << "cannot access instance field " << PrettyField(field)
3422 << " from object of type " << PrettyClass(obj_type.GetClass());
3423 return NULL;
3424 } else {
3425 return field;
3426 }
3427}
3428
Ian Rogersb94a27b2011-10-26 00:33:41 -07003429void DexVerifier::VerifyISGet(const Instruction::DecodedInstruction& dec_insn,
3430 const RegType& insn_type, bool is_primitive, bool is_static) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07003431 uint32_t field_idx = is_static ? dec_insn.vB_ : dec_insn.vC_;
Ian Rogersb94a27b2011-10-26 00:33:41 -07003432 Field* field;
3433 if (is_static) {
Ian Rogersf4028cc2011-11-02 14:56:39 -07003434 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07003435 } else {
3436 const RegType& object_type = work_line_->GetRegisterType(dec_insn.vB_);
Ian Rogersf4028cc2011-11-02 14:56:39 -07003437 field = GetInstanceField(object_type, field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07003438 }
Ian Rogersf4028cc2011-11-02 14:56:39 -07003439 if (failure_ != VERIFY_ERROR_NONE) {
3440 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.Unknown());
3441 } else {
3442 const char* descriptor;
3443 const ClassLoader* loader;
3444 if (field != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003445 descriptor = FieldHelper(field).GetTypeDescriptor();
Ian Rogersf4028cc2011-11-02 14:56:39 -07003446 loader = field->GetDeclaringClass()->GetClassLoader();
3447 } else {
3448 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3449 descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
3450 loader = method_->GetDeclaringClass()->GetClassLoader();
3451 }
3452 const RegType& field_type = reg_types_.FromDescriptor(loader, descriptor);
Ian Rogersd81871c2011-10-03 13:57:23 -07003453 if (is_primitive) {
Ian Rogersb5e95b92011-10-25 23:28:55 -07003454 if (field_type.Equals(insn_type) ||
3455 (field_type.IsFloat() && insn_type.IsIntegralTypes()) ||
3456 (field_type.IsDouble() && insn_type.IsLongTypes())) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003457 // expected that read is of the correct primitive type or that int reads are reading
3458 // floats or long reads are reading doubles
3459 } else {
3460 // This is a global failure rather than a class change failure as the instructions and
3461 // the descriptors for the type should have been consistent within the same file at
3462 // compile time
3463 Fail(VERIFY_ERROR_GENERIC) << "expected field " << PrettyField(field)
Ian Rogersb5e95b92011-10-25 23:28:55 -07003464 << " to be of type '" << insn_type
Ian Rogersb94a27b2011-10-26 00:33:41 -07003465 << "' but found type '" << field_type << "' in get";
Ian Rogersd81871c2011-10-03 13:57:23 -07003466 return;
3467 }
3468 } else {
Ian Rogersb5e95b92011-10-25 23:28:55 -07003469 if (!insn_type.IsAssignableFrom(field_type)) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003470 Fail(VERIFY_ERROR_GENERIC) << "expected field " << PrettyField(field)
Ian Rogersb5e95b92011-10-25 23:28:55 -07003471 << " to be compatible with type '" << insn_type
3472 << "' but found type '" << field_type
Ian Rogersb94a27b2011-10-26 00:33:41 -07003473 << "' in get-object";
Ian Rogersd81871c2011-10-03 13:57:23 -07003474 return;
3475 }
3476 }
Ian Rogersb5e95b92011-10-25 23:28:55 -07003477 work_line_->SetRegisterType(dec_insn.vA_, field_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07003478 }
3479}
3480
Ian Rogersb94a27b2011-10-26 00:33:41 -07003481void DexVerifier::VerifyISPut(const Instruction::DecodedInstruction& dec_insn,
3482 const RegType& insn_type, bool is_primitive, bool is_static) {
Ian Rogers55d249f2011-11-02 16:48:09 -07003483 uint32_t field_idx = is_static ? dec_insn.vB_ : dec_insn.vC_;
Ian Rogersb94a27b2011-10-26 00:33:41 -07003484 Field* field;
3485 if (is_static) {
Ian Rogers55d249f2011-11-02 16:48:09 -07003486 field = GetStaticField(field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07003487 } else {
3488 const RegType& object_type = work_line_->GetRegisterType(dec_insn.vB_);
Ian Rogers55d249f2011-11-02 16:48:09 -07003489 field = GetInstanceField(object_type, field_idx);
Ian Rogersb94a27b2011-10-26 00:33:41 -07003490 }
Ian Rogers55d249f2011-11-02 16:48:09 -07003491 if (failure_ != VERIFY_ERROR_NONE) {
3492 work_line_->SetRegisterType(dec_insn.vA_, reg_types_.Unknown());
3493 } else {
3494 const char* descriptor;
3495 const ClassLoader* loader;
3496 if (field != NULL) {
Ian Rogers6d4d9fc2011-11-30 16:24:48 -08003497 descriptor = FieldHelper(field).GetTypeDescriptor();
Ian Rogers55d249f2011-11-02 16:48:09 -07003498 loader = field->GetDeclaringClass()->GetClassLoader();
3499 } else {
3500 const DexFile::FieldId& field_id = dex_file_->GetFieldId(field_idx);
3501 descriptor = dex_file_->GetFieldTypeDescriptor(field_id);
3502 loader = method_->GetDeclaringClass()->GetClassLoader();
Ian Rogersd81871c2011-10-03 13:57:23 -07003503 }
Ian Rogers55d249f2011-11-02 16:48:09 -07003504 const RegType& field_type = reg_types_.FromDescriptor(loader, descriptor);
3505 if (field != NULL) {
3506 if (field->IsFinal() && field->GetDeclaringClass() != method_->GetDeclaringClass()) {
3507 Fail(VERIFY_ERROR_ACCESS_FIELD) << "cannot modify final field " << PrettyField(field)
3508 << " from other class " << PrettyClass(method_->GetDeclaringClass());
3509 return;
3510 }
3511 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003512 if (is_primitive) {
Ian Rogers2c8a8572011-10-24 17:11:36 -07003513 // Primitive field assignability rules are weaker than regular assignability rules
3514 bool instruction_compatible;
3515 bool value_compatible;
3516 const RegType& value_type = work_line_->GetRegisterType(dec_insn.vA_);
3517 if (field_type.IsIntegralTypes()) {
3518 instruction_compatible = insn_type.IsIntegralTypes();
3519 value_compatible = value_type.IsIntegralTypes();
3520 } else if (field_type.IsFloat()) {
Ian Rogersb94a27b2011-10-26 00:33:41 -07003521 instruction_compatible = insn_type.IsInteger(); // no [is]put-float, so expect [is]put-int
Ian Rogers2c8a8572011-10-24 17:11:36 -07003522 value_compatible = value_type.IsFloatTypes();
3523 } else if (field_type.IsLong()) {
3524 instruction_compatible = insn_type.IsLong();
3525 value_compatible = value_type.IsLongTypes();
3526 } else if (field_type.IsDouble()) {
Ian Rogersb94a27b2011-10-26 00:33:41 -07003527 instruction_compatible = insn_type.IsLong(); // no [is]put-double, so expect [is]put-long
Ian Rogers2c8a8572011-10-24 17:11:36 -07003528 value_compatible = value_type.IsDoubleTypes();
Ian Rogersd81871c2011-10-03 13:57:23 -07003529 } else {
Ian Rogers2c8a8572011-10-24 17:11:36 -07003530 instruction_compatible = false; // reference field with primitive store
3531 value_compatible = false; // unused
3532 }
3533 if (!instruction_compatible) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003534 // This is a global failure rather than a class change failure as the instructions and
3535 // the descriptors for the type should have been consistent within the same file at
3536 // compile time
3537 Fail(VERIFY_ERROR_GENERIC) << "expected field " << PrettyField(field)
Ian Rogersb5e95b92011-10-25 23:28:55 -07003538 << " to be of type '" << insn_type
3539 << "' but found type '" << field_type
Ian Rogersb94a27b2011-10-26 00:33:41 -07003540 << "' in put";
Ian Rogersd81871c2011-10-03 13:57:23 -07003541 return;
3542 }
Ian Rogers2c8a8572011-10-24 17:11:36 -07003543 if (!value_compatible) {
3544 Fail(VERIFY_ERROR_GENERIC) << "unexpected value in v" << dec_insn.vA_
3545 << " of type " << value_type
3546 << " but expected " << field_type
Ian Rogersb94a27b2011-10-26 00:33:41 -07003547 << " for store to " << PrettyField(field) << " in put";
Ian Rogers2c8a8572011-10-24 17:11:36 -07003548 return;
3549 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003550 } else {
Ian Rogersb5e95b92011-10-25 23:28:55 -07003551 if (!insn_type.IsAssignableFrom(field_type)) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003552 Fail(VERIFY_ERROR_GENERIC) << "expected field " << PrettyField(field)
Ian Rogersb5e95b92011-10-25 23:28:55 -07003553 << " to be compatible with type '" << insn_type
3554 << "' but found type '" << field_type
Ian Rogersb94a27b2011-10-26 00:33:41 -07003555 << "' in put-object";
Ian Rogersd81871c2011-10-03 13:57:23 -07003556 return;
3557 }
Ian Rogers2c8a8572011-10-24 17:11:36 -07003558 work_line_->VerifyRegisterType(dec_insn.vA_, field_type);
Ian Rogersd81871c2011-10-03 13:57:23 -07003559 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003560 }
3561}
3562
3563bool DexVerifier::CheckMoveException(const uint16_t* insns, int insn_idx) {
3564 if ((insns[insn_idx] & 0xff) == Instruction::MOVE_EXCEPTION) {
3565 Fail(VERIFY_ERROR_GENERIC) << "invalid use of move-exception";
3566 return false;
3567 }
3568 return true;
3569}
3570
3571void DexVerifier::VerifyFilledNewArrayRegs(const Instruction::DecodedInstruction& dec_insn,
Ian Rogers28ad40d2011-10-27 15:19:26 -07003572 const RegType& res_type, bool is_range) {
Ian Rogers89310de2012-02-01 13:47:30 -08003573 DCHECK(res_type.IsArrayTypes()) << res_type; // Checked before calling.
Ian Rogersd81871c2011-10-03 13:57:23 -07003574 /*
3575 * Verify each register. If "arg_count" is bad, VerifyRegisterType() will run off the end of the
3576 * list and fail. It's legal, if silly, for arg_count to be zero.
3577 */
Ian Rogers28ad40d2011-10-27 15:19:26 -07003578 const RegType& expected_type = reg_types_.GetComponentType(res_type,
3579 method_->GetDeclaringClass()->GetClassLoader());
Ian Rogersd81871c2011-10-03 13:57:23 -07003580 uint32_t arg_count = dec_insn.vA_;
3581 for (size_t ui = 0; ui < arg_count; ui++) {
3582 uint32_t get_reg;
3583
3584 if (is_range)
3585 get_reg = dec_insn.vC_ + ui;
3586 else
3587 get_reg = dec_insn.arg_[ui];
3588
3589 if (!work_line_->VerifyRegisterType(get_reg, expected_type)) {
3590 Fail(VERIFY_ERROR_GENERIC) << "filled-new-array arg " << ui << "(" << get_reg
3591 << ") not valid";
3592 return;
3593 }
3594 }
3595}
3596
3597void DexVerifier::ReplaceFailingInstruction() {
Ian Rogersf1864ef2011-12-09 12:39:48 -08003598 if (Runtime::Current()->IsStarted()) {
3599 LOG(ERROR) << "Verification attempting to replacing instructions in " << PrettyMethod(method_)
3600 << " " << fail_messages_.str();
3601 return;
3602 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003603 const Instruction* inst = Instruction::At(code_item_->insns_ + work_insn_idx_);
3604 DCHECK(inst->IsThrow()) << "Expected instruction that will throw " << inst->Name();
3605 VerifyErrorRefType ref_type;
3606 switch (inst->Opcode()) {
3607 case Instruction::CONST_CLASS: // insn[1] == class ref, 2 code units (4 bytes)
jeffhaobdb76512011-09-07 11:43:16 -07003608 case Instruction::CHECK_CAST:
3609 case Instruction::INSTANCE_OF:
3610 case Instruction::NEW_INSTANCE:
3611 case Instruction::NEW_ARRAY:
Ian Rogersd81871c2011-10-03 13:57:23 -07003612 case Instruction::FILLED_NEW_ARRAY: // insn[1] == class ref, 3 code units (6 bytes)
jeffhaobdb76512011-09-07 11:43:16 -07003613 case Instruction::FILLED_NEW_ARRAY_RANGE:
3614 ref_type = VERIFY_ERROR_REF_CLASS;
3615 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07003616 case Instruction::IGET: // insn[1] == field ref, 2 code units (4 bytes)
jeffhaobdb76512011-09-07 11:43:16 -07003617 case Instruction::IGET_BOOLEAN:
3618 case Instruction::IGET_BYTE:
3619 case Instruction::IGET_CHAR:
3620 case Instruction::IGET_SHORT:
3621 case Instruction::IGET_WIDE:
3622 case Instruction::IGET_OBJECT:
3623 case Instruction::IPUT:
3624 case Instruction::IPUT_BOOLEAN:
3625 case Instruction::IPUT_BYTE:
3626 case Instruction::IPUT_CHAR:
3627 case Instruction::IPUT_SHORT:
3628 case Instruction::IPUT_WIDE:
3629 case Instruction::IPUT_OBJECT:
3630 case Instruction::SGET:
3631 case Instruction::SGET_BOOLEAN:
3632 case Instruction::SGET_BYTE:
3633 case Instruction::SGET_CHAR:
3634 case Instruction::SGET_SHORT:
3635 case Instruction::SGET_WIDE:
3636 case Instruction::SGET_OBJECT:
3637 case Instruction::SPUT:
3638 case Instruction::SPUT_BOOLEAN:
3639 case Instruction::SPUT_BYTE:
3640 case Instruction::SPUT_CHAR:
3641 case Instruction::SPUT_SHORT:
3642 case Instruction::SPUT_WIDE:
3643 case Instruction::SPUT_OBJECT:
3644 ref_type = VERIFY_ERROR_REF_FIELD;
3645 break;
Ian Rogersd81871c2011-10-03 13:57:23 -07003646 case Instruction::INVOKE_VIRTUAL: // insn[1] == method ref, 3 code units (6 bytes)
jeffhaobdb76512011-09-07 11:43:16 -07003647 case Instruction::INVOKE_VIRTUAL_RANGE:
3648 case Instruction::INVOKE_SUPER:
3649 case Instruction::INVOKE_SUPER_RANGE:
3650 case Instruction::INVOKE_DIRECT:
3651 case Instruction::INVOKE_DIRECT_RANGE:
3652 case Instruction::INVOKE_STATIC:
3653 case Instruction::INVOKE_STATIC_RANGE:
3654 case Instruction::INVOKE_INTERFACE:
3655 case Instruction::INVOKE_INTERFACE_RANGE:
3656 ref_type = VERIFY_ERROR_REF_METHOD;
3657 break;
jeffhaobdb76512011-09-07 11:43:16 -07003658 default:
Ian Rogers2c8a8572011-10-24 17:11:36 -07003659 LOG(FATAL) << "Error: verifier asked to replace instruction " << inst->DumpString(dex_file_);
jeffhaobdb76512011-09-07 11:43:16 -07003660 return;
jeffhaoba5ebb92011-08-25 17:24:37 -07003661 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003662 uint16_t* insns = const_cast<uint16_t*>(code_item_->insns_);
3663 // THROW_VERIFICATION_ERROR is a 2 code unit instruction. We shouldn't be rewriting a 1 code unit
3664 // instruction, so assert it.
3665 size_t width = inst->SizeInCodeUnits();
3666 CHECK_GT(width, 1u);
Ian Rogersf1864ef2011-12-09 12:39:48 -08003667 // If the instruction is larger than 2 code units, rewrite subsequent code unit sized chunks with
Ian Rogersd81871c2011-10-03 13:57:23 -07003668 // NOPs
3669 for (size_t i = 2; i < width; i++) {
3670 insns[work_insn_idx_ + i] = Instruction::NOP;
3671 }
3672 // Encode the opcode, with the failure code in the high byte
3673 uint16_t new_instruction = Instruction::THROW_VERIFICATION_ERROR |
3674 (failure_ << 8) | // AA - component
3675 (ref_type << (8 + kVerifyErrorRefTypeShift));
3676 insns[work_insn_idx_] = new_instruction;
3677 // The 2nd code unit (higher in memory) with the reference in, comes from the instruction we
3678 // rewrote, so nothing to do here.
Ian Rogers9fdfc182011-10-26 23:12:52 -07003679 LOG(INFO) << "Verification error, replacing instructions in " << PrettyMethod(method_) << " "
3680 << fail_messages_.str();
3681 if (gDebugVerify) {
3682 std::cout << std::endl << info_messages_.str();
3683 Dump(std::cout);
3684 }
jeffhaobdb76512011-09-07 11:43:16 -07003685}
jeffhaoba5ebb92011-08-25 17:24:37 -07003686
Ian Rogersd81871c2011-10-03 13:57:23 -07003687bool DexVerifier::UpdateRegisters(uint32_t next_insn, const RegisterLine* merge_line) {
3688 const bool merge_debug = true;
3689 bool changed = true;
3690 RegisterLine* target_line = reg_table_.GetLine(next_insn);
3691 if (!insn_flags_[next_insn].IsVisitedOrChanged()) {
jeffhaobdb76512011-09-07 11:43:16 -07003692 /*
Ian Rogersd81871c2011-10-03 13:57:23 -07003693 * We haven't processed this instruction before, and we haven't touched the registers here, so
3694 * there's nothing to "merge". Copy the registers over and mark it as changed. (This is the
3695 * only way a register can transition out of "unknown", so this is not just an optimization.)
jeffhaobdb76512011-09-07 11:43:16 -07003696 */
Ian Rogersd81871c2011-10-03 13:57:23 -07003697 target_line->CopyFromLine(merge_line);
jeffhaobdb76512011-09-07 11:43:16 -07003698 } else {
Ian Rogersd81871c2011-10-03 13:57:23 -07003699 UniquePtr<RegisterLine> copy(merge_debug ? new RegisterLine(target_line->NumRegs(), this) : NULL);
3700 copy->CopyFromLine(target_line);
3701 changed = target_line->MergeRegisters(merge_line);
3702 if (failure_ != VERIFY_ERROR_NONE) {
3703 return false;
jeffhaobdb76512011-09-07 11:43:16 -07003704 }
Ian Rogers2c8a8572011-10-24 17:11:36 -07003705 if (gDebugVerify && changed) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003706 LogVerifyInfo() << "Merging at [" << (void*)work_insn_idx_ << "] to [" <<(void*)next_insn << "]: " << std::endl
3707 << *copy.get() << " MERGE" << std::endl
3708 << *merge_line << " ==" << std::endl
3709 << *target_line << std::endl;
jeffhaobdb76512011-09-07 11:43:16 -07003710 }
3711 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003712 if (changed) {
3713 insn_flags_[next_insn].SetChanged();
jeffhaobdb76512011-09-07 11:43:16 -07003714 }
3715 return true;
3716}
3717
Ian Rogersd81871c2011-10-03 13:57:23 -07003718void DexVerifier::ComputeGcMapSizes(size_t* gc_points, size_t* ref_bitmap_bits,
3719 size_t* log2_max_gc_pc) {
3720 size_t local_gc_points = 0;
3721 size_t max_insn = 0;
3722 size_t max_ref_reg = -1;
3723 for (size_t i = 0; i < code_item_->insns_size_in_code_units_; i++) {
3724 if (insn_flags_[i].IsGcPoint()) {
3725 local_gc_points++;
3726 max_insn = i;
3727 RegisterLine* line = reg_table_.GetLine(i);
Ian Rogers84fa0742011-10-25 18:13:30 -07003728 max_ref_reg = line->GetMaxNonZeroReferenceReg(max_ref_reg);
jeffhaobdb76512011-09-07 11:43:16 -07003729 }
3730 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003731 *gc_points = local_gc_points;
3732 *ref_bitmap_bits = max_ref_reg + 1; // if max register is 0 we need 1 bit to encode (ie +1)
3733 size_t i = 0;
Ian Rogers6b0870d2011-12-15 19:38:12 -08003734 while ((1U << i) <= max_insn) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003735 i++;
3736 }
3737 *log2_max_gc_pc = i;
jeffhaobdb76512011-09-07 11:43:16 -07003738}
3739
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003740const std::vector<uint8_t>* DexVerifier::GenerateGcMap() {
Ian Rogersd81871c2011-10-03 13:57:23 -07003741 size_t num_entries, ref_bitmap_bits, pc_bits;
3742 ComputeGcMapSizes(&num_entries, &ref_bitmap_bits, &pc_bits);
3743 // There's a single byte to encode the size of each bitmap
3744 if (ref_bitmap_bits >= (8 /* bits per byte */ * 256 /* max unsigned byte + 1 */ )) {
3745 // TODO: either a better GC map format or per method failures
3746 Fail(VERIFY_ERROR_GENERIC) << "Cannot encode GC map for method with "
3747 << ref_bitmap_bits << " registers";
jeffhaobdb76512011-09-07 11:43:16 -07003748 return NULL;
3749 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003750 size_t ref_bitmap_bytes = (ref_bitmap_bits + 7) / 8;
3751 // There are 2 bytes to encode the number of entries
3752 if (num_entries >= 65536) {
3753 // TODO: either a better GC map format or per method failures
3754 Fail(VERIFY_ERROR_GENERIC) << "Cannot encode GC map for method with "
3755 << num_entries << " entries";
jeffhaobdb76512011-09-07 11:43:16 -07003756 return NULL;
3757 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003758 size_t pc_bytes;
jeffhaod1f0fde2011-09-08 17:25:33 -07003759 RegisterMapFormat format;
Ian Rogers6b0870d2011-12-15 19:38:12 -08003760 if (pc_bits <= 8) {
jeffhaod1f0fde2011-09-08 17:25:33 -07003761 format = kRegMapFormatCompact8;
Ian Rogersd81871c2011-10-03 13:57:23 -07003762 pc_bytes = 1;
Ian Rogers6b0870d2011-12-15 19:38:12 -08003763 } else if (pc_bits <= 16) {
jeffhaod1f0fde2011-09-08 17:25:33 -07003764 format = kRegMapFormatCompact16;
Ian Rogersd81871c2011-10-03 13:57:23 -07003765 pc_bytes = 2;
jeffhaoa0a764a2011-09-16 10:43:38 -07003766 } else {
Ian Rogersd81871c2011-10-03 13:57:23 -07003767 // TODO: either a better GC map format or per method failures
3768 Fail(VERIFY_ERROR_GENERIC) << "Cannot encode GC map for method with "
3769 << (1 << pc_bits) << " instructions (number is rounded up to nearest power of 2)";
3770 return NULL;
3771 }
3772 size_t table_size = ((pc_bytes + ref_bitmap_bytes) * num_entries ) + 4;
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003773 std::vector<uint8_t>* table = new std::vector<uint8_t>;
Ian Rogersd81871c2011-10-03 13:57:23 -07003774 if (table == NULL) {
3775 Fail(VERIFY_ERROR_GENERIC) << "Failed to encode GC map (size=" << table_size << ")";
3776 return NULL;
3777 }
3778 // Write table header
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003779 table->push_back(format);
3780 table->push_back(ref_bitmap_bytes);
3781 table->push_back(num_entries & 0xFF);
3782 table->push_back((num_entries >> 8) & 0xFF);
Ian Rogersd81871c2011-10-03 13:57:23 -07003783 // Write table data
Ian Rogersd81871c2011-10-03 13:57:23 -07003784 for (size_t i = 0; i < code_item_->insns_size_in_code_units_; i++) {
3785 if (insn_flags_[i].IsGcPoint()) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003786 table->push_back(i & 0xFF);
Ian Rogersd81871c2011-10-03 13:57:23 -07003787 if (pc_bytes == 2) {
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003788 table->push_back((i >> 8) & 0xFF);
Ian Rogersd81871c2011-10-03 13:57:23 -07003789 }
3790 RegisterLine* line = reg_table_.GetLine(i);
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003791 line->WriteReferenceBitMap(*table, ref_bitmap_bytes);
Ian Rogersd81871c2011-10-03 13:57:23 -07003792 }
3793 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003794 DCHECK_EQ(table->size(), table_size);
Ian Rogersd81871c2011-10-03 13:57:23 -07003795 return table;
3796}
jeffhaoa0a764a2011-09-16 10:43:38 -07003797
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003798void DexVerifier::VerifyGcMap(const std::vector<uint8_t>& data) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003799 // Check that for every GC point there is a map entry, there aren't entries for non-GC points,
3800 // that the table data is well formed and all references are marked (or not) in the bitmap
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003801 PcToReferenceMap map(&data[0], data.size());
Ian Rogersd81871c2011-10-03 13:57:23 -07003802 size_t map_index = 0;
3803 for(size_t i = 0; i < code_item_->insns_size_in_code_units_; i++) {
3804 const uint8_t* reg_bitmap = map.FindBitMap(i, false);
3805 if (insn_flags_[i].IsGcPoint()) {
3806 CHECK_LT(map_index, map.NumEntries());
3807 CHECK_EQ(map.GetPC(map_index), i);
3808 CHECK_EQ(map.GetBitMap(map_index), reg_bitmap);
3809 map_index++;
3810 RegisterLine* line = reg_table_.GetLine(i);
3811 for(size_t j = 0; j < code_item_->registers_size_; j++) {
Ian Rogers84fa0742011-10-25 18:13:30 -07003812 if (line->GetRegisterType(j).IsNonZeroReferenceTypes()) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003813 CHECK_LT(j / 8, map.RegWidth());
3814 CHECK_EQ((reg_bitmap[j / 8] >> (j % 8)) & 1, 1);
3815 } else if ((j / 8) < map.RegWidth()) {
3816 CHECK_EQ((reg_bitmap[j / 8] >> (j % 8)) & 1, 0);
3817 } else {
3818 // If a register doesn't contain a reference then the bitmap may be shorter than the line
3819 }
3820 }
3821 } else {
3822 CHECK(reg_bitmap == NULL);
3823 }
3824 }
3825}
jeffhaoa0a764a2011-09-16 10:43:38 -07003826
Ian Rogersd81871c2011-10-03 13:57:23 -07003827const uint8_t* PcToReferenceMap::FindBitMap(uint16_t dex_pc, bool error_if_not_present) const {
3828 size_t num_entries = NumEntries();
3829 // Do linear or binary search?
3830 static const size_t kSearchThreshold = 8;
3831 if (num_entries < kSearchThreshold) {
3832 for (size_t i = 0; i < num_entries; i++) {
3833 if (GetPC(i) == dex_pc) {
3834 return GetBitMap(i);
3835 }
3836 }
3837 } else {
3838 int lo = 0;
3839 int hi = num_entries -1;
jeffhaoa0a764a2011-09-16 10:43:38 -07003840 while (hi >= lo) {
Ian Rogersd81871c2011-10-03 13:57:23 -07003841 int mid = (hi + lo) / 2;
3842 int mid_pc = GetPC(mid);
3843 if (dex_pc > mid_pc) {
jeffhaoa0a764a2011-09-16 10:43:38 -07003844 lo = mid + 1;
Ian Rogersd81871c2011-10-03 13:57:23 -07003845 } else if (dex_pc < mid_pc) {
jeffhaoa0a764a2011-09-16 10:43:38 -07003846 hi = mid - 1;
3847 } else {
Ian Rogersd81871c2011-10-03 13:57:23 -07003848 return GetBitMap(mid);
jeffhaoa0a764a2011-09-16 10:43:38 -07003849 }
3850 }
3851 }
Ian Rogersd81871c2011-10-03 13:57:23 -07003852 if (error_if_not_present) {
3853 LOG(ERROR) << "Didn't find reference bit map for dex_pc " << dex_pc;
3854 }
jeffhaoa0a764a2011-09-16 10:43:38 -07003855 return NULL;
3856}
3857
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003858DexVerifier::GcMapTable DexVerifier::gc_maps_;
3859
3860void DexVerifier::SetGcMap(Compiler::MethodReference ref, const std::vector<uint8_t>& gc_map) {
Brian Carlstrom73a15f42012-01-17 18:14:39 -08003861 const std::vector<uint8_t>* existing_gc_map = GetGcMap(ref);
3862 if (existing_gc_map != NULL) {
3863 CHECK(*existing_gc_map == gc_map);
3864 delete existing_gc_map;
3865 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -08003866 gc_maps_[ref] = &gc_map;
3867 CHECK(GetGcMap(ref) != NULL);
3868}
3869
3870const std::vector<uint8_t>* DexVerifier::GetGcMap(Compiler::MethodReference ref) {
3871 GcMapTable::const_iterator it = gc_maps_.find(ref);
3872 if (it == gc_maps_.end()) {
3873 return NULL;
3874 }
3875 CHECK(it->second != NULL);
3876 return it->second;
3877}
3878
3879void DexVerifier::DeleteGcMaps() {
3880 STLDeleteValues(&gc_maps_);
3881}
3882
Ian Rogersd81871c2011-10-03 13:57:23 -07003883} // namespace verifier
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07003884} // namespace art