From eaf09bc65f9a10d12befcdb239156938c9bceef2 Mon Sep 17 00:00:00 2001 From: buzbee Date: Thu, 15 Nov 2012 14:51:41 -0800 Subject: Quick compiler: more refactoring Focus on header file cleanup here. Note: target_list.h is transitional, and upcoming CLs will do additional header file reorganization. Change-Id: If86e1a8c1c43305762fe37b157a9d3c17d911ea7 --- src/compiler/codegen/gen_common.cc | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/compiler/codegen/gen_common.cc') diff --git a/src/compiler/codegen/gen_common.cc b/src/compiler/codegen/gen_common.cc index bc61c54f1f..fe10fe46af 100644 --- a/src/compiler/codegen/gen_common.cc +++ b/src/compiler/codegen/gen_common.cc @@ -18,14 +18,14 @@ namespace art { +//TODO: remove decl. +void genInvoke(CompilationUnit* cUnit, CallInfo* info); + /* * This source files contains "gen" codegen routines that should * be applicable to most targets. Only mid-level support utilities * and "op" calls may be used here. */ -void genInvoke(CompilationUnit* cUnit, CallInfo* info); -bool smallLiteralDivide(CompilationUnit* cUnit, Instruction::Code dalvikOpcode, - RegLocation rlSrc, RegLocation rlDest, int lit); void markSafepointPC(CompilationUnit* cUnit, LIR* inst) { @@ -2161,7 +2161,6 @@ bool genConversionCall(CompilationUnit* cUnit, int funcOffset, return false; } -void genNegFloat(CompilationUnit* cUnit, RegLocation rlDest, RegLocation rlSrc); bool genArithOpFloatPortable(CompilationUnit* cUnit, Instruction::Code opcode, RegLocation rlDest, RegLocation rlSrc1, RegLocation rlSrc2) @@ -2204,7 +2203,6 @@ bool genArithOpFloatPortable(CompilationUnit* cUnit, Instruction::Code opcode, return false; } -void genNegDouble(CompilationUnit* cUnit, RegLocation rlDst, RegLocation rlSrc); bool genArithOpDoublePortable(CompilationUnit* cUnit, Instruction::Code opcode, RegLocation rlDest, RegLocation rlSrc1, RegLocation rlSrc2) -- cgit v1.2.3-59-g8ed1b