summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h
diff options
context:
space:
mode:
authorJulien Brianceau <jbriance@cisco.com>2014-08-22 11:09:51 +0200
committerJulien Brianceau <jbriance@cisco.com>2014-08-23 02:16:21 +0200
commit8fc64042dfdf7e3ef050f9b64cb77e90f549de32 (patch)
treec3e9cc0fe42384a4878700736602635be86f4f1d /Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h
parent84f3a89974631f015d7ab6c82e6fbb84c72fb5f1 (diff)
downloadqtwebkit-8fc64042dfdf7e3ef050f9b64cb77e90f549de32.tar.gz
[mips] Take advantage of integer divide instruction for ArithDiv and ArithMod.
Added MIPS integer divide path for ArithDiv and ArithMod where operands and results are integer. Change-Id: I00d5b58e6e0be39f083676fb0c435b3545d3aca1 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h')
-rw-r--r--Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h b/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h
index 54f736600..f4e80996e 100644
--- a/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h
+++ b/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h
@@ -1994,6 +1994,8 @@ public:
void compileIntegerArithDivForX86(Node*);
#elif CPU(APPLE_ARMV7S)
void compileIntegerArithDivForARMv7s(Node*);
+#elif CPU(MIPS)
+ void compileIntegerArithDivForMIPS(Node*);
#endif
void compileArithMod(Node*);
void compileSoftModulo(Node*);