Skip to content

Commit d29e238

Browse files
committedMay 28, 2021
Merge
2 parents eca68e8 + 9c346a1 commit d29e238

File tree

1,313 files changed

+8700
-5880
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,313 files changed

+8700
-5880
lines changed
 

‎make/langtools/src/classes/build/tools/symbolgenerator/CreateSymbols.java

+39
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@
132132
import com.sun.tools.classfile.Module_attribute.RequiresEntry;
133133
import com.sun.tools.classfile.NestHost_attribute;
134134
import com.sun.tools.classfile.NestMembers_attribute;
135+
import com.sun.tools.classfile.PermittedSubclasses_attribute;
135136
import com.sun.tools.classfile.Record_attribute;
136137
import com.sun.tools.classfile.Record_attribute.ComponentInfo;
137138
import com.sun.tools.classfile.RuntimeAnnotations_attribute;
@@ -978,6 +979,16 @@ private void addAttributes(ClassHeaderDescription header,
978979
attributes.put(Attribute.Record,
979980
new Record_attribute(attributeString, recordComponents));
980981
}
982+
if (header.isSealed) {
983+
int attributeString = addString(constantPool, Attribute.PermittedSubclasses);
984+
int[] subclasses = new int[header.permittedSubclasses.size()];
985+
int i = 0;
986+
for (String intf : header.permittedSubclasses) {
987+
subclasses[i++] = addClass(constantPool, intf);
988+
}
989+
attributes.put(Attribute.PermittedSubclasses,
990+
new PermittedSubclasses_attribute(attributeString, subclasses));
991+
}
981992
addInnerClassesAttribute(header, constantPool, attributes);
982993
}
983994

@@ -2229,6 +2240,16 @@ private boolean readAttribute(ClassFile cf, FeatureDescription feature, Attribut
22292240
}
22302241
break;
22312242
}
2243+
case Attribute.PermittedSubclasses: {
2244+
assert feature instanceof ClassHeaderDescription;
2245+
PermittedSubclasses_attribute permittedSubclasses = (PermittedSubclasses_attribute) attr;
2246+
ClassHeaderDescription chd = (ClassHeaderDescription) feature;
2247+
chd.permittedSubclasses = Arrays.stream(permittedSubclasses.subtypes)
2248+
.mapToObj(i -> getClassName(cf, i))
2249+
.collect(Collectors.toList());
2250+
chd.isSealed = true;
2251+
break;
2252+
}
22322253
default:
22332254
throw new IllegalStateException("Unhandled attribute: " +
22342255
attrName);
@@ -3077,6 +3098,8 @@ static class ClassHeaderDescription extends HeaderDescription {
30773098
List<String> nestMembers;
30783099
boolean isRecord;
30793100
List<RecordComponentDescription> recordComponents;
3101+
boolean isSealed;
3102+
List<String> permittedSubclasses;
30803103

30813104
@Override
30823105
public int hashCode() {
@@ -3087,6 +3110,8 @@ public int hashCode() {
30873110
hash = 17 * hash + Objects.hashCode(this.nestMembers);
30883111
hash = 17 * hash + Objects.hashCode(this.isRecord);
30893112
hash = 17 * hash + Objects.hashCode(this.recordComponents);
3113+
hash = 17 * hash + Objects.hashCode(this.isSealed);
3114+
hash = 17 * hash + Objects.hashCode(this.permittedSubclasses);
30903115
return hash;
30913116
}
30923117

@@ -3117,6 +3142,12 @@ public boolean equals(Object obj) {
31173142
if (!listEquals(this.recordComponents, other.recordComponents)) {
31183143
return false;
31193144
}
3145+
if (this.isSealed != other.isSealed) {
3146+
return false;
3147+
}
3148+
if (!listEquals(this.permittedSubclasses, other.permittedSubclasses)) {
3149+
return false;
3150+
}
31203151
return true;
31213152
}
31223153

@@ -3137,6 +3168,9 @@ public void write(Appendable output, String baselineVersion, String version) thr
31373168
if (isRecord) {
31383169
output.append(" record true");
31393170
}
3171+
if (isSealed) {
3172+
output.append(" sealed true");
3173+
}
31403174
writeAttributes(output);
31413175
output.append("\n");
31423176
writeRecordComponents(output, baselineVersion, version);
@@ -3163,6 +3197,11 @@ public boolean read(LineBasedReader reader) throws IOException {
31633197
readRecordComponents(reader);
31643198
}
31653199
readInnerClasses(reader);
3200+
isSealed = reader.attributes.containsKey("permittedSubclasses");
3201+
if (isSealed) {
3202+
String subclassesList = reader.attributes.get("permittedSubclasses");
3203+
permittedSubclasses = deserializeList(subclassesList);
3204+
}
31663205

31673206
return true;
31683207
}

‎make/modules/java.desktop/lib/Awt2dLibraries.gmk

-6
Original file line numberDiff line numberDiff line change
@@ -447,19 +447,13 @@ else
447447
ifeq ($(call isTargetOs, linux macosx), true)
448448
HARFBUZZ_CFLAGS += -DHAVE_INTEL_ATOMIC_PRIMITIVES
449449
endif
450-
ifeq ($(call isTargetOs, macosx), true)
451-
HARFBUZZ_CFLAGS += -DHAVE_CORETEXT
452-
endif
453450

454451
# Early re-canonizing has to be disabled to workaround an internal XlC compiler error
455452
# when building libharfbuzz
456453
ifeq ($(call isTargetOs, aix), true)
457454
HARFBUZZ_CFLAGS += -qdebug=necan
458455
endif
459456

460-
ifeq ($(call isTargetOs, macosx), false)
461-
LIBFONTMANAGER_EXCLUDE_FILES += libharfbuzz/hb-coretext.cc
462-
endif
463457
# hb-ft.cc is not presently needed, and requires freetype 2.4.2 or later.
464458
LIBFONTMANAGER_EXCLUDE_FILES += libharfbuzz/hb-ft.cc
465459

0 commit comments

Comments
 (0)
Please sign in to comment.