com.oracle.truffle.nfi.api.LongNativePointerLibraryGen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truffle-nfi Show documentation
Show all versions of truffle-nfi Show documentation
Native function interface for the Truffle framework.
The newest version!
// CheckStyle: start generated
package com.oracle.truffle.nfi.api;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.interop.UnsupportedMessageException;
import com.oracle.truffle.api.library.DynamicDispatchLibrary;
import com.oracle.truffle.api.library.LibraryExport;
import com.oracle.truffle.api.library.LibraryFactory;
import com.oracle.truffle.api.library.provider.EagerExportProvider;
import com.oracle.truffle.api.nodes.DenyReplace;
import com.oracle.truffle.api.nodes.UnadoptableNode;
import com.oracle.truffle.nfi.api.NativePointerLibrary.LongNativePointerLibrary;
@GeneratedBy(LongNativePointerLibrary.class)
public final class LongNativePointerLibraryGen {
private static final LibraryFactory DYNAMIC_DISPATCH_LIBRARY_ = LibraryFactory.resolve(DynamicDispatchLibrary.class);
static {
LibraryExport.register(LongNativePointerLibrary.class, new NativePointerLibraryExports());
}
private LongNativePointerLibraryGen() {
}
private static void init() {
// This method is intended to ensure class initialization.
}
@GeneratedBy(LongNativePointerLibrary.class)
public static final class NativePointerLibraryEagerProvider implements EagerExportProvider {
@Override
public void ensureRegistered() {
LongNativePointerLibraryGen.init();
}
@Override
public String getLibraryClassName() {
return "com.oracle.truffle.nfi.api.NativePointerLibrary";
}
}
@GeneratedBy(LongNativePointerLibrary.class)
private static final class NativePointerLibraryExports extends LibraryExport {
private static final Uncached UNCACHED = new Uncached();
private static final Cached CACHE = new Cached();
private NativePointerLibraryExports() {
super(NativePointerLibrary.class, Long.class, true, true, 1);
}
@Override
protected NativePointerLibrary createUncached(Object receiver) {
assert receiver instanceof Long;
NativePointerLibrary uncached = NativePointerLibraryExports.UNCACHED;
return uncached;
}
@Override
protected NativePointerLibrary createCached(Object receiver) {
assert receiver instanceof Long || receiver instanceof LibraryExport>;
return NativePointerLibraryExports.CACHE;
}
@GeneratedBy(LongNativePointerLibrary.class)
private static final class Cached extends NativePointerLibrary implements UnadoptableNode {
protected Cached() {
}
@Override
public boolean accepts(Object receiver) {
assert !(receiver instanceof Long) || DYNAMIC_DISPATCH_LIBRARY_.getUncached().dispatch(receiver) == null : "Invalid library export. Exported receiver with dynamic dispatch found but not expected.";
return receiver instanceof Long;
}
@Override
public boolean isPointer(Object receiver) {
assert this.accepts(receiver) : "Invalid library usage. Library does not accept given receiver.";
return LongNativePointerLibrary.isPointer((((Long) receiver)));
}
@Override
public long asPointer(Object receiver) throws UnsupportedMessageException {
assert this.accepts(receiver) : "Invalid library usage. Library does not accept given receiver.";
return LongNativePointerLibrary.asPointer((((Long) receiver)));
}
}
@GeneratedBy(LongNativePointerLibrary.class)
@DenyReplace
private static final class Uncached extends NativePointerLibrary implements UnadoptableNode {
protected Uncached() {
}
@Override
@TruffleBoundary
public boolean accepts(Object receiver) {
assert !(receiver instanceof Long) || DYNAMIC_DISPATCH_LIBRARY_.getUncached().dispatch(receiver) == null : "Invalid library export. Exported receiver with dynamic dispatch found but not expected.";
return receiver instanceof Long;
}
@TruffleBoundary
@Override
public boolean isPointer(Object receiver) {
// declared: true
assert this.accepts(receiver) : "Invalid library usage. Library does not accept given receiver.";
return LongNativePointerLibrary.isPointer(((Long) receiver) );
}
@TruffleBoundary
@Override
public long asPointer(Object receiver) throws UnsupportedMessageException {
// declared: true
assert this.accepts(receiver) : "Invalid library usage. Library does not accept given receiver.";
return LongNativePointerLibrary.asPointer(((Long) receiver) );
}
}
}
}