diff options
| author | 2011-08-28 21:15:53 -0700 | |
|---|---|---|
| committer | 2011-08-28 21:39:17 -0700 | |
| commit | e1931749814dbb80c5a756f9842e9c261bb2e8f6 (patch) | |
| tree | 6e0d28df7394cd1921643032ed2030c3e0bc113c /src/compiler/codegen/Ralloc.h | |
| parent | 48a35d0cc5cf5dec38808d147862e165e9d67163 (diff) | |
Use slow-path static field accessors; added tests
Modified the compiler to always take the slow path for static
field accesses. Still need to implement the fast path, but this
allows us to test the slow path now.
It's also about time we added command-line (or other) options for
compiler control. We'll want to have a testing option to force slow
paths for testing, and also an option to control the compiler's
debug output (which is starting to get annoying).
Change-Id: I9c1bc6faea0042894270d242366c688f1662842b
Diffstat (limited to 'src/compiler/codegen/Ralloc.h')
| -rw-r--r-- | src/compiler/codegen/Ralloc.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/compiler/codegen/Ralloc.h b/src/compiler/codegen/Ralloc.h index b1e14ec145..ec72039369 100644 --- a/src/compiler/codegen/Ralloc.h +++ b/src/compiler/codegen/Ralloc.h @@ -90,9 +90,6 @@ extern RegLocation oatUpdateLoc(CompilationUnit* cUnit, extern RegLocation oatUpdateLocWide(CompilationUnit* cUnit, RegLocation loc); -/* Clobber all of the temps that might be used by a handler. */ -extern void oatClobberHandlerRegs(CompilationUnit* cUnit); - extern void oatMarkLive(CompilationUnit* cUnit, int reg, int sReg); extern void oatMarkTemp(CompilationUnit* cUnit, int reg); |