Merge

Mon, 16 Sep 2013 13:32:44 +0200

author
tschatzl
date
Mon, 16 Sep 2013 13:32:44 +0200
changeset 5712
f9b58dbeab91
parent 5710
884ed7a10f09
parent 5711
23ae5a04724d
child 5713
17deed6716af
child 5714
5767996b7b7b

Merge

     1.1 --- a/src/share/vm/memory/universe.cpp	Mon Sep 16 09:41:03 2013 +0200
     1.2 +++ b/src/share/vm/memory/universe.cpp	Mon Sep 16 13:32:44 2013 +0200
     1.3 @@ -881,7 +881,7 @@
     1.4  
     1.5    bool use_large_pages = UseLargePages && is_size_aligned(alignment, os::large_page_size());
     1.6    assert(!UseLargePages
     1.7 -      || UseParallelOldGC
     1.8 +      || UseParallelGC
     1.9        || use_large_pages, "Wrong alignment to use large pages");
    1.10  
    1.11    char* addr = Universe::preferred_heap_base(total_reserved, alignment, Universe::UnscaledNarrowOop);
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/test/gc/arguments/TestAlignmentToUseLargePages.java	Mon Sep 16 13:32:44 2013 +0200
     2.3 @@ -0,0 +1,47 @@
     2.4 +/*
     2.5 + * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
     2.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     2.7 + *
     2.8 + * This code is free software; you can redistribute it and/or modify it
     2.9 + * under the terms of the GNU General Public License version 2 only, as
    2.10 + * published by the Free Software Foundation.
    2.11 + *
    2.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
    2.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    2.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    2.15 + * version 2 for more details (a copy is included in the LICENSE file that
    2.16 + * accompanied this code).
    2.17 + *
    2.18 + * You should have received a copy of the GNU General Public License version
    2.19 + * 2 along with this work; if not, write to the Free Software Foundation,
    2.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2.21 + *
    2.22 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    2.23 + * or visit www.oracle.com if you need additional information or have any
    2.24 + * questions.
    2.25 + */
    2.26 +
    2.27 +/**
    2.28 + * @test TestAlignmentToUseLargePages
    2.29 + * @summary All parallel GC variants may use large pages without the requirement that the
    2.30 + * heap alignment is large page aligned. Other collectors also need to start up with odd sized heaps.
    2.31 + * @bug 8024396
    2.32 + * @key gc
    2.33 + * @key regression
    2.34 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseParallelGC -XX:-UseParallelOldGC -XX:+UseLargePages TestAlignmentToUseLargePages
    2.35 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseParallelGC -XX:-UseParallelOldGC -XX:-UseLargePages TestAlignmentToUseLargePages
    2.36 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseParallelGC -XX:+UseParallelOldGC -XX:+UseLargePages TestAlignmentToUseLargePages
    2.37 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseParallelGC -XX:+UseParallelOldGC -XX:-UseLargePages TestAlignmentToUseLargePages
    2.38 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseSerialGC -XX:+UseLargePages TestAlignmentToUseLargePages
    2.39 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseSerialGC -XX:-UseLargePages TestAlignmentToUseLargePages
    2.40 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseConcMarkSweepGC -XX:+UseLargePages TestAlignmentToUseLargePages
    2.41 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseConcMarkSweepGC -XX:-UseLargePages TestAlignmentToUseLargePages
    2.42 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseG1GC -XX:+UseLargePages TestAlignmentToUseLargePages
    2.43 + * @run main/othervm -Xms7M -Xmx9M -XX:+UseG1GC -XX:-UseLargePages TestAlignmentToUseLargePages
    2.44 + */
    2.45 +
    2.46 +public class TestAlignmentToUseLargePages {
    2.47 +  public static void main(String args[]) throws Exception {
    2.48 +    // nothing to do
    2.49 +  }
    2.50 +}

mercurial