annotate make/windows/makefiles/adlc.make @ 659:520d43965b1f

6812297: update project creation for Visual Studio 2005-2008 Summary: Add 2 news classes to create VC8 and VC9 projects Reviewed-by: apetrusenko, xlu
author ikrylov
date Fri, 27 Mar 2009 01:35:39 -0500
parents 3c07cda72b7d
children bd02caa94611
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 91
diff changeset
2 # Copyright 1999-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
a61af66fc99e Initial load
duke
parents:
diff changeset
19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 # CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 # have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
91
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
25 !include $(WorkSpace)/make/windows/makefiles/compile.make
0
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 # Rules for building adlc.exe
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 # Need exception handling support here
a61af66fc99e Initial load
duke
parents:
diff changeset
30 # $(MS_RUNTIME_OPTION) ( with /D_STATIC_CPPLIB)
a61af66fc99e Initial load
duke
parents:
diff changeset
31 # causes adlc.exe to link with the static
a61af66fc99e Initial load
duke
parents:
diff changeset
32 # multithread Standard C++ library (libcpmt.lib) instead of
a61af66fc99e Initial load
duke
parents:
diff changeset
33 # the dynamic version (msvcprt.lib), which is not included
a61af66fc99e Initial load
duke
parents:
diff changeset
34 # in any of the free tools.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 EXH_FLAGS=$(GX_OPTION) $(MS_RUNTIME_OPTION)
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 !ifdef ALT_ADLC_PATH
a61af66fc99e Initial load
duke
parents:
diff changeset
38 ADLC=$(ALT_ADLC_PATH)\adlc.exe
a61af66fc99e Initial load
duke
parents:
diff changeset
39 !else
a61af66fc99e Initial load
duke
parents:
diff changeset
40 ADLC=adlc
a61af66fc99e Initial load
duke
parents:
diff changeset
41 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 !ifdef LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
44 ADLCFLAGS=-q -T -D_LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
45 !else
a61af66fc99e Initial load
duke
parents:
diff changeset
46 ADLCFLAGS=-q -T -U_LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
47 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
48
659
520d43965b1f 6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents: 427
diff changeset
49 CPP_FLAGS=$(CPP_FLAGS) /D _CRT_SECURE_NO_WARNINGS /D _CRT_SECURE_NO_DEPRECATE
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 CPP_INCLUDE_DIRS=\
a61af66fc99e Initial load
duke
parents:
diff changeset
52 /I "..\generated" \
a61af66fc99e Initial load
duke
parents:
diff changeset
53 /I "$(WorkSpace)\src\share\vm\compiler" \
a61af66fc99e Initial load
duke
parents:
diff changeset
54 /I "$(WorkSpace)\src\share\vm\code" \
a61af66fc99e Initial load
duke
parents:
diff changeset
55 /I "$(WorkSpace)\src\share\vm\interpreter" \
a61af66fc99e Initial load
duke
parents:
diff changeset
56 /I "$(WorkSpace)\src\share\vm\classfile" \
a61af66fc99e Initial load
duke
parents:
diff changeset
57 /I "$(WorkSpace)\src\share\vm\asm" \
a61af66fc99e Initial load
duke
parents:
diff changeset
58 /I "$(WorkSpace)\src\share\vm\memory" \
a61af66fc99e Initial load
duke
parents:
diff changeset
59 /I "$(WorkSpace)\src\share\vm\oops" \
a61af66fc99e Initial load
duke
parents:
diff changeset
60 /I "$(WorkSpace)\src\share\vm\prims" \
a61af66fc99e Initial load
duke
parents:
diff changeset
61 /I "$(WorkSpace)\src\share\vm\runtime" \
a61af66fc99e Initial load
duke
parents:
diff changeset
62 /I "$(WorkSpace)\src\share\vm\utilities" \
a61af66fc99e Initial load
duke
parents:
diff changeset
63 /I "$(WorkSpace)\src\share\vm\libadt" \
a61af66fc99e Initial load
duke
parents:
diff changeset
64 /I "$(WorkSpace)\src\share\vm\opto" \
a61af66fc99e Initial load
duke
parents:
diff changeset
65 /I "$(WorkSpace)\src\os\windows\vm" \
a61af66fc99e Initial load
duke
parents:
diff changeset
66 /I "$(WorkSpace)\src\cpu\$(Platform_arch)\vm"
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 # NOTE! If you add any files here, you must also update GENERATED_NAMES_IN_INCL
a61af66fc99e Initial load
duke
parents:
diff changeset
69 # and MakeDepsIDEOptions in makedeps.make.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 GENERATED_NAMES=\
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ad_$(Platform_arch_model).cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
72 ad_$(Platform_arch_model).hpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
73 ad_$(Platform_arch_model)_clone.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
74 ad_$(Platform_arch_model)_expand.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
75 ad_$(Platform_arch_model)_format.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
76 ad_$(Platform_arch_model)_gen.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ad_$(Platform_arch_model)_misc.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ad_$(Platform_arch_model)_peephole.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
79 ad_$(Platform_arch_model)_pipeline.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
80 adGlobals_$(Platform_arch_model).hpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
81 dfa_$(Platform_arch_model).cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 # NOTE! This must be kept in sync with GENERATED_NAMES
a61af66fc99e Initial load
duke
parents:
diff changeset
84 GENERATED_NAMES_IN_INCL=\
a61af66fc99e Initial load
duke
parents:
diff changeset
85 incls/ad_$(Platform_arch_model).cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
86 incls/ad_$(Platform_arch_model).hpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
87 incls/ad_$(Platform_arch_model)_clone.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
88 incls/ad_$(Platform_arch_model)_expand.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
89 incls/ad_$(Platform_arch_model)_format.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
90 incls/ad_$(Platform_arch_model)_gen.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
91 incls/ad_$(Platform_arch_model)_misc.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
92 incls/ad_$(Platform_arch_model)_peephole.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
93 incls/ad_$(Platform_arch_model)_pipeline.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
94 incls/adGlobals_$(Platform_arch_model).hpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
95 incls/dfa_$(Platform_arch_model).cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 {$(WorkSpace)\src\share\vm\adlc}.cpp.obj::
a61af66fc99e Initial load
duke
parents:
diff changeset
98 $(CPP) $(CPP_FLAGS) $(EXH_FLAGS) $(CPP_INCLUDE_DIRS) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 {$(WorkSpace)\src\share\vm\opto}.cpp.obj::
a61af66fc99e Initial load
duke
parents:
diff changeset
101 $(CPP) $(CPP_FLAGS) $(EXH_FLAGS) $(CPP_INCLUDE_DIRS) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 adlc.exe: main.obj adlparse.obj archDesc.obj arena.obj dfa.obj dict2.obj filebuff.obj \
a61af66fc99e Initial load
duke
parents:
diff changeset
104 forms.obj formsopt.obj formssel.obj opcodes.obj output_c.obj output_h.obj
a61af66fc99e Initial load
duke
parents:
diff changeset
105 $(LINK) $(LINK_FLAGS) /subsystem:console /out:$@ $**
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
106 !if "$(MT)" != ""
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
107 # The previous link command created a .manifest file that we want to
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
108 # insert into the linked artifact so we do not need to track it
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
109 # separately. Use ";#2" for .dll and ";#1" for .exe:
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
110 $(MT) /manifest $@.manifest /outputresource:$@;#1
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
111 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 $(GENERATED_NAMES_IN_INCL): $(Platform_arch_model).ad adlc.exe includeDB.current
a61af66fc99e Initial load
duke
parents:
diff changeset
114 rm -f $(GENERATED_NAMES)
a61af66fc99e Initial load
duke
parents:
diff changeset
115 $(ADLC) $(ADLCFLAGS) $(Platform_arch_model).ad
a61af66fc99e Initial load
duke
parents:
diff changeset
116 mv $(GENERATED_NAMES) incls/
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 $(Platform_arch_model).ad: $(WorkSpace)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad $(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm/windows_$(Platform_arch_model).ad
a61af66fc99e Initial load
duke
parents:
diff changeset
119 rm -f $(Platform_arch_model).ad
a61af66fc99e Initial load
duke
parents:
diff changeset
120 cat $(WorkSpace)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad \
a61af66fc99e Initial load
duke
parents:
diff changeset
121 $(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm/windows_$(Platform_arch_model).ad >$(Platform_arch_model).ad