nashorn/test/script/basic/es6/JDK-8168373.js
author attila
Fri, 11 Nov 2016 15:50:51 +0100
changeset 41981 10375379aeac
child 45033 0a226c99bb5a
permissions -rw-r--r--
8168373: don't emit conversions for symbols outside their lexical scope Reviewed-by: hannesw, sundar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41981
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
     1
/*
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
     2
 * Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
     4
 * 
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
     7
 * published by the Free Software Foundation.
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
     8
 * 
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    13
 * accompanied this code).
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    14
 * 
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    18
 * 
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    21
 * questions.
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    22
 */
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    23
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    24
/**
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    25
 * JDK-8168373: don't emit conversions for symbols outside their lexical scope
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    26
 *
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    27
 * @test
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    28
 * @run
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    29
 * @option --language=es6
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    30
 */
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    31
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    32
function p() { return false } // "predicate"
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    33
function r(x) { return x } // "read"
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    34
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    35
(function() {
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    36
  try { // Try creates control flow edges from assignments into catch blocks.
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    37
    // Lexically scoped, never read int variable (undefined at catch block) but still with a cf edge into catch block.
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    38
    // Since it's never read, it's not written either (Nashorn optimizes some dead writes).
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    39
    let x = 0; 
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    40
    if (p()) { throw {}; } // We need `p()` so this block doesn't get optimized away, for possibility of a `throw` 
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    41
    x = 0.0; // change the type of x to double
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    42
    r(x); // read x otherwise it's optimized away
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    43
  } catch (e) {} // under the bug, "throw" will try to widen unwritten int x to double for here and cause a verifier error
10375379aeac 8168373: don't emit conversions for symbols outside their lexical scope
attila
parents:
diff changeset
    44
})()