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/graal/BarrierSnippets.java
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/graal/GenScavengeGCFeature.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,7 @@ public void beforeCompilation(BeforeCompilationAccess access) {
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/remset/CardTableBasedRememberedSet.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -128,12 +128,14 @@ public boolean hasRememberedSet(UnsignedWord header) {
128
128
129
129
@Override
130
130
@AlwaysInline("GC performance")
131
+
@Uninterruptible(reason = "Called from uninterruptible code.", mayBeInlined = true)
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/remset/NoRememberedSet.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -124,11 +124,13 @@ public boolean hasRememberedSet(UnsignedWord header) {
124
124
}
125
125
126
126
@Override
127
+
@Uninterruptible(reason = "Called from uninterruptible code.", mayBeInlined = true)
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/remset/RememberedSet.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,7 @@ static RememberedSet get() {
115
115
* (from old generation to young generation, or from image heap to runtime heap).
116
116
*/
117
117
@AlwaysInline("GC performance")
118
+
@Uninterruptible(reason = "Called from uninterruptible code.", mayBeInlined = true)
0 commit comments