author | jchen |
Thu, 23 May 2013 12:16:17 -0700 | |
changeset 17673 | 33e311ad099a |
parent 15432 | 9d976ca484d8 |
child 19271 | 2bd33030dd6d |
permissions | -rw-r--r-- |
1 | 1 |
# |
15432 | 2 |
# Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
diff
changeset
|
21 |
# questions. |
1 | 22 |
# |
23 |
# |
|
24 |
||
25 |
# Rules to build jvm_db/dtrace, used by vm.make |
|
26 |
||
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
1562
diff
changeset
|
27 |
# We build libjvm_dtrace/libjvm_db/dtrace for COMPILER1 and COMPILER2 |
15432 | 28 |
# but not for CORE configuration. |
1 | 29 |
|
30 |
ifneq ("${TYPE}", "CORE") |
|
31 |
||
32 |
ifdef USE_GCC |
|
33 |
||
34 |
dtraceCheck: |
|
35 |
$(QUIETLY) echo "**NOTICE** Dtrace support disabled for gcc builds" |
|
36 |
||
37 |
else |
|
38 |
||
39 |
JVM_DB = libjvm_db |
|
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
1562
diff
changeset
|
40 |
LIBJVM_DB = libjvm_db.so |
1 | 41 |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
42 |
LIBJVM_DB_DEBUGINFO = libjvm_db.debuginfo |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
43 |
LIBJVM_DB_DIZ = libjvm_db.diz |
10559 | 44 |
|
1 | 45 |
JVM_DTRACE = jvm_dtrace |
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
1562
diff
changeset
|
46 |
LIBJVM_DTRACE = libjvm_dtrace.so |
1 | 47 |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
48 |
LIBJVM_DTRACE_DEBUGINFO = libjvm_dtrace.debuginfo |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
49 |
LIBJVM_DTRACE_DIZ = libjvm_dtrace.diz |
10559 | 50 |
|
1 | 51 |
JVMOFFS = JvmOffsets |
52 |
JVMOFFS.o = $(JVMOFFS).o |
|
53 |
GENOFFS = generate$(JVMOFFS) |
|
54 |
||
55 |
DTRACE_SRCDIR = $(GAMMADIR)/src/os/$(Platform_os_family)/dtrace |
|
56 |
DTRACE = dtrace |
|
57 |
DTRACE.o = $(DTRACE).o |
|
58 |
||
59 |
# to remove '-g' option which causes link problems |
|
60 |
# also '-z nodefs' is used as workaround |
|
61 |
GENOFFS_CFLAGS = $(shell echo $(CFLAGS) | sed -e 's/ -g / /g' -e 's/ -g0 / /g';) |
|
62 |
||
63 |
ifdef LP64 |
|
64 |
DTRACE_OPTS = -64 -D_LP64 |
|
65 |
endif |
|
66 |
||
67 |
# making libjvm_db |
|
68 |
||
69 |
# Use mapfile with libjvm_db.so |
|
70 |
LIBJVM_DB_MAPFILE = $(MAKEFILES_DIR)/mapfile-vers-jvm_db |
|
71 |
LFLAGS_JVM_DB += $(MAPFLAG:FILENAME=$(LIBJVM_DB_MAPFILE)) |
|
72 |
||
73 |
# Use mapfile with libjvm_dtrace.so |
|
74 |
LIBJVM_DTRACE_MAPFILE = $(MAKEFILES_DIR)/mapfile-vers-jvm_dtrace |
|
75 |
LFLAGS_JVM_DTRACE += $(MAPFLAG:FILENAME=$(LIBJVM_DTRACE_MAPFILE)) |
|
76 |
||
77 |
ifdef USE_GCC |
|
78 |
LFLAGS_JVM_DB += -D_REENTRANT $(PICFLAG) |
|
79 |
LFLAGS_JVM_DTRACE += -D_REENTRANT $(PICFLAG) |
|
80 |
else |
|
81 |
LFLAGS_JVM_DB += -mt $(PICFLAG) -xnolib |
|
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
1562
diff
changeset
|
82 |
LFLAGS_JVM_DTRACE += -mt $(PICFLAG) -xnolib -ldl |
1 | 83 |
endif |
84 |
||
85 |
ISA = $(subst i386,i486,$(shell isainfo -n)) |
|
86 |
||
87 |
# Making 64/libjvm_db.so: 64-bit version of libjvm_db.so which handles 32-bit libjvm.so |
|
88 |
ifneq ("${ISA}","${BUILDARCH}") |
|
89 |
||
13092
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
90 |
XLIBJVM_DIR = 64 |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
91 |
XLIBJVM_DB = $(XLIBJVM_DIR)/$(LIBJVM_DB) |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
92 |
XLIBJVM_DTRACE = $(XLIBJVM_DIR)/$(LIBJVM_DTRACE) |
1 | 93 |
|
13092
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
94 |
XLIBJVM_DB_DEBUGINFO = $(XLIBJVM_DIR)/$(LIBJVM_DB_DEBUGINFO) |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
95 |
XLIBJVM_DB_DIZ = $(XLIBJVM_DIR)/$(LIBJVM_DB_DIZ) |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
96 |
XLIBJVM_DTRACE_DEBUGINFO = $(XLIBJVM_DIR)/$(LIBJVM_DTRACE_DEBUGINFO) |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
97 |
XLIBJVM_DTRACE_DIZ = $(XLIBJVM_DIR)/$(LIBJVM_DTRACE_DIZ) |
10559 | 98 |
|
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
99 |
$(XLIBJVM_DB): $(ADD_GNU_DEBUGLINK) $(FIX_EMPTY_SEC_HDR_FLAGS) $(DTRACE_SRCDIR)/$(JVM_DB).c $(JVMOFFS).h $(LIBJVM_DB_MAPFILE) |
1 | 100 |
@echo Making $@ |
13092
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
101 |
$(QUIETLY) mkdir -p $(XLIBJVM_DIR) ; \ |
1552
45c617d33fa6
6767659: Conversion from i486 to x86 missed some entries in makefiles
kvn
parents:
670
diff
changeset
|
102 |
$(CC) $(SYMFLAG) $(ARCHFLAG/$(ISA)) -D$(TYPE) -I. -I$(GENERATED) \ |
1 | 103 |
$(SHARED_FLAG) $(LFLAGS_JVM_DB) -o $@ $(DTRACE_SRCDIR)/$(JVM_DB).c -lc |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
104 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
105 |
# gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
106 |
# Clear the SHF_ALLOC flag (if set) from empty section headers. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
107 |
# An empty section header has sh_addr == 0 and sh_size == 0. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
108 |
# This problem has only been seen on Solaris X64, but we call this tool |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
109 |
# on all Solaris builds just in case. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
110 |
$(QUIETLY) $(FIX_EMPTY_SEC_HDR_FLAGS) $@ |
10559 | 111 |
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(XLIBJVM_DB_DEBUGINFO) |
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
112 |
# $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
113 |
# Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available. |
13092
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
114 |
# $(OBJCOPY) --add-gnu-debuglink=$(LIBJVM_DB_DEBUGINFO) $(LIBJVM_DB) ; |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
115 |
# Do this part in the $(XLIBJVM_DIR) subdir so $(XLIBJVM_DIR) is not |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
116 |
# in the link name: |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
117 |
( cd $(XLIBJVM_DIR) && $(ADD_GNU_DEBUGLINK) $(LIBJVM_DB_DEBUGINFO) $(LIBJVM_DB) ) |
10559 | 118 |
ifeq ($(STRIP_POLICY),all_strip) |
119 |
$(QUIETLY) $(STRIP) $@ |
|
120 |
else |
|
121 |
ifeq ($(STRIP_POLICY),min_strip) |
|
122 |
$(QUIETLY) $(STRIP) -x $@ |
|
123 |
# implied else here is no stripping at all |
|
124 |
endif |
|
125 |
endif |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
126 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
13092
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
127 |
# Do this part in the $(XLIBJVM_DIR) subdir so $(XLIBJVM_DIR) is not |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
128 |
# in the archived name: |
14815
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13966
diff
changeset
|
129 |
( cd $(XLIBJVM_DIR) && $(ZIPEXE) -q -y $(LIBJVM_DB_DIZ) $(LIBJVM_DB_DEBUGINFO) ) |
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13966
diff
changeset
|
130 |
$(RM) $(XLIBJVM_DB_DEBUGINFO) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
131 |
endif |
10559 | 132 |
endif |
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
1562
diff
changeset
|
133 |
|
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
134 |
$(XLIBJVM_DTRACE): $(ADD_GNU_DEBUGLINK) $(FIX_EMPTY_SEC_HDR_FLAGS) $(DTRACE_SRCDIR)/$(JVM_DTRACE).c $(DTRACE_SRCDIR)/$(JVM_DTRACE).h $(LIBJVM_DTRACE_MAPFILE) |
1 | 135 |
@echo Making $@ |
13092
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
136 |
$(QUIETLY) mkdir -p $(XLIBJVM_DIR) ; \ |
1552
45c617d33fa6
6767659: Conversion from i486 to x86 missed some entries in makefiles
kvn
parents:
670
diff
changeset
|
137 |
$(CC) $(SYMFLAG) $(ARCHFLAG/$(ISA)) -D$(TYPE) -I. \ |
1 | 138 |
$(SHARED_FLAG) $(LFLAGS_JVM_DTRACE) -o $@ $(DTRACE_SRCDIR)/$(JVM_DTRACE).c -lc -lthread -ldoor |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
139 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
140 |
# Clear the SHF_ALLOC flag (if set) from empty section headers. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
141 |
$(QUIETLY) $(FIX_EMPTY_SEC_HDR_FLAGS) $@ |
10559 | 142 |
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(XLIBJVM_DTRACE_DEBUGINFO) |
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
143 |
# $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections. |
13092
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
144 |
# $(OBJCOPY) --add-gnu-debuglink=$(LIBJVM_DTRACE_DEBUGINFO) $(LIBJVM_DTRACE) ; |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
145 |
# Do this part in the $(XLIBJVM_DIR) subdir so $(XLIBJVM_DIR) is not |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
146 |
# in the link name: |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
147 |
( cd $(XLIBJVM_DIR) && $(ADD_GNU_DEBUGLINK) $(LIBJVM_DTRACE_DEBUGINFO) $(LIBJVM_DTRACE) ) |
10559 | 148 |
ifeq ($(STRIP_POLICY),all_strip) |
149 |
$(QUIETLY) $(STRIP) $@ |
|
150 |
else |
|
151 |
ifeq ($(STRIP_POLICY),min_strip) |
|
152 |
$(QUIETLY) $(STRIP) -x $@ |
|
153 |
# implied else here is no stripping at all |
|
154 |
endif |
|
155 |
endif |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
156 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
13092
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
157 |
# Do this part in the $(XLIBJVM_DIR) subdir so $(XLIBJVM_DIR) is not |
3b4aad065f27
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips)
dcubed
parents:
12767
diff
changeset
|
158 |
# in the archived name: |
14815
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13966
diff
changeset
|
159 |
( cd $(XLIBJVM_DIR) && $(ZIPEXE) -q -y $(LIBJVM_DTRACE_DIZ) $(LIBJVM_DTRACE_DEBUGINFO)) |
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13966
diff
changeset
|
160 |
$(RM) $(XLIBJVM_DTRACE_DEBUGINFO) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
161 |
endif |
10559 | 162 |
endif |
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
1562
diff
changeset
|
163 |
|
1 | 164 |
endif # ifneq ("${ISA}","${BUILDARCH}") |
165 |
||
166 |
ifdef USE_GCC |
|
167 |
LFLAGS_GENOFFS += -D_REENTRANT |
|
168 |
else |
|
169 |
LFLAGS_GENOFFS += -mt -xnolib -norunpath |
|
170 |
endif |
|
171 |
||
172 |
lib$(GENOFFS).so: $(DTRACE_SRCDIR)/$(GENOFFS).cpp $(DTRACE_SRCDIR)/$(GENOFFS).h \ |
|
7397 | 173 |
$(LIBJVM.o) |
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
10559
diff
changeset
|
174 |
$(QUIETLY) $(CXX) $(CXXFLAGS) $(GENOFFS_CFLAGS) $(SHARED_FLAG) $(PICFLAG) \ |
1 | 175 |
$(LFLAGS_GENOFFS) -o $@ $(DTRACE_SRCDIR)/$(GENOFFS).cpp -lc |
176 |
||
177 |
$(GENOFFS): $(DTRACE_SRCDIR)/$(GENOFFS)Main.c lib$(GENOFFS).so |
|
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
10559
diff
changeset
|
178 |
$(QUIETLY) $(LINK.CXX) -z nodefs -o $@ $(DTRACE_SRCDIR)/$(GENOFFS)Main.c \ |
1 | 179 |
./lib$(GENOFFS).so |
180 |
||
1559
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
181 |
CONDITIONALLY_UPDATE_JVMOFFS_TARGET = \ |
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
182 |
cmp -s $@ $@.tmp; \ |
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
183 |
case $$? in \ |
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
184 |
0) rm -f $@.tmp;; \ |
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
185 |
*) rm -f $@ && mv $@.tmp $@ && echo Updated $@;; \ |
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
186 |
esac |
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
187 |
|
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
188 |
# $@.tmp is created first to avoid an empty $(JVMOFFS).h if an error occurs. |
1 | 189 |
$(JVMOFFS).h: $(GENOFFS) |
13966
7b818806118b
8000485: Hotspot build fails in Solaris Studio IDE when building dtrace
vlivanov
parents:
13115
diff
changeset
|
190 |
$(QUIETLY) LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ./$(GENOFFS) -header > $@.tmp |
1559
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
191 |
$(QUIETLY) $(CONDITIONALLY_UPDATE_JVMOFFS_TARGET) |
1 | 192 |
|
193 |
$(JVMOFFS)Index.h: $(GENOFFS) |
|
13966
7b818806118b
8000485: Hotspot build fails in Solaris Studio IDE when building dtrace
vlivanov
parents:
13115
diff
changeset
|
194 |
$(QUIETLY) LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ./$(GENOFFS) -index > $@.tmp |
1559
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
195 |
$(QUIETLY) $(CONDITIONALLY_UPDATE_JVMOFFS_TARGET) |
1 | 196 |
|
197 |
$(JVMOFFS).cpp: $(GENOFFS) $(JVMOFFS).h $(JVMOFFS)Index.h |
|
13966
7b818806118b
8000485: Hotspot build fails in Solaris Studio IDE when building dtrace
vlivanov
parents:
13115
diff
changeset
|
198 |
$(QUIETLY) LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ./$(GENOFFS) -table > $@.tmp |
1559
20339a90049b
6769128: failure to run generateJvmOffsets is ignored
jcoomes
parents:
670
diff
changeset
|
199 |
$(QUIETLY) $(CONDITIONALLY_UPDATE_JVMOFFS_TARGET) |
1 | 200 |
|
201 |
$(JVMOFFS.o): $(JVMOFFS).h $(JVMOFFS).cpp |
|
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
10559
diff
changeset
|
202 |
$(QUIETLY) $(CXX) -c -I. -o $@ $(ARCHFLAG) -D$(TYPE) $(JVMOFFS).cpp |
1 | 203 |
|
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
204 |
$(LIBJVM_DB): $(ADD_GNU_DEBUGLINK) $(FIX_EMPTY_SEC_HDR_FLAGS) $(DTRACE_SRCDIR)/$(JVM_DB).c $(JVMOFFS.o) $(XLIBJVM_DB) $(LIBJVM_DB_MAPFILE) |
1 | 205 |
@echo Making $@ |
206 |
$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) -D$(TYPE) -I. -I$(GENERATED) \ |
|
207 |
$(SHARED_FLAG) $(LFLAGS_JVM_DB) -o $@ $(DTRACE_SRCDIR)/$(JVM_DB).c -lc |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
208 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
209 |
# Clear the SHF_ALLOC flag (if set) from empty section headers. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
210 |
$(QUIETLY) $(FIX_EMPTY_SEC_HDR_FLAGS) $@ |
10559 | 211 |
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBJVM_DB_DEBUGINFO) |
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
212 |
# $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
213 |
# $(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBJVM_DB_DEBUGINFO) $@ |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
214 |
$(QUIETLY) $(ADD_GNU_DEBUGLINK) $(LIBJVM_DB_DEBUGINFO) $@ |
10559 | 215 |
ifeq ($(STRIP_POLICY),all_strip) |
216 |
$(QUIETLY) $(STRIP) $@ |
|
217 |
else |
|
218 |
ifeq ($(STRIP_POLICY),min_strip) |
|
219 |
$(QUIETLY) $(STRIP) -x $@ |
|
220 |
# implied else here is no stripping at all |
|
221 |
endif |
|
222 |
endif |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
223 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
14815
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13966
diff
changeset
|
224 |
$(ZIPEXE) -q -y $(LIBJVM_DB_DIZ) $(LIBJVM_DB_DEBUGINFO) |
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13966
diff
changeset
|
225 |
$(RM) $(LIBJVM_DB_DEBUGINFO) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
226 |
endif |
10559 | 227 |
endif |
1 | 228 |
|
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
229 |
$(LIBJVM_DTRACE): $(ADD_GNU_DEBUGLINK) $(FIX_EMPTY_SEC_HDR_FLAGS) $(DTRACE_SRCDIR)/$(JVM_DTRACE).c $(XLIBJVM_DTRACE) $(DTRACE_SRCDIR)/$(JVM_DTRACE).h $(LIBJVM_DTRACE_MAPFILE) |
1 | 230 |
@echo Making $@ |
231 |
$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) -D$(TYPE) -I. \ |
|
232 |
$(SHARED_FLAG) $(LFLAGS_JVM_DTRACE) -o $@ $(DTRACE_SRCDIR)/$(JVM_DTRACE).c -lc -lthread -ldoor |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
233 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
234 |
# Clear the SHF_ALLOC flag (if set) from empty section headers. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
235 |
$(QUIETLY) $(FIX_EMPTY_SEC_HDR_FLAGS) $@ |
10559 | 236 |
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBJVM_DTRACE_DEBUGINFO) |
12767
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
237 |
# $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections. |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
238 |
# $(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBJVM_DTRACE_DEBUGINFO) $@ |
c9cd24c9142d
7165598: enable FDS on Solaris X64 when 7165593 is fixed
dcubed
parents:
12501
diff
changeset
|
239 |
$(QUIETLY) $(ADD_GNU_DEBUGLINK) $(LIBJVM_DTRACE_DEBUGINFO) $@ |
10559 | 240 |
ifeq ($(STRIP_POLICY),all_strip) |
241 |
$(QUIETLY) $(STRIP) $@ |
|
242 |
else |
|
243 |
ifeq ($(STRIP_POLICY),min_strip) |
|
244 |
$(QUIETLY) $(STRIP) -x $@ |
|
245 |
# implied else here is no stripping at all |
|
246 |
endif |
|
247 |
endif |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
248 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
14815
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13966
diff
changeset
|
249 |
$(ZIPEXE) -q -y $(LIBJVM_DTRACE_DIZ) $(LIBJVM_DTRACE_DEBUGINFO) |
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13966
diff
changeset
|
250 |
$(RM) $(LIBJVM_DTRACE_DEBUGINFO) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
251 |
endif |
10559 | 252 |
endif |
1 | 253 |
|
254 |
$(DTRACE).d: $(DTRACE_SRCDIR)/hotspot.d $(DTRACE_SRCDIR)/hotspot_jni.d \ |
|
255 |
$(DTRACE_SRCDIR)/hs_private.d $(DTRACE_SRCDIR)/jhelper.d |
|
256 |
$(QUIETLY) cat $^ > $@ |
|
257 |
||
7397 | 258 |
DTraced_Files = ciEnv.o \ |
259 |
classLoadingService.o \ |
|
260 |
compileBroker.o \ |
|
261 |
hashtable.o \ |
|
262 |
instanceKlass.o \ |
|
263 |
java.o \ |
|
264 |
jni.o \ |
|
265 |
jvm.o \ |
|
266 |
memoryManager.o \ |
|
267 |
nmethod.o \ |
|
268 |
objectMonitor.o \ |
|
269 |
runtimeService.o \ |
|
270 |
sharedRuntime.o \ |
|
271 |
synchronizer.o \ |
|
272 |
thread.o \ |
|
273 |
unsafe.o \ |
|
274 |
vmThread.o \ |
|
275 |
vmCMSOperations.o \ |
|
276 |
vmPSOperations.o \ |
|
277 |
vmGCOperations.o \ |
|
278 |
||
1 | 279 |
# Dtrace is available, so we build $(DTRACE.o) |
280 |
$(DTRACE.o): $(DTRACE).d $(JVMOFFS).h $(JVMOFFS)Index.h $(DTraced_Files) |
|
281 |
@echo Compiling $(DTRACE).d |
|
282 |
||
6469
d32518d9eba5
6974813: JVM needs to use demand loading for its DTrace probes
kamg
parents:
5547
diff
changeset
|
283 |
$(QUIETLY) $(DTRACE_PROG) $(DTRACE_OPTS) -C -I. -G -xlazyload -o $@ -s $(DTRACE).d \ |
1 | 284 |
$(DTraced_Files) ||\ |
285 |
STATUS=$$?;\ |
|
286 |
if [ x"$$STATUS" = x"1" -a \ |
|
287 |
x`uname -r` = x"5.10" -a \ |
|
288 |
x`uname -p` = x"sparc" ]; then\ |
|
289 |
echo "*****************************************************************";\ |
|
290 |
echo "* If you are building server compiler, and the error message is ";\ |
|
291 |
echo "* \"incorrect ELF machine type...\", you have run into solaris bug ";\ |
|
292 |
echo "* 6213962, \"dtrace -G doesn't work on sparcv8+ object files\".";\ |
|
293 |
echo "* Either patch/upgrade your system (>= S10u1_15), or set the ";\ |
|
294 |
echo "* environment variable HOTSPOT_DISABLE_DTRACE_PROBES to disable ";\ |
|
295 |
echo "* dtrace probes for this build.";\ |
|
296 |
echo "*****************************************************************";\ |
|
297 |
fi;\ |
|
298 |
exit $$STATUS |
|
299 |
# Since some DTraced_Files are in LIBJVM.o and they are touched by this |
|
300 |
# command, and libgenerateJvmOffsets.so depends on LIBJVM.o, 'make' will |
|
301 |
# think it needs to rebuild libgenerateJvmOffsets.so and thus JvmOffsets* |
|
302 |
# files, but it doesn't, so we touch the necessary files to prevent later |
|
303 |
# recompilation. Note: we only touch the necessary files if they already |
|
304 |
# exist in order to close a race where an empty file can be created |
|
305 |
# before the real build rule is executed. |
|
306 |
# But, we can't touch the *.h files: This rule depends |
|
307 |
# on them, and that would cause an infinite cycle of rebuilding. |
|
308 |
# Neither the *.h or *.ccp files need to be touched, since they have |
|
309 |
# rules which do not update them when the generator file has not |
|
310 |
# changed their contents. |
|
311 |
$(QUIETLY) if [ -f lib$(GENOFFS).so ]; then touch lib$(GENOFFS).so; fi |
|
312 |
$(QUIETLY) if [ -f $(GENOFFS) ]; then touch $(GENOFFS); fi |
|
313 |
$(QUIETLY) if [ -f $(JVMOFFS.o) ]; then touch $(JVMOFFS.o); fi |
|
314 |
||
315 |
.PHONY: dtraceCheck |
|
316 |
||
363
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
317 |
SYSTEM_DTRACE_H = /usr/include/dtrace.h |
1 | 318 |
SYSTEM_DTRACE_PROG = /usr/sbin/dtrace |
319 |
PATCH_DTRACE_PROG = /opt/SUNWdtrd/sbin/dtrace |
|
320 |
systemDtraceFound := $(wildcard ${SYSTEM_DTRACE_PROG}) |
|
321 |
patchDtraceFound := $(wildcard ${PATCH_DTRACE_PROG}) |
|
363
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
322 |
systemDtraceHdrFound := $(wildcard $(SYSTEM_DTRACE_H)) |
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
323 |
|
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
324 |
ifneq ("$(systemDtraceHdrFound)", "") |
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
325 |
CFLAGS += -DHAVE_DTRACE_H |
99d43e8a76ad
6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
338
diff
changeset
|
326 |
endif |
1 | 327 |
|
328 |
ifneq ("$(patchDtraceFound)", "") |
|
329 |
DTRACE_PROG=$(PATCH_DTRACE_PROG) |
|
330 |
DTRACE_INCL=-I/opt/SUNWdtrd/include |
|
331 |
else |
|
332 |
ifneq ("$(systemDtraceFound)", "") |
|
333 |
DTRACE_PROG=$(SYSTEM_DTRACE_PROG) |
|
334 |
else |
|
335 |
||
336 |
endif # ifneq ("$(systemDtraceFound)", "") |
|
337 |
endif # ifneq ("$(patchDtraceFound)", "") |
|
338 |
||
339 |
ifneq ("${DTRACE_PROG}", "") |
|
340 |
ifeq ("${HOTSPOT_DISABLE_DTRACE_PROBES}", "") |
|
341 |
||
342 |
DTRACE_OBJS = $(DTRACE.o) $(JVMOFFS.o) |
|
343 |
CFLAGS += $(DTRACE_INCL) -DDTRACE_ENABLED |
|
344 |
MAPFILE_DTRACE_OPT = $(MAPFILE_DTRACE) |
|
345 |
||
346 |
dtraceCheck: |
|
347 |
||
348 |
else # manually disabled |
|
349 |
||
350 |
dtraceCheck: |
|
351 |
$(QUIETLY) echo "**NOTICE** Dtrace support disabled via environment variable" |
|
352 |
||
353 |
endif # ifeq ("${HOTSPOT_DISABLE_DTRACE_PROBES}", "") |
|
354 |
||
355 |
else # No dtrace program found |
|
356 |
||
357 |
dtraceCheck: |
|
358 |
$(QUIETLY) echo "**NOTICE** Dtrace support disabled: not supported by system" |
|
359 |
||
360 |
endif # ifneq ("${dtraceFound}", "") |
|
361 |
||
362 |
endif # ifdef USE_GCC |
|
363 |
||
364 |
else # CORE build |
|
365 |
||
366 |
dtraceCheck: |
|
367 |
$(QUIETLY) echo "**NOTICE** Dtrace support disabled for CORE builds" |
|
368 |
||
369 |
endif # ifneq ("${TYPE}", "CORE") |