blob: 5719082518419f280658347a4913806dd21123ca [file] [log] [blame]
Ian Rogers776ac1f2012-04-13 23:36:36 -07001/*
2 * Copyright (C) 2012 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 */
16
17#ifndef ART_SRC_VERIFIER_REGISTER_LINE_H_
18#define ART_SRC_VERIFIER_REGISTER_LINE_H_
19
20#include <deque>
21#include <vector>
22
23#include "dex_instruction.h"
24#include "reg_type.h"
25#include "safe_map.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "UniquePtr.h"
Ian Rogers776ac1f2012-04-13 23:36:36 -070027
28namespace art {
29namespace verifier {
30
31class MethodVerifier;
32
33/*
34 * Register type categories, for type checking.
35 *
36 * The spec says category 1 includes boolean, byte, char, short, int, float, reference, and
37 * returnAddress. Category 2 includes long and double.
38 *
39 * We treat object references separately, so we have "category1nr". We don't support jsr/ret, so
40 * there is no "returnAddress" type.
41 */
42enum TypeCategory {
43 kTypeCategoryUnknown = 0,
44 kTypeCategory1nr = 1, // boolean, byte, char, short, int, float
45 kTypeCategory2 = 2, // long, double
46 kTypeCategoryRef = 3, // object reference
47};
48
49// During verification, we associate one of these with every "interesting" instruction. We track
50// the status of all registers, and (if the method has any monitor-enter instructions) maintain a
51// stack of entered monitors (identified by code unit offset).
Ian Rogers776ac1f2012-04-13 23:36:36 -070052class RegisterLine {
53 public:
Ian Rogersca190662012-06-26 15:45:57 -070054 RegisterLine(size_t num_regs, MethodVerifier* verifier)
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -080055 : line_(new uint16_t[num_regs]),
56 verifier_(verifier),
57 num_regs_(num_regs) {
Ian Rogers776ac1f2012-04-13 23:36:36 -070058 memset(line_.get(), 0, num_regs_ * sizeof(uint16_t));
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -080059 SetResultTypeToUnknown();
Ian Rogers776ac1f2012-04-13 23:36:36 -070060 }
61
62 // Implement category-1 "move" instructions. Copy a 32-bit value from "vsrc" to "vdst".
Ian Rogers00f7d0e2012-07-19 15:28:27 -070063 void CopyRegister1(uint32_t vdst, uint32_t vsrc, TypeCategory cat)
Ian Rogersb726dcb2012-09-05 08:57:23 -070064 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -070065
66 // Implement category-2 "move" instructions. Copy a 64-bit value from "vsrc" to "vdst". This
67 // copies both halves of the register.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070068 void CopyRegister2(uint32_t vdst, uint32_t vsrc)
Ian Rogersb726dcb2012-09-05 08:57:23 -070069 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -070070
71 // Implement "move-result". Copy the category-1 value from the result register to another
72 // register, and reset the result register.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070073 void CopyResultRegister1(uint32_t vdst, bool is_reference)
Ian Rogersb726dcb2012-09-05 08:57:23 -070074 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -070075
76 // Implement "move-result-wide". Copy the category-2 value from the result register to another
77 // register, and reset the result register.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070078 void CopyResultRegister2(uint32_t vdst)
Ian Rogersb726dcb2012-09-05 08:57:23 -070079 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -070080
81 // Set the invisible result register to unknown
Sameer Abu Asal51a5fb72013-02-19 14:25:01 -080082 void SetResultTypeToUnknown() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -070083
84 // Set the type of register N, verifying that the register is valid. If "newType" is the "Lo"
85 // part of a 64-bit value, register N+1 will be set to "newType+1".
86 // The register index was validated during the static pass, so we don't need to check it here.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070087 bool SetRegisterType(uint32_t vdst, const RegType& new_type)
Ian Rogersb726dcb2012-09-05 08:57:23 -070088 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -070089
Ian Rogers2bcb4a42012-11-08 10:39:18 -080090 bool SetRegisterTypeWide(uint32_t vdst, const RegType& new_type1, const RegType& new_type2)
91 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
92
Ian Rogers776ac1f2012-04-13 23:36:36 -070093 /* Set the type of the "result" register. */
Ian Rogers00f7d0e2012-07-19 15:28:27 -070094 void SetResultRegisterType(const RegType& new_type)
Ian Rogersb726dcb2012-09-05 08:57:23 -070095 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -070096
Ian Rogers2bcb4a42012-11-08 10:39:18 -080097 void SetResultRegisterTypeWide(const RegType& new_type1, const RegType& new_type2)
98 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
99
Ian Rogers776ac1f2012-04-13 23:36:36 -0700100 // Get the type of register vsrc.
101 const RegType& GetRegisterType(uint32_t vsrc) const;
102
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700103 bool VerifyRegisterType(uint32_t vsrc, const RegType& check_type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700104 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700105
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800106 bool VerifyRegisterTypeWide(uint32_t vsrc, const RegType& check_type1, const RegType& check_type2)
107 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
108
Ian Rogers776ac1f2012-04-13 23:36:36 -0700109 void CopyFromLine(const RegisterLine* src) {
110 DCHECK_EQ(num_regs_, src->num_regs_);
111 memcpy(line_.get(), src->line_.get(), num_regs_ * sizeof(uint16_t));
112 monitors_ = src->monitors_;
113 reg_to_lock_depths_ = src->reg_to_lock_depths_;
114 }
115
Ian Rogersb726dcb2012-09-05 08:57:23 -0700116 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700117
118 void FillWithGarbage() {
119 memset(line_.get(), 0xf1, num_regs_ * sizeof(uint16_t));
120 while (!monitors_.empty()) {
121 monitors_.pop_back();
122 }
123 reg_to_lock_depths_.clear();
124 }
125
126 /*
127 * We're creating a new instance of class C at address A. Any registers holding instances
128 * previously created at address A must be initialized by now. If not, we mark them as "conflict"
129 * to prevent them from being used (otherwise, MarkRefsAsInitialized would mark the old ones and
130 * the new ones at the same time).
131 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700132 void MarkUninitRefsAsInvalid(const RegType& uninit_type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700133 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700134
135 /*
136 * Update all registers holding "uninit_type" to instead hold the corresponding initialized
137 * reference type. This is called when an appropriate constructor is invoked -- all copies of
138 * the reference must be marked as initialized.
139 */
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800140 void MarkRefsAsInitialized(const RegType& uninit_type)
141 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700142
143 /*
144 * Check constraints on constructor return. Specifically, make sure that the "this" argument got
145 * initialized.
146 * The "this" argument to <init> uses code offset kUninitThisArgAddr, which puts it at the start
147 * of the list in slot 0. If we see a register with an uninitialized slot 0 reference, we know it
148 * somehow didn't get initialized.
149 */
150 bool CheckConstructorReturn() const;
151
152 // Compare two register lines. Returns 0 if they match.
153 // Using this for a sort is unwise, since the value can change based on machine endianness.
154 int CompareLine(const RegisterLine* line2) const {
155 DCHECK(monitors_ == line2->monitors_);
156 // TODO: DCHECK(reg_to_lock_depths_ == line2->reg_to_lock_depths_);
157 return memcmp(line_.get(), line2->line_.get(), num_regs_ * sizeof(uint16_t));
158 }
159
160 size_t NumRegs() const {
161 return num_regs_;
162 }
163
164 /*
165 * Get the "this" pointer from a non-static method invocation. This returns the RegType so the
166 * caller can decide whether it needs the reference to be initialized or not. (Can also return
167 * kRegTypeZero if the reference can only be zero at this point.)
168 *
169 * The argument count is in vA, and the first argument is in vC, for both "simple" and "range"
170 * versions. We just need to make sure vA is >= 1 and then return vC.
171 */
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700172 const RegType& GetInvocationThis(const DecodedInstruction& dec_insn)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700173 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700174
175 /*
176 * Verify types for a simple two-register instruction (e.g. "neg-int").
177 * "dst_type" is stored into vA, and "src_type" is verified against vB.
178 */
179 void CheckUnaryOp(const DecodedInstruction& dec_insn,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700180 const RegType& dst_type, const RegType& src_type)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700181 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700182
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800183 void CheckUnaryOpWide(const DecodedInstruction& dec_insn,
184 const RegType& dst_type1, const RegType& dst_type2,
185 const RegType& src_type1, const RegType& src_type2)
186 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
187
188 void CheckUnaryOpToWide(const DecodedInstruction& dec_insn,
189 const RegType& dst_type1, const RegType& dst_type2,
190 const RegType& src_type)
191 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
192
193 void CheckUnaryOpFromWide(const DecodedInstruction& dec_insn,
194 const RegType& dst_type,
195 const RegType& src_type1, const RegType& src_type2)
196 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
197
Ian Rogers776ac1f2012-04-13 23:36:36 -0700198 /*
199 * Verify types for a simple three-register instruction (e.g. "add-int").
200 * "dst_type" is stored into vA, and "src_type1"/"src_type2" are verified
201 * against vB/vC.
202 */
203 void CheckBinaryOp(const DecodedInstruction& dec_insn,
204 const RegType& dst_type, const RegType& src_type1, const RegType& src_type2,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700205 bool check_boolean_op)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700206 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700207
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800208 void CheckBinaryOpWide(const DecodedInstruction& dec_insn,
209 const RegType& dst_type1, const RegType& dst_type2,
210 const RegType& src_type1_1, const RegType& src_type1_2,
211 const RegType& src_type2_1, const RegType& src_type2_2)
212 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
213
214 void CheckBinaryOpWideShift(const DecodedInstruction& dec_insn,
215 const RegType& long_lo_type, const RegType& long_hi_type,
216 const RegType& int_type)
217 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
218
Ian Rogers776ac1f2012-04-13 23:36:36 -0700219 /*
220 * Verify types for a binary "2addr" operation. "src_type1"/"src_type2"
221 * are verified against vA/vB, then "dst_type" is stored into vA.
222 */
223 void CheckBinaryOp2addr(const DecodedInstruction& dec_insn,
224 const RegType& dst_type,
225 const RegType& src_type1, const RegType& src_type2,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700226 bool check_boolean_op)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700227 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700228
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800229 void CheckBinaryOp2addrWide(const DecodedInstruction& dec_insn,
230 const RegType& dst_type1, const RegType& dst_type2,
231 const RegType& src_type1_1, const RegType& src_type1_2,
232 const RegType& src_type2_1, const RegType& src_type2_2)
233 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
234
235 void CheckBinaryOp2addrWideShift(const DecodedInstruction& dec_insn,
236 const RegType& long_lo_type, const RegType& long_hi_type,
237 const RegType& int_type)
238 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
239
Ian Rogers776ac1f2012-04-13 23:36:36 -0700240 /*
241 * Verify types for A two-register instruction with a literal constant (e.g. "add-int/lit8").
242 * "dst_type" is stored into vA, and "src_type" is verified against vB.
243 *
244 * If "check_boolean_op" is set, we use the constant value in vC.
245 */
246 void CheckLiteralOp(const DecodedInstruction& dec_insn,
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700247 const RegType& dst_type, const RegType& src_type, bool check_boolean_op)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700248 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700249
250 // Verify/push monitor onto the monitor stack, locking the value in reg_idx at location insn_idx.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800251 void PushMonitor(uint32_t reg_idx, int32_t insn_idx) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700252
253 // Verify/pop monitor from monitor stack ensuring that we believe the monitor is locked
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800254 void PopMonitor(uint32_t reg_idx) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700255
256 // Stack of currently held monitors and where they were locked
257 size_t MonitorStackDepth() const {
258 return monitors_.size();
259 }
260
261 // We expect no monitors to be held at certain points, such a method returns. Verify the stack
262 // is empty, failing and returning false if not.
263 bool VerifyMonitorStackEmpty();
264
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700265 bool MergeRegisters(const RegisterLine* incoming_line)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700266 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700267
268 size_t GetMaxNonZeroReferenceReg(size_t max_ref_reg) {
269 size_t i = static_cast<int>(max_ref_reg) < 0 ? 0 : max_ref_reg;
270 for (; i < num_regs_; i++) {
271 if (GetRegisterType(i).IsNonZeroReferenceTypes()) {
272 max_ref_reg = i;
273 }
274 }
275 return max_ref_reg;
276 }
277
278 // Write a bit at each register location that holds a reference
279 void WriteReferenceBitMap(std::vector<uint8_t>& data, size_t max_bytes);
Ian Rogers776ac1f2012-04-13 23:36:36 -0700280
Elliott Hughes08fc03a2012-06-26 17:34:00 -0700281 size_t GetMonitorEnterCount() {
282 return monitors_.size();
283 }
284
285 uint32_t GetMonitorEnterDexPc(size_t i) {
286 return monitors_[i];
287 }
288
Elliott Hughesa21039c2012-06-21 12:09:25 -0700289 private:
Ian Rogers776ac1f2012-04-13 23:36:36 -0700290 void CopyRegToLockDepth(size_t dst, size_t src) {
291 SafeMap<uint32_t, uint32_t>::iterator it = reg_to_lock_depths_.find(src);
292 if (it != reg_to_lock_depths_.end()) {
293 reg_to_lock_depths_.Put(dst, it->second);
294 }
295 }
296
297 bool IsSetLockDepth(size_t reg, size_t depth) {
298 SafeMap<uint32_t, uint32_t>::iterator it = reg_to_lock_depths_.find(reg);
299 if (it != reg_to_lock_depths_.end()) {
300 return (it->second & (1 << depth)) != 0;
301 } else {
302 return false;
303 }
304 }
305
306 void SetRegToLockDepth(size_t reg, size_t depth) {
307 CHECK_LT(depth, 32u);
308 DCHECK(!IsSetLockDepth(reg, depth));
309 SafeMap<uint32_t, uint32_t>::iterator it = reg_to_lock_depths_.find(reg);
310 if (it == reg_to_lock_depths_.end()) {
311 reg_to_lock_depths_.Put(reg, 1 << depth);
312 } else {
313 it->second |= (1 << depth);
314 }
315 }
316
317 void ClearRegToLockDepth(size_t reg, size_t depth) {
318 CHECK_LT(depth, 32u);
319 DCHECK(IsSetLockDepth(reg, depth));
320 SafeMap<uint32_t, uint32_t>::iterator it = reg_to_lock_depths_.find(reg);
321 DCHECK(it != reg_to_lock_depths_.end());
322 uint32_t depths = it->second ^ (1 << depth);
323 if (depths != 0) {
324 it->second = depths;
325 } else {
326 reg_to_lock_depths_.erase(it);
327 }
328 }
329
330 void ClearAllRegToLockDepths(size_t reg) {
331 reg_to_lock_depths_.erase(reg);
332 }
333
334 // Storage for the result register's type, valid after an invocation
335 uint16_t result_[2];
336
337 // An array of RegType Ids associated with each dex register
338 UniquePtr<uint16_t[]> line_;
339
340 // Back link to the verifier
341 MethodVerifier* verifier_;
342
343 // Length of reg_types_
Ian Rogersad0b3a32012-04-16 14:50:24 -0700344 const uint32_t num_regs_;
Ian Rogers776ac1f2012-04-13 23:36:36 -0700345 // A stack of monitor enter locations
346 std::deque<uint32_t> monitors_;
347 // A map from register to a bit vector of indices into the monitors_ stack. As we pop the monitor
348 // stack we verify that monitor-enter/exit are correctly nested. That is, if there was a
349 // monitor-enter on v5 and then on v6, we expect the monitor-exit to be on v6 then on v5
350 SafeMap<uint32_t, uint32_t> reg_to_lock_depths_;
351};
352std::ostream& operator<<(std::ostream& os, const RegisterLine& rhs);
353
354} // namespace verifier
355} // namespace art
356
357#endif // ART_SRC_VERIFIER_REGISTER_LINE_H_