diff options
author | buzbee <buzbee@google.com> | 2010-12-14 13:16:43 -0800 |
---|---|---|
committer | buzbee <buzbee@google.com> | 2010-12-14 13:16:43 -0800 |
commit | 23d95d0e2d45f5c3434536b3bc20c8b4c3331ed3 (patch) | |
tree | 070ce4884bca42e1428e6227b6613e36ece1bcc3 /vm/compiler/codegen/CompilerCodegen.h | |
parent | bab7a89783d8b04d8e531cc6c750198f44724dc7 (diff) | |
download | android_dalvik-23d95d0e2d45f5c3434536b3bc20c8b4c3331ed3.tar.gz android_dalvik-23d95d0e2d45f5c3434536b3bc20c8b4c3331ed3.tar.bz2 android_dalvik-23d95d0e2d45f5c3434536b3bc20c8b4c3331ed3.zip |
[JIT] Regalloc cleanup
Remove vestiges of code intended for linear scan register allocation
in the trace compiler. New plan is to stick with local allocation for
traces and build a new linear scan allocator for the method compiler.
Change-Id: Ic265ab5a7936b144cbe7fa4dc667fa7aba579045
Diffstat (limited to 'vm/compiler/codegen/CompilerCodegen.h')
-rw-r--r-- | vm/compiler/codegen/CompilerCodegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/codegen/CompilerCodegen.h b/vm/compiler/codegen/CompilerCodegen.h index d871c3b7b..70a2bbd64 100644 --- a/vm/compiler/codegen/CompilerCodegen.h +++ b/vm/compiler/codegen/CompilerCodegen.h @@ -44,7 +44,7 @@ void dvmJitUnchainAll(void); void dvmCompilerPatchInlineCache(void); /* Implemented in codegen/<target>/Ralloc.c */ -void dvmCompilerRegAlloc(CompilationUnit *cUnit); +void dvmCompilerLocalRegAlloc(CompilationUnit *cUnit); /* Implemented in codegen/<target>/Thumb<version>Util.c */ void dvmCompilerInitializeRegAlloc(CompilationUnit *cUnit); |