summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/gen_invoke.cc
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2012-11-16 16:50:17 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2012-11-16 16:50:18 -0800
commit6aa852b927a12ba16f5c05ee7d044ac1372feb7f (patch)
treee88e202952fcf09fad44a58eb366b6a59dcd0424 /src/compiler/codegen/gen_invoke.cc
parent2bcb4a496b7aa00d996df3a070524f7568fb35a1 (diff)
parenteaf09bc65f9a10d12befcdb239156938c9bceef2 (diff)
Merge "Quick compiler: more refactoring" into dalvik-dev
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;