| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 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 // | 28 // |
| 29 // A number of hydrogen instructions did not correctly compare its | 29 // A number of hydrogen instructions did not correctly compare its |
| 30 // data during GVN. | 30 // data during GVN. |
| 31 // | 31 // |
| 32 // Flags: --allow-natives-syntax | 32 // Flags: --allow-natives-syntax |
| 33 | 33 |
| 34 // HHasInstance. | 34 // HHasInstance. |
| 35 function f(value) { | 35 function f(value) { |
| 36 if (%_IsSpecObject(value)) { | 36 if (%_IsJSReceiver(value)) { |
| 37 if ((%_IsArray(value))) assertTrue(false); | 37 if ((%_IsArray(value))) assertTrue(false); |
| 38 } | 38 } |
| 39 } | 39 } |
| 40 f(new String("bar")); | 40 f(new String("bar")); |
| 41 | 41 |
| 42 // HClassOf. | 42 // HClassOf. |
| 43 function g(value) { | 43 function g(value) { |
| 44 if (%_ClassOf(value) === 'Date') { | 44 if (%_ClassOf(value) === 'Date') { |
| 45 if (%_ClassOf(value) === 'String') assertTrue(false); | 45 if (%_ClassOf(value) === 'String') assertTrue(false); |
| 46 } | 46 } |
| 47 } | 47 } |
| 48 g(new Date()); | 48 g(new Date()); |
| 49 | 49 |
| 50 // HIsNull. | 50 // HIsNull. |
| 51 function h(value) { | 51 function h(value) { |
| 52 if (value == null) { | 52 if (value == null) { |
| 53 if (value === null) assertTrue(false); | 53 if (value === null) assertTrue(false); |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 h(undefined); | 56 h(undefined); |
| OLD | NEW |