annotate make/windows/makefiles/adlc.make @ 364:919e7959392a

6742641: G1: NullPointerException during GCOld Summary: An update buffer is not processed correctly, which causes roots into the collection set not to be scanned and, hence, for the heap to be corrupted. The cause is that an object is accessed after it has been explicitly deleted, which causes a race. Reviewed-by: jcoomes, ysr
author tonyp
date Mon, 22 Sep 2008 09:56:49 -0400
parents d1605aabd0a1
children 3c07cda72b7d
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
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 CPP_INCLUDE_DIRS=\
a61af66fc99e Initial load
duke
parents:
diff changeset
51 /I "..\generated" \
a61af66fc99e Initial load
duke
parents:
diff changeset
52 /I "$(WorkSpace)\src\share\vm\compiler" \
a61af66fc99e Initial load
duke
parents:
diff changeset
53 /I "$(WorkSpace)\src\share\vm\code" \
a61af66fc99e Initial load
duke
parents:
diff changeset
54 /I "$(WorkSpace)\src\share\vm\interpreter" \
a61af66fc99e Initial load
duke
parents:
diff changeset
55 /I "$(WorkSpace)\src\share\vm\classfile" \
a61af66fc99e Initial load
duke
parents:
diff changeset
56 /I "$(WorkSpace)\src\share\vm\asm" \
a61af66fc99e Initial load
duke
parents:
diff changeset
57 /I "$(WorkSpace)\src\share\vm\memory" \
a61af66fc99e Initial load
duke
parents:
diff changeset
58 /I "$(WorkSpace)\src\share\vm\oops" \
a61af66fc99e Initial load
duke
parents:
diff changeset
59 /I "$(WorkSpace)\src\share\vm\prims" \
a61af66fc99e Initial load
duke
parents:
diff changeset
60 /I "$(WorkSpace)\src\share\vm\runtime" \
a61af66fc99e Initial load
duke
parents:
diff changeset
61 /I "$(WorkSpace)\src\share\vm\utilities" \
a61af66fc99e Initial load
duke
parents:
diff changeset
62 /I "$(WorkSpace)\src\share\vm\libadt" \
a61af66fc99e Initial load
duke
parents:
diff changeset
63 /I "$(WorkSpace)\src\share\vm\opto" \
a61af66fc99e Initial load
duke
parents:
diff changeset
64 /I "$(WorkSpace)\src\os\windows\vm" \
a61af66fc99e Initial load
duke
parents:
diff changeset
65 /I "$(WorkSpace)\src\cpu\$(Platform_arch)\vm"
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 # NOTE! If you add any files here, you must also update GENERATED_NAMES_IN_INCL
a61af66fc99e Initial load
duke
parents:
diff changeset
68 # and MakeDepsIDEOptions in makedeps.make.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 GENERATED_NAMES=\
a61af66fc99e Initial load
duke
parents:
diff changeset
70 ad_$(Platform_arch_model).cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ad_$(Platform_arch_model).hpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
72 ad_$(Platform_arch_model)_clone.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
73 ad_$(Platform_arch_model)_expand.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
74 ad_$(Platform_arch_model)_format.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
75 ad_$(Platform_arch_model)_gen.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
76 ad_$(Platform_arch_model)_misc.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ad_$(Platform_arch_model)_peephole.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ad_$(Platform_arch_model)_pipeline.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
79 adGlobals_$(Platform_arch_model).hpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
80 dfa_$(Platform_arch_model).cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 # NOTE! This must be kept in sync with GENERATED_NAMES
a61af66fc99e Initial load
duke
parents:
diff changeset
83 GENERATED_NAMES_IN_INCL=\
a61af66fc99e Initial load
duke
parents:
diff changeset
84 incls/ad_$(Platform_arch_model).cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
85 incls/ad_$(Platform_arch_model).hpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
86 incls/ad_$(Platform_arch_model)_clone.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
87 incls/ad_$(Platform_arch_model)_expand.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
88 incls/ad_$(Platform_arch_model)_format.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
89 incls/ad_$(Platform_arch_model)_gen.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
90 incls/ad_$(Platform_arch_model)_misc.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
91 incls/ad_$(Platform_arch_model)_peephole.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
92 incls/ad_$(Platform_arch_model)_pipeline.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
93 incls/adGlobals_$(Platform_arch_model).hpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
94 incls/dfa_$(Platform_arch_model).cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 {$(WorkSpace)\src\share\vm\adlc}.cpp.obj::
a61af66fc99e Initial load
duke
parents:
diff changeset
97 $(CPP) $(CPP_FLAGS) $(EXH_FLAGS) $(CPP_INCLUDE_DIRS) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 {$(WorkSpace)\src\share\vm\opto}.cpp.obj::
a61af66fc99e Initial load
duke
parents:
diff changeset
100 $(CPP) $(CPP_FLAGS) $(EXH_FLAGS) $(CPP_INCLUDE_DIRS) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 adlc.exe: main.obj adlparse.obj archDesc.obj arena.obj dfa.obj dict2.obj filebuff.obj \
a61af66fc99e Initial load
duke
parents:
diff changeset
103 forms.obj formsopt.obj formssel.obj opcodes.obj output_c.obj output_h.obj
a61af66fc99e Initial load
duke
parents:
diff changeset
104 $(LINK) $(LINK_FLAGS) /subsystem:console /out:$@ $**
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 $(GENERATED_NAMES_IN_INCL): $(Platform_arch_model).ad adlc.exe includeDB.current
a61af66fc99e Initial load
duke
parents:
diff changeset
107 rm -f $(GENERATED_NAMES)
a61af66fc99e Initial load
duke
parents:
diff changeset
108 $(ADLC) $(ADLCFLAGS) $(Platform_arch_model).ad
a61af66fc99e Initial load
duke
parents:
diff changeset
109 mv $(GENERATED_NAMES) incls/
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 $(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
112 rm -f $(Platform_arch_model).ad
a61af66fc99e Initial load
duke
parents:
diff changeset
113 cat $(WorkSpace)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad \
a61af66fc99e Initial load
duke
parents:
diff changeset
114 $(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm/windows_$(Platform_arch_model).ad >$(Platform_arch_model).ad