use of com.oracle.truffle.llvm.runtime.LLVMContext in project sulong by graalvm.
the class LLVMAMD64PosixCallNode method createFunction.
protected TruffleObject createFunction() {
LLVMContext context = getContextReference().get();
NFIContextExtension nfiContextExtension = context.getContextExtension(NFIContextExtension.class);
return nfiContextExtension.getNativeFunction(context, "@__sulong_posix_" + name, signature);
}
Aggregations