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

Side by Side Diff: test/mjsunit/constant-fold-control-instructions.js

Issue 2591923003: [regexp] Remove IsRegExp intrinsic (Closed)
Patch Set: Rebase Created 3 years, 11 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --allow-natives-syntax --fold-constants 5 // Flags: --allow-natives-syntax --fold-constants
6 6
7 function test() { 7 function test() {
8 assertEquals("string", typeof ""); 8 assertEquals("string", typeof "");
9 assertEquals("number", typeof 1.1); 9 assertEquals("number", typeof 1.1);
10 assertEquals("number", typeof 1); 10 assertEquals("number", typeof 1);
11 assertEquals("boolean", typeof true); 11 assertEquals("boolean", typeof true);
12 assertEquals("function", typeof function() {}); 12 assertEquals("function", typeof function() {});
13 assertEquals("object", typeof null); 13 assertEquals("object", typeof null);
14 assertEquals("object", typeof {}); 14 assertEquals("object", typeof {});
15 assertEquals("object", typeof /regex/); 15 assertEquals("object", typeof /regex/);
16 16
17 assertTrue(%_IsSmi(1)); 17 assertTrue(%_IsSmi(1));
18 assertFalse(%_IsSmi(1.1)); 18 assertFalse(%_IsSmi(1.1));
19 assertFalse(%_IsSmi({})); 19 assertFalse(%_IsSmi({}));
20 20
21 assertTrue(%_IsRegExp(/regexp/));
22 assertFalse(%_IsRegExp({}));
23
24 assertTrue(%_IsArray([1])); 21 assertTrue(%_IsArray([1]));
25 assertFalse(%_IsArray(function() {})); 22 assertFalse(%_IsArray(function() {}));
26 23
27 assertTrue(%_IsJSReceiver(new Date())); 24 assertTrue(%_IsJSReceiver(new Date()));
28 assertFalse(%_IsJSReceiver(1)); 25 assertFalse(%_IsJSReceiver(1));
29 } 26 }
30 27
31 28
32 test(); 29 test();
33 test(); 30 test();
34 %OptimizeFunctionOnNextCall(test); 31 %OptimizeFunctionOnNextCall(test);
35 test(); 32 test();
OLDNEW
« no previous file with comments | « test/cctest/interpreter/test-interpreter-intrinsics.cc ('k') | test/unittests/compiler/js-intrinsic-lowering-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698