Skip to content

Commit 2060c8e

Browse files
author
Jim Laskey
committedApr 13, 2023
8305688: jdk build --with-memory-size=1024 broken by JDK-8305100
Reviewed-by: martin
1 parent 646b666 commit 2060c8e

File tree

2 files changed

+27
-12
lines changed

2 files changed

+27
-12
lines changed
 

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

+10-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ protected static class JavadocComment extends BasicComment {
9696
/**
9797
* StringBuilder used to extract the relevant portion of the Javadoc comment.
9898
*/
99-
private final StringBuilder sb;
99+
private StringBuilder sb;
100100

101101
/**
102102
* Indicates if newline is required.
@@ -166,6 +166,8 @@ protected void scanDocComment() {
166166
super.scanDocComment();
167167
} finally {
168168
docComment = sb.toString();
169+
sb = null;
170+
offsetMap.trim();
169171
}
170172
}
171173
}
@@ -310,6 +312,13 @@ private void ensure(int need) {
310312
}
311313
}
312314

315+
/**
316+
* Reduce map to minimum size.
317+
*/
318+
void trim() {
319+
map = Arrays.copyOf(map, size);
320+
}
321+
313322
/**
314323
* Binary search to find the entry for which the string index is less
315324
* than pos. Since the map is a list of pairs of integers we must make

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

+17-11
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ public class UnicodeReader {
5454
*/
5555
private final int length;
5656

57+
/**
58+
* Virtual position offset in the original buffer.
59+
*/
60+
private final int offset;
61+
5762
/**
5863
* Character buffer index of character currently being observed.
5964
*/
@@ -115,7 +120,7 @@ protected UnicodeReader(ScannerFactory sf, char[] array, int length) {
115120
* @param length length of meaningful content in buffer.
116121
*/
117122
protected UnicodeReader(Log log, char[] array, int length) {
118-
this(log, array, 0, length);
123+
this(log, array, 0, 0, length);
119124
}
120125

121126
/**
@@ -127,9 +132,10 @@ protected UnicodeReader(Log log, char[] array, int length) {
127132
* @param endPos end of meaningful content in buffer.
128133
*/
129134
@SuppressWarnings("this-escape")
130-
protected UnicodeReader(Log log, char[] array, int pos, int endPos) {
135+
protected UnicodeReader(Log log, char[] array, int offset, int pos, int endPos) {
131136
this.buffer = array;
132137
this.length = endPos;
138+
this.offset = offset;
133139
this.position = pos;
134140
this.width = 0;
135141
this.character = '\0';
@@ -315,22 +321,22 @@ private enum UnicodeEscapeResult {
315321
}
316322

317323
/**
318-
* Return the current position in the character buffer.
324+
* Return the virtual position in the character buffer.
319325
*
320-
* @return current position in the character buffer.
326+
* @return virtual position in the character buffer.
321327
*/
322328
protected int position() {
323-
return position;
329+
return offset + position;
324330
}
325331

326332

327333
/**
328-
* Reset the reader to the specified position.
334+
* Reset the reader to the specified virtual position.
329335
* Warning: Do not use when previous character was an ASCII or unicode backslash.
330336
* @param pos
331337
*/
332338
protected void reset(int pos) {
333-
position = pos;
339+
position = pos - offset;
334340
width = 0;
335341
wasBackslash = false;
336342
wasUnicodeEscape = false;
@@ -474,7 +480,7 @@ protected UnicodeReader lineReader() {
474480
int endPos = position;
475481
accept('\r');
476482
accept('\n');
477-
return lineReader(pos, endPos);
483+
return new UnicodeReader(log, buffer, offset, pos, endPos);
478484
}
479485

480486
/**
@@ -487,7 +493,7 @@ protected UnicodeReader lineReader() {
487493
* @return a new reader
488494
*/
489495
protected UnicodeReader lineReader(int pos, int endPos) {
490-
return new UnicodeReader(log, buffer, pos, endPos);
496+
return new UnicodeReader(log, buffer, offset, pos - offset, endPos - offset);
491497
}
492498

493499
/**
@@ -561,7 +567,7 @@ protected boolean accept(String string) {
561567
}
562568

563569
// Be prepared to retreat if not a match.
564-
int savedPosition = position;
570+
int savedPosition = position();
565571

566572
nextCodePoint();
567573

@@ -695,7 +701,7 @@ static class PositionTrackingReader extends UnicodeReader {
695701
* @param endPos end of meaningful content in buffer.
696702
*/
697703
protected PositionTrackingReader(UnicodeReader reader, int pos, int endPos) {
698-
super(reader.log, reader.buffer, pos, endPos);
704+
super(reader.log, reader.getRawCharacters(pos, endPos), reader.offset + pos, 0, endPos - pos);
699705
this.column = 0;
700706
}
701707

0 commit comments

Comments
 (0)
Please sign in to comment.