Skip to content

Commit

Permalink
Remove TruffleBoundary
Browse files Browse the repository at this point in the history
  • Loading branch information
DieKautz committed Jan 24, 2024
1 parent 56c1c52 commit 3b1b752
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
*/
package de.hpi.swa.trufflesqueak.nodes.plugins.ffi;

import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.frame.MaterializedFrame;
import com.oracle.truffle.api.interop.ArityException;
import com.oracle.truffle.api.interop.InteropLibrary;
Expand Down Expand Up @@ -172,7 +171,6 @@ private int addObjectToRegistry(final Object object) {
return oop;
}

@TruffleBoundary
private int oopFor(final Object object) {
int oop = objectRegistry.indexOf(object);
if (oop < 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
package de.hpi.swa.trufflesqueak.util;

import com.oracle.truffle.api.CompilerDirectives;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.TruffleFile;
import com.oracle.truffle.api.interop.ArityException;
import com.oracle.truffle.api.interop.InteropLibrary;
Expand Down Expand Up @@ -64,7 +63,6 @@ boolean isExecutable() {
}

@ExportMessage
@TruffleBoundary
Object execute(final Object... arguments) {
return executable.execute(arguments);
}
Expand Down

0 comments on commit 3b1b752

Please sign in to comment.