All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.truffle.js.builtins.wasm.WebAssemblyModuleFunctionBuiltins Maven / Gradle / Ivy

/*
 * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * The Universal Permissive License (UPL), Version 1.0
 *
 * Subject to the condition set forth below, permission is hereby granted to any
 * person obtaining a copy of this software, associated documentation and/or
 * data (collectively the "Software"), free of charge and under any and all
 * copyright rights in the Software, and any and all patent rights owned or
 * freely licensable by each licensor hereunder covering either (i) the
 * unmodified Software as contributed to or provided by such licensor, or (ii)
 * the Larger Works (as defined below), to deal in both
 *
 * (a) the Software, and
 *
 * (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
 * one is included with the Software each a "Larger Work" to which the Software
 * is contributed by such licensors),
 *
 * without restriction, including without limitation the rights to copy, create
 * derivative works of, display, perform, and distribute the Software and make,
 * use, sell, offer for sale, import, export, have made, and have sold the
 * Software and the Larger Work(s), and to sublicense the foregoing rights on
 * either these or other terms.
 *
 * This license is subject to the following condition:
 *
 * The above copyright notice and either this complete permission notice or at a
 * minimum a reference to the UPL must be included in all copies or substantial
 * portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
package com.oracle.truffle.js.builtins.wasm;

import com.oracle.truffle.api.dsl.Fallback;
import com.oracle.truffle.api.dsl.Specialization;
import com.oracle.truffle.api.interop.InteropException;
import com.oracle.truffle.api.interop.InteropLibrary;
import com.oracle.truffle.api.strings.TruffleString;
import com.oracle.truffle.js.builtins.JSBuiltinsContainer;
import com.oracle.truffle.js.builtins.wasm.WebAssemblyModuleFunctionBuiltinsFactory.WebAssemblyModuleCustomSectionsNodeGen;
import com.oracle.truffle.js.builtins.wasm.WebAssemblyModuleFunctionBuiltinsFactory.WebAssemblyModuleExportsNodeGen;
import com.oracle.truffle.js.builtins.wasm.WebAssemblyModuleFunctionBuiltinsFactory.WebAssemblyModuleImportsNodeGen;
import com.oracle.truffle.js.nodes.cast.JSToStringNode;
import com.oracle.truffle.js.nodes.function.JSBuiltin;
import com.oracle.truffle.js.nodes.function.JSBuiltinNode;
import com.oracle.truffle.js.runtime.Errors;
import com.oracle.truffle.js.runtime.JSConfig;
import com.oracle.truffle.js.runtime.JSContext;
import com.oracle.truffle.js.runtime.JSRealm;
import com.oracle.truffle.js.runtime.Strings;
import com.oracle.truffle.js.runtime.builtins.BuiltinEnum;
import com.oracle.truffle.js.runtime.builtins.JSArray;
import com.oracle.truffle.js.runtime.builtins.JSArrayBuffer;
import com.oracle.truffle.js.runtime.builtins.JSOrdinary;
import com.oracle.truffle.js.runtime.builtins.wasm.JSWebAssemblyModule;
import com.oracle.truffle.js.runtime.builtins.wasm.JSWebAssemblyModuleObject;
import com.oracle.truffle.js.runtime.objects.JSObject;
import com.oracle.truffle.js.runtime.objects.Undefined;

/**
 * WebAssembly.Module built-ins.
 */
public class WebAssemblyModuleFunctionBuiltins extends JSBuiltinsContainer.SwitchEnum {

    public static final JSBuiltinsContainer BUILTINS = new WebAssemblyModuleFunctionBuiltins();

    protected WebAssemblyModuleFunctionBuiltins() {
        super(JSWebAssemblyModule.CLASS_NAME, ModuleFunction.class);
    }

    public enum ModuleFunction implements BuiltinEnum {
        exports(1),
        imports(1),
        customSections(2);

        private final int length;

        ModuleFunction(int length) {
            this.length = length;
        }

        @Override
        public int getLength() {
            return length;
        }

        @Override
        public boolean isEnumerable() {
            return true;
        }

    }

    @Override
    protected Object createNode(JSContext context, JSBuiltin builtin, boolean construct, boolean newTarget, ModuleFunction builtinEnum) {
        switch (builtinEnum) {
            case exports:
                return WebAssemblyModuleExportsNodeGen.create(context, builtin, args().fixedArgs(1).createArgumentNodes(context));
            case imports:
                return WebAssemblyModuleImportsNodeGen.create(context, builtin, args().fixedArgs(1).createArgumentNodes(context));
            case customSections:
                return WebAssemblyModuleCustomSectionsNodeGen.create(context, builtin, args().fixedArgs(2).createArgumentNodes(context));
        }
        return null;
    }

    public abstract static class WebAssemblyModuleExportsNode extends JSBuiltinNode {
        @Child InteropLibrary moduleExportsLib = InteropLibrary.getFactory().createDispatched(JSConfig.InteropLibraryLimit);

        public WebAssemblyModuleExportsNode(JSContext context, JSBuiltin builtin) {
            super(context, builtin);
        }

        @Specialization
        protected Object exportsOfModule(JSWebAssemblyModuleObject moduleObject) {
            JSRealm realm = getRealm();
            try {
                Object exportsFunction = realm.getWASMModuleExports();
                Object wasmExports = moduleExportsLib.execute(exportsFunction, moduleObject.getWASMModule());
                return toJSExports(wasmExports, realm);
            } catch (InteropException ex) {
                throw Errors.shouldNotReachHere(ex);
            }
        }

        @Fallback
        protected Object exportsOfOther(@SuppressWarnings("unused") Object other) {
            throw Errors.createTypeError("WebAssembly.Module.exports(): Argument 0 must be a WebAssembly.Module", this);
        }

        private Object toJSExports(Object wasmExports, JSRealm realm) throws InteropException {
            InteropLibrary interop = InteropLibrary.getUncached(wasmExports);
            int size = (int) interop.getArraySize(wasmExports);
            Object[] exports = new Object[size];
            for (int i = 0; i < size; i++) {
                Object wasmExport = interop.readArrayElement(wasmExports, i);
                exports[i] = toJSExport(wasmExport);
            }
            return JSArray.createConstantObjectArray(getContext(), realm, exports);
        }

        private Object toJSExport(Object wasmExport) throws InteropException {
            JSObject export = JSOrdinary.create(getContext(), getRealm());
            InteropLibrary interop = InteropLibrary.getUncached(wasmExport);
            for (String key : new String[]{"name", "kind"}) {
                TruffleString value = asTString(interop.readMember(wasmExport, key));
                JSObject.set(export, Strings.fromJavaString(key), value);
            }
            return export;
        }

    }

    public abstract static class WebAssemblyModuleImportsNode extends JSBuiltinNode {
        @Child InteropLibrary moduleImportsLib = InteropLibrary.getFactory().createDispatched(JSConfig.InteropLibraryLimit);

        public WebAssemblyModuleImportsNode(JSContext context, JSBuiltin builtin) {
            super(context, builtin);
        }

        @Specialization
        protected Object importsOfModule(JSWebAssemblyModuleObject moduleObject) {
            JSRealm realm = getRealm();
            try {
                Object importsFunction = realm.getWASMModuleImports();
                Object wasmImports = moduleImportsLib.execute(importsFunction, moduleObject.getWASMModule());
                return toJSImports(wasmImports, realm);
            } catch (InteropException ex) {
                throw Errors.shouldNotReachHere(ex);
            }
        }

        @Fallback
        protected Object importsOfOther(@SuppressWarnings("unused") Object other) {
            throw Errors.createTypeError("WebAssembly.Module.imports(): Argument 0 must be a WebAssembly.Module", this);
        }

        private Object toJSImports(Object wasmImports, JSRealm realm) throws InteropException {
            InteropLibrary interop = InteropLibrary.getUncached(wasmImports);
            int size = (int) interop.getArraySize(wasmImports);
            Object[] imports = new Object[size];
            for (int i = 0; i < size; i++) {
                Object wasmImport = interop.readArrayElement(wasmImports, i);
                imports[i] = toJSImport(wasmImport);
            }
            return JSArray.createConstantObjectArray(getContext(), realm, imports);
        }

        private Object toJSImport(Object wasmImport) throws InteropException {
            JSObject export = JSOrdinary.create(getContext(), getRealm());
            InteropLibrary interop = InteropLibrary.getUncached(wasmImport);
            for (String key : new String[]{"module", "name", "kind"}) {
                TruffleString value = asTString(interop.readMember(wasmImport, key));
                JSObject.set(export, Strings.fromJavaString(key), value);
            }
            return export;
        }

    }

    public abstract static class WebAssemblyModuleCustomSectionsNode extends JSBuiltinNode {
        @Child JSToStringNode toStringNode;
        @Child InteropLibrary customSectionsLib;

        public WebAssemblyModuleCustomSectionsNode(JSContext context, JSBuiltin builtin) {
            super(context, builtin);
            toStringNode = JSToStringNode.create();
            customSectionsLib = InteropLibrary.getFactory().createDispatched(JSConfig.InteropLibraryLimit);
        }

        @Specialization
        protected Object customSectionsOfModule(JSWebAssemblyModuleObject moduleObject, Object sectionName) {
            if (sectionName == Undefined.instance) {
                throw Errors.createTypeError("WebAssembly.Module.customSections(): Argument 1 is required");
            }
            Object name = toStringNode.executeString(sectionName);
            JSRealm realm = getRealm();
            try {
                Object customSectionsFunction = realm.getWASMCustomSections();
                Object wasmCustomSections = customSectionsLib.execute(customSectionsFunction, moduleObject.getWASMModule(), name);
                return toJSArrayOfArrayBuffers(wasmCustomSections, realm);
            } catch (InteropException ex) {
                throw Errors.shouldNotReachHere(ex);
            }
        }

        private Object toJSArrayOfArrayBuffers(Object wasmSections, JSRealm realm) throws InteropException {
            InteropLibrary interop = InteropLibrary.getUncached(wasmSections);
            int size = (int) interop.getArraySize(wasmSections);
            Object[] sections = new Object[size];
            for (int i = 0; i < size; i++) {
                Object wasmSection = interop.readArrayElement(wasmSections, i);
                sections[i] = toArrayBuffer(wasmSection, realm);
            }
            return JSArray.createConstantObjectArray(getContext(), realm, sections);
        }

        private Object toArrayBuffer(Object wasmSection, JSRealm realm) throws InteropException {
            InteropLibrary interop = InteropLibrary.getUncached(wasmSection);
            int size = (int) interop.getArraySize(wasmSection);
            byte[] data = new byte[size];
            for (int i = 0; i < size; i++) {
                data[i] = (byte) interop.readArrayElement(wasmSection, i);
            }
            return JSArrayBuffer.createArrayBuffer(getContext(), realm, data);
        }

        @Fallback
        protected Object customSectionsOfOther(@SuppressWarnings("unused") Object other,
                        @SuppressWarnings("unused") Object sectionName) {
            throw Errors.createTypeError("WebAssembly.Module.customSections(): Argument 0 must be a WebAssembly.Module", this);
        }

    }

    private static TruffleString asTString(Object string) {
        if (string instanceof String) {
            return Strings.fromJavaString((String) string);
        }
        return Strings.interopAsTruffleString(string);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy