Skip to content

Commit 077b2de

Browse files
turbanoffVicente Romero
authored and
Vicente Romero
committedNov 24, 2021
8274161: Cleanup redundant casts in jdk.compiler
Reviewed-by: vromero
1 parent 951247c commit 077b2de

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed
 

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -3954,14 +3954,14 @@ public void visitUnary(JCUnary tree) {
39543954
: chk.checkNonVoid(tree.arg.pos(), attribExpr(tree.arg, env));
39553955

39563956
// Find operator.
3957-
Symbol operator = tree.operator = operators.resolveUnary(tree, tree.getTag(), argtype);
3957+
OperatorSymbol operator = tree.operator = operators.resolveUnary(tree, tree.getTag(), argtype);
39583958
Type owntype = types.createErrorType(tree.type);
39593959
if (operator != operators.noOpSymbol &&
39603960
!argtype.isErroneous()) {
39613961
owntype = (tree.getTag().isIncOrDecUnaryOp())
39623962
? tree.arg.type
39633963
: operator.type.getReturnType();
3964-
int opc = ((OperatorSymbol)operator).opcode;
3964+
int opc = operator.opcode;
39653965

39663966
// If the argument is constant, fold it.
39673967
if (argtype.constValue() != null) {
@@ -4008,13 +4008,13 @@ public void visitBinary(JCBinary tree) {
40084008
matchBindings = matchBindingsComputer.binary(tree, lhsBindings, matchBindings);
40094009

40104010
// Find operator.
4011-
Symbol operator = tree.operator = operators.resolveBinary(tree, tree.getTag(), left, right);
4011+
OperatorSymbol operator = tree.operator = operators.resolveBinary(tree, tree.getTag(), left, right);
40124012
Type owntype = types.createErrorType(tree.type);
40134013
if (operator != operators.noOpSymbol &&
40144014
!left.isErroneous() &&
40154015
!right.isErroneous()) {
40164016
owntype = operator.type.getReturnType();
4017-
int opc = ((OperatorSymbol)operator).opcode;
4017+
int opc = operator.opcode;
40184018
// If both arguments are constants, fold them.
40194019
if (left.constValue() != null && right.constValue() != null) {
40204020
Type ctype = cfolder.fold2(opc, left, right);
@@ -5498,11 +5498,11 @@ private void attribClassBody(Env<AttrContext> env, ClassSymbol c) {
54985498
c.owner.kind != PCK &&
54995499
((c.flags() & STATIC) == 0 || c.name == names.empty) &&
55005500
(TreeInfo.flags(l.head) & (STATIC | INTERFACE)) != 0) {
5501-
Symbol sym = null;
5501+
VarSymbol sym = null;
55025502
if (l.head.hasTag(VARDEF)) sym = ((JCVariableDecl) l.head).sym;
55035503
if (sym == null ||
55045504
sym.kind != VAR ||
5505-
((VarSymbol) sym).getConstValue() == null)
5505+
sym.getConstValue() == null)
55065506
log.error(l.head.pos(), Errors.IclsCantHaveStaticDecl(c));
55075507
}
55085508
}

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -424,14 +424,14 @@ public void visitLambda(JCLambda tree) {
424424
//add captured locals
425425
for (Symbol fv : localContext.getSymbolMap(CAPTURED_VAR).keySet()) {
426426
if (fv != localContext.self) {
427-
JCTree captured_local = make.Ident(fv).setType(fv.type);
428-
syntheticInits.append((JCExpression) captured_local);
427+
JCExpression captured_local = make.Ident(fv).setType(fv.type);
428+
syntheticInits.append(captured_local);
429429
}
430430
}
431431
// add captured outer this instances (used only when `this' capture itself is illegal)
432432
for (Symbol fv : localContext.getSymbolMap(CAPTURED_OUTER_THIS).keySet()) {
433-
JCTree captured_local = make.QualThis(fv.type);
434-
syntheticInits.append((JCExpression) captured_local);
433+
JCExpression captured_local = make.QualThis(fv.type);
434+
syntheticInits.append(captured_local);
435435
}
436436

437437
//then, determine the arguments to the indy call
@@ -1184,13 +1184,13 @@ private JCExpression makeIndyCall(DiagnosticPosition pos, Type site, Name bsmNam
11841184
syms.stringType,
11851185
syms.methodTypeType).appendList(staticArgs.map(types::constantType));
11861186

1187-
Symbol bsm = rs.resolveInternalMethod(pos, attrEnv, site,
1187+
MethodSymbol bsm = rs.resolveInternalMethod(pos, attrEnv, site,
11881188
bsmName, bsm_staticArgs, List.nil());
11891189

11901190
DynamicMethodSymbol dynSym =
11911191
new DynamicMethodSymbol(methName,
11921192
syms.noSymbol,
1193-
((MethodSymbol)bsm).asHandle(),
1193+
bsm.asHandle(),
11941194
indyType,
11951195
staticArgs.toArray(new LoadableConstant[staticArgs.length()]));
11961196
JCFieldAccess qualifier = make.Select(make.QualIdent(site.tsym), bsmName);

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -2369,7 +2369,7 @@ private void visitEnumDef(JCClassDecl tree) {
23692369
enumDefs.append(make.VarDef(valuesVar, make.App(make.QualIdent(valuesMethod))));
23702370
tree.sym.members().enter(valuesVar);
23712371

2372-
Symbol valuesSym = lookupMethod(tree.pos(), names.values,
2372+
MethodSymbol valuesSym = lookupMethod(tree.pos(), names.values,
23732373
tree.type, List.nil());
23742374
List<JCStatement> valuesBody;
23752375
if (useClone()) {
@@ -2420,7 +2420,7 @@ private void visitEnumDef(JCClassDecl tree) {
24202420
}
24212421

24222422
JCMethodDecl valuesDef =
2423-
make.MethodDef((MethodSymbol)valuesSym, make.Block(0, valuesBody));
2423+
make.MethodDef(valuesSym, make.Block(0, valuesBody));
24242424

24252425
enumDefs.append(valuesDef);
24262426

@@ -2635,7 +2635,7 @@ JCFieldAccess makeIndyQualifier(
26352635
Name bootstrapName,
26362636
Name argName,
26372637
boolean isStatic) {
2638-
Symbol bsm = rs.resolveInternalMethod(tree.pos(), attrEnv, site,
2638+
MethodSymbol bsm = rs.resolveInternalMethod(tree.pos(), attrEnv, site,
26392639
bootstrapName, staticArgTypes, List.nil());
26402640

26412641
MethodType indyType = msym.type.asMethodType();
@@ -2647,7 +2647,7 @@ JCFieldAccess makeIndyQualifier(
26472647
);
26482648
DynamicMethodSymbol dynSym = new DynamicMethodSymbol(argName,
26492649
syms.noSymbol,
2650-
((MethodSymbol)bsm).asHandle(),
2650+
bsm.asHandle(),
26512651
indyType,
26522652
staticArgValues);
26532653
JCFieldAccess qualifier = make.Select(make.QualIdent(site.tsym), argName);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ private void handleSwitch(JCTree tree,
371371

372372
boolean enumSelector = seltype.tsym.isEnum();
373373
Name bootstrapName = enumSelector ? names.enumSwitch : names.typeSwitch;
374-
Symbol bsm = rs.resolveInternalMethod(tree.pos(), env, syms.switchBootstrapsType,
374+
MethodSymbol bsm = rs.resolveInternalMethod(tree.pos(), env, syms.switchBootstrapsType,
375375
bootstrapName, staticArgTypes, List.nil());
376376

377377
MethodType indyType = new MethodType(
@@ -382,7 +382,7 @@ private void handleSwitch(JCTree tree,
382382
);
383383
DynamicMethodSymbol dynSym = new DynamicMethodSymbol(bootstrapName,
384384
syms.noSymbol,
385-
((MethodSymbol)bsm).asHandle(),
385+
bsm.asHandle(),
386386
indyType,
387387
staticArgValues);
388388

‎src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/StringConcat.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ private void doCall(Type type, JCDiagnostic.DiagnosticPosition pos, List<Type> d
371371
syms.stringType,
372372
syms.methodTypeType);
373373

374-
Symbol bsm = rs.resolveInternalMethod(pos,
374+
MethodSymbol bsm = rs.resolveInternalMethod(pos,
375375
gen.getAttrEnv(),
376376
syms.stringConcatFactory,
377377
names.makeConcat,
@@ -380,7 +380,7 @@ private void doCall(Type type, JCDiagnostic.DiagnosticPosition pos, List<Type> d
380380

381381
Symbol.DynamicMethodSymbol dynSym = new Symbol.DynamicMethodSymbol(names.makeConcat,
382382
syms.noSymbol,
383-
((MethodSymbol)bsm).asHandle(),
383+
bsm.asHandle(),
384384
indyType,
385385
List.nil().toArray(new LoadableConstant[0]));
386386

@@ -487,7 +487,7 @@ private void doCall(Type type, JCDiagnostic.DiagnosticPosition pos, String recip
487487
.append(syms.stringType)
488488
.appendList(constTypes);
489489

490-
Symbol bsm = rs.resolveInternalMethod(pos,
490+
MethodSymbol bsm = rs.resolveInternalMethod(pos,
491491
gen.getAttrEnv(),
492492
syms.stringConcatFactory,
493493
names.makeConcatWithConstants,
@@ -496,7 +496,7 @@ private void doCall(Type type, JCDiagnostic.DiagnosticPosition pos, String recip
496496

497497
Symbol.DynamicMethodSymbol dynSym = new Symbol.DynamicMethodSymbol(names.makeConcatWithConstants,
498498
syms.noSymbol,
499-
((MethodSymbol)bsm).asHandle(),
499+
bsm.asHandle(),
500500
indyType,
501501
List.of(LoadableConstant.String(recipe))
502502
.appendList(constants).toArray(new LoadableConstant[constants.size()]));

0 commit comments

Comments
 (0)
Please sign in to comment.