blob: 0833c5c8099e74b439a2a90f51ea9555ce87101e [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001// Copyright 2008 the V8 project authors. All rights reserved.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000028// Flags: --allow-natives-syntax
29
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000030// Test Math.min().
31
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000032assertEquals(Infinity, Math.min());
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000033assertEquals(1, Math.min(1));
34assertEquals(1, Math.min(1, 2));
35assertEquals(1, Math.min(2, 1));
36assertEquals(1, Math.min(1, 2, 3));
37assertEquals(1, Math.min(3, 2, 1));
38assertEquals(1, Math.min(2, 3, 1));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000039assertEquals(1.1, Math.min(1.1, 2.2, 3.3));
40assertEquals(1.1, Math.min(3.3, 2.2, 1.1));
41assertEquals(1.1, Math.min(2.2, 3.3, 1.1));
42
43// Prepare a non-Smi zero value.
44function returnsNonSmi(){ return 0.25; }
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +000045var ZERO = (function() {
46 var z;
47 // We have to have a loop here because the first time we get a Smi from the
48 // runtime system. After a while the binary op IC settles down and we get
49 // a non-Smi from the generated code.
50 for (var i = 0; i < 10; i++) {
51 z = returnsNonSmi() - returnsNonSmi();
52 }
53 return z;
54})();
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000055assertEquals(0, ZERO);
56assertEquals(Infinity, 1/ZERO);
57assertEquals(-Infinity, 1/-ZERO);
lrn@chromium.org303ada72010-10-27 09:33:13 +000058// Here we would like to have assertFalse(%_IsSmi(ZERO)); This is, however,
59// unreliable, since a new space exhaustion at a critical moment could send
60// us into the runtime system, which would quite legitimately put a Smi zero
61// here.
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000062assertFalse(%_IsSmi(-ZERO));
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000063
64var o = {};
65o.valueOf = function() { return 1; };
66assertEquals(1, Math.min(2, 3, '1'));
67assertEquals(1, Math.min(3, o, 2));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000068assertEquals(1, Math.min(o, 2));
69assertEquals(-Infinity, Infinity / Math.min(-0, +0));
70assertEquals(-Infinity, Infinity / Math.min(+0, -0));
71assertEquals(-Infinity, Infinity / Math.min(+0, -0, 1));
72assertEquals(-Infinity, Infinity / Math.min(-0, ZERO));
73assertEquals(-Infinity, Infinity / Math.min(ZERO, -0));
74assertEquals(-Infinity, Infinity / Math.min(ZERO, -0, 1));
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000075assertEquals(-1, Math.min(+0, -0, -1));
76assertEquals(-1, Math.min(-1, +0, -0));
77assertEquals(-1, Math.min(+0, -1, -0));
78assertEquals(-1, Math.min(-0, -1, +0));
danno@chromium.org160a7b02011-04-18 15:51:38 +000079assertEquals(NaN, Math.min('oxen'));
80assertEquals(NaN, Math.min('oxen', 1));
81assertEquals(NaN, Math.min(1, 'oxen'));
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000082
83
84// Test Math.max().
85
86assertEquals(Number.NEGATIVE_INFINITY, Math.max());
87assertEquals(1, Math.max(1));
88assertEquals(2, Math.max(1, 2));
89assertEquals(2, Math.max(2, 1));
90assertEquals(3, Math.max(1, 2, 3));
91assertEquals(3, Math.max(3, 2, 1));
92assertEquals(3, Math.max(2, 3, 1));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +000093assertEquals(3.3, Math.max(1.1, 2.2, 3.3));
94assertEquals(3.3, Math.max(3.3, 2.2, 1.1));
95assertEquals(3.3, Math.max(2.2, 3.3, 1.1));
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000096
97var o = {};
98o.valueOf = function() { return 3; };
99assertEquals(3, Math.max(2, '3', 1));
100assertEquals(3, Math.max(1, o, 2));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000101assertEquals(3, Math.max(o, 1));
102assertEquals(Infinity, Infinity / Math.max(-0, +0));
103assertEquals(Infinity, Infinity / Math.max(+0, -0));
104assertEquals(Infinity, Infinity / Math.max(+0, -0, -1));
105assertEquals(Infinity, Infinity / Math.max(-0, ZERO));
106assertEquals(Infinity, Infinity / Math.max(ZERO, -0));
107assertEquals(Infinity, Infinity / Math.max(ZERO, -0, -1));
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +0000108assertEquals(1, Math.max(+0, -0, +1));
109assertEquals(1, Math.max(+1, +0, -0));
110assertEquals(1, Math.max(+0, +1, -0));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000111assertEquals(1, Math.max(-0, +1, +0));
danno@chromium.org160a7b02011-04-18 15:51:38 +0000112assertEquals(NaN, Math.max('oxen'));
113assertEquals(NaN, Math.max('oxen', 1));
114assertEquals(NaN, Math.max(1, 'oxen'));
kmillikin@chromium.org13bd2942009-12-16 15:36:05 +0000115
116assertEquals(Infinity, 1/Math.max(ZERO, -0));
117assertEquals(Infinity, 1/Math.max(-0, ZERO));