Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: src/IceTargetLoweringMIPS32.h

Issue 2339323004: [SubZero] Use DIV instruction instead of TargetHelperCall (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Alphabetize Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/IceTargetLoweringMIPS32.h
diff --git a/src/IceTargetLoweringMIPS32.h b/src/IceTargetLoweringMIPS32.h
index 5cc412f2ad290bb27adcff09cc36b0c1945bf127..2b3ec8cf7938007711b02f2bd810105fc3f7dc0c 100644
--- a/src/IceTargetLoweringMIPS32.h
+++ b/src/IceTargetLoweringMIPS32.h
@@ -505,6 +505,10 @@ public:
Context.insert<InstMIPS32Swc1>(Value, Mem);
}
+ void _teq(Variable *Src0, Variable *Src1, const uint32_t TrapCode) {
Jim Stichnoth 2016/09/16 16:33:02 I would remove the "const" here.
jaydeep.patil 2016/09/19 03:30:51 Done.
+ Context.insert<InstMIPS32Teq>(Src0, Src1, TrapCode);
+ }
+
void _trunc_l_d(Variable *Dest, Variable *Src) {
Context.insert<InstMIPS32Trunc_l_d>(Dest, Src);
}

Powered by Google App Engine
This is Rietveld 408576698