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

Side by Side Diff: test/mjsunit/regress/regress-674753.js

Issue 1898653003: [turbofan] Optimize typeof in abstract/strict equality comparison. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « src/compiler/verifier.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution. 11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its 12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived 13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission. 14 // from this software without specific prior written permission.
15 // 15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 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. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 // Flags: --allow-natives-syntax
29
30 var undetectable = %GetUndetectable();
31
28 // Number 32 // Number
29 assertTrue(typeof 0 == 'number'); 33 assertTrue(typeof 0 == 'number');
30 assertTrue(typeof 0 === 'number'); 34 assertTrue(typeof 0 === 'number');
35 assertFalse(typeof 0 != 'number');
36 assertFalse(typeof 0 !== 'number');
31 assertTrue(typeof 1.2 == 'number'); 37 assertTrue(typeof 1.2 == 'number');
32 assertTrue(typeof 1.2 === 'number'); 38 assertTrue(typeof 1.2 === 'number');
39 assertFalse(typeof 1.2 != 'number');
40 assertFalse(typeof 1.2 !== 'number');
41 assertTrue(typeof 'x' != 'number');
42 assertTrue(typeof 'x' !== 'number');
33 assertFalse(typeof 'x' == 'number'); 43 assertFalse(typeof 'x' == 'number');
34 assertFalse(typeof 'x' === 'number'); 44 assertFalse(typeof 'x' === 'number');
45 assertTrue(typeof Object() != 'number');
46 assertTrue(typeof Object() !== 'number');
47 assertFalse(typeof Object() == 'number');
48 assertFalse(typeof Object() === 'number');
35 49
36 // String 50 // String
37 assertTrue(typeof 'x' == 'string'); 51 assertTrue(typeof 'x' == 'string');
38 assertTrue(typeof 'x' === 'string'); 52 assertTrue(typeof 'x' === 'string');
53 assertFalse(typeof 'x' != 'string');
54 assertFalse(typeof 'x' !== 'string');
39 assertTrue(typeof ('x' + 'x') == 'string'); 55 assertTrue(typeof ('x' + 'x') == 'string');
40 assertTrue(typeof ('x' + 'x') === 'string'); 56 assertTrue(typeof ('x' + 'x') === 'string');
57 assertFalse(typeof ('x' + 'x') != 'string');
58 assertFalse(typeof ('x' + 'x') !== 'string');
59 assertTrue(typeof 1 != 'string');
60 assertTrue(typeof 1 !== 'string');
41 assertFalse(typeof 1 == 'string'); 61 assertFalse(typeof 1 == 'string');
42 assertFalse(typeof 1 === 'string'); 62 assertFalse(typeof 1 === 'string');
63 assertTrue(typeof Object() != 'string');
64 assertTrue(typeof Object() !== 'string');
43 assertFalse(typeof Object() == 'string'); 65 assertFalse(typeof Object() == 'string');
44 assertFalse(typeof Object() === 'string'); 66 assertFalse(typeof Object() === 'string');
45 67
46 // Boolean 68 // Boolean
47 assertTrue(typeof true == 'boolean'); 69 assertTrue(typeof true == 'boolean');
48 assertTrue(typeof true === 'boolean'); 70 assertTrue(typeof true === 'boolean');
71 assertFalse(typeof true != 'boolean');
72 assertFalse(typeof true !== 'boolean');
49 assertTrue(typeof false == 'boolean'); 73 assertTrue(typeof false == 'boolean');
50 assertTrue(typeof false === 'boolean'); 74 assertTrue(typeof false === 'boolean');
75 assertFalse(typeof false != 'boolean');
76 assertFalse(typeof false !== 'boolean');
77 assertTrue(typeof 1 != 'boolean');
78 assertTrue(typeof 1 !== 'boolean');
51 assertFalse(typeof 1 == 'boolean'); 79 assertFalse(typeof 1 == 'boolean');
52 assertFalse(typeof 1 === 'boolean'); 80 assertFalse(typeof 1 === 'boolean');
81 assertTrue(typeof 'x' != 'boolean');
82 assertTrue(typeof 'x' !== 'boolean');
83 assertFalse(typeof 'x' == 'boolean');
84 assertFalse(typeof 'x' === 'boolean');
85 assertTrue(typeof Object() != 'boolean');
86 assertTrue(typeof Object() !== 'boolean');
53 assertFalse(typeof Object() == 'boolean'); 87 assertFalse(typeof Object() == 'boolean');
54 assertFalse(typeof Object() === 'boolean'); 88 assertFalse(typeof Object() === 'boolean');
55 89
56 // Undefined 90 // Undefined
57 assertTrue(typeof void 0 == 'undefined'); 91 assertTrue(typeof void 0 == 'undefined');
58 assertTrue(typeof void 0 === 'undefined'); 92 assertTrue(typeof void 0 === 'undefined');
93 assertFalse(typeof void 0 != 'undefined');
94 assertFalse(typeof void 0 !== 'undefined');
95 assertTrue(typeof 1 != 'undefined');
96 assertTrue(typeof 1 !== 'undefined');
59 assertFalse(typeof 1 == 'undefined'); 97 assertFalse(typeof 1 == 'undefined');
60 assertFalse(typeof 1 === 'undefined'); 98 assertFalse(typeof 1 === 'undefined');
99 assertTrue(typeof null != 'undefined');
100 assertTrue(typeof null !== 'undefined');
101 assertFalse(typeof null == 'undefined');
102 assertFalse(typeof null === 'undefined');
103 assertTrue(typeof Object() != 'undefined');
104 assertTrue(typeof Object() !== 'undefined');
61 assertFalse(typeof Object() == 'undefined'); 105 assertFalse(typeof Object() == 'undefined');
62 assertFalse(typeof Object() === 'undefined'); 106 assertFalse(typeof Object() === 'undefined');
107 assertTrue(typeof undetectable == 'undefined');
108 assertTrue(typeof undetectable === 'undefined');
109 assertFalse(typeof undetectable != 'undefined');
110 assertFalse(typeof undetectable !== 'undefined');
63 111
64 // Function 112 // Function
65 assertTrue(typeof Object == 'function'); 113 assertTrue(typeof Object == 'function');
66 assertTrue(typeof Object === 'function'); 114 assertTrue(typeof Object === 'function');
115 assertFalse(typeof Object != 'function');
116 assertFalse(typeof Object !== 'function');
117 assertTrue(typeof 1 != 'function');
118 assertTrue(typeof 1 !== 'function');
67 assertFalse(typeof 1 == 'function'); 119 assertFalse(typeof 1 == 'function');
68 assertFalse(typeof 1 === 'function'); 120 assertFalse(typeof 1 === 'function');
121 assertTrue(typeof Object() != 'function');
122 assertTrue(typeof Object() !== 'function');
69 assertFalse(typeof Object() == 'function'); 123 assertFalse(typeof Object() == 'function');
70 assertFalse(typeof Object() === 'function'); 124 assertFalse(typeof Object() === 'function');
125 assertTrue(typeof undetectable != 'function');
126 assertTrue(typeof undetectable !== 'function');
127 assertFalse(typeof undetectable == 'function');
128 assertFalse(typeof undetectable === 'function');
71 129
72 // Object 130 // Object
73 assertTrue(typeof Object() == 'object'); 131 assertTrue(typeof Object() == 'object');
74 assertTrue(typeof Object() === 'object'); 132 assertTrue(typeof Object() === 'object');
133 assertFalse(typeof Object() != 'object');
134 assertFalse(typeof Object() !== 'object');
75 assertTrue(typeof new String('x') == 'object'); 135 assertTrue(typeof new String('x') == 'object');
76 assertTrue(typeof new String('x') === 'object'); 136 assertTrue(typeof new String('x') === 'object');
137 assertFalse(typeof new String('x') != 'object');
138 assertFalse(typeof new String('x') !== 'object');
77 assertTrue(typeof ['x'] == 'object'); 139 assertTrue(typeof ['x'] == 'object');
78 assertTrue(typeof ['x'] === 'object'); 140 assertTrue(typeof ['x'] === 'object');
141 assertFalse(typeof ['x'] != 'object');
142 assertFalse(typeof ['x'] !== 'object');
79 assertTrue(typeof null == 'object'); 143 assertTrue(typeof null == 'object');
80 assertTrue(typeof null === 'object'); 144 assertTrue(typeof null === 'object');
145 assertFalse(typeof null != 'object');
146 assertFalse(typeof null !== 'object');
147 assertTrue(typeof 1 != 'object');
148 assertTrue(typeof 1 !== 'object');
81 assertFalse(typeof 1 == 'object'); 149 assertFalse(typeof 1 == 'object');
82 assertFalse(typeof 1 === 'object'); 150 assertFalse(typeof 1 === 'object');
151 assertTrue(typeof 'x' != 'object');
152 assertTrue(typeof 'x' !== 'object');
83 assertFalse(typeof 'x' == 'object'); // bug #674753 153 assertFalse(typeof 'x' == 'object'); // bug #674753
84 assertFalse(typeof 'x' === 'object'); 154 assertFalse(typeof 'x' === 'object');
155 assertTrue(typeof Object != 'object');
156 assertTrue(typeof Object !== 'object');
85 assertFalse(typeof Object == 'object'); 157 assertFalse(typeof Object == 'object');
86 assertFalse(typeof Object === 'object'); 158 assertFalse(typeof Object === 'object');
159 assertTrue(typeof undetectable != 'object');
160 assertTrue(typeof undetectable !== 'object');
161 assertFalse(typeof undetectable == 'object');
162 assertFalse(typeof undetectable === 'object');
OLDNEW
« no previous file with comments | « src/compiler/verifier.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698