| commit | e9695e5d281ad8bfbe3091e825befbedfc1b2007 | [log] [tgz] |
|---|---|---|
| author | Ben Cheng <bccheng@android.com> | Tue Jun 16 16:11:47 2009 -0700 |
| committer | Ben Cheng <bccheng@android.com> | Wed Jun 17 12:05:41 2009 -0700 |
| tree | afed365e12f32388bcd394974ed7b003530566e1 | |
| parent | 7c7e2c1e2c3f2ec9e82d28494c361609042c3561 [diff] [blame] |
Implemented peephole optimizations including null-check elimination, redundant ld/st elimination, ad-hoc register renaming and store sinking.
diff --git a/vm/compiler/Utility.c b/vm/compiler/Utility.c index 9d8e088..54f6971 100644 --- a/vm/compiler/Utility.c +++ b/vm/compiler/Utility.c
@@ -79,6 +79,7 @@ currentArena->next = newArena; currentArena = newArena; numArenaBlocks++; + LOGD("Total arena pages for JIT: %d", numArenaBlocks); goto retry; } return NULL;