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

Unified Diff: src/harmony-atomics.js

Issue 1394303003: Revert of Use simple/fast macro version of MinMax in JS (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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/harmony-array.js ('k') | src/harmony-typedarray.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/harmony-atomics.js
diff --git a/src/harmony-atomics.js b/src/harmony-atomics.js
index e06008a16dd29d5483947904abdfa8db3a22f5c7..7412494e30368e9e984174f72b642aa97ed3f7d7 100644
--- a/src/harmony-atomics.js
+++ b/src/harmony-atomics.js
@@ -12,7 +12,12 @@
// Imports
var GlobalObject = global.Object;
+var MathMax;
var toStringTagSymbol = utils.ImportNow("to_string_tag_symbol");
+
+utils.Import(function(from) {
+ MathMax = from.MathMax;
+});
// -------------------------------------------------------------------
@@ -141,7 +146,7 @@
if (NUMBER_IS_NAN(timeout)) {
timeout = INFINITY;
} else {
- timeout = MAX_SIMPLE(0, timeout);
+ timeout = MathMax(0, timeout);
}
}
return %AtomicsFutexWait(ia, index, value, timeout);
@@ -153,14 +158,14 @@
if (index < 0 || index >= %_TypedArrayGetLength(ia)) {
return UNDEFINED;
}
- count = MAX_SIMPLE(0, TO_INTEGER(count));
+ count = MathMax(0, TO_INTEGER(count));
return %AtomicsFutexWake(ia, index, count);
}
function AtomicsFutexWakeOrRequeueJS(ia, index1, count, value, index2) {
CheckSharedInteger32TypedArray(ia);
index1 = TO_INTEGER(index1);
- count = MAX_SIMPLE(0, TO_INTEGER(count));
+ count = MathMax(0, TO_INTEGER(count));
value = TO_INT32(value);
index2 = TO_INTEGER(index2);
if (index1 < 0 || index1 >= %_TypedArrayGetLength(ia) ||
« no previous file with comments | « src/harmony-array.js ('k') | src/harmony-typedarray.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698