blob: 2943b9d9b3f8f340edeb7df66f7b0299bd7effb2 [file] [log] [blame]
buzbee311ca162013-02-28 15:56:43 -08001/*
2 * Copyright (C) 2013 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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_COMPILER_DEX_MIR_GRAPH_H_
18#define ART_COMPILER_DEX_MIR_GRAPH_H_
buzbee311ca162013-02-28 15:56:43 -080019
Ian Rogers0f678472014-03-10 16:18:37 -070020#include <stdint.h>
21
Andreas Gampe53c913b2014-08-12 23:19:23 -070022#include "compiler_ir.h"
buzbee311ca162013-02-28 15:56:43 -080023#include "dex_file.h"
24#include "dex_instruction.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070025#include "driver/dex_compilation_unit.h"
Vladimir Markobe0e5462014-02-26 11:24:15 +000026#include "invoke_type.h"
Vladimir Markof096aad2014-01-23 15:51:58 +000027#include "mir_field_info.h"
28#include "mir_method_info.h"
Nicolas Geoffray0e336432014-02-26 18:24:38 +000029#include "utils/arena_bit_vector.h"
Nicolas Geoffray818f2102014-02-18 16:43:35 +000030#include "utils/growable_array.h"
Vladimir Marko8081d2b2014-07-31 15:33:43 +010031#include "utils/arena_containers.h"
Vladimir Marko55fff042014-07-10 12:42:52 +010032#include "utils/scoped_arena_containers.h"
Andreas Gampe4b537a82014-06-30 22:24:53 -070033#include "reg_location.h"
Bill Buzbee00e1ec62014-02-27 23:44:13 +000034#include "reg_storage.h"
buzbee311ca162013-02-28 15:56:43 -080035
36namespace art {
37
Vladimir Marko95a05972014-05-30 10:01:32 +010038class GlobalValueNumbering;
39
buzbeeee17e0a2013-07-31 10:47:37 -070040enum InstructionAnalysisAttributePos {
41 kUninterestingOp = 0,
42 kArithmeticOp,
43 kFPOp,
44 kSingleOp,
45 kDoubleOp,
46 kIntOp,
47 kLongOp,
48 kBranchOp,
49 kInvokeOp,
50 kArrayOp,
51 kHeavyweightOp,
52 kSimpleConstOp,
buzbeefe9ca402013-08-21 09:48:11 -070053 kMoveOp,
54 kSwitch
buzbeeee17e0a2013-07-31 10:47:37 -070055};
56
57#define AN_NONE (1 << kUninterestingOp)
58#define AN_MATH (1 << kArithmeticOp)
59#define AN_FP (1 << kFPOp)
60#define AN_LONG (1 << kLongOp)
61#define AN_INT (1 << kIntOp)
62#define AN_SINGLE (1 << kSingleOp)
63#define AN_DOUBLE (1 << kDoubleOp)
64#define AN_FLOATMATH (1 << kFPOp)
65#define AN_BRANCH (1 << kBranchOp)
66#define AN_INVOKE (1 << kInvokeOp)
67#define AN_ARRAYOP (1 << kArrayOp)
68#define AN_HEAVYWEIGHT (1 << kHeavyweightOp)
69#define AN_SIMPLECONST (1 << kSimpleConstOp)
70#define AN_MOVE (1 << kMoveOp)
buzbeefe9ca402013-08-21 09:48:11 -070071#define AN_SWITCH (1 << kSwitch)
buzbeeee17e0a2013-07-31 10:47:37 -070072#define AN_COMPUTATIONAL (AN_MATH | AN_ARRAYOP | AN_MOVE | AN_SIMPLECONST)
73
buzbee311ca162013-02-28 15:56:43 -080074enum DataFlowAttributePos {
75 kUA = 0,
76 kUB,
77 kUC,
78 kAWide,
79 kBWide,
80 kCWide,
81 kDA,
82 kIsMove,
83 kSetsConst,
84 kFormat35c,
85 kFormat3rc,
Udayan Banerjif2466a72014-07-09 19:14:53 -070086 kFormatExtended, // Extended format for extended MIRs.
buzbee311ca162013-02-28 15:56:43 -080087 kNullCheckSrc0, // Null check of uses[0].
88 kNullCheckSrc1, // Null check of uses[1].
89 kNullCheckSrc2, // Null check of uses[2].
90 kNullCheckOut0, // Null check out outgoing arg0.
91 kDstNonNull, // May assume dst is non-null.
92 kRetNonNull, // May assume retval is non-null.
93 kNullTransferSrc0, // Object copy src[0] -> dst.
94 kNullTransferSrcN, // Phi null check state transfer.
95 kRangeCheckSrc1, // Range check of uses[1].
96 kRangeCheckSrc2, // Range check of uses[2].
97 kRangeCheckSrc3, // Range check of uses[3].
98 kFPA,
99 kFPB,
100 kFPC,
101 kCoreA,
102 kCoreB,
103 kCoreC,
104 kRefA,
105 kRefB,
106 kRefC,
107 kUsesMethodStar, // Implicit use of Method*.
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000108 kUsesIField, // Accesses an instance field (IGET/IPUT).
109 kUsesSField, // Accesses a static field (SGET/SPUT).
buzbee1da1e2f2013-11-15 13:37:01 -0800110 kDoLVN, // Worth computing local value numbers.
buzbee311ca162013-02-28 15:56:43 -0800111};
112
Ian Rogers0f678472014-03-10 16:18:37 -0700113#define DF_NOP UINT64_C(0)
114#define DF_UA (UINT64_C(1) << kUA)
115#define DF_UB (UINT64_C(1) << kUB)
116#define DF_UC (UINT64_C(1) << kUC)
117#define DF_A_WIDE (UINT64_C(1) << kAWide)
118#define DF_B_WIDE (UINT64_C(1) << kBWide)
119#define DF_C_WIDE (UINT64_C(1) << kCWide)
120#define DF_DA (UINT64_C(1) << kDA)
121#define DF_IS_MOVE (UINT64_C(1) << kIsMove)
122#define DF_SETS_CONST (UINT64_C(1) << kSetsConst)
123#define DF_FORMAT_35C (UINT64_C(1) << kFormat35c)
124#define DF_FORMAT_3RC (UINT64_C(1) << kFormat3rc)
Udayan Banerjif2466a72014-07-09 19:14:53 -0700125#define DF_FORMAT_EXTENDED (UINT64_C(1) << kFormatExtended)
Ian Rogers0f678472014-03-10 16:18:37 -0700126#define DF_NULL_CHK_0 (UINT64_C(1) << kNullCheckSrc0)
127#define DF_NULL_CHK_1 (UINT64_C(1) << kNullCheckSrc1)
128#define DF_NULL_CHK_2 (UINT64_C(1) << kNullCheckSrc2)
129#define DF_NULL_CHK_OUT0 (UINT64_C(1) << kNullCheckOut0)
130#define DF_NON_NULL_DST (UINT64_C(1) << kDstNonNull)
131#define DF_NON_NULL_RET (UINT64_C(1) << kRetNonNull)
132#define DF_NULL_TRANSFER_0 (UINT64_C(1) << kNullTransferSrc0)
133#define DF_NULL_TRANSFER_N (UINT64_C(1) << kNullTransferSrcN)
134#define DF_RANGE_CHK_1 (UINT64_C(1) << kRangeCheckSrc1)
135#define DF_RANGE_CHK_2 (UINT64_C(1) << kRangeCheckSrc2)
136#define DF_RANGE_CHK_3 (UINT64_C(1) << kRangeCheckSrc3)
137#define DF_FP_A (UINT64_C(1) << kFPA)
138#define DF_FP_B (UINT64_C(1) << kFPB)
139#define DF_FP_C (UINT64_C(1) << kFPC)
140#define DF_CORE_A (UINT64_C(1) << kCoreA)
141#define DF_CORE_B (UINT64_C(1) << kCoreB)
142#define DF_CORE_C (UINT64_C(1) << kCoreC)
143#define DF_REF_A (UINT64_C(1) << kRefA)
144#define DF_REF_B (UINT64_C(1) << kRefB)
145#define DF_REF_C (UINT64_C(1) << kRefC)
146#define DF_UMS (UINT64_C(1) << kUsesMethodStar)
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000147#define DF_IFIELD (UINT64_C(1) << kUsesIField)
148#define DF_SFIELD (UINT64_C(1) << kUsesSField)
Ian Rogers0f678472014-03-10 16:18:37 -0700149#define DF_LVN (UINT64_C(1) << kDoLVN)
buzbee311ca162013-02-28 15:56:43 -0800150
151#define DF_HAS_USES (DF_UA | DF_UB | DF_UC)
152
153#define DF_HAS_DEFS (DF_DA)
154
155#define DF_HAS_NULL_CHKS (DF_NULL_CHK_0 | \
156 DF_NULL_CHK_1 | \
157 DF_NULL_CHK_2 | \
158 DF_NULL_CHK_OUT0)
159
160#define DF_HAS_RANGE_CHKS (DF_RANGE_CHK_1 | \
161 DF_RANGE_CHK_2 | \
162 DF_RANGE_CHK_3)
163
164#define DF_HAS_NR_CHKS (DF_HAS_NULL_CHKS | \
165 DF_HAS_RANGE_CHKS)
166
167#define DF_A_IS_REG (DF_UA | DF_DA)
168#define DF_B_IS_REG (DF_UB)
169#define DF_C_IS_REG (DF_UC)
170#define DF_IS_GETTER_OR_SETTER (DF_IS_GETTER | DF_IS_SETTER)
171#define DF_USES_FP (DF_FP_A | DF_FP_B | DF_FP_C)
Bill Buzbee0b1191c2013-10-28 22:11:59 +0000172#define DF_NULL_TRANSFER (DF_NULL_TRANSFER_0 | DF_NULL_TRANSFER_N)
buzbee1fd33462013-03-25 13:40:45 -0700173enum OatMethodAttributes {
174 kIsLeaf, // Method is leaf.
175 kHasLoop, // Method contains simple loop.
176};
177
178#define METHOD_IS_LEAF (1 << kIsLeaf)
179#define METHOD_HAS_LOOP (1 << kHasLoop)
180
181// Minimum field size to contain Dalvik v_reg number.
182#define VREG_NUM_WIDTH 16
183
184#define INVALID_SREG (-1)
185#define INVALID_VREG (0xFFFFU)
buzbee1fd33462013-03-25 13:40:45 -0700186#define INVALID_OFFSET (0xDEADF00FU)
187
buzbee1fd33462013-03-25 13:40:45 -0700188#define MIR_IGNORE_NULL_CHECK (1 << kMIRIgnoreNullCheck)
189#define MIR_NULL_CHECK_ONLY (1 << kMIRNullCheckOnly)
190#define MIR_IGNORE_RANGE_CHECK (1 << kMIRIgnoreRangeCheck)
191#define MIR_RANGE_CHECK_ONLY (1 << kMIRRangeCheckOnly)
Vladimir Markobfea9c22014-01-17 17:49:33 +0000192#define MIR_IGNORE_CLINIT_CHECK (1 << kMIRIgnoreClInitCheck)
buzbee1fd33462013-03-25 13:40:45 -0700193#define MIR_INLINED (1 << kMIRInlined)
194#define MIR_INLINED_PRED (1 << kMIRInlinedPred)
195#define MIR_CALLEE (1 << kMIRCallee)
196#define MIR_IGNORE_SUSPEND_CHECK (1 << kMIRIgnoreSuspendCheck)
197#define MIR_DUP (1 << kMIRDup)
Jean Christophe Beylerb5bce7c2014-07-25 12:32:18 -0700198#define MIR_STORE_NON_TEMPORAL (1 << kMIRStoreNonTemporal)
buzbee1fd33462013-03-25 13:40:45 -0700199
buzbee862a7602013-04-05 10:58:54 -0700200#define BLOCK_NAME_LEN 80
201
buzbee0d829482013-10-11 15:24:55 -0700202typedef uint16_t BasicBlockId;
203static const BasicBlockId NullBasicBlockId = 0;
Wei Jin04f4d8a2014-05-29 18:04:29 -0700204static constexpr bool kLeafOptimization = false;
buzbee0d829482013-10-11 15:24:55 -0700205
buzbee1fd33462013-03-25 13:40:45 -0700206/*
207 * In general, vreg/sreg describe Dalvik registers that originated with dx. However,
208 * it is useful to have compiler-generated temporary registers and have them treated
209 * in the same manner as dx-generated virtual registers. This struct records the SSA
210 * name of compiler-introduced temporaries.
211 */
212struct CompilerTemp {
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800213 int32_t v_reg; // Virtual register number for temporary.
214 int32_t s_reg_low; // SSA name for low Dalvik word.
215};
216
217enum CompilerTempType {
218 kCompilerTempVR, // A virtual register temporary.
219 kCompilerTempSpecialMethodPtr, // Temporary that keeps track of current method pointer.
buzbee1fd33462013-03-25 13:40:45 -0700220};
221
222// When debug option enabled, records effectiveness of null and range check elimination.
223struct Checkstats {
buzbee0d829482013-10-11 15:24:55 -0700224 int32_t null_checks;
225 int32_t null_checks_eliminated;
226 int32_t range_checks;
227 int32_t range_checks_eliminated;
buzbee1fd33462013-03-25 13:40:45 -0700228};
229
230// Dataflow attributes of a basic block.
231struct BasicBlockDataFlow {
232 ArenaBitVector* use_v;
233 ArenaBitVector* def_v;
234 ArenaBitVector* live_in_v;
235 ArenaBitVector* phi_v;
Jean Christophe Beyler4896d7b2014-05-01 15:36:22 -0700236 int32_t* vreg_to_ssa_map_exit;
Vladimir Markobfea9c22014-01-17 17:49:33 +0000237 ArenaBitVector* ending_check_v; // For null check and class init check elimination.
buzbee1fd33462013-03-25 13:40:45 -0700238};
239
240/*
241 * Normalized use/def for a MIR operation using SSA names rather than vregs. Note that
242 * uses/defs retain the Dalvik convention that long operations operate on a pair of 32-bit
243 * vregs. For example, "ADD_LONG v0, v2, v3" would have 2 defs (v0/v1) and 4 uses (v2/v3, v4/v5).
244 * Following SSA renaming, this is the primary struct used by code generators to locate
245 * operand and result registers. This is a somewhat confusing and unhelpful convention that
246 * we may want to revisit in the future.
Jean Christophe Beyler4896d7b2014-05-01 15:36:22 -0700247 *
248 * TODO:
249 * 1. Add accessors for uses/defs and make data private
250 * 2. Change fp_use/fp_def to a bit array (could help memory usage)
251 * 3. Combine array storage into internal array and handled via accessors from 1.
buzbee1fd33462013-03-25 13:40:45 -0700252 */
253struct SSARepresentation {
buzbee0d829482013-10-11 15:24:55 -0700254 int32_t* uses;
buzbee1fd33462013-03-25 13:40:45 -0700255 bool* fp_use;
buzbee0d829482013-10-11 15:24:55 -0700256 int32_t* defs;
buzbee1fd33462013-03-25 13:40:45 -0700257 bool* fp_def;
Jean Christophe Beyler4896d7b2014-05-01 15:36:22 -0700258 int16_t num_uses_allocated;
259 int16_t num_defs_allocated;
260 int16_t num_uses;
261 int16_t num_defs;
Jean Christophe Beyler3aa57732014-04-17 12:47:24 -0700262
263 static uint32_t GetStartUseIndex(Instruction::Code opcode);
buzbee1fd33462013-03-25 13:40:45 -0700264};
265
266/*
267 * The Midlevel Intermediate Representation node, which may be largely considered a
268 * wrapper around a Dalvik byte code.
269 */
270struct MIR {
buzbee0d829482013-10-11 15:24:55 -0700271 /*
272 * TODO: remove embedded DecodedInstruction to save space, keeping only opcode. Recover
273 * additional fields on as-needed basis. Question: how to support MIR Pseudo-ops; probably
274 * need to carry aux data pointer.
275 */
Ian Rogers29a26482014-05-02 15:27:29 -0700276 struct DecodedInstruction {
277 uint32_t vA;
278 uint32_t vB;
279 uint64_t vB_wide; /* for k51l */
280 uint32_t vC;
281 uint32_t arg[5]; /* vC/D/E/F/G in invoke or filled-new-array */
282 Instruction::Code opcode;
Jean Christophe Beyler3aa57732014-04-17 12:47:24 -0700283
284 explicit DecodedInstruction():vA(0), vB(0), vB_wide(0), vC(0), opcode(Instruction::NOP) {
285 }
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700286
287 /*
288 * Given a decoded instruction representing a const bytecode, it updates
289 * the out arguments with proper values as dictated by the constant bytecode.
290 */
291 bool GetConstant(int64_t* ptr_value, bool* wide) const;
292
Jean Christophe Beyler2ab40eb2014-06-02 09:03:14 -0700293 static bool IsPseudoMirOp(Instruction::Code opcode) {
294 return static_cast<int>(opcode) >= static_cast<int>(kMirOpFirst);
295 }
296
297 static bool IsPseudoMirOp(int opcode) {
298 return opcode >= static_cast<int>(kMirOpFirst);
299 }
300
301 bool IsInvoke() const {
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700302 return ((FlagsOf() & Instruction::kInvoke) == Instruction::kInvoke);
Jean Christophe Beyler2ab40eb2014-06-02 09:03:14 -0700303 }
304
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700305 bool IsStore() const {
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700306 return ((FlagsOf() & Instruction::kStore) == Instruction::kStore);
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700307 }
308
309 bool IsLoad() const {
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700310 return ((FlagsOf() & Instruction::kLoad) == Instruction::kLoad);
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700311 }
312
313 bool IsConditionalBranch() const {
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700314 return (FlagsOf() == (Instruction::kContinue | Instruction::kBranch));
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700315 }
316
317 /**
318 * @brief Is the register C component of the decoded instruction a constant?
319 */
320 bool IsCFieldOrConstant() const {
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700321 return ((FlagsOf() & Instruction::kRegCFieldOrConstant) == Instruction::kRegCFieldOrConstant);
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700322 }
323
324 /**
325 * @brief Is the register C component of the decoded instruction a constant?
326 */
327 bool IsBFieldOrConstant() const {
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700328 return ((FlagsOf() & Instruction::kRegBFieldOrConstant) == Instruction::kRegBFieldOrConstant);
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700329 }
330
331 bool IsCast() const {
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700332 return ((FlagsOf() & Instruction::kCast) == Instruction::kCast);
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700333 }
334
335 /**
336 * @brief Does the instruction clobber memory?
337 * @details Clobber means that the instruction changes the memory not in a punctual way.
338 * Therefore any supposition on memory aliasing or memory contents should be disregarded
339 * when crossing such an instruction.
340 */
341 bool Clobbers() const {
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700342 return ((FlagsOf() & Instruction::kClobber) == Instruction::kClobber);
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700343 }
344
345 bool IsLinear() const {
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700346 return (FlagsOf() & (Instruction::kAdd | Instruction::kSubtract)) != 0;
Jean Christophe Beylerc3db20b2014-05-05 21:09:40 -0700347 }
Jean Christophe Beylerfb0ea2d2014-07-29 13:20:42 -0700348
349 int FlagsOf() const;
Ian Rogers29a26482014-05-02 15:27:29 -0700350 } dalvikInsn;
351
buzbee0d829482013-10-11 15:24:55 -0700352 NarrowDexOffset offset; // Offset of the instruction in code units.
353 uint16_t optimization_flags;
354 int16_t m_unit_index; // From which method was this MIR included
Jean Christophe Beyler3aa57732014-04-17 12:47:24 -0700355 BasicBlockId bb;
buzbee1fd33462013-03-25 13:40:45 -0700356 MIR* next;
357 SSARepresentation* ssa_rep;
buzbee1fd33462013-03-25 13:40:45 -0700358 union {
buzbee0d829482013-10-11 15:24:55 -0700359 // Incoming edges for phi node.
360 BasicBlockId* phi_incoming;
Vladimir Marko4376c872014-01-23 12:39:29 +0000361 // Establish link from check instruction (kMirOpCheck) to the actual throwing instruction.
buzbee1fd33462013-03-25 13:40:45 -0700362 MIR* throw_insn;
Vladimir Markoa1a70742014-03-03 10:28:05 +0000363 // Branch condition for fused cmp or select.
Vladimir Markoa8946072014-01-22 10:30:44 +0000364 ConditionCode ccode;
Vladimir Markobe0e5462014-02-26 11:24:15 +0000365 // IGET/IPUT lowering info index, points to MIRGraph::ifield_lowering_infos_. Due to limit on
366 // the number of code points (64K) and size of IGET/IPUT insn (2), this will never exceed 32K.
367 uint32_t ifield_lowering_info;
368 // SGET/SPUT lowering info index, points to MIRGraph::sfield_lowering_infos_. Due to limit on
369 // the number of code points (64K) and size of SGET/SPUT insn (2), this will never exceed 32K.
370 uint32_t sfield_lowering_info;
Vladimir Markof096aad2014-01-23 15:51:58 +0000371 // INVOKE data index, points to MIRGraph::method_lowering_infos_.
372 uint32_t method_lowering_info;
buzbee1fd33462013-03-25 13:40:45 -0700373 } meta;
Jean Christophe Beyler3aa57732014-04-17 12:47:24 -0700374
375 explicit MIR():offset(0), optimization_flags(0), m_unit_index(0), bb(NullBasicBlockId),
376 next(nullptr), ssa_rep(nullptr) {
377 memset(&meta, 0, sizeof(meta));
378 }
379
380 uint32_t GetStartUseIndex() const {
381 return SSARepresentation::GetStartUseIndex(dalvikInsn.opcode);
382 }
383
384 MIR* Copy(CompilationUnit *c_unit);
385 MIR* Copy(MIRGraph* mir_Graph);
386
387 static void* operator new(size_t size, ArenaAllocator* arena) {
388 return arena->Alloc(sizeof(MIR), kArenaAllocMIR);
389 }
390 static void operator delete(void* p) {} // Nop.
buzbee1fd33462013-03-25 13:40:45 -0700391};
392
buzbee862a7602013-04-05 10:58:54 -0700393struct SuccessorBlockInfo;
394
buzbee1fd33462013-03-25 13:40:45 -0700395struct BasicBlock {
buzbee0d829482013-10-11 15:24:55 -0700396 BasicBlockId id;
397 BasicBlockId dfs_id;
398 NarrowDexOffset start_offset; // Offset in code units.
399 BasicBlockId fall_through;
400 BasicBlockId taken;
401 BasicBlockId i_dom; // Immediate dominator.
buzbee1fd33462013-03-25 13:40:45 -0700402 uint16_t nesting_depth;
buzbee0d829482013-10-11 15:24:55 -0700403 BBType block_type:4;
404 BlockListType successor_block_list_type:4;
405 bool visited:1;
406 bool hidden:1;
407 bool catch_entry:1;
408 bool explicit_throw:1;
409 bool conditional_branch:1;
buzbee1da1e2f2013-11-15 13:37:01 -0800410 bool terminated_by_return:1; // Block ends with a Dalvik return opcode.
411 bool dominates_return:1; // Is a member of return extended basic block.
412 bool use_lvn:1; // Run local value numbering on this block.
buzbee1fd33462013-03-25 13:40:45 -0700413 MIR* first_mir_insn;
414 MIR* last_mir_insn;
buzbee1fd33462013-03-25 13:40:45 -0700415 BasicBlockDataFlow* data_flow_info;
buzbee1fd33462013-03-25 13:40:45 -0700416 ArenaBitVector* dominators;
417 ArenaBitVector* i_dominated; // Set nodes being immediately dominated.
418 ArenaBitVector* dom_frontier; // Dominance frontier.
buzbee0d829482013-10-11 15:24:55 -0700419 GrowableArray<BasicBlockId>* predecessors;
420 GrowableArray<SuccessorBlockInfo*>* successor_blocks;
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700421
422 void AppendMIR(MIR* mir);
Jean Christophe Beyler85127582014-05-11 23:36:41 -0700423 void AppendMIRList(MIR* first_list_mir, MIR* last_list_mir);
424 void AppendMIRList(const std::vector<MIR*>& insns);
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700425 void PrependMIR(MIR* mir);
Jean Christophe Beyler85127582014-05-11 23:36:41 -0700426 void PrependMIRList(MIR* first_list_mir, MIR* last_list_mir);
427 void PrependMIRList(const std::vector<MIR*>& to_add);
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700428 void InsertMIRAfter(MIR* current_mir, MIR* new_mir);
Jean Christophe Beyler85127582014-05-11 23:36:41 -0700429 void InsertMIRListAfter(MIR* insert_after, MIR* first_list_mir, MIR* last_list_mir);
Jean Christophe Beyler3aa57732014-04-17 12:47:24 -0700430 MIR* FindPreviousMIR(MIR* mir);
Jean Christophe Beyler85127582014-05-11 23:36:41 -0700431 void InsertMIRBefore(MIR* insert_before, MIR* list);
432 void InsertMIRListBefore(MIR* insert_before, MIR* first_list_mir, MIR* last_list_mir);
433 bool RemoveMIR(MIR* mir);
434 bool RemoveMIRList(MIR* first_list_mir, MIR* last_list_mir);
435
436 BasicBlock* Copy(CompilationUnit* c_unit);
437 BasicBlock* Copy(MIRGraph* mir_graph);
438
439 /**
440 * @brief Reset the optimization_flags field of each MIR.
441 */
442 void ResetOptimizationFlags(uint16_t reset_flags);
443
444 /**
445 * @brief Hide the BasicBlock.
446 * @details Set it to kDalvikByteCode, set hidden to true, remove all MIRs,
447 * remove itself from any predecessor edges, remove itself from any
448 * child's predecessor growable array.
449 */
450 void Hide(CompilationUnit* c_unit);
451
452 /**
453 * @brief Is ssa_reg the last SSA definition of that VR in the block?
454 */
455 bool IsSSALiveOut(const CompilationUnit* c_unit, int ssa_reg);
456
457 /**
458 * @brief Replace the edge going to old_bb to now go towards new_bb.
459 */
460 bool ReplaceChild(BasicBlockId old_bb, BasicBlockId new_bb);
461
462 /**
463 * @brief Update the predecessor growable array from old_pred to new_pred.
464 */
465 void UpdatePredecessor(BasicBlockId old_pred, BasicBlockId new_pred);
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700466
467 /**
468 * @brief Used to obtain the next MIR that follows unconditionally.
469 * @details The implementation does not guarantee that a MIR does not
470 * follow even if this method returns nullptr.
471 * @param mir_graph the MIRGraph.
472 * @param current The MIR for which to find an unconditional follower.
473 * @return Returns the following MIR if one can be found.
474 */
475 MIR* GetNextUnconditionalMir(MIRGraph* mir_graph, MIR* current);
Jean Christophe Beyler44e5bde2014-04-29 14:40:41 -0700476 bool IsExceptionBlock() const;
Jean Christophe Beyler85127582014-05-11 23:36:41 -0700477
478 static void* operator new(size_t size, ArenaAllocator* arena) {
479 return arena->Alloc(sizeof(BasicBlock), kArenaAllocBB);
480 }
481 static void operator delete(void* p) {} // Nop.
buzbee1fd33462013-03-25 13:40:45 -0700482};
483
484/*
485 * The "blocks" field in "successor_block_list" points to an array of elements with the type
Jean Christophe Beyler44e5bde2014-04-29 14:40:41 -0700486 * "SuccessorBlockInfo". For catch blocks, key is type index for the exception. For switch
buzbee1fd33462013-03-25 13:40:45 -0700487 * blocks, key is the case value.
488 */
489struct SuccessorBlockInfo {
buzbee0d829482013-10-11 15:24:55 -0700490 BasicBlockId block;
buzbee1fd33462013-03-25 13:40:45 -0700491 int key;
492};
493
Jean Christophe Beylerf8c762b2014-05-02 12:54:37 -0700494/**
495 * @class ChildBlockIterator
496 * @brief Enable an easy iteration of the children.
497 */
498class ChildBlockIterator {
499 public:
500 /**
501 * @brief Constructs a child iterator.
502 * @param bb The basic whose children we need to iterate through.
503 * @param mir_graph The MIRGraph used to get the basic block during iteration.
504 */
505 ChildBlockIterator(BasicBlock* bb, MIRGraph* mir_graph);
506 BasicBlock* Next();
507
508 private:
509 BasicBlock* basic_block_;
510 MIRGraph* mir_graph_;
511 bool visited_fallthrough_;
512 bool visited_taken_;
513 bool have_successors_;
514 GrowableArray<SuccessorBlockInfo*>::Iterator successor_iter_;
515};
516
buzbee1fd33462013-03-25 13:40:45 -0700517/*
buzbee1fd33462013-03-25 13:40:45 -0700518 * Collection of information describing an invoke, and the destination of
519 * the subsequent MOVE_RESULT (if applicable). Collected as a unit to enable
520 * more efficient invoke code generation.
521 */
522struct CallInfo {
523 int num_arg_words; // Note: word count, not arg count.
524 RegLocation* args; // One for each word of arguments.
525 RegLocation result; // Eventual target of MOVE_RESULT.
526 int opt_flags;
527 InvokeType type;
528 uint32_t dex_idx;
529 uint32_t index; // Method idx for invokes, type idx for FilledNewArray.
530 uintptr_t direct_code;
531 uintptr_t direct_method;
532 RegLocation target; // Target of following move_result.
533 bool skip_this;
534 bool is_range;
buzbee0d829482013-10-11 15:24:55 -0700535 DexOffset offset; // Offset in code units.
Vladimir Markof096aad2014-01-23 15:51:58 +0000536 MIR* mir;
buzbee1fd33462013-03-25 13:40:45 -0700537};
538
539
buzbee091cc402014-03-31 10:14:40 -0700540const RegLocation bad_loc = {kLocDalvikFrame, 0, 0, 0, 0, 0, 0, 0, 0, RegStorage(), INVALID_SREG,
541 INVALID_SREG};
buzbee311ca162013-02-28 15:56:43 -0800542
543class MIRGraph {
Ian Rogers71fe2672013-03-19 20:45:02 -0700544 public:
buzbee862a7602013-04-05 10:58:54 -0700545 MIRGraph(CompilationUnit* cu, ArenaAllocator* arena);
Ian Rogers6282dc12013-04-18 15:54:02 -0700546 ~MIRGraph();
buzbee311ca162013-02-28 15:56:43 -0800547
Ian Rogers71fe2672013-03-19 20:45:02 -0700548 /*
buzbeeee17e0a2013-07-31 10:47:37 -0700549 * Examine the graph to determine whether it's worthwile to spend the time compiling
550 * this method.
551 */
Andreas Gampe060e6fe2014-06-19 11:34:06 -0700552 bool SkipCompilation(std::string* skip_message);
buzbeeee17e0a2013-07-31 10:47:37 -0700553
554 /*
Dave Allison39c3bfb2014-01-28 18:33:52 -0800555 * Should we skip the compilation of this method based on its name?
556 */
Andreas Gampe060e6fe2014-06-19 11:34:06 -0700557 bool SkipCompilationByName(const std::string& methodname);
Dave Allison39c3bfb2014-01-28 18:33:52 -0800558
559 /*
Ian Rogers71fe2672013-03-19 20:45:02 -0700560 * Parse dex method and add MIR at current insert point. Returns id (which is
561 * actually the index of the method in the m_units_ array).
562 */
563 void InlineMethod(const DexFile::CodeItem* code_item, uint32_t access_flags,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700564 InvokeType invoke_type, uint16_t class_def_idx,
Ian Rogers71fe2672013-03-19 20:45:02 -0700565 uint32_t method_idx, jobject class_loader, const DexFile& dex_file);
buzbee311ca162013-02-28 15:56:43 -0800566
Ian Rogers71fe2672013-03-19 20:45:02 -0700567 /* Find existing block */
buzbee0d829482013-10-11 15:24:55 -0700568 BasicBlock* FindBlock(DexOffset code_offset) {
Ian Rogers71fe2672013-03-19 20:45:02 -0700569 return FindBlock(code_offset, false, false, NULL);
570 }
buzbee311ca162013-02-28 15:56:43 -0800571
Ian Rogers71fe2672013-03-19 20:45:02 -0700572 const uint16_t* GetCurrentInsns() const {
573 return current_code_item_->insns_;
574 }
buzbee311ca162013-02-28 15:56:43 -0800575
Ian Rogers71fe2672013-03-19 20:45:02 -0700576 const uint16_t* GetInsns(int m_unit_index) const {
577 return m_units_[m_unit_index]->GetCodeItem()->insns_;
578 }
buzbee311ca162013-02-28 15:56:43 -0800579
Andreas Gampe44395962014-06-13 13:44:40 -0700580 unsigned int GetNumBlocks() const {
Ian Rogers71fe2672013-03-19 20:45:02 -0700581 return num_blocks_;
582 }
buzbee311ca162013-02-28 15:56:43 -0800583
buzbeeee17e0a2013-07-31 10:47:37 -0700584 size_t GetNumDalvikInsns() const {
585 return cu_->code_item->insns_size_in_code_units_;
586 }
587
Ian Rogers71fe2672013-03-19 20:45:02 -0700588 ArenaBitVector* GetTryBlockAddr() const {
589 return try_block_addr_;
590 }
buzbee311ca162013-02-28 15:56:43 -0800591
Ian Rogers71fe2672013-03-19 20:45:02 -0700592 BasicBlock* GetEntryBlock() const {
593 return entry_block_;
594 }
buzbee311ca162013-02-28 15:56:43 -0800595
Ian Rogers71fe2672013-03-19 20:45:02 -0700596 BasicBlock* GetExitBlock() const {
597 return exit_block_;
598 }
buzbee311ca162013-02-28 15:56:43 -0800599
Andreas Gampe44395962014-06-13 13:44:40 -0700600 BasicBlock* GetBasicBlock(unsigned int block_id) const {
buzbee0d829482013-10-11 15:24:55 -0700601 return (block_id == NullBasicBlockId) ? NULL : block_list_.Get(block_id);
Ian Rogers71fe2672013-03-19 20:45:02 -0700602 }
buzbee311ca162013-02-28 15:56:43 -0800603
Ian Rogers71fe2672013-03-19 20:45:02 -0700604 size_t GetBasicBlockListCount() const {
buzbee862a7602013-04-05 10:58:54 -0700605 return block_list_.Size();
Ian Rogers71fe2672013-03-19 20:45:02 -0700606 }
buzbee311ca162013-02-28 15:56:43 -0800607
buzbee862a7602013-04-05 10:58:54 -0700608 GrowableArray<BasicBlock*>* GetBlockList() {
Ian Rogers71fe2672013-03-19 20:45:02 -0700609 return &block_list_;
610 }
buzbee311ca162013-02-28 15:56:43 -0800611
buzbee0d829482013-10-11 15:24:55 -0700612 GrowableArray<BasicBlockId>* GetDfsOrder() {
buzbee862a7602013-04-05 10:58:54 -0700613 return dfs_order_;
Ian Rogers71fe2672013-03-19 20:45:02 -0700614 }
buzbee311ca162013-02-28 15:56:43 -0800615
buzbee0d829482013-10-11 15:24:55 -0700616 GrowableArray<BasicBlockId>* GetDfsPostOrder() {
buzbee862a7602013-04-05 10:58:54 -0700617 return dfs_post_order_;
Ian Rogers71fe2672013-03-19 20:45:02 -0700618 }
buzbee311ca162013-02-28 15:56:43 -0800619
buzbee0d829482013-10-11 15:24:55 -0700620 GrowableArray<BasicBlockId>* GetDomPostOrder() {
buzbee862a7602013-04-05 10:58:54 -0700621 return dom_post_order_traversal_;
Ian Rogers71fe2672013-03-19 20:45:02 -0700622 }
buzbee311ca162013-02-28 15:56:43 -0800623
Ian Rogers71fe2672013-03-19 20:45:02 -0700624 int GetDefCount() const {
625 return def_count_;
626 }
buzbee311ca162013-02-28 15:56:43 -0800627
buzbee862a7602013-04-05 10:58:54 -0700628 ArenaAllocator* GetArena() {
629 return arena_;
630 }
631
Ian Rogers71fe2672013-03-19 20:45:02 -0700632 void EnableOpcodeCounting() {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700633 opcode_count_ = static_cast<int*>(arena_->Alloc(kNumPackedOpcodes * sizeof(int),
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000634 kArenaAllocMisc));
Ian Rogers71fe2672013-03-19 20:45:02 -0700635 }
buzbee311ca162013-02-28 15:56:43 -0800636
Ian Rogers71fe2672013-03-19 20:45:02 -0700637 void ShowOpcodeStats();
buzbee311ca162013-02-28 15:56:43 -0800638
Ian Rogers71fe2672013-03-19 20:45:02 -0700639 DexCompilationUnit* GetCurrentDexCompilationUnit() const {
640 return m_units_[current_method_];
641 }
buzbee311ca162013-02-28 15:56:43 -0800642
Jean Christophe Beylerd0a51552014-01-10 14:18:31 -0800643 /**
644 * @brief Dump a CFG into a dot file format.
645 * @param dir_prefix the directory the file will be created in.
646 * @param all_blocks does the dumper use all the basic blocks or use the reachable blocks.
647 * @param suffix does the filename require a suffix or not (default = nullptr).
648 */
649 void DumpCFG(const char* dir_prefix, bool all_blocks, const char* suffix = nullptr);
buzbee311ca162013-02-28 15:56:43 -0800650
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000651 bool HasFieldAccess() const {
652 return (merged_df_flags_ & (DF_IFIELD | DF_SFIELD)) != 0u;
653 }
654
Vladimir Markobfea9c22014-01-17 17:49:33 +0000655 bool HasStaticFieldAccess() const {
656 return (merged_df_flags_ & DF_SFIELD) != 0u;
657 }
658
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000659 bool HasInvokes() const {
660 // NOTE: These formats include the rare filled-new-array/range.
661 return (merged_df_flags_ & (DF_FORMAT_35C | DF_FORMAT_3RC)) != 0u;
662 }
663
Vladimir Markobe0e5462014-02-26 11:24:15 +0000664 void DoCacheFieldLoweringInfo();
665
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000666 const MirIFieldLoweringInfo& GetIFieldLoweringInfo(MIR* mir) const {
Vladimir Markobe0e5462014-02-26 11:24:15 +0000667 DCHECK_LT(mir->meta.ifield_lowering_info, ifield_lowering_infos_.Size());
668 return ifield_lowering_infos_.GetRawStorage()[mir->meta.ifield_lowering_info];
669 }
670
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000671 const MirSFieldLoweringInfo& GetSFieldLoweringInfo(MIR* mir) const {
Vladimir Markobe0e5462014-02-26 11:24:15 +0000672 DCHECK_LT(mir->meta.sfield_lowering_info, sfield_lowering_infos_.Size());
673 return sfield_lowering_infos_.GetRawStorage()[mir->meta.sfield_lowering_info];
674 }
675
Vladimir Markof096aad2014-01-23 15:51:58 +0000676 void DoCacheMethodLoweringInfo();
677
678 const MirMethodLoweringInfo& GetMethodLoweringInfo(MIR* mir) {
679 DCHECK_LT(mir->meta.method_lowering_info, method_lowering_infos_.Size());
680 return method_lowering_infos_.GetRawStorage()[mir->meta.method_lowering_info];
681 }
682
Vladimir Marko9820b7c2014-01-02 16:40:37 +0000683 void ComputeInlineIFieldLoweringInfo(uint16_t field_idx, MIR* invoke, MIR* iget_or_iput);
684
buzbee1da1e2f2013-11-15 13:37:01 -0800685 void InitRegLocations();
686
687 void RemapRegLocations();
buzbee311ca162013-02-28 15:56:43 -0800688
Ian Rogers71fe2672013-03-19 20:45:02 -0700689 void DumpRegLocTable(RegLocation* table, int count);
buzbee311ca162013-02-28 15:56:43 -0800690
Ian Rogers71fe2672013-03-19 20:45:02 -0700691 void BasicBlockOptimization();
buzbee311ca162013-02-28 15:56:43 -0800692
Jean Christophe Beyler44e5bde2014-04-29 14:40:41 -0700693 GrowableArray<BasicBlockId>* GetTopologicalSortOrder() {
Vladimir Marko622bdbe2014-06-19 14:59:05 +0100694 DCHECK(topological_order_ != nullptr);
Jean Christophe Beyler44e5bde2014-04-29 14:40:41 -0700695 return topological_order_;
696 }
697
Vladimir Marko55fff042014-07-10 12:42:52 +0100698 GrowableArray<BasicBlockId>* GetTopologicalSortOrderLoopEnds() {
699 DCHECK(topological_order_loop_ends_ != nullptr);
700 return topological_order_loop_ends_;
701 }
702
703 GrowableArray<BasicBlockId>* GetTopologicalSortOrderIndexes() {
704 DCHECK(topological_order_indexes_ != nullptr);
705 return topological_order_indexes_;
706 }
707
708 GrowableArray<std::pair<uint16_t, bool>>* GetTopologicalSortOrderLoopHeadStack() {
709 DCHECK(topological_order_loop_head_stack_ != nullptr);
710 return topological_order_loop_head_stack_;
711 }
712
Ian Rogers71fe2672013-03-19 20:45:02 -0700713 bool IsConst(int32_t s_reg) const {
buzbee862a7602013-04-05 10:58:54 -0700714 return is_constant_v_->IsBitSet(s_reg);
Ian Rogers71fe2672013-03-19 20:45:02 -0700715 }
buzbee311ca162013-02-28 15:56:43 -0800716
Ian Rogers71fe2672013-03-19 20:45:02 -0700717 bool IsConst(RegLocation loc) const {
Mark Mendell5bb149e2013-12-17 13:26:54 -0800718 return loc.orig_sreg < 0 ? false : IsConst(loc.orig_sreg);
Ian Rogers71fe2672013-03-19 20:45:02 -0700719 }
buzbee311ca162013-02-28 15:56:43 -0800720
Ian Rogers71fe2672013-03-19 20:45:02 -0700721 int32_t ConstantValue(RegLocation loc) const {
722 DCHECK(IsConst(loc));
723 return constant_values_[loc.orig_sreg];
724 }
buzbee311ca162013-02-28 15:56:43 -0800725
Ian Rogers71fe2672013-03-19 20:45:02 -0700726 int32_t ConstantValue(int32_t s_reg) const {
727 DCHECK(IsConst(s_reg));
728 return constant_values_[s_reg];
729 }
buzbee311ca162013-02-28 15:56:43 -0800730
Razvan A Lupusorud04d3092014-08-04 12:30:20 -0700731 /**
732 * @brief Used to obtain 64-bit value of a pair of ssa registers.
733 * @param s_reg_low The ssa register representing the low bits.
734 * @param s_reg_high The ssa register representing the high bits.
735 * @return Retusn the 64-bit constant value.
736 */
737 int64_t ConstantValueWide(int32_t s_reg_low, int32_t s_reg_high) const {
738 DCHECK(IsConst(s_reg_low));
739 DCHECK(IsConst(s_reg_high));
740 return (static_cast<int64_t>(constant_values_[s_reg_high]) << 32) |
741 Low32Bits(static_cast<int64_t>(constant_values_[s_reg_low]));
742 }
743
Ian Rogers71fe2672013-03-19 20:45:02 -0700744 int64_t ConstantValueWide(RegLocation loc) const {
745 DCHECK(IsConst(loc));
746 return (static_cast<int64_t>(constant_values_[loc.orig_sreg + 1]) << 32) |
747 Low32Bits(static_cast<int64_t>(constant_values_[loc.orig_sreg]));
748 }
buzbee311ca162013-02-28 15:56:43 -0800749
Razvan A Lupusorud04d3092014-08-04 12:30:20 -0700750 /**
751 * @brief Used to mark ssa register as being constant.
752 * @param ssa_reg The ssa register.
753 * @param value The constant value of ssa register.
754 */
755 void SetConstant(int32_t ssa_reg, int32_t value);
756
757 /**
758 * @brief Used to mark ssa register and its wide counter-part as being constant.
759 * @param ssa_reg The ssa register.
760 * @param value The 64-bit constant value of ssa register and its pair.
761 */
762 void SetConstantWide(int32_t ssa_reg, int64_t value);
763
Ian Rogers71fe2672013-03-19 20:45:02 -0700764 bool IsConstantNullRef(RegLocation loc) const {
765 return loc.ref && loc.is_const && (ConstantValue(loc) == 0);
766 }
buzbee311ca162013-02-28 15:56:43 -0800767
Ian Rogers71fe2672013-03-19 20:45:02 -0700768 int GetNumSSARegs() const {
769 return num_ssa_regs_;
770 }
buzbee311ca162013-02-28 15:56:43 -0800771
Ian Rogers71fe2672013-03-19 20:45:02 -0700772 void SetNumSSARegs(int new_num) {
buzbee0d829482013-10-11 15:24:55 -0700773 /*
774 * TODO: It's theoretically possible to exceed 32767, though any cases which did
775 * would be filtered out with current settings. When orig_sreg field is removed
776 * from RegLocation, expand s_reg_low to handle all possible cases and remove DCHECK().
777 */
Andreas Gampe0d8ea462014-07-17 18:04:32 -0700778 CHECK_EQ(new_num, static_cast<int16_t>(new_num));
Ian Rogers71fe2672013-03-19 20:45:02 -0700779 num_ssa_regs_ = new_num;
780 }
buzbee311ca162013-02-28 15:56:43 -0800781
buzbee862a7602013-04-05 10:58:54 -0700782 unsigned int GetNumReachableBlocks() const {
Ian Rogers71fe2672013-03-19 20:45:02 -0700783 return num_reachable_blocks_;
784 }
buzbee311ca162013-02-28 15:56:43 -0800785
Ian Rogers71fe2672013-03-19 20:45:02 -0700786 int GetUseCount(int vreg) const {
buzbee862a7602013-04-05 10:58:54 -0700787 return use_counts_.Get(vreg);
Ian Rogers71fe2672013-03-19 20:45:02 -0700788 }
buzbee311ca162013-02-28 15:56:43 -0800789
Ian Rogers71fe2672013-03-19 20:45:02 -0700790 int GetRawUseCount(int vreg) const {
buzbee862a7602013-04-05 10:58:54 -0700791 return raw_use_counts_.Get(vreg);
Ian Rogers71fe2672013-03-19 20:45:02 -0700792 }
buzbee311ca162013-02-28 15:56:43 -0800793
Ian Rogers71fe2672013-03-19 20:45:02 -0700794 int GetSSASubscript(int ssa_reg) const {
buzbee862a7602013-04-05 10:58:54 -0700795 return ssa_subscripts_->Get(ssa_reg);
Ian Rogers71fe2672013-03-19 20:45:02 -0700796 }
buzbee311ca162013-02-28 15:56:43 -0800797
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700798 RegLocation GetRawSrc(MIR* mir, int num) {
buzbee1fd33462013-03-25 13:40:45 -0700799 DCHECK(num < mir->ssa_rep->num_uses);
800 RegLocation res = reg_location_[mir->ssa_rep->uses[num]];
801 return res;
802 }
803
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700804 RegLocation GetRawDest(MIR* mir) {
buzbee1fd33462013-03-25 13:40:45 -0700805 DCHECK_GT(mir->ssa_rep->num_defs, 0);
806 RegLocation res = reg_location_[mir->ssa_rep->defs[0]];
807 return res;
808 }
809
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700810 RegLocation GetDest(MIR* mir) {
buzbee1fd33462013-03-25 13:40:45 -0700811 RegLocation res = GetRawDest(mir);
812 DCHECK(!res.wide);
813 return res;
814 }
815
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700816 RegLocation GetSrc(MIR* mir, int num) {
buzbee1fd33462013-03-25 13:40:45 -0700817 RegLocation res = GetRawSrc(mir, num);
818 DCHECK(!res.wide);
819 return res;
820 }
821
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700822 RegLocation GetDestWide(MIR* mir) {
buzbee1fd33462013-03-25 13:40:45 -0700823 RegLocation res = GetRawDest(mir);
824 DCHECK(res.wide);
825 return res;
826 }
827
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700828 RegLocation GetSrcWide(MIR* mir, int low) {
buzbee1fd33462013-03-25 13:40:45 -0700829 RegLocation res = GetRawSrc(mir, low);
830 DCHECK(res.wide);
831 return res;
832 }
833
834 RegLocation GetBadLoc() {
835 return bad_loc;
836 }
837
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800838 int GetMethodSReg() const {
buzbee1fd33462013-03-25 13:40:45 -0700839 return method_sreg_;
840 }
841
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -0800842 /**
843 * @brief Used to obtain the number of compiler temporaries being used.
844 * @return Returns the number of compiler temporaries.
845 */
846 size_t GetNumUsedCompilerTemps() const {
847 size_t total_num_temps = compiler_temps_.Size();
848 DCHECK_LE(num_non_special_compiler_temps_, total_num_temps);
849 return total_num_temps;
850 }
851
852 /**
853 * @brief Used to obtain the number of non-special compiler temporaries being used.
854 * @return Returns the number of non-special compiler temporaries.
855 */
856 size_t GetNumNonSpecialCompilerTemps() const {
857 return num_non_special_compiler_temps_;
858 }
859
860 /**
861 * @brief Used to set the total number of available non-special compiler temporaries.
862 * @details Can fail setting the new max if there are more temps being used than the new_max.
863 * @param new_max The new maximum number of non-special compiler temporaries.
864 * @return Returns true if the max was set and false if failed to set.
865 */
866 bool SetMaxAvailableNonSpecialCompilerTemps(size_t new_max) {
867 if (new_max < GetNumNonSpecialCompilerTemps()) {
868 return false;
869 } else {
870 max_available_non_special_compiler_temps_ = new_max;
871 return true;
872 }
873 }
874
875 /**
876 * @brief Provides the number of non-special compiler temps available.
877 * @details Even if this returns zero, special compiler temps are guaranteed to be available.
878 * @return Returns the number of available temps.
879 */
880 size_t GetNumAvailableNonSpecialCompilerTemps();
881
882 /**
883 * @brief Used to obtain an existing compiler temporary.
884 * @param index The index of the temporary which must be strictly less than the
885 * number of temporaries.
886 * @return Returns the temporary that was asked for.
887 */
888 CompilerTemp* GetCompilerTemp(size_t index) const {
889 return compiler_temps_.Get(index);
890 }
891
892 /**
893 * @brief Used to obtain the maximum number of compiler temporaries that can be requested.
894 * @return Returns the maximum number of compiler temporaries, whether used or not.
895 */
896 size_t GetMaxPossibleCompilerTemps() const {
897 return max_available_special_compiler_temps_ + max_available_non_special_compiler_temps_;
898 }
899
900 /**
901 * @brief Used to obtain a new unique compiler temporary.
902 * @param ct_type Type of compiler temporary requested.
903 * @param wide Whether we should allocate a wide temporary.
904 * @return Returns the newly created compiler temporary.
905 */
906 CompilerTemp* GetNewCompilerTemp(CompilerTempType ct_type, bool wide);
907
buzbee1fd33462013-03-25 13:40:45 -0700908 bool MethodIsLeaf() {
909 return attributes_ & METHOD_IS_LEAF;
910 }
911
912 RegLocation GetRegLocation(int index) {
Mark Mendell67c39c42014-01-31 17:28:00 -0800913 DCHECK((index >= 0) && (index < num_ssa_regs_));
buzbee1fd33462013-03-25 13:40:45 -0700914 return reg_location_[index];
915 }
916
917 RegLocation GetMethodLoc() {
918 return reg_location_[method_sreg_];
919 }
920
buzbee0d829482013-10-11 15:24:55 -0700921 bool IsBackedge(BasicBlock* branch_bb, BasicBlockId target_bb_id) {
922 return ((target_bb_id != NullBasicBlockId) &&
923 (GetBasicBlock(target_bb_id)->start_offset <= branch_bb->start_offset));
buzbee9329e6d2013-08-19 12:55:10 -0700924 }
925
926 bool IsBackwardsBranch(BasicBlock* branch_bb) {
927 return IsBackedge(branch_bb, branch_bb->taken) || IsBackedge(branch_bb, branch_bb->fall_through);
928 }
929
buzbee0d829482013-10-11 15:24:55 -0700930 void CountBranch(DexOffset target_offset) {
buzbeeb48819d2013-09-14 16:15:25 -0700931 if (target_offset <= current_offset_) {
932 backward_branches_++;
933 } else {
934 forward_branches_++;
935 }
936 }
937
938 int GetBranchCount() {
939 return backward_branches_ + forward_branches_;
940 }
941
buzbeeb1f1d642014-02-27 12:55:32 -0800942 // Is this vreg in the in set?
943 bool IsInVReg(int vreg) {
944 return (vreg >= cu_->num_regs);
945 }
946
Ian Rogers71fe2672013-03-19 20:45:02 -0700947 void DumpCheckStats();
Ian Rogers71fe2672013-03-19 20:45:02 -0700948 MIR* FindMoveResult(BasicBlock* bb, MIR* mir);
949 int SRegToVReg(int ssa_reg) const;
950 void VerifyDataflow();
Ian Rogers71fe2672013-03-19 20:45:02 -0700951 void CheckForDominanceFrontier(BasicBlock* dom_bb, const BasicBlock* succ_bb);
Vladimir Markobfea9c22014-01-17 17:49:33 +0000952 void EliminateNullChecksAndInferTypesStart();
Jean Christophe Beyler2469e602014-05-06 20:36:55 -0700953 bool EliminateNullChecksAndInferTypes(BasicBlock* bb);
Vladimir Markobfea9c22014-01-17 17:49:33 +0000954 void EliminateNullChecksAndInferTypesEnd();
955 bool EliminateClassInitChecksGate();
956 bool EliminateClassInitChecks(BasicBlock* bb);
957 void EliminateClassInitChecksEnd();
Vladimir Marko95a05972014-05-30 10:01:32 +0100958 bool ApplyGlobalValueNumberingGate();
959 bool ApplyGlobalValueNumbering(BasicBlock* bb);
960 void ApplyGlobalValueNumberingEnd();
buzbee28c23002013-09-07 09:12:27 -0700961 /*
962 * Type inference handling helpers. Because Dalvik's bytecode is not fully typed,
963 * we have to do some work to figure out the sreg type. For some operations it is
964 * clear based on the opcode (i.e. ADD_FLOAT v0, v1, v2), but for others (MOVE), we
965 * may never know the "real" type.
966 *
967 * We perform the type inference operation by using an iterative walk over
968 * the graph, propagating types "defined" by typed opcodes to uses and defs in
969 * non-typed opcodes (such as MOVE). The Setxx(index) helpers are used to set defined
970 * types on typed opcodes (such as ADD_INT). The Setxx(index, is_xx) form is used to
971 * propagate types through non-typed opcodes such as PHI and MOVE. The is_xx flag
972 * tells whether our guess of the type is based on a previously typed definition.
973 * If so, the defined type takes precedence. Note that it's possible to have the same sreg
974 * show multiple defined types because dx treats constants as untyped bit patterns.
975 * The return value of the Setxx() helpers says whether or not the Setxx() action changed
976 * the current guess, and is used to know when to terminate the iterative walk.
977 */
buzbee1fd33462013-03-25 13:40:45 -0700978 bool SetFp(int index, bool is_fp);
buzbee28c23002013-09-07 09:12:27 -0700979 bool SetFp(int index);
buzbee1fd33462013-03-25 13:40:45 -0700980 bool SetCore(int index, bool is_core);
buzbee28c23002013-09-07 09:12:27 -0700981 bool SetCore(int index);
buzbee1fd33462013-03-25 13:40:45 -0700982 bool SetRef(int index, bool is_ref);
buzbee28c23002013-09-07 09:12:27 -0700983 bool SetRef(int index);
buzbee1fd33462013-03-25 13:40:45 -0700984 bool SetWide(int index, bool is_wide);
buzbee28c23002013-09-07 09:12:27 -0700985 bool SetWide(int index);
buzbee1fd33462013-03-25 13:40:45 -0700986 bool SetHigh(int index, bool is_high);
buzbee28c23002013-09-07 09:12:27 -0700987 bool SetHigh(int index);
988
buzbee8c7a02a2014-06-14 12:33:09 -0700989 bool PuntToInterpreter() {
990 return punt_to_interpreter_;
991 }
992
993 void SetPuntToInterpreter(bool val) {
994 punt_to_interpreter_ = val;
995 }
996
buzbee1fd33462013-03-25 13:40:45 -0700997 char* GetDalvikDisassembly(const MIR* mir);
buzbee1fd33462013-03-25 13:40:45 -0700998 void ReplaceSpecialChars(std::string& str);
999 std::string GetSSAName(int ssa_reg);
1000 std::string GetSSANameWithConst(int ssa_reg, bool singles_only);
1001 void GetBlockName(BasicBlock* bb, char* name);
1002 const char* GetShortyFromTargetIdx(int);
1003 void DumpMIRGraph();
1004 CallInfo* NewMemCallInfo(BasicBlock* bb, MIR* mir, InvokeType type, bool is_range);
buzbee862a7602013-04-05 10:58:54 -07001005 BasicBlock* NewMemBB(BBType block_type, int block_id);
Jean Christophe Beyler3aa57732014-04-17 12:47:24 -07001006 MIR* NewMIR();
buzbee0d829482013-10-11 15:24:55 -07001007 MIR* AdvanceMIR(BasicBlock** p_bb, MIR* mir);
1008 BasicBlock* NextDominatedBlock(BasicBlock* bb);
1009 bool LayoutBlocks(BasicBlock* bb);
Jean Christophe Beyler44e5bde2014-04-29 14:40:41 -07001010 void ComputeTopologicalSortOrder();
Jean Christophe Beyler85127582014-05-11 23:36:41 -07001011 BasicBlock* CreateNewBB(BBType block_type);
buzbee311ca162013-02-28 15:56:43 -08001012
Razvan A Lupusorucb804742014-07-09 16:42:19 -07001013 bool InlineSpecialMethodsGate();
1014 void InlineSpecialMethodsStart();
1015 void InlineSpecialMethods(BasicBlock* bb);
1016 void InlineSpecialMethodsEnd();
Vladimir Marko9820b7c2014-01-02 16:40:37 +00001017
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001018 /**
1019 * @brief Perform the initial preparation for the Method Uses.
1020 */
1021 void InitializeMethodUses();
1022
1023 /**
1024 * @brief Perform the initial preparation for the Constant Propagation.
1025 */
1026 void InitializeConstantPropagation();
1027
1028 /**
1029 * @brief Perform the initial preparation for the SSA Transformation.
1030 */
Vladimir Markoa5b8fde2014-05-23 15:16:44 +01001031 void SSATransformationStart();
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001032
1033 /**
1034 * @brief Insert a the operands for the Phi nodes.
1035 * @param bb the considered BasicBlock.
1036 * @return true
1037 */
1038 bool InsertPhiNodeOperands(BasicBlock* bb);
1039
1040 /**
Vladimir Markoa5b8fde2014-05-23 15:16:44 +01001041 * @brief Perform the cleanup after the SSA Transformation.
1042 */
1043 void SSATransformationEnd();
1044
1045 /**
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001046 * @brief Perform constant propagation on a BasicBlock.
1047 * @param bb the considered BasicBlock.
1048 */
1049 void DoConstantPropagation(BasicBlock* bb);
1050
1051 /**
1052 * @brief Count the uses in the BasicBlock
1053 * @param bb the BasicBlock
1054 */
1055 void CountUses(struct BasicBlock* bb);
1056
Jean Christophe Beylercc794c32014-05-02 09:34:13 -07001057 static uint64_t GetDataFlowAttributes(Instruction::Code opcode);
1058 static uint64_t GetDataFlowAttributes(MIR* mir);
1059
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001060 /**
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001061 * @brief Combine BasicBlocks
1062 * @param the BasicBlock we are considering
1063 */
1064 void CombineBlocks(BasicBlock* bb);
1065
1066 void ClearAllVisitedFlags();
Jean Christophe Beyler4896d7b2014-05-01 15:36:22 -07001067
1068 void AllocateSSAUseData(MIR *mir, int num_uses);
1069 void AllocateSSADefData(MIR *mir, int num_defs);
Jean Christophe Beyler2469e602014-05-06 20:36:55 -07001070 void CalculateBasicBlockInformation();
1071 void InitializeBasicBlockData();
1072 void ComputeDFSOrders();
1073 void ComputeDefBlockMatrix();
1074 void ComputeDominators();
1075 void CompilerInitializeSSAConversion();
1076 void InsertPhiNodes();
1077 void DoDFSPreOrderSSARename(BasicBlock* block);
Jean Christophe Beyler4896d7b2014-05-01 15:36:22 -07001078
Ian Rogers71fe2672013-03-19 20:45:02 -07001079 /*
1080 * IsDebugBuild sanity check: keep track of the Dex PCs for catch entries so that later on
1081 * we can verify that all catch entries have native PC entries.
1082 */
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001083 std::set<uint32_t> catches_;
buzbee311ca162013-02-28 15:56:43 -08001084
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001085 // TODO: make these private.
Vladimir Marko8081d2b2014-07-31 15:33:43 +01001086 RegLocation* reg_location_; // Map SSA names to location.
1087 ArenaSafeMap<unsigned int, unsigned int> block_id_map_; // Block collapse lookup cache.
buzbee1fd33462013-03-25 13:40:45 -07001088
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001089 static const char* extended_mir_op_names_[kMirOpLast - kMirOpFirst];
buzbeeee17e0a2013-07-31 10:47:37 -07001090 static const uint32_t analysis_attributes_[kMirOpLast];
buzbee1fd33462013-03-25 13:40:45 -07001091
Mark Mendelle87f9b52014-04-30 14:13:18 -04001092 void HandleSSADef(int* defs, int dalvik_reg, int reg_index);
1093 bool InferTypeAndSize(BasicBlock* bb, MIR* mir, bool changed);
Mark Mendelle87f9b52014-04-30 14:13:18 -04001094
Wei Jin04f4d8a2014-05-29 18:04:29 -07001095 // Used for removing redudant suspend tests
1096 void AppendGenSuspendTestList(BasicBlock* bb) {
1097 if (gen_suspend_test_list_.Size() == 0 ||
1098 gen_suspend_test_list_.Get(gen_suspend_test_list_.Size() - 1) != bb) {
1099 gen_suspend_test_list_.Insert(bb);
1100 }
1101 }
1102
1103 /* This is used to check if there is already a method call dominating the
1104 * source basic block of a backedge and being dominated by the target basic
1105 * block of the backedge.
1106 */
1107 bool HasSuspendTestBetween(BasicBlock* source, BasicBlockId target_id);
1108
Mark Mendelle87f9b52014-04-30 14:13:18 -04001109 protected:
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001110 int FindCommonParent(int block1, int block2);
1111 void ComputeSuccLineIn(ArenaBitVector* dest, const ArenaBitVector* src1,
1112 const ArenaBitVector* src2);
1113 void HandleLiveInUse(ArenaBitVector* use_v, ArenaBitVector* def_v,
1114 ArenaBitVector* live_in_v, int dalvik_reg_id);
1115 void HandleDef(ArenaBitVector* def_v, int dalvik_reg_id);
Udayan Banerjif2466a72014-07-09 19:14:53 -07001116 void HandleExtended(ArenaBitVector* use_v, ArenaBitVector* def_v,
1117 ArenaBitVector* live_in_v,
1118 const MIR::DecodedInstruction& d_insn);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001119 bool DoSSAConversion(BasicBlock* bb);
1120 bool InvokeUsesMethodStar(MIR* mir);
Ian Rogers29a26482014-05-02 15:27:29 -07001121 int ParseInsn(const uint16_t* code_ptr, MIR::DecodedInstruction* decoded_instruction);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001122 bool ContentIsInsn(const uint16_t* code_ptr);
buzbee0d829482013-10-11 15:24:55 -07001123 BasicBlock* SplitBlock(DexOffset code_offset, BasicBlock* orig_block,
Ian Rogers71fe2672013-03-19 20:45:02 -07001124 BasicBlock** immed_pred_block_p);
buzbee0d829482013-10-11 15:24:55 -07001125 BasicBlock* FindBlock(DexOffset code_offset, bool split, bool create,
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001126 BasicBlock** immed_pred_block_p);
1127 void ProcessTryCatchBlocks();
Vladimir Markoe8ae8142014-07-08 18:06:45 +01001128 bool IsBadMonitorExitCatch(NarrowDexOffset monitor_exit_offset, NarrowDexOffset catch_offset);
buzbee0d829482013-10-11 15:24:55 -07001129 BasicBlock* ProcessCanBranch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width,
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001130 int flags, const uint16_t* code_ptr, const uint16_t* code_end);
buzbee17189ac2013-11-08 11:07:02 -08001131 BasicBlock* ProcessCanSwitch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width,
1132 int flags);
buzbee0d829482013-10-11 15:24:55 -07001133 BasicBlock* ProcessCanThrow(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset, int width,
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001134 int flags, ArenaBitVector* try_block_addr, const uint16_t* code_ptr,
1135 const uint16_t* code_end);
1136 int AddNewSReg(int v_reg);
1137 void HandleSSAUse(int* uses, int dalvik_reg, int reg_index);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001138 void DataFlowSSAFormat35C(MIR* mir);
1139 void DataFlowSSAFormat3RC(MIR* mir);
Udayan Banerjif2466a72014-07-09 19:14:53 -07001140 void DataFlowSSAFormatExtended(MIR* mir);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001141 bool FindLocalLiveIn(BasicBlock* bb);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001142 bool VerifyPredInfo(BasicBlock* bb);
1143 BasicBlock* NeedsVisit(BasicBlock* bb);
1144 BasicBlock* NextUnvisitedSuccessor(BasicBlock* bb);
1145 void MarkPreOrder(BasicBlock* bb);
1146 void RecordDFSOrders(BasicBlock* bb);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001147 void ComputeDomPostOrderTraversal(BasicBlock* bb);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001148 int GetSSAUseCount(int s_reg);
1149 bool BasicBlockOpt(BasicBlock* bb);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001150 bool BuildExtendedBBList(struct BasicBlock* bb);
1151 bool FillDefBlockMatrix(BasicBlock* bb);
1152 void InitializeDominationInfo(BasicBlock* bb);
1153 bool ComputeblockIDom(BasicBlock* bb);
1154 bool ComputeBlockDominators(BasicBlock* bb);
1155 bool SetDominators(BasicBlock* bb);
1156 bool ComputeBlockLiveIns(BasicBlock* bb);
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001157 bool ComputeDominanceFrontier(BasicBlock* bb);
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001158
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001159 void CountChecks(BasicBlock* bb);
buzbeeee17e0a2013-07-31 10:47:37 -07001160 void AnalyzeBlock(BasicBlock* bb, struct MethodStats* stats);
Andreas Gampe060e6fe2014-06-19 11:34:06 -07001161 bool ComputeSkipCompilation(struct MethodStats* stats, bool skip_default,
1162 std::string* skip_message);
buzbee311ca162013-02-28 15:56:43 -08001163
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001164 CompilationUnit* const cu_;
1165 GrowableArray<int>* ssa_base_vregs_;
1166 GrowableArray<int>* ssa_subscripts_;
1167 // Map original Dalvik virtual reg i to the current SSA name.
1168 int* vreg_to_ssa_map_; // length == method->registers_size
1169 int* ssa_last_defs_; // length == method->registers_size
1170 ArenaBitVector* is_constant_v_; // length == num_ssa_reg
1171 int* constant_values_; // length == num_ssa_reg
1172 // Use counts of ssa names.
1173 GrowableArray<uint32_t> use_counts_; // Weighted by nesting depth
1174 GrowableArray<uint32_t> raw_use_counts_; // Not weighted
1175 unsigned int num_reachable_blocks_;
Jean Christophe Beyler4896d7b2014-05-01 15:36:22 -07001176 unsigned int max_num_reachable_blocks_;
buzbee0d829482013-10-11 15:24:55 -07001177 GrowableArray<BasicBlockId>* dfs_order_;
1178 GrowableArray<BasicBlockId>* dfs_post_order_;
1179 GrowableArray<BasicBlockId>* dom_post_order_traversal_;
Jean Christophe Beyler44e5bde2014-04-29 14:40:41 -07001180 GrowableArray<BasicBlockId>* topological_order_;
Vladimir Marko55fff042014-07-10 12:42:52 +01001181 // Indexes in topological_order_ need to be only as big as the BasicBlockId.
1182 COMPILE_ASSERT(sizeof(BasicBlockId) == sizeof(uint16_t), assuming_16_bit_BasicBlockId);
1183 // For each loop head, remember the past-the-end index of the end of the loop. 0 if not loop head.
1184 GrowableArray<uint16_t>* topological_order_loop_ends_;
1185 // Map BB ids to topological_order_ indexes. 0xffff if not included (hidden or null block).
1186 GrowableArray<uint16_t>* topological_order_indexes_;
1187 // Stack of the loop head indexes and recalculation flags for RepeatingTopologicalSortIterator.
1188 GrowableArray<std::pair<uint16_t, bool>>* topological_order_loop_head_stack_;
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001189 int* i_dom_list_;
1190 ArenaBitVector** def_block_matrix_; // num_dalvik_register x num_blocks.
Ian Rogers700a4022014-05-19 16:49:03 -07001191 std::unique_ptr<ScopedArenaAllocator> temp_scoped_alloc_;
Vladimir Markobfea9c22014-01-17 17:49:33 +00001192 uint16_t* temp_insn_data_;
1193 uint32_t temp_bit_vector_size_;
1194 ArenaBitVector* temp_bit_vector_;
Vladimir Marko95a05972014-05-30 10:01:32 +01001195 std::unique_ptr<GlobalValueNumbering> temp_gvn_;
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001196 static const int kInvalidEntry = -1;
1197 GrowableArray<BasicBlock*> block_list_;
1198 ArenaBitVector* try_block_addr_;
1199 BasicBlock* entry_block_;
1200 BasicBlock* exit_block_;
Andreas Gampe44395962014-06-13 13:44:40 -07001201 unsigned int num_blocks_;
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001202 const DexFile::CodeItem* current_code_item_;
buzbeeb48819d2013-09-14 16:15:25 -07001203 GrowableArray<uint16_t> dex_pc_to_block_map_; // FindBlock lookup cache.
Vladimir Marko8081d2b2014-07-31 15:33:43 +01001204 ArenaVector<DexCompilationUnit*> m_units_; // List of methods included in this graph
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001205 typedef std::pair<int, int> MIRLocation; // Insert point, (m_unit_ index, offset)
Vladimir Marko8081d2b2014-07-31 15:33:43 +01001206 ArenaVector<MIRLocation> method_stack_; // Include stack
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001207 int current_method_;
buzbee0d829482013-10-11 15:24:55 -07001208 DexOffset current_offset_; // Offset in code units
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001209 int def_count_; // Used to estimate size of ssa name storage.
1210 int* opcode_count_; // Dex opcode coverage stats.
1211 int num_ssa_regs_; // Number of names following SSA transformation.
Vladimir Marko8081d2b2014-07-31 15:33:43 +01001212 ArenaVector<BasicBlockId> extended_basic_blocks_; // Heads of block "traces".
Brian Carlstrom6f485c62013-07-18 15:35:35 -07001213 int method_sreg_;
1214 unsigned int attributes_;
1215 Checkstats* checkstats_;
1216 ArenaAllocator* arena_;
buzbeeb48819d2013-09-14 16:15:25 -07001217 int backward_branches_;
1218 int forward_branches_;
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -08001219 GrowableArray<CompilerTemp*> compiler_temps_;
1220 size_t num_non_special_compiler_temps_;
1221 size_t max_available_non_special_compiler_temps_;
1222 size_t max_available_special_compiler_temps_;
buzbeeb1f1d642014-02-27 12:55:32 -08001223 bool punt_to_interpreter_; // Difficult or not worthwhile - just interpret.
Vladimir Marko3d73ba22014-03-06 15:18:04 +00001224 uint64_t merged_df_flags_;
Vladimir Markobe0e5462014-02-26 11:24:15 +00001225 GrowableArray<MirIFieldLoweringInfo> ifield_lowering_infos_;
1226 GrowableArray<MirSFieldLoweringInfo> sfield_lowering_infos_;
Vladimir Markof096aad2014-01-23 15:51:58 +00001227 GrowableArray<MirMethodLoweringInfo> method_lowering_infos_;
Jean Christophe Beylercc794c32014-05-02 09:34:13 -07001228 static const uint64_t oat_data_flow_attributes_[kMirOpLast];
Wei Jin04f4d8a2014-05-29 18:04:29 -07001229 GrowableArray<BasicBlock*> gen_suspend_test_list_; // List of blocks containing suspend tests
Vladimir Markof59f18b2014-02-17 15:53:57 +00001230
Vladimir Markobfea9c22014-01-17 17:49:33 +00001231 friend class ClassInitCheckEliminationTest;
Vladimir Marko95a05972014-05-30 10:01:32 +01001232 friend class GlobalValueNumberingTest;
Vladimir Markof59f18b2014-02-17 15:53:57 +00001233 friend class LocalValueNumberingTest;
Vladimir Marko55fff042014-07-10 12:42:52 +01001234 friend class TopologicalSortOrderTest;
buzbee311ca162013-02-28 15:56:43 -08001235};
1236
1237} // namespace art
1238
Brian Carlstromfc0e3212013-07-17 14:40:12 -07001239#endif // ART_COMPILER_DEX_MIR_GRAPH_H_