hotspot/build/sa.files
author ysr
Sun, 16 Mar 2008 21:57:25 -0700
changeset 341 6578aad59716
parent 1 489c9b5090e2
permissions -rw-r--r--
6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction Summary: The option CMSInitiatingPermOccupancyFraction now controls perm triggering threshold. Even though the actual value of the threshold has not yet been changed, so there is no change in policy, we now have the infrastructure in place for dynamically deciding when to collect the perm gen, an issue that will be addressed in the near future. Reviewed-by: jmasa
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 2003-2006 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
# This filelist macro is included in platform specific sa.make
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# included all packages/*.java. package list can be generated by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
# $(GAMMADIR)/agent/make/build-pkglist. Then manually removed all 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
# classes in sun.jvm.hotspot.ui (and subpackages),  all ui classes 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
# in sun.jvm.hotspot.bugspot/hotspot and SPARC and x86 disassembler 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
# classes and sun.jvm.hotspot.utilities.soql.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
# define AGENT_DIR before including this file in sa.make
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
AGENT_SRC_DIR = $(AGENT_DIR)/src/share/classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
AGENT_ALLFILES = \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
$(AGENT_SRC_DIR)/sun/jvm/hotspot/DebugServer.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
$(AGENT_SRC_DIR)/sun/jvm/hotspot/HelloWorld.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
$(AGENT_SRC_DIR)/sun/jvm/hotspot/HotSpotAgent.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
$(AGENT_SRC_DIR)/sun/jvm/hotspot/HotSpotSolarisVtblAccess.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
$(AGENT_SRC_DIR)/sun/jvm/hotspot/HotSpotTypeDataBase.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
$(AGENT_SRC_DIR)/sun/jvm/hotspot/LinuxVtblAccess.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
$(AGENT_SRC_DIR)/sun/jvm/hotspot/ObjectHistogram.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
$(AGENT_SRC_DIR)/sun/jvm/hotspot/RMIHelper.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
$(AGENT_SRC_DIR)/sun/jvm/hotspot/StackTrace.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
$(AGENT_SRC_DIR)/sun/jvm/hotspot/TestDebugger.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
$(AGENT_SRC_DIR)/sun/jvm/hotspot/Win32VtblAccess.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/Immediate.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/ImmediateOrRegister.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/Operand.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/Register.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/amd64/AMD64Register.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/amd64/AMD64Registers.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/ia64/IA64Register.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/ia64/IA64Registers.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/sparc/SPARCArgument.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/sparc/SPARCRegister.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/sparc/SPARCRegisterType.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/sparc/SPARCRegisters.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/x86/X86Register.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/x86/X86RegisterPart.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/x86/X86Registers.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/x86/X86SegmentRegister.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
$(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/x86/X86SegmentRegisters.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
$(AGENT_SRC_DIR)/sun/jvm/hotspot/bugspot/BugSpotAgent.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
$(AGENT_SRC_DIR)/sun/jvm/hotspot/c1/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
$(AGENT_SRC_DIR)/sun/jvm/hotspot/code/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
$(AGENT_SRC_DIR)/sun/jvm/hotspot/compiler/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/cdbg/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/cdbg/basic/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/cdbg/basic/x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/cdbg/basic/amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/dbx/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/dbx/sparc/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/dbx/x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/dummy/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/ia64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/linux/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/linux/amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/linux/ia64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/linux/x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/linux/sparc/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/posix/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/posix/elf/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/proc/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/proc/amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/proc/sparc/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/proc/x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/remote/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/remote/amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/remote/sparc/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/remote/x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/sparc/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/win32/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/win32/coff/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/windbg/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/windbg/amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/windbg/ia64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/windbg/x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
$(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
$(AGENT_SRC_DIR)/sun/jvm/hotspot/gc_implementation/parallelScavenge/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
$(AGENT_SRC_DIR)/sun/jvm/hotspot/gc_implementation/shared/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
$(AGENT_SRC_DIR)/sun/jvm/hotspot/gc_interface/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
$(AGENT_SRC_DIR)/sun/jvm/hotspot/interpreter/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
$(AGENT_SRC_DIR)/sun/jvm/hotspot/jdi/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
$(AGENT_SRC_DIR)/sun/jvm/hotspot/livejvm/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
$(AGENT_SRC_DIR)/sun/jvm/hotspot/memory/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
$(AGENT_SRC_DIR)/sun/jvm/hotspot/oops/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/ia64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_ia64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_sparc/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/posix/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/solaris_amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/solaris_sparc/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/solaris_x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/sparc/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/win32_amd64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/win32_ia64/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/win32_x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
$(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/x86/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
$(AGENT_SRC_DIR)/sun/jvm/hotspot/tools/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
$(AGENT_SRC_DIR)/sun/jvm/hotspot/tools/jcore/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
$(AGENT_SRC_DIR)/sun/jvm/hotspot/types/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
$(AGENT_SRC_DIR)/sun/jvm/hotspot/types/basic/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
$(AGENT_SRC_DIR)/sun/jvm/hotspot/utilities/*.java \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
$(AGENT_SRC_DIR)/sun/jvm/hotspot/utilities/memo/*.java \