summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/mips/Codegen.h
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2012-03-03 16:33:01 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2012-03-03 16:33:01 -0800
commite8267506ac2d64351e21ce90e8643b9247e1803c (patch)
treee36eebed027e0db210b6edb1b95f5475064904c0 /src/compiler/codegen/mips/Codegen.h
parent434ce294296b41a962a4fd86c3deb1f0f462d3e6 (diff)
parentc5159d55ca8e9022b748176f9f53676e8e9d4cd2 (diff)
Merge "MIPS switch table support" into dalvik-dev
Diffstat (limited to 'src/compiler/codegen/mips/Codegen.h')
-rw-r--r--src/compiler/codegen/mips/Codegen.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/compiler/codegen/mips/Codegen.h b/src/compiler/codegen/mips/Codegen.h
index c6f1d98b0f..520d638fe7 100644
--- a/src/compiler/codegen/mips/Codegen.h
+++ b/src/compiler/codegen/mips/Codegen.h
@@ -27,6 +27,12 @@
namespace art {
#if defined(_CODEGEN_C)
+bool genAddLong(CompilationUnit* cUnit, MIR* mir, RegLocation rlDest,
+ RegLocation rlSrc1, RegLocation rlSrc2);
+bool genSubLong(CompilationUnit* cUnit, MIR* mir, RegLocation rlDest,
+ RegLocation rlSrc1, RegLocation rlSrc2);
+bool genNegLong(CompilationUnit* cUnit, MIR* mir, RegLocation rlDest,
+ RegLocation rlSrc);
LIR *opRegImm(CompilationUnit* cUnit, OpKind op, int rDestSrc1, int value);
LIR *opRegReg(CompilationUnit* cUnit, OpKind op, int rDestSrc1, int rSrc2);
LIR* opCmpBranch(CompilationUnit* cUnit, ConditionCode cond, int src1,