author | martin |
Wed, 10 Dec 2014 09:23:00 -0800 | |
changeset 28057 | 1a47ceecdba5 |
parent 24778 | 2ff5d7041566 |
permissions | -rw-r--r-- |
23083
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
1 |
/* |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
2 |
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
23083
diff
changeset
|
4 |
* |
23083
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
23083
diff
changeset
|
8 |
* |
23083
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
13 |
* accompanied this code). |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
23083
diff
changeset
|
14 |
* |
23083
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
24778
2ff5d7041566
8044638: Tidy up Nashorn codebase for code standards
attila
parents:
23083
diff
changeset
|
18 |
* |
23083
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
21 |
* questions. |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
22 |
*/ |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
23 |
|
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
24 |
|
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
25 |
/** |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
26 |
* JDK-8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
27 |
* |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
28 |
* @test |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
29 |
* @run |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
30 |
*/ |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
31 |
|
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
32 |
function str(n) { |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
33 |
var a = new Uint8Array(new Float64Array([n]).buffer); |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
34 |
return Array.apply(null, a).reduceRight( |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
35 |
function(acc, v){ |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
36 |
return acc + (v < 10 ? "0" : "") + v.toString(16); |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
37 |
}, ""); |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
38 |
} |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
39 |
|
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
40 |
var o = Object.defineProperty({}, "NaN", { value: NaN }) |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
41 |
var str1 = str(o.NaN); |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
42 |
Object.defineProperty(o, "NaN", { value: 0/0 }) |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
43 |
var str2 = str(o.NaN); |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
44 |
if (str1 != str2) { |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
45 |
fail("NaN bit pattern changed"); |
8c74590d5df1
8030197: Nashorn: Object.defineProperty() can be lured to change fixed NaN property
sundar
parents:
diff
changeset
|
46 |
} |