author | darcy |
Tue, 12 Nov 2019 10:45:23 -0800 | |
changeset 59037 | 3d2575331a41 |
parent 58908 | 73bb9c4002cc |
child 59053 | ba6c248cae19 |
permissions | -rw-r--r-- |
37437 | 1 |
# |
58908
73bb9c4002cc
8233381: Update copyright year in build system files
ihse
parents:
55017
diff
changeset
|
2 |
# Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved. |
37437 | 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. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
ifeq ($(call check-jvm-feature, dtrace), true) |
|
53683 | 27 |
ifeq ($(call isTargetOs, solaris), true) |
37437 | 28 |
|
29 |
############################################################################ |
|
49553 | 30 |
# Integrate with libjvm. Here we generate two object files which are |
31 |
# linked with libjvm.so. This step is complicated from a dependency |
|
32 |
# perspective. We add these two files to the linking of libjvm using |
|
33 |
# EXTRA_OBJECT_FILES, but they need to be created outside the call to |
|
34 |
# SetupNativeCompilation. Also, one of the files is dependent on compiled |
|
35 |
# object files from the libjvm compilation, so this generation must happen |
|
36 |
# as a part of the libjvm compilation. |
|
37 |
||
38 |
DTRACE_OBJ := $(JVM_OUTPUTDIR)/objs/dtrace.o |
|
39 |
DTRACE_JHELPER_OBJ := $(JVM_OUTPUTDIR)/objs/dtrace_jhelper.o |
|
40 |
||
41 |
DTRACE_EXTRA_OBJECT_FILES := $(DTRACE_OBJ) $(DTRACE_JHELPER_OBJ) |
|
42 |
||
43 |
############################################################################ |
|
44 |
# Generate DTRACE_OBJ which is linked with libjvm.so. It depends on a set of |
|
45 |
# object files from the compilation. |
|
37437 | 46 |
|
47 |
# Concatenate all *.d files into a single file |
|
47217 | 48 |
DTRACE_SOURCE_FILES := $(addprefix $(TOPDIR)/src/hotspot/os/posix/dtrace/, \ |
37437 | 49 |
hotspot_jni.d \ |
50 |
hotspot.d \ |
|
51 |
hs_private.d \ |
|
52 |
) |
|
53 |
||
55017
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
54 |
# *.d in the objs dir is used for generated make dependency files, so use |
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
55 |
# *.dt for dtrace files to avoid clashes. |
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
56 |
$(JVM_OUTPUTDIR)/objs/dtrace.dt: $(DTRACE_SOURCE_FILES) |
37437 | 57 |
$(call LogInfo, Generating $(@F)) |
58 |
$(call MakeDir, $(@D)) |
|
59 |
$(CAT) $^ > $@ |
|
60 |
||
61 |
DTRACE_INSTRUMENTED_OBJS := $(addprefix $(JVM_OUTPUTDIR)/objs/, \ |
|
62 |
ciEnv.o \ |
|
63 |
classLoadingService.o \ |
|
64 |
compileBroker.o \ |
|
52876
2d17750d41e7
8214791: Consistently name gc files containing VM operations
tschatzl
parents:
49982
diff
changeset
|
65 |
gcVMOperations.o \ |
37437 | 66 |
hashtable.o \ |
67 |
instanceKlass.o \ |
|
68 |
java.o \ |
|
69 |
jni.o \ |
|
70 |
jvm.o \ |
|
71 |
memoryManager.o \ |
|
72 |
nmethod.o \ |
|
73 |
objectMonitor.o \ |
|
74 |
runtimeService.o \ |
|
75 |
sharedRuntime.o \ |
|
76 |
synchronizer.o \ |
|
77 |
thread.o \ |
|
78 |
unsafe.o \ |
|
79 |
vmThread.o \ |
|
80 |
) |
|
81 |
||
49982 | 82 |
ifeq ($(call check-jvm-feature, cmsgc), true) |
37437 | 83 |
DTRACE_INSTRUMENTED_OBJS += $(addprefix $(JVM_OUTPUTDIR)/objs/, \ |
52876
2d17750d41e7
8214791: Consistently name gc files containing VM operations
tschatzl
parents:
49982
diff
changeset
|
84 |
cmsVMOperations.o \ |
49982 | 85 |
) |
86 |
endif |
|
87 |
||
88 |
ifeq ($(call check-jvm-feature, parallelgc), true) |
|
89 |
DTRACE_INSTRUMENTED_OBJS += $(addprefix $(JVM_OUTPUTDIR)/objs/, \ |
|
52876
2d17750d41e7
8214791: Consistently name gc files containing VM operations
tschatzl
parents:
49982
diff
changeset
|
90 |
psVMOperations.o \ |
37437 | 91 |
) |
92 |
endif |
|
93 |
||
94 |
DTRACE_FLAGS := -64 -G |
|
95 |
DTRACE_CPP_FLAGS := -D_LP64 |
|
96 |
||
97 |
# Make sure we run our selected compiler for preprocessing instead of letting |
|
98 |
# the dtrace tool pick it on it's own. |
|
55017
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
99 |
$(DTRACE_OBJ): $(JVM_OUTPUTDIR)/objs/dtrace.dt $(DTRACE_INSTRUMENTED_OBJS) |
37437 | 100 |
$(call LogInfo, Generating $(@F) from $(<F) and object files) |
101 |
$(call MakeDir, $(DTRACE_SUPPORT_DIR)) |
|
55017
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
102 |
$(call ExecuteWithLog, $(DTRACE_SUPPORT_DIR)/$(@F).dt, \ |
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
103 |
($(CPP) $(DTRACE_CPP_FLAGS) $< > $(DTRACE_SUPPORT_DIR)/$(@F).dt)) |
37437 | 104 |
$(call ExecuteWithLog, $@, $(DTRACE) $(DTRACE_FLAGS) -xlazyload -o $@ \ |
55017
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
105 |
-s $(DTRACE_SUPPORT_DIR)/$(@F).dt $(sort $(DTRACE_INSTRUMENTED_OBJS))) |
37437 | 106 |
|
107 |
############################################################################ |
|
108 |
# Generate DTRACE_JHELPER_OBJ which is linked with libjvm.so. |
|
109 |
||
49553 | 110 |
JHELPER_DTRACE_SRC := $(TOPDIR)/src/hotspot/os/solaris/dtrace/jhelper.d |
111 |
||
112 |
# jhelper.d includes JvmOffsetsIndex.h which was created by the gensrc step. |
|
113 |
DTRACE_GENSRC_DIR := $(JVM_VARIANT_OUTPUTDIR)/gensrc/dtracefiles |
|
114 |
JVM_OFFSETS_INDEX_H := $(DTRACE_GENSRC_DIR)/JvmOffsetsIndex.h |
|
115 |
||
37437 | 116 |
# Unfortunately dtrace generates incorrect types for some symbols in |
117 |
# dtrace_jhelper.o, resulting in "warning: symbol X has differing types" |
|
49078
039e63e471e1
8198859: Use elfedit to silence linker warnings on solaris
ihse
parents:
49070
diff
changeset
|
118 |
# See JDK-6890703 for details. |
039e63e471e1
8198859: Use elfedit to silence linker warnings on solaris
ihse
parents:
49070
diff
changeset
|
119 |
# We work around this by fixing the types for these symbols using elfedit, |
039e63e471e1
8198859: Use elfedit to silence linker warnings on solaris
ihse
parents:
49070
diff
changeset
|
120 |
# after dtrace has generated the .o file. |
49124
6abbc1f5c2a1
8198862: Stop doing funky compilation stuff for dtrace
ihse
parents:
49078
diff
changeset
|
121 |
GetElfeditCommands = \ |
6abbc1f5c2a1
8198862: Stop doing funky compilation stuff for dtrace
ihse
parents:
49078
diff
changeset
|
122 |
$(foreach symbol, \ |
6abbc1f5c2a1
8198862: Stop doing funky compilation stuff for dtrace
ihse
parents:
49078
diff
changeset
|
123 |
$(shell $(GREP) ^extern $(JHELPER_DTRACE_SRC) | $(AWK) '{ gsub(";","") ; print $$3 }'), \ |
6abbc1f5c2a1
8198862: Stop doing funky compilation stuff for dtrace
ihse
parents:
49078
diff
changeset
|
124 |
-e 'sym:st_type $(symbol) 1') |
6abbc1f5c2a1
8198862: Stop doing funky compilation stuff for dtrace
ihse
parents:
49078
diff
changeset
|
125 |
|
6abbc1f5c2a1
8198862: Stop doing funky compilation stuff for dtrace
ihse
parents:
49078
diff
changeset
|
126 |
# Make sure we run our selected compiler for preprocessing instead of letting |
6abbc1f5c2a1
8198862: Stop doing funky compilation stuff for dtrace
ihse
parents:
49078
diff
changeset
|
127 |
# the dtrace tool pick it on it's own. |
49078
039e63e471e1
8198859: Use elfedit to silence linker warnings on solaris
ihse
parents:
49070
diff
changeset
|
128 |
$(DTRACE_JHELPER_OBJ): $(JHELPER_DTRACE_SRC) $(JVM_OFFSETS_INDEX_H) |
37437 | 129 |
$(call LogInfo, Running dtrace for $(<F)) |
49124
6abbc1f5c2a1
8198862: Stop doing funky compilation stuff for dtrace
ihse
parents:
49078
diff
changeset
|
130 |
$(call MakeDir, $(DTRACE_SUPPORT_DIR)) |
55017
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
131 |
$(call ExecuteWithLog, $(DTRACE_SUPPORT_DIR)/$(@F).dt, \ |
49553 | 132 |
($(CPP) $(DTRACE_CPP_FLAGS) -I$(DTRACE_GENSRC_DIR) $^ \ |
55017
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
133 |
> $(DTRACE_SUPPORT_DIR)/$(@F).dt)) |
49124
6abbc1f5c2a1
8198862: Stop doing funky compilation stuff for dtrace
ihse
parents:
49078
diff
changeset
|
134 |
$(call ExecuteWithLog, $@, $(DTRACE) $(DTRACE_FLAGS) -o $@ \ |
55017
5dc15cb1405c
8224677: Dtrace .d files clash with make dependency .d files
erikj
parents:
53683
diff
changeset
|
135 |
-s $(DTRACE_SUPPORT_DIR)/$(@F).dt) |
53683 | 136 |
ifeq ($(call isTargetCpuArch, sparc), true) |
49157 | 137 |
$(call ExecuteWithLog, $@.elfedit, $(ELFEDIT) $(call GetElfeditCommands) $@) |
138 |
endif |
|
37437 | 139 |
|
140 |
endif |
|
141 |
endif |