diff options
| author | 2012-11-16 16:50:17 -0800 | |
|---|---|---|
| committer | 2012-11-16 16:50:18 -0800 | |
| commit | 6aa852b927a12ba16f5c05ee7d044ac1372feb7f (patch) | |
| tree | e88e202952fcf09fad44a58eb366b6a59dcd0424 /src/compiler/codegen/gen_common.cc | |
| parent | 2bcb4a496b7aa00d996df3a070524f7568fb35a1 (diff) | |
| parent | eaf09bc65f9a10d12befcdb239156938c9bceef2 (diff) | |
Merge "Quick compiler: more refactoring" into dalvik-dev
Diffstat (limited to 'src/compiler/codegen/gen_common.cc')
| -rw-r--r-- | src/compiler/codegen/gen_common.cc | 8 |
1 files changed, 3 insertions, 5 deletions
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) |