Skip to content

Commit 0ea5862

Browse files
lgxbslgxmcimadamore
authored andcommittedJan 22, 2021
8260053: Optimize Tokens' use of Names
Reviewed-by: mcimadamore
1 parent 18eb6d9 commit 0ea5862

File tree

1 file changed

+13
-35
lines changed
  • src/jdk.compiler/share/classes/com/sun/tools/javac/parser

1 file changed

+13
-35
lines changed
 

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

+13-35
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,17 +25,14 @@
2525

2626
package com.sun.tools.javac.parser;
2727

28+
import java.util.HashMap;
2829
import java.util.Locale;
30+
import java.util.Map;
2931

3032
import com.sun.tools.javac.api.Formattable;
3133
import com.sun.tools.javac.api.Messages;
3234
import com.sun.tools.javac.parser.Tokens.Token.Tag;
33-
import com.sun.tools.javac.util.List;
34-
import com.sun.tools.javac.util.Name;
35-
import com.sun.tools.javac.util.Context;
36-
import com.sun.tools.javac.util.Filter;
37-
import com.sun.tools.javac.util.ListBuffer;
38-
import com.sun.tools.javac.util.Names;
35+
import com.sun.tools.javac.util.*;
3936

4037
/** A class that defines codes/utilities for Java source tokens
4138
* returned from lexical analysis.
@@ -52,15 +49,7 @@ public class Tokens {
5249
/**
5350
* Keyword array. Maps name indices to Token.
5451
*/
55-
private final TokenKind[] key;
56-
57-
/** The number of the last entered keyword.
58-
*/
59-
private int maxKey = 0;
60-
61-
/** The names of all tokens.
62-
*/
63-
private Name[] tokenName = new Name[TokenKind.values().length];
52+
private Map<String, TokenKind> keywords = new HashMap<>();
6453

6554
public static final Context.Key<Tokens> tokensKey = new Context.Key<>();
6655

@@ -75,37 +64,26 @@ protected Tokens(Context context) {
7564
context.put(tokensKey, this);
7665
names = Names.instance(context);
7766
for (TokenKind t : TokenKind.values()) {
78-
if (t.name != null)
79-
enterKeyword(t.name, t);
80-
else
81-
tokenName[t.ordinal()] = null;
82-
}
83-
84-
key = new TokenKind[maxKey+1];
85-
for (int i = 0; i <= maxKey; i++) key[i] = TokenKind.IDENTIFIER;
86-
for (TokenKind t : TokenKind.values()) {
87-
if (t.name != null)
88-
key[tokenName[t.ordinal()].getIndex()] = t;
67+
if (t.name != null) {
68+
names.fromString(t.name);
69+
keywords.put(t.name, t);
70+
}
8971
}
9072
}
9173

92-
private void enterKeyword(String s, TokenKind token) {
93-
Name n = names.fromString(s);
94-
tokenName[token.ordinal()] = n;
95-
if (n.getIndex() > maxKey) maxKey = n.getIndex();
96-
}
97-
9874
/**
9975
* Create a new token given a name; if the name corresponds to a token name,
10076
* a new token of the corresponding kind is returned; otherwise, an
10177
* identifier token is returned.
10278
*/
10379
TokenKind lookupKind(Name name) {
104-
return (name.getIndex() > maxKey) ? TokenKind.IDENTIFIER : key[name.getIndex()];
80+
TokenKind t = keywords.get(name.toString());
81+
return (t != null) ? t : TokenKind.IDENTIFIER;
10582
}
10683

10784
TokenKind lookupKind(String name) {
108-
return lookupKind(names.fromString(name));
85+
TokenKind t = keywords.get(name);
86+
return (t != null) ? t : TokenKind.IDENTIFIER;
10987
}
11088

11189
/**

0 commit comments

Comments
 (0)
Please sign in to comment.