author | ihse |
Tue, 22 Oct 2019 09:51:52 +0200 | |
branch | ihse-cflags-rewrite-branch |
changeset 58736 | e878a0b7cff0 |
parent 54836 | e2ed0691ae79 |
child 58834 | f78e7ce060b0 |
permissions | -rw-r--r-- |
37437 | 1 |
# |
53995 | 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 |
||
47314 | 26 |
$(eval $(call IncludeCustomExtension, hotspot/gensrc/GensrcJvmti.gmk)) |
37437 | 27 |
|
28 |
################################################################################ |
|
29 |
# Build tools needed for the JVMTI source code generation |
|
30 |
||
53995 | 31 |
# FIXME: jvmtiGen.java should move to make/src, jvmtiEnvFill.java should be removed. |
47217 | 32 |
JVMTI_TOOLS_SRCDIR := $(TOPDIR)/src/hotspot/share/prims |
37437 | 33 |
JVMTI_TOOLS_OUTPUTDIR := $(JVM_VARIANT_OUTPUTDIR)/tools/jvmti |
34 |
||
35 |
$(eval $(call SetupJavaCompiler, GENERATE_OLDBYTECODE, \ |
|
36 |
JAVAC := $(JAVAC), \ |
|
37 |
FLAGS := $(DISABLE_WARNINGS), \ |
|
38 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
|
39 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA), \ |
|
40 |
DISABLE_SJAVAC := true, \ |
|
41 |
)) |
|
42 |
||
43 |
$(eval $(call SetupJavaCompilation, BUILD_JVMTI_TOOLS, \ |
|
44 |
SETUP := GENERATE_OLDBYTECODE, \ |
|
45 |
SRC := $(JVMTI_TOOLS_SRCDIR), \ |
|
46 |
INCLUDE_FILES := jvmtiGen.java jvmtiEnvFill.java, \ |
|
47 |
BIN := $(JVMTI_TOOLS_OUTPUTDIR), \ |
|
48 |
)) |
|
49 |
||
50 |
TOOL_JVMTI_GEN := $(JAVA_SMALL) -cp $(JVMTI_TOOLS_OUTPUTDIR) jvmtiGen |
|
51 |
TOOL_JVMTI_ENV_FILL := $(JAVA_SMALL) -cp $(JVMTI_TOOLS_OUTPUTDIR) jvmtiEnvFill |
|
52 |
||
53 |
################################################################################ |
|
50113 | 54 |
# Setup make rules for an xml transform for jvmti file generation. |
37437 | 55 |
# |
56 |
# Parameter 1 is the name of the rule. This name is used as variable prefix, |
|
57 |
# and the targets generated are listed in a variable by that name. This name is |
|
58 |
# also used as the name of the output file. |
|
59 |
# |
|
60 |
# Remaining parameters are named arguments. These include: |
|
61 |
# XML_FILE -- The input source file to use |
|
62 |
# XSL_FILE -- The xsl file to use |
|
63 |
# OUTPUT_DIR -- The directory to put the generated file in |
|
64 |
# ARGS -- Additional arguments to the jvmtiGen tool |
|
65 |
# DEPS -- Additional dependencies |
|
66 |
SetupXslTransform = $(NamedParamsMacroTemplate) |
|
67 |
define SetupXslTransformBody |
|
53995 | 68 |
$1_OUTPUT_FILE := $$($1_OUTPUT_DIR)/$1 |
37437 | 69 |
|
53995 | 70 |
$$(eval $$(call SetupExecute, jvmti_gen_$1, \ |
71 |
INFO := Generating jvmti file $1, \ |
|
72 |
DEPS := $$($1_XML_FILE) $$($1_XSL_FILE) $$($1_DEPS) $$(BUILD_JVMTI_TOOLS), \ |
|
73 |
OUTPUT_FILE := $$($1_OUTPUT_FILE), \ |
|
74 |
COMMAND := $$(TOOL_JVMTI_GEN) -IN $$($1_XML_FILE) \ |
|
75 |
-XSL $$($1_XSL_FILE) -OUT $$($1_OUTPUT_FILE) $$($1_ARGS), \ |
|
76 |
)) |
|
77 |
||
78 |
TARGETS += $$(jvmti_gen_$1_TARGET) |
|
37437 | 79 |
endef |
80 |
||
81 |
################################################################################ |
|
82 |
# Create JVMTI files in gensrc/jvmtifiles |
|
83 |
||
47217 | 84 |
JVMTI_SRCDIR := $(TOPDIR)/src/hotspot/share/prims |
37437 | 85 |
JVMTI_OUTPUTDIR := $(JVM_VARIANT_OUTPUTDIR)/gensrc/jvmtifiles |
86 |
||
87 |
# Setup rule for generating a jvmti file |
|
88 |
# |
|
89 |
# $1 is generated source file name in $(JVMTI_OUTPUTDIR) |
|
90 |
# $2 is XSL file to use in $(JVMTI_SRCDIR) |
|
91 |
# $3 is optional extra arguments to jvmtiGen |
|
92 |
define SetupJvmtiGeneration |
|
93 |
$$(eval $$(call SetupXslTransform, $1, \ |
|
94 |
XML_FILE := $$(JVMTI_SRCDIR)/jvmti.xml, \ |
|
95 |
XSL_FILE := $$(JVMTI_SRCDIR)/$(strip $2), \ |
|
96 |
OUTPUT_DIR := $$(JVMTI_OUTPUTDIR), \ |
|
97 |
ARGS := $3, \ |
|
98 |
DEPS := $$(JVMTI_SRCDIR)/jvmtiLib.xsl, \ |
|
99 |
)) |
|
100 |
endef |
|
101 |
||
102 |
$(eval $(call SetupJvmtiGeneration, jvmtiEnter.cpp, jvmtiEnter.xsl, \ |
|
54836
e2ed0691ae79
8219023: Investigate syncing JVMTI spec version with JDK version
sspitsyn
parents:
53995
diff
changeset
|
103 |
-PARAM majorversion $(VERSION_FEATURE) \ |
37437 | 104 |
-PARAM interface jvmti)) |
105 |
$(eval $(call SetupJvmtiGeneration, jvmtiEnterTrace.cpp, jvmtiEnter.xsl, \ |
|
54836
e2ed0691ae79
8219023: Investigate syncing JVMTI spec version with JDK version
sspitsyn
parents:
53995
diff
changeset
|
106 |
-PARAM majorversion $(VERSION_FEATURE) \ |
37437 | 107 |
-PARAM interface jvmti -PARAM trace Trace)) |
54836
e2ed0691ae79
8219023: Investigate syncing JVMTI spec version with JDK version
sspitsyn
parents:
53995
diff
changeset
|
108 |
$(eval $(call SetupJvmtiGeneration, jvmtiEnv.hpp, jvmtiHpp.xsl, \ |
e2ed0691ae79
8219023: Investigate syncing JVMTI spec version with JDK version
sspitsyn
parents:
53995
diff
changeset
|
109 |
-PARAM majorversion $(VERSION_FEATURE))) |
e2ed0691ae79
8219023: Investigate syncing JVMTI spec version with JDK version
sspitsyn
parents:
53995
diff
changeset
|
110 |
$(eval $(call SetupJvmtiGeneration, jvmti.h, jvmtiH.xsl, \ |
e2ed0691ae79
8219023: Investigate syncing JVMTI spec version with JDK version
sspitsyn
parents:
53995
diff
changeset
|
111 |
-PARAM majorversion $(VERSION_FEATURE))) |
e2ed0691ae79
8219023: Investigate syncing JVMTI spec version with JDK version
sspitsyn
parents:
53995
diff
changeset
|
112 |
$(eval $(call SetupJvmtiGeneration, jvmti.html, jvmti.xsl, \ |
e2ed0691ae79
8219023: Investigate syncing JVMTI spec version with JDK version
sspitsyn
parents:
53995
diff
changeset
|
113 |
-PARAM majorversion $(VERSION_FEATURE))) |
37437 | 114 |
|
47217 | 115 |
JVMTI_BC_SRCDIR := $(TOPDIR)/src/hotspot/share/interpreter |
37437 | 116 |
|
117 |
$(eval $(call SetupXslTransform, bytecodeInterpreterWithChecks.cpp, \ |
|
118 |
XML_FILE := $(JVMTI_BC_SRCDIR)/bytecodeInterpreterWithChecks.xml, \ |
|
119 |
XSL_FILE := $(JVMTI_BC_SRCDIR)/bytecodeInterpreterWithChecks.xsl, \ |
|
120 |
OUTPUT_DIR := $(JVMTI_OUTPUTDIR), \ |
|
121 |
DEPS := $(JVMTI_BC_SRCDIR)/bytecodeInterpreter.cpp, \ |
|
122 |
)) |
|
123 |
||
124 |
################################################################################ |
|
41277 | 125 |
# Copy jvmti.h to include dir |
126 |
||
127 |
# The file is the same regardless of jvm variant. Only let one do the copy. |
|
41746
621dfac78ca1
8063154: Checked in jvmti.h not in sync with generated jvmti.h
erikj
parents:
41344
diff
changeset
|
128 |
ifeq ($(JVM_VARIANT), $(firstword $(JVM_VARIANTS))) |
621dfac78ca1
8063154: Checked in jvmti.h not in sync with generated jvmti.h
erikj
parents:
41344
diff
changeset
|
129 |
$(eval $(call SetupCopyFiles, COPY_JVMTI_H, \ |
621dfac78ca1
8063154: Checked in jvmti.h not in sync with generated jvmti.h
erikj
parents:
41344
diff
changeset
|
130 |
DEST := $(SUPPORT_OUTPUTDIR)/modules_include/java.base, \ |
621dfac78ca1
8063154: Checked in jvmti.h not in sync with generated jvmti.h
erikj
parents:
41344
diff
changeset
|
131 |
FILES := $(JVMTI_OUTPUTDIR)/jvmti.h, \ |
621dfac78ca1
8063154: Checked in jvmti.h not in sync with generated jvmti.h
erikj
parents:
41344
diff
changeset
|
132 |
)) |
41277 | 133 |
|
41746
621dfac78ca1
8063154: Checked in jvmti.h not in sync with generated jvmti.h
erikj
parents:
41344
diff
changeset
|
134 |
TARGETS += $(COPY_JVMTI_H) |
621dfac78ca1
8063154: Checked in jvmti.h not in sync with generated jvmti.h
erikj
parents:
41344
diff
changeset
|
135 |
endif |