author | michaelm |
Tue, 12 Nov 2019 15:07:15 +0000 | |
branch | unixdomainchannels |
changeset 59030 | 8555f68967d1 |
parent 58908 | 73bb9c4002cc |
permissions | -rw-r--r-- |
36934 | 1 |
# |
58908
73bb9c4002cc
8233381: Update copyright year in build system files
ihse
parents:
53110
diff
changeset
|
2 |
# Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. |
36934 | 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 |
GENSRC_VARHANDLES := |
|
27 |
||
28 |
VARHANDLES_GENSRC_DIR := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/java/lang/invoke |
|
47217 | 29 |
VARHANDLES_SRC_DIR := $(TOPDIR)/src/java.base/share/classes/java/lang/invoke |
36934 | 30 |
|
31 |
################################################################################ |
|
32 |
# Setup a rule for generating a VarHandle java class |
|
33 |
# Param 1 - Variable declaration prefix |
|
34 |
# Param 2 - Type with first letter capitalized |
|
35 |
define GenerateVarHandle |
|
36 |
||
37 |
$1_Type := $2 |
|
38 |
||
39 |
$1_FILENAME := $(VARHANDLES_GENSRC_DIR)/VarHandle$$($1_Type)s.java |
|
40 |
||
39471
6622892a347a
8158039: VarHandle float/double field/array access should support CAS/set/add atomics
psandoz
parents:
39470
diff
changeset
|
41 |
$1_ARGS += -KCAS |
36934 | 42 |
|
39471
6622892a347a
8158039: VarHandle float/double field/array access should support CAS/set/add atomics
psandoz
parents:
39470
diff
changeset
|
43 |
ifneq ($$(findstring $$($1_Type), Byte Short Char Int Long Float Double), ) |
36934 | 44 |
$1_ARGS += -KAtomicAdd |
45 |
endif |
|
46 |
||
40732
2fd9cf42bb3c
8161444: VarHandles should provide access bitwise atomics
psandoz
parents:
39471
diff
changeset
|
47 |
ifneq ($$(findstring $$($1_Type), Boolean Byte Short Char Int Long), ) |
2fd9cf42bb3c
8161444: VarHandles should provide access bitwise atomics
psandoz
parents:
39471
diff
changeset
|
48 |
$1_ARGS += -KBitwise |
2fd9cf42bb3c
8161444: VarHandles should provide access bitwise atomics
psandoz
parents:
39471
diff
changeset
|
49 |
endif |
2fd9cf42bb3c
8161444: VarHandles should provide access bitwise atomics
psandoz
parents:
39471
diff
changeset
|
50 |
|
39470
d6f8b4a85fb0
8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents:
36938
diff
changeset
|
51 |
ifneq ($$(findstring $$($1_Type), Byte Short Char), ) |
d6f8b4a85fb0
8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents:
36938
diff
changeset
|
52 |
$1_ARGS += -KShorterThanInt |
d6f8b4a85fb0
8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents:
36938
diff
changeset
|
53 |
endif |
d6f8b4a85fb0
8157726: VarHandles/Unsafe should support sub-word atomic ops
shade
parents:
36938
diff
changeset
|
54 |
|
36934 | 55 |
$$($1_FILENAME): $(VARHANDLES_SRC_DIR)/X-VarHandle.java.template $(BUILD_TOOLS_JDK) |
52220
9c260a6b6471
8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference
mchung
parents:
48695
diff
changeset
|
56 |
ifeq ($$($1_Type), Reference) |
9c260a6b6471
8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference
mchung
parents:
48695
diff
changeset
|
57 |
$$(eval $1_type := Object) |
36934 | 58 |
else |
36938
b43bd5279f4e
8152959: Build crashes in jdk9-hs-comp on Linux with gnumake 3.81
erikj
parents:
36934
diff
changeset
|
59 |
$$(eval $1_type := $$$$(shell $(TR) '[:upper:]' '[:lower:]' <<< $$$$($1_Type))) |
36934 | 60 |
endif |
36938
b43bd5279f4e
8152959: Build crashes in jdk9-hs-comp on Linux with gnumake 3.81
erikj
parents:
36934
diff
changeset
|
61 |
$$(call MakeDir, $$(@D)) |
53110 | 62 |
$(RM) $$@ |
36934 | 63 |
$(TOOL_SPP) -nel -K$$($1_type) -Dtype=$$($1_type) -DType=$$($1_Type) \ |
53110 | 64 |
$$($1_ARGS) -i$$< -o$$@ |
36934 | 65 |
|
66 |
GENSRC_VARHANDLES += $$($1_FILENAME) |
|
67 |
endef |
|
68 |
||
69 |
################################################################################ |
|
70 |
||
71 |
################################################################################ |
|
72 |
# Setup a rule for generating a VarHandleByteArray java class |
|
73 |
# Param 1 - Variable declaration prefix |
|
74 |
# Param 2 - Type with first letter capitalized |
|
75 |
define GenerateVarHandleByteArray |
|
76 |
||
77 |
$1_Type := $2 |
|
78 |
||
79 |
$1_FILENAME := $(VARHANDLES_GENSRC_DIR)/VarHandleByteArrayAs$$($1_Type)s.java |
|
80 |
||
81 |
ifeq ($$($1_Type), Short) |
|
82 |
$1_type := short |
|
83 |
$1_BoxType := $$($1_Type) |
|
84 |
||
85 |
$1_rawType := $$($1_type) |
|
86 |
$1_RawType := $$($1_Type) |
|
87 |
$1_RawBoxType := $$($1_BoxType) |
|
88 |
endif |
|
89 |
||
90 |
ifeq ($$($1_Type), Char) |
|
91 |
$1_type := char |
|
92 |
$1_BoxType := Character |
|
93 |
||
94 |
$1_rawType := $$($1_type) |
|
95 |
$1_RawType := $$($1_Type) |
|
96 |
$1_RawBoxType := $$($1_BoxType) |
|
97 |
endif |
|
98 |
||
99 |
ifeq ($$($1_Type), Int) |
|
100 |
$1_type := int |
|
101 |
$1_BoxType := Integer |
|
102 |
||
103 |
$1_rawType := $$($1_type) |
|
104 |
$1_RawType := $$($1_Type) |
|
105 |
$1_RawBoxType := $$($1_BoxType) |
|
106 |
||
107 |
$1_ARGS += -KCAS |
|
108 |
$1_ARGS += -KAtomicAdd |
|
40732
2fd9cf42bb3c
8161444: VarHandles should provide access bitwise atomics
psandoz
parents:
39471
diff
changeset
|
109 |
$1_ARGS += -KBitwise |
36934 | 110 |
endif |
111 |
||
112 |
ifeq ($$($1_Type), Long) |
|
113 |
$1_type := long |
|
114 |
$1_BoxType := $$($1_Type) |
|
115 |
||
116 |
$1_rawType := $$($1_type) |
|
117 |
$1_RawType := $$($1_Type) |
|
118 |
$1_RawBoxType := $$($1_BoxType) |
|
119 |
||
120 |
$1_ARGS += -KCAS |
|
121 |
$1_ARGS += -KAtomicAdd |
|
40732
2fd9cf42bb3c
8161444: VarHandles should provide access bitwise atomics
psandoz
parents:
39471
diff
changeset
|
122 |
$1_ARGS += -KBitwise |
36934 | 123 |
endif |
124 |
||
125 |
ifeq ($$($1_Type), Float) |
|
126 |
$1_type := float |
|
127 |
$1_BoxType := $$($1_Type) |
|
128 |
||
129 |
$1_rawType := int |
|
130 |
$1_RawType := Int |
|
131 |
$1_RawBoxType := Integer |
|
132 |
||
133 |
$1_ARGS += -KCAS |
|
134 |
$1_ARGS += -KfloatingPoint |
|
135 |
endif |
|
136 |
||
137 |
ifeq ($$($1_Type), Double) |
|
138 |
$1_type := double |
|
139 |
$1_BoxType := $$($1_Type) |
|
140 |
||
141 |
$1_rawType := long |
|
142 |
$1_RawType := Long |
|
143 |
$1_RawBoxType := Long |
|
144 |
||
145 |
$1_ARGS += -KCAS |
|
146 |
$1_ARGS += -KfloatingPoint |
|
147 |
endif |
|
148 |
||
149 |
$$($1_FILENAME): $(VARHANDLES_SRC_DIR)/X-VarHandleByteArrayView.java.template $(BUILD_TOOLS_JDK) |
|
36938
b43bd5279f4e
8152959: Build crashes in jdk9-hs-comp on Linux with gnumake 3.81
erikj
parents:
36934
diff
changeset
|
150 |
$$(call MakeDir, $$(@D)) |
53110 | 151 |
$(RM) $$@ |
36934 | 152 |
$(TOOL_SPP) -nel -K$$($1_type) \ |
153 |
-Dtype=$$($1_type) -DType=$$($1_Type) -DBoxType=$$($1_BoxType) \ |
|
154 |
-DrawType=$$($1_rawType) -DRawType=$$($1_RawType) -DRawBoxType=$$($1_RawBoxType) \ |
|
53110 | 155 |
$$($1_ARGS) -i$$< -o$$@ |
36934 | 156 |
|
157 |
GENSRC_VARHANDLES += $$($1_FILENAME) |
|
158 |
endef |
|
159 |
||
160 |
################################################################################ |
|
161 |
||
162 |
# List the types to generate source for, with capitalized first letter |
|
52220
9c260a6b6471
8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference
mchung
parents:
48695
diff
changeset
|
163 |
VARHANDLES_TYPES := Boolean Byte Short Char Int Long Float Double Reference |
36938
b43bd5279f4e
8152959: Build crashes in jdk9-hs-comp on Linux with gnumake 3.81
erikj
parents:
36934
diff
changeset
|
164 |
$(foreach t, $(VARHANDLES_TYPES), \ |
b43bd5279f4e
8152959: Build crashes in jdk9-hs-comp on Linux with gnumake 3.81
erikj
parents:
36934
diff
changeset
|
165 |
$(eval $(call GenerateVarHandle,VAR_HANDLE_$t,$t))) |
36934 | 166 |
|
167 |
# List the types to generate source for, with capitalized first letter |
|
168 |
VARHANDLES_BYTE_ARRAY_TYPES := Short Char Int Long Float Double |
|
36938
b43bd5279f4e
8152959: Build crashes in jdk9-hs-comp on Linux with gnumake 3.81
erikj
parents:
36934
diff
changeset
|
169 |
$(foreach t, $(VARHANDLES_BYTE_ARRAY_TYPES), \ |
b43bd5279f4e
8152959: Build crashes in jdk9-hs-comp on Linux with gnumake 3.81
erikj
parents:
36934
diff
changeset
|
170 |
$(eval $(call GenerateVarHandleByteArray,VAR_HANDLE_BYTE_ARRAY_$t,$t))) |
36934 | 171 |
|
172 |
GENSRC_JAVA_BASE += $(GENSRC_VARHANDLES) |
|
48695 | 173 |
|
174 |
# Include custom extension post hook |
|
175 |
$(eval $(call IncludeCustomExtension, gensrc/GensrcVarHandles-post.gmk)) |