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

Unified Diff: src/mips/simulator-mips.h

Issue 1691763002: MIPS: Refine 'MIPS: Fix FPU min, max, mina, maxa in simulator.' (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « src/mips/constants-mips.h ('k') | src/mips/simulator-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/simulator-mips.h
diff --git a/src/mips/simulator-mips.h b/src/mips/simulator-mips.h
index 01ece96319f96e78bd418828353db0762bb13231..e1c42fdccadc0ce0bcfd0f2662281915020cab01 100644
--- a/src/mips/simulator-mips.h
+++ b/src/mips/simulator-mips.h
@@ -300,24 +300,6 @@ class Simulator {
inline int32_t SetDoubleHIW(double* addr);
inline int32_t SetDoubleLOW(double* addr);
- // Min/Max template functions for Double and Single arguments.
- enum class IsMin : int { kMin = 0, kMax = 1 };
-
- template <typename T>
- bool FPUProcessNaNsAndZeros(T a, T b, IsMin min, T& result);
-
- template <typename T>
- T FPUMin(T a, T b);
-
- template <typename T>
- T FPUMax(T a, T b);
-
- template <typename T>
- T FPUMinA(T a, T b);
-
- template <typename T>
- T FPUMaxA(T a, T b);
-
// Executing is handled based on the instruction type.
void DecodeTypeRegister(Instruction* instr);
« no previous file with comments | « src/mips/constants-mips.h ('k') | src/mips/simulator-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698