test/script/basic/JDK-8145550.js

Thu, 17 Dec 2015 20:04:46 +0530

author
sundar
date
Thu, 17 Dec 2015 20:04:46 +0530
changeset 1647
fa7dce1af94e
permissions
-rw-r--r--

8145550: Megamorphic invoke should use CompiledFunction variants without any LinkLogic
Reviewed-by: jlaskey, hannesw, attila

sundar@1647 1 /*
sundar@1647 2 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
sundar@1647 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
sundar@1647 4 *
sundar@1647 5 * This code is free software; you can redistribute it and/or modify it
sundar@1647 6 * under the terms of the GNU General Public License version 2 only, as
sundar@1647 7 * published by the Free Software Foundation.
sundar@1647 8 *
sundar@1647 9 * This code is distributed in the hope that it will be useful, but WITHOUT
sundar@1647 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
sundar@1647 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
sundar@1647 12 * version 2 for more details (a copy is included in the LICENSE file that
sundar@1647 13 * accompanied this code).
sundar@1647 14 *
sundar@1647 15 * You should have received a copy of the GNU General Public License version
sundar@1647 16 * 2 along with this work; if not, write to the Free Software Foundation,
sundar@1647 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
sundar@1647 18 *
sundar@1647 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
sundar@1647 20 * or visit www.oracle.com if you need additional information or have any
sundar@1647 21 * questions.
sundar@1647 22 */
sundar@1647 23
sundar@1647 24 /**
sundar@1647 25 * JDK-8141537: Megamorphic invoke should use CompiledFunction variants without any LinkLogic
sundar@1647 26 *
sundar@1647 27 * @test
sundar@1647 28 * @option -Dnashorn.unstable.relink.threshold=1
sundar@1647 29 * @fork
sundar@1647 30 * @run
sundar@1647 31 */
sundar@1647 32
sundar@1647 33 load(__DIR__ + "NASHORN-421.js")

mercurial