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_invoke.cc | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/compiler/codegen/gen_invoke.cc') diff --git a/src/compiler/codegen/gen_invoke.cc b/src/compiler/codegen/gen_invoke.cc index efd4f5ae6a..bac6a76762 100644 --- a/src/compiler/codegen/gen_invoke.cc +++ b/src/compiler/codegen/gen_invoke.cc @@ -24,11 +24,6 @@ namespace art { * and "op" calls may be used here. */ -typedef int (*NextCallInsn)(CompilationUnit*, CallInfo*, int, uint32_t dexIdx, - uint32_t methodIdx, uintptr_t directCode, - uintptr_t directMethod, InvokeType type); -LIR* opCondBranch(CompilationUnit* cUnit, ConditionCode cc, LIR* target); - /* * If there are any ins passed in registers that have not been promoted * to a callee-save register, flush them to the frame. Perform intial @@ -112,7 +107,8 @@ void flushIns(CompilationUnit* cUnit, RegLocation* argLocs, RegLocation rlMethod } } -void scanMethodLiteralPool(CompilationUnit* cUnit, LIR** methodTarget, LIR** codeTarget, const DexFile* dexFile, uint32_t dexMethodIdx) +void scanMethodLiteralPool(CompilationUnit* cUnit, LIR** methodTarget, LIR** codeTarget, + const DexFile* dexFile, uint32_t dexMethodIdx) { LIR* curTarget = cUnit->methodLiteralList; LIR* nextTarget = curTarget != NULL ? curTarget->next : NULL; -- cgit v1.2.3-59-g8ed1b