From 9c044ce5f76e9bfa17c4c1979e9f8c99ae100695 Mon Sep 17 00:00:00 2001 From: buzbee Date: Sun, 18 Mar 2012 13:24:07 -0700 Subject: Support for promoting Method* and compiler temps This CL completes the support for allowing compiler-generated data to be treated as a Dalvik register and become subject to the normal register promotion and live temp tracking machinery. Also: o Removes some vestigal and useless Method* loads from range argument setup. o Changes the Method* pseudo vReg number from -1 to -2 to avoid a conflict with the 0xffff marker in the register map. o Removes some experimental code for CSE at the basic block level. Change-Id: I112a8bbe20f95a8d789f63908c84e5fa167c74ac --- src/compiler/codegen/CompilerCodegen.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/compiler/codegen/CompilerCodegen.h') diff --git a/src/compiler/codegen/CompilerCodegen.h b/src/compiler/codegen/CompilerCodegen.h index 571d6da0f3..1137db3796 100644 --- a/src/compiler/codegen/CompilerCodegen.h +++ b/src/compiler/codegen/CompilerCodegen.h @@ -39,7 +39,6 @@ int oatAssignInsnOffsets(CompilationUnit* cUnit); /* Implemented in the codegen//ArchUtility.c */ void oatCodegenDump(CompilationUnit* cUnit); void oatDumpPromotionMap(CompilationUnit* cUnit); -void oatDumpFullPromotionMap(CompilationUnit* cUnit); std::string buildInsnString(const char* fmt, LIR* lir, unsigned char* baseAddr); -- cgit v1.2.3-59-g8ed1b