Skip to content

Commit a74a1ce

Browse files
Jesper Steen MøllerSrikanth Adayapalam
Jesper Steen Møller
authored and
Srikanth Adayapalam
committedAug 24, 2021
8271583: [lworld] primitive records can't be reference favoring
Reviewed-by: sadayapalam
1 parent dd0a9eb commit a74a1ce

File tree

3 files changed

+56
-2
lines changed

3 files changed

+56
-2
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Lower.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -2526,7 +2526,8 @@ JCTree generateRecordMethod(JCClassDecl tree, Name name, List<VarSymbol> vars, M
25262526
syms.typeDescriptorType).appendList(staticArgTypes),
25272527
staticArgsValues, bootstrapName, name, false);
25282528

2529-
VarSymbol _this = new VarSymbol(SYNTHETIC, names._this, tree.sym.type, tree.sym);
2529+
Type receiverType = tree.sym.type.isPrimitiveReferenceType() ? tree.sym.type.asValueType() : tree.sym.type;
2530+
VarSymbol _this = new VarSymbol(SYNTHETIC, names._this, receiverType, tree.sym);
25302531

25312532
JCMethodInvocation proxyCall;
25322533
if (!isEquals) {
@@ -2610,8 +2611,9 @@ JCFieldAccess makeIndyQualifier(
26102611
bootstrapName, staticArgTypes, List.nil());
26112612

26122613
MethodType indyType = msym.type.asMethodType();
2614+
Type receiverType = tree.sym.type.isPrimitiveReferenceType() ? tree.sym.type.asValueType() : tree.sym.type;
26132615
indyType = new MethodType(
2614-
isStatic ? List.nil() : indyType.argtypes.prepend(tree.sym.type),
2616+
isStatic ? List.nil() : indyType.argtypes.prepend(receiverType),
26152617
indyType.restype,
26162618
indyType.thrown,
26172619
syms.methodClass

‎src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java

+10
Original file line numberDiff line numberDiff line change
@@ -4062,6 +4062,15 @@ protected JCClassDecl recordDeclaration(JCModifiers mods, Comment dc) {
40624062
nextToken();
40634063
mods.flags |= Flags.RECORD;
40644064
Name name = typeName();
4065+
if ((mods.flags & Flags.PRIMITIVE_CLASS) != 0) {
4066+
if (token.kind == DOT) {
4067+
final Token pastDot = S.token(1);
4068+
if (pastDot.kind == IDENTIFIER && pastDot.name() == names.val) {
4069+
nextToken(); nextToken(); // discard .val
4070+
mods.flags |= Flags.REFERENCE_FAVORING;
4071+
}
4072+
}
4073+
}
40654074

40664075
List<JCTypeParameter> typarams = typeParametersOpt();
40674076

@@ -4497,6 +4506,7 @@ protected boolean isRecordStart() {
44974506
if (token.kind == IDENTIFIER && token.name() == names.record &&
44984507
(peekToken(TokenKind.IDENTIFIER, TokenKind.LPAREN) ||
44994508
peekToken(TokenKind.IDENTIFIER, TokenKind.EOF) ||
4509+
peekToken(TokenKind.IDENTIFIER, TokenKind.DOT) ||
45004510
peekToken(TokenKind.IDENTIFIER, TokenKind.LT))) {
45014511
checkSourceLevel(Feature.RECORDS);
45024512
return true;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
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+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/**
25+
* @test
26+
* @bug 8271583
27+
* @summary [lworld] primitive records can't be reference favoring
28+
* @run main/othervm RefFlavoredRecord
29+
*/
30+
31+
public primitive record RefFlavoredRecord.val(int theInteger, String theString) {
32+
public static void main(String[] args) {
33+
RefFlavoredRecord rec = RefFlavoredRecord.default;
34+
if (rec != null) {
35+
throw new AssertionError("Ref-favoring record .default should be null?");
36+
}
37+
38+
if (! new RefFlavoredRecord(42, "Fortytwo").equals(new RefFlavoredRecord(42, "Fortytwo"))) {
39+
throw new AssertionError("Records should be equal");
40+
}
41+
}
42+
}

0 commit comments

Comments
 (0)
Please sign in to comment.