hotspot/make/jprt.properties
author kvn
Tue, 11 Mar 2008 19:00:38 -0700
changeset 218 a0e996680b05
parent 1 489c9b5090e2
child 338 5cf9f61d76f4
permissions -rw-r--r--
6667615: (Escape Analysis) extend MDO to cache arguments escape state Summary: Use MDO to cache arguments escape state determined by the byte code escape analyzer. Reviewed-by: never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
# Copyright 2006-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
# CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
# have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
#  
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# Properties for jprt
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
JPRT.tools.default.release=jdk1.7.0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
# Build result bundles are not partial builds| but include everything
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
JPRT.need.sibling.build=false
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
# Standard list of JPRT build targets for this workspace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
JPRT.build.targets= \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    solaris_sparc_5.10-{product|fastdebug|debug}, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
    solaris_sparcv9_5.10-{product|fastdebug|debug}, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    solaris_i586_5.10-{product|fastdebug|debug}, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    solaris_x64_5.10-{product|fastdebug|debug}, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    linux_i586-{product|fastdebug|debug}, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    linux_x64-{product|fastdebug}, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    windows_i586-{product|fastdebug|debug}, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    windows_x64-{product|fastdebug|debug}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
# Standard list of JPRT test targets for this workspace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
JPRT.test.targets = \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-jvm98, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-scimark, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    solaris_sparcv9_5.10-{product|fastdebug}-c2-jvm98, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    solaris_sparcv9_5.10-{product|fastdebug}-c2-scimark, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    solaris_i586_5.10-{product|fastdebug}-{c1|c2}-jvm98, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    solaris_i586_5.10-{product|fastdebug}-{c1|c2}-scimark, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    solaris_x64_5.10-{product|fastdebug}-c2-jvm98, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    solaris_x64_5.10-{product|fastdebug}-c2-scimark, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    linux_i586-{product|fastdebug}-{c1|c2}-jvm98, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    linux_i586-{product|fastdebug}-{c1|c2}-scimark, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    linux_x64-{product|fastdebug}-c2-jvm98, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    linux_x64-{product|fastdebug}-c2-scimark, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    windows_i586-{product|fastdebug}-{c1|c2}-jvm98, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    windows_i586-{product|fastdebug}-{c1|c2}-scimark, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    windows_x64-{product|fastdebug}-c2-jvm98, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    windows_x64-{product|fastdebug}-c2-scimark, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    solaris_sparc_5.10-product-{c1|c2}-runThese, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    solaris_sparc_5.10-product-{c1|c2}-runThese_Xcomp, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    solaris_sparc_5.10-product-{c1|c2}-runThese_Xcomp_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    solaris_sparc_5.10-product-{c1|c2}-runThese_Xcomp_3, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    solaris_sparc_5.10-fastdebug-c1-runThese_Xshare, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_default_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCBasher_CMS_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCOld_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCOld_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCOld_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCOld_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-GCOld_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-jbb_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-jbb_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-jbb_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-jbb_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-scimark_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    solaris_sparc_5.10-{product|fastdebug}-{c1|c2}-scimark_3, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    solaris_sparcv9_5.10-product-c2-runThese, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    solaris_sparcv9_5.10-product-c2-runThese_Xcomp, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    solaris_sparcv9_5.10-product-c2-runThese_Xcomp_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    solaris_sparcv9_5.10-product-c2-runThese_Xcomp_3, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_default_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_SerialGC_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_ParallelGC_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_ParNewGC_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCBasher_CMS_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    solaris_sparcv9_5.10-{product|fastdebug}-c2-GCOld_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    solaris_sparcv9_5.10-{product|fastdebug}-c2-jbb_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    solaris_sparcv9_5.10-{product|fastdebug}-c2-scimark_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    solaris_sparcv9_5.10-{product|fastdebug}-c2-scimark_3, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    solaris_x64-product-c2-runThese, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    solaris_x64-product-c2-runThese_Xcomp, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    solaris_x64-{product|fastdebug}-c2-GCBasher_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    solaris_x64-{product|fastdebug}-c2-GCBasher_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    solaris_x64-{product|fastdebug}-c2-GCBasher_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    solaris_x64-{product|fastdebug}-c2-GCBasher_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    solaris_x64-{product|fastdebug}-c2-GCBasher_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    solaris_x64-{product|fastdebug}-c2-GCBasher_default_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    solaris_x64-{product|fastdebug}-c2-GCBasher_SerialGC_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    solaris_x64-{product|fastdebug}-c2-GCBasher_ParallelGC_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    solaris_x64-{product|fastdebug}-c2-GCBasher_ParNewGC_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    solaris_x64-{product|fastdebug}-c2-GCBasher_CMS_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    solaris_x64-{product|fastdebug}-c2-GCOld_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    solaris_x64-{product|fastdebug}-c2-GCOld_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    solaris_x64-{product|fastdebug}-c2-GCOld_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    solaris_x64-{product|fastdebug}-c2-GCOld_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    solaris_x64-{product|fastdebug}-c2-GCOld_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    solaris_x64-{product|fastdebug}-c2-jbb_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    solaris_x64-{product|fastdebug}-c2-jbb_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    solaris_x64-{product|fastdebug}-c2-jbb_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    solaris_x64-{product|fastdebug}-c2-jbb_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    solaris_i586_5.10-product-{c1|c2}-runThese_Xcomp, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    solaris_i586_5.10-product-c2-runThese_Xcomp_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    solaris_i586_5.10-fastdebug-c1-runThese_Xcomp_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    solaris_i586_5.10-fastdebug-c1-runThese_Xshare, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    solaris_i586_5.10-product-c1-GCBasher_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    solaris_i586_5.10-product-c1-GCBasher_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    solaris_i586_5.10-product-c1-GCBasher_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    solaris_i586_5.10-product-c1-GCBasher_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    solaris_i586_5.10-product-c1-GCBasher_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    solaris_i586_5.10-fastdebug-c2-GCBasher_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    solaris_i586_5.10-fastdebug-c2-GCBasher_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    solaris_i586_5.10-fastdebug-c2-GCBasher_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    solaris_i586_5.10-fastdebug-c2-GCBasher_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    solaris_i586_5.10-fastdebug-c2-GCBasher_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    solaris_i586_5.10-product-c1-GCOld_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    solaris_i586_5.10-product-c1-GCOld_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    solaris_i586_5.10-product-c1-GCOld_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    solaris_i586_5.10-product-c1-GCOld_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    solaris_i586_5.10-product-c1-GCOld_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    solaris_i586_5.10-fastdebug-c2-jbb_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    solaris_i586_5.10-fastdebug-c2-jbb_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    solaris_i586_5.10-fastdebug-c2-jbb_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    solaris_i586_5.10-{product|fastdebug}-{c1|c2}-scimark_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    solaris_i586_5.10-{product|fastdebug}-{c1|c2}-scimark_3, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    linux_i586-product-c1-runThese_Xcomp, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    linux_i586-product-c1-runThese_Xcomp_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    linux_i586-product-c1-runThese_Xcomp_3, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    linux_i586-fastdebug-c1-runThese_Xshare, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    linux_i586-fastdebug-c2-runThese_Xcomp, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    linux_i586-fastdebug-c2-runThese_Xcomp_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    linux_i586-{product|fastdebug}-{c1|c2}-GCBasher_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    linux_i586-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    linux_i586-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    linux_i586-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    linux_i586-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    linux_i586-product-{c1|c2}-GCOld_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    linux_i586-product-{c1|c2}-GCOld_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    linux_i586-product-{c1|c2}-GCOld_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    linux_i586-product-{c1|c2}-GCOld_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    linux_i586-product-{c1|c2}-GCOld_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    linux_i586-{product|fastdebug}-c1-jbb_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    linux_i586-{product|fastdebug}-c1-jbb_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    linux_i586-{product|fastdebug}-c1-jbb_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    linux_i586-{product|fastdebug}-c2-scimark_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    linux_i586-{product|fastdebug}-c2-scimark_3, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    linux_x64-{product|fastdebug}-c2-GCBasher_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    linux_x64-{product|fastdebug}-c2-GCBasher_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    linux_x64-{product|fastdebug}-c2-GCBasher_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    linux_x64-{product|fastdebug}-c2-GCBasher_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    linux_x64-{product|fastdebug}-c2-GCBasher_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    linux_x64-{product|fastdebug}-c2-GCOld_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    linux_x64-{product|fastdebug}-c2-GCOld_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    linux_x64-{product|fastdebug}-c2-GCOld_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    linux_x64-{product|fastdebug}-c2-GCOld_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    linux_x64-{product|fastdebug}-c2-GCOld_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    linux_x64-{product|fastdebug}-c2-jbb_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    linux_x64-{product|fastdebug}-c2-jbb_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    linux_x64-{product|fastdebug}-c2-scimark_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    linux_x64-{product|fastdebug}-c2-scimark_3, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    windows_i586-product-{c1|c2}-runThese, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    windows_i586-product-{c1|c2}-runThese_Xcomp, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    windows_i586-fastdebug-c1-runThese_Xshare, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    windows_i586-{product|fastdebug}-{c1|c2}-GCBasher_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    windows_i586-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    windows_i586-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    windows_i586-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    windows_i586-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    windows_i586-product-{c1|c2}-GCOld_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    windows_i586-product-{c1|c2}-GCOld_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    windows_i586-product-{c1|c2}-GCOld_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    windows_i586-product-{c1|c2}-GCOld_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    windows_i586-product-{c1|c2}-GCOld_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    windows_i586-{product|fastdebug}-{c1|c2}-jbb_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    windows_i586-product-{c1|c2}-jbb_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    windows_i586-product-{c1|c2}-jbb_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    windows_i586-product-{c1|c2}-scimark_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    windows_i586-product-{c1|c2}-scimark_3, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    windows_x64-product-c2-runThese, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    windows_x64-product-c2-runThese_Xcomp, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    windows_x64-{product|fastdebug}-c2-GCBasher_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    windows_x64-{product|fastdebug}-c2-GCBasher_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    windows_x64-{product|fastdebug}-c2-GCBasher_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    windows_x64-{product|fastdebug}-c2-GCBasher_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    windows_x64-{product|fastdebug}-c2-GCBasher_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    windows_x64-{product|fastdebug}-c2-GCOld_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    windows_x64-{product|fastdebug}-c2-GCOld_SerialGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    windows_x64-{product|fastdebug}-c2-GCOld_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    windows_x64-{product|fastdebug}-c2-GCOld_ParNewGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    windows_x64-{product|fastdebug}-c2-GCOld_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    windows_x64-{product|fastdebug}-c2-jbb_default, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    windows_x64-product-c2-jbb_CMS, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    windows_x64-product-c2-jbb_ParallelGC, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    windows_x64-{product|fastdebug}-c2-scimark_2, \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    windows_x64-{product|fastdebug}-c2-scimark_3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227