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/CompactingOldGeneration.java
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/compacting/PlanningVisitor.java
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/remset/AlignedChunkRememberedSet.java
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/remset/FirstObjectTable.java
+5-4
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,6 @@
24
24
*/
25
25
packagecom.oracle.svm.core.genscavenge.remset;
26
26
27
-
importjdk.graal.compiler.word.Word;
28
27
importorg.graalvm.word.Pointer;
29
28
importorg.graalvm.word.UnsignedWord;
30
29
@@ -37,6 +36,8 @@
37
36
importcom.oracle.svm.core.log.Log;
38
37
importcom.oracle.svm.core.util.UnsignedUtils;
39
38
39
+
importjdk.graal.compiler.word.Word;
40
+
40
41
/**
41
42
* A "first object table" to tell me the start of the first object that crosses onto a card
42
43
* remembered set memory region.
@@ -109,7 +110,7 @@
109
110
* <p>
110
111
* Implementation note: Table entries are bytes but converted to and from ints with bounds checks.
111
112
*/
112
-
finalclassFirstObjectTable {
113
+
publicfinalclassFirstObjectTable {
113
114
/**
114
115
* The number of bytes of memory covered by an entry. Since the indexes into the CardTable are
115
116
* used to index into the FirstObjectTable, these need to have the same value.
@@ -237,7 +238,7 @@ public static void setTableForObject(Pointer table, UnsignedWord startOffset, Un
237
238
*/
238
239
@AlwaysInline("GC performance")
239
240
@Uninterruptible(reason = "Called from uninterruptible code.", mayBeInlined = true)
0 commit comments