summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/gen_invoke.cc
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2012-11-15 14:51:41 -0800
committer buzbee <buzbee@google.com> 2012-11-16 16:48:09 -0800
commiteaf09bc65f9a10d12befcdb239156938c9bceef2 (patch)
treee3b85c241b24aa058a413363e4f9c94f4c76d4d6 /src/compiler/codegen/gen_invoke.cc
parentefc6369224b036a1fb77849f7ae65b3492c832c0 (diff)
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
Diffstat (limited to 'src/compiler/codegen/gen_invoke.cc')
-rw-r--r--src/compiler/codegen/gen_invoke.cc8
1 files changed, 2 insertions, 6 deletions
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;