summaryrefslogtreecommitdiff
path: root/src/compiler/compiler_ir.h
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2013-01-03 08:18:08 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2013-01-03 08:18:09 -0800
commit7f1df62028142ec01dcee190f4f171a088c4087f (patch)
treed5f8b9914ddfdcf0eb616670cbf6e69ffc936d69 /src/compiler/compiler_ir.h
parentc8253caa7045a7683666725a6d8aeba96a8f9c7a (diff)
parent2502e004d93734a99bdfeab811b3c5ae06f45bec (diff)
Merge "Basic block optimization refactoring" into dalvik-dev
Diffstat (limited to 'src/compiler/compiler_ir.h')
-rw-r--r--src/compiler/compiler_ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/compiler_ir.h b/src/compiler/compiler_ir.h
index 9c67cd567c..8f00ac2282 100644
--- a/src/compiler/compiler_ir.h
+++ b/src/compiler/compiler_ir.h
@@ -196,7 +196,6 @@ struct SSARepresentation;
#define MIR_CALLEE (1 << kMIRCallee)
#define MIR_IGNORE_SUSPEND_CHECK (1 << kMIRIgnoreSuspendCheck)
#define MIR_DUP (1 << kMIRDup)
-#define MIR_MARK (1 << kMIRMark)
struct Checkstats {
int null_checks;
@@ -400,6 +399,7 @@ struct CompilationUnit {
std::vector<uint32_t> core_vmap_table;
std::vector<uint32_t> fp_vmap_table;
std::vector<uint8_t> native_gc_map;
+ std::vector<BasicBlock*> extended_basic_blocks;
bool verbose;
bool has_loop; // Contains a loop.
bool has_invoke; // Contains an invoke instruction.