You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/AbstractCollectionPolicy.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -297,7 +297,7 @@ public UnsignedWord getMaximumFreeAlignedChunksSize() {
297
297
/*
298
298
* Keep chunks ready for allocations in eden and for the survivor to-spaces during young
299
299
* collections (although we might keep too many aligned chunks when large objects in
300
-
* unallocated chunks are also allocated). We could alternatively return
300
+
* unaligned chunks are also allocated). We could alternatively return
301
301
* getCurrentHeapCapacity() to have chunks ready during full GCs as well.
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/ReciprocalLeastSquareFit.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@
25
25
packagecom.oracle.svm.core.genscavenge;
26
26
27
27
/**
28
-
* Least squares fitting on a data set to generate an equation y = b + a / x. Uses exponential decay
28
+
* Least squares fitting on a data set to generate an equation y = a + b / x. Uses exponential decay
29
29
* to assign a higher weight to newly added data points and effectively drop old data points without
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/remset/BrickTable.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@
40
40
/**
41
41
* Inspired by the .NET CoreCLR GC, the {@link BrickTable} speeds up lookups of new object locations
42
42
* after compaction by acting as a lookup table for {@link ObjectMoveInfo} structures. Each entry
43
-
* stores a pointer to the start of the first such structure for the fraction of the chunk that it
43
+
* stores the offset of the start of the first such structure for the fraction of the chunk that it
44
44
* covers. It borrows the memory of a chunk's {@link CardTable}.
0 commit comments