make/windows/makefiles/projectcreator.make

Thu, 06 Jan 2011 20:10:19 -0800

author
cl
date
Thu, 06 Jan 2011 20:10:19 -0800
changeset 2385
09d92cbb793b
parent 2369
aa6e219afbf1
child 2540
15d6977f04b0
permissions
-rw-r--r--

Added tag jdk7-b124 for changeset 0a8e0d4345b3

     1 #
     2 # Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.
     8 #
     9 # This code is distributed in the hope that it will be useful, but WITHOUT
    10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12 # version 2 for more details (a copy is included in the LICENSE file that
    13 # accompanied this code).
    14 #
    15 # You should have received a copy of the GNU General Public License version
    16 # 2 along with this work; if not, write to the Free Software Foundation,
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18 #
    19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20 # or visit www.oracle.com if you need additional information or have any
    21 # questions.
    22 #  
    23 #
    25 !include $(WorkSpace)/make/windows/makefiles/rules.make
    27 # This is used externally by both batch and IDE builds, so can't
    28 # reference any of the HOTSPOTWORKSPACE, HOTSPOTBUILDSPACE,
    29 # HOTSPOTRELEASEBINDEST, or HOTSPOTDEBUGBINDEST environment variables.
    30 #
    31 # NOTE: unfortunately the ProjectCreatorSources list must be kept
    32 # synchronized between this and the Solaris version
    33 # (make/solaris/makefiles/projectcreator.make).
    35 ProjectCreatorSources=\
    36         $(WorkSpace)\src\share\tools\ProjectCreator\DirectoryTree.java \
    37         $(WorkSpace)\src\share\tools\ProjectCreator\DirectoryTreeNode.java \
    38         $(WorkSpace)\src\share\tools\ProjectCreator\FileFormatException.java \
    39         $(WorkSpace)\src\share\tools\ProjectCreator\Macro.java \
    40         $(WorkSpace)\src\share\tools\ProjectCreator\MacroDefinitions.java \
    41         $(WorkSpace)\src\share\tools\ProjectCreator\ProjectCreator.java \
    42         $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatform.java \
    43         $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC6.java \
    44         $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC7.java \
    45         $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC8.java \
    46         $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC9.java \
    47         $(WorkSpace)\src\share\tools\ProjectCreator\Util.java \
    48         $(WorkSpace)\src\share\tools\ProjectCreator\BuildConfig.java \
    49         $(WorkSpace)\src\share\tools\ProjectCreator\ArgsParser.java
    51 # This is only used internally
    52 ProjectCreatorIncludesPRIVATE=\
    53         -relativeInclude src\share\vm \
    54         -relativeInclude src\share\vm\prims \
    55         -relativeInclude src\os\windows\vm \
    56         -relativeInclude src\os_cpu\windows_$(Platform_arch)\vm \
    57         -relativeInclude src\cpu\$(Platform_arch)\vm \
    58         -absoluteInclude $(HOTSPOTBUILDSPACE)/%f/generated \
    59         -ignorePath $(HOTSPOTBUILDSPACE)/%f/generated \
    60         -ignorePath src\share\vm\adlc \
    61         -ignorePath src\share\vm\shark
    63 # This is referenced externally by both the IDE and batch builds
    64 ProjectCreatorOptions=
    66 # This is used externally, but only by the IDE builds, so we can
    67 # reference environment variables which aren't defined in the batch
    68 # build process.
    70 ProjectCreatorIDEOptions = \
    71         -useToGeneratePch  java.cpp \
    72         -disablePch        os_windows.cpp \
    73         -disablePch        os_windows_$(Platform_arch).cpp \
    74         -disablePch        osThread_windows.cpp \
    75         -disablePch        bytecodeInterpreter.cpp \
    76         -disablePch        bytecodeInterpreterWithChecks.cpp \
    77         -disablePch        getThread_windows_$(Platform_arch).cpp \
    78         -disablePch_compiler2     opcodes.cpp    
    80 # Common options for the IDE builds for core, c1, and c2
    81 ProjectCreatorIDEOptions=\
    82         $(ProjectCreatorIDEOptions) \
    83         -sourceBase $(HOTSPOTWORKSPACE) \
    84         -buildBase $(HOTSPOTBUILDSPACE)\%f\%b \
    85         -startAt src \
    86         -compiler $(VcVersion) \
    87         -projectFileName $(HOTSPOTBUILDROOT)\$(ProjectFile) \
    88         -jdkTargetRoot $(HOTSPOTJDKDIST) \
    89         -define ALIGN_STACK_FRAMES \
    90         -define VM_LITTLE_ENDIAN \
    91         -prelink  "" "Generating vm.def..." "cd $(HOTSPOTBUILDSPACE)\%f\%b	set HOTSPOTMKSHOME=$(HOTSPOTMKSHOME)	$(HOTSPOTMKSHOME)\sh $(HOTSPOTWORKSPACE)\make\windows\build_vm_def.sh $(LINK_VER)" \
    92         -postbuild "" "Building hotspot.exe..." "cd $(HOTSPOTBUILDSPACE)\%f\%b	set HOTSPOTMKSHOME=$(HOTSPOTMKSHOME)	nmake -f $(HOTSPOTWORKSPACE)\make\windows\projectfiles\common\Makefile LOCAL_MAKE=$(HOTSPOTBUILDSPACE)\%f\local.make JAVA_HOME=$(HOTSPOTJDKDIST) launcher" \
    93         -ignoreFile jsig.c \
    94         -ignoreFile jvmtiEnvRecommended.cpp \
    95         -ignoreFile jvmtiEnvStub.cpp \
    96         -ignoreFile globalDefinitions_gcc.hpp \
    97         -ignoreFile globalDefinitions_sparcWorks.hpp \
    98         -ignoreFile version.rc \
    99         -ignoreFile Xusage.txt \
   100         -define TARGET_ARCH_x86 \
   101         -define TARGET_OS_ARCH_windows_x86 \
   102         -define TARGET_OS_FAMILY_windows \
   103         -define TARGET_COMPILER_visCPP \
   104        $(ProjectCreatorIncludesPRIVATE)
   106 # Add in build-specific options
   107 !if "$(BUILDARCH)" == "i486"
   108 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
   109         -define IA32 \
   110         -ignorePath x86_64 \
   111         -define TARGET_ARCH_MODEL_x86_32
   112 !else
   113 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
   114         -ignorePath x86_32 \
   115         -define TARGET_ARCH_MODEL_x86_64
   116 !endif
   118 ProjectCreatorIDEOptionsIgnoreCompiler1=\
   119  -ignorePath_TARGET c1_
   121 ProjectCreatorIDEOptionsIgnoreCompiler2=\
   122  -ignorePath_TARGET src/share/vm/opto \
   123  -ignorePath_TARGET src/share/vm/libadt \
   124  -ignorePath_TARGET adfiles \
   125  -ignoreFile_TARGET bcEscapeAnalyzer.cpp \
   126  -ignoreFile_TARGET bcEscapeAnalyzer.hpp \
   127  -ignorePath_TARGET chaitin \
   128  -ignorePath_TARGET c2_ \
   129  -ignorePath_TARGET runtime_ \
   130  -ignoreFile_TARGET ciTypeFlow.cpp \
   131  -ignoreFile_TARGET ciTypeFlow.hpp \
   132  -ignoreFile_TARGET $(Platform_arch_model).ad
   134 ##################################################
   135 # Without compiler(core) specific options
   136 ##################################################
   137 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
   138 $(ProjectCreatorIDEOptionsIgnoreCompiler1:TARGET=core) \
   139 $(ProjectCreatorIDEOptionsIgnoreCompiler2:TARGET=core)
   141 ##################################################
   142 # JKERNEL specific options
   143 ##################################################
   144 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
   145  -define_kernel KERNEL \
   146 $(ProjectCreatorIDEOptionsIgnoreCompiler2:TARGET=kernel) \
   147  -ignorePath_kernel src/share/vm/gc_implementation/parallelScavenge \
   148  -ignorePath_kernel src/share/vm/gc_implementation/parNew \
   149  -ignorePath_kernel src/share/vm/gc_implementation/concurrentMarkSweep \
   150  -ignorePath_kernel src/share/vm/gc_implementation/g1 \
   151  -ignoreFile_kernel attachListener.cpp \
   152  -ignoreFile_kernel attachListener_windows.cpp \
   153  -ignoreFile_kernel dump.cpp \
   154  -ignoreFile_kernel dump_$(Platform_arch_model).cpp \
   155  -ignoreFile_kernel forte.cpp \
   156  -ignoreFile_kernel fprofiler.cpp \
   157  -ignoreFile_kernel heapDumper.cpp \
   158  -ignoreFile_kernel heapInspection.cpp \
   159  -ignoreFile_kernel jniCheck.cpp \
   160  -ignoreFile_kernel jvmtiCodeBlobEvents.cpp \
   161  -ignoreFile_kernel jvmtiExtensions.cpp \
   162  -ignoreFile_kernel jvmtiImpl.cpp \
   163  -ignoreFile_kernel jvmtiRawMonitor.cpp \
   164  -ignoreFile_kernel jvmtiTagMap.cpp \
   165  -ignoreFile_kernel jvmtiTrace.cpp \
   166  -ignoreFile_kernel jvmtiTrace.hpp \
   167  -ignoreFile_kernel restore.cpp \
   168  -ignoreFile_kernel serialize.cpp \
   169  -ignoreFile_kernel vmStructs.cpp \
   170  -ignoreFile_kernel g1MemoryPool.cpp \
   171  -ignoreFile_kernel g1MemoryPool.hpp \
   172  -ignoreFile_kernel psMemoryPool.cpp \
   173  -ignoreFile_kernel psMemoryPool.hpp \
   174  -ignoreFile_kernel gcAdaptivePolicyCounters.cpp \
   175  -ignoreFile_kernel concurrentGCThread.cpp \
   176  -ignoreFile_kernel mutableNUMASpace.cpp \
   177  -ignoreFile_kernel ciTypeFlow.cpp \
   178  -ignoreFile_kernel ciTypeFlow.hpp \
   179  -ignoreFile_kernel oop.pcgc.inline.hpp \
   180  -ignoreFile_kernel oop.psgc.inline.hpp \
   181  -ignoreFile_kernel allocationStats.cpp \
   182  -ignoreFile_kernel allocationStats.hpp \
   183  -ignoreFile_kernel concurrentGCThread.hpp \
   184  -ignoreFile_kernel gSpaceCounters.cpp \
   185  -ignoreFile_kernel gSpaceCounters.hpp \
   186  -ignoreFile_kernel gcAdaptivePolicyCounters.hpp \
   187  -ignoreFile_kernel immutableSpace.cpp \
   188  -ignoreFile_kernel mutableNUMASpace.hpp \
   189  -ignoreFile_kernel mutableSpace.cpp \
   190  -ignoreFile_kernel spaceCounters.cpp \
   191  -ignoreFile_kernel spaceCounters.hpp \
   192  -ignoreFile_kernel yieldingWorkgroup.cpp \
   193  -ignoreFile_kernel yieldingWorkgroup.hpp \
   194  -ignorePath_kernel vmStructs_ \
   195  -ignoreFile_kernel $(Platform_arch_model).ad \
   196  -additionalFile_kernel gcTaskManager.hpp
   198 ##################################################
   199 # Client(C1) compiler specific options
   200 ##################################################
   201 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
   202  -define_compiler1 COMPILER1 \
   203 $(ProjectCreatorIDEOptionsIgnoreCompiler2:TARGET=compiler1)
   205 ##################################################
   206 # Server(C2) compiler specific options
   207 ##################################################
   208 #NOTE! This list must be kept in sync with GENERATED_NAMES in adlc.make.
   209 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
   210  -define_compiler2 COMPILER2 \
   211  -additionalFile_compiler2 $(Platform_arch_model).ad \
   212  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model).cpp \
   213  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model).hpp \
   214  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_clone.cpp \
   215  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_expand.cpp \
   216  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_format.cpp \
   217  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_gen.cpp \
   218  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_misc.cpp \
   219  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_peephole.cpp \
   220  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_pipeline.cpp \
   221  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles adGlobals_$(Platform_arch_model).hpp \
   222  -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles dfa_$(Platform_arch_model).cpp \
   223  $(ProjectCreatorIDEOptionsIgnoreCompiler1:TARGET=compiler2)
   225 # Add in the jvmti (JSR-163) options
   226 # NOTE: do not pull in jvmtiEnvRecommended.cpp.  This file is generated
   227 #       so the programmer can diff it with jvmtiEnv.cpp to be sure the
   228 #       code merge was done correctly (@see jvmti.make and jvmtiEnvFill.java).
   229 #       If so, they would then check it in as a new version of jvmtiEnv.cpp.
   230 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
   231  -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles jvmtiEnv.hpp \
   232  -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles jvmtiEnter.cpp \
   233  -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles jvmtiEnterTrace.cpp \
   234  -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles jvmti.h \
   235  -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles bytecodeInterpreterWithChecks.cpp

mercurial