Giter Club home page Giter Club logo

Comments (5)

MaxGraey avatar MaxGraey commented on July 20, 2024 1

AssemblyScript always import abort function from host. So you got this errors because life can't execute wasm file. You should implement abort function on Go side and import via "env" scope. Or you could compile AssemblyScript with additional cli argument --abort="" which allow avoid external import for abort.

from life.

Rbsann avatar Rbsann commented on July 20, 2024

That actually doesnt solve the problem, just create a new one. If i implement 'abort' function, here is what i get:
--- Begin stack trace ---
<2> [5]
<1> [9]
<0> [10]
--- End stack trace ---
panic: wasm: unreachable executed
goroutine 1 [running]:
main.main()
/home/rbsann/.gvm/pkgsets/go1.11/global/src/golang.org/x/vgo/vendor/life/main.go:216 +0x5f8

And here is the ts code that is being compiled:

var v = 'teste';
var numberr = "2";
r.consoleLog(numberr);
r.consoleLog("v");
r.consoleLog("1"+numberr);
return 'something';

2 and v are printed and then the code reaches that error.

from life.

losfair avatar losfair commented on July 20, 2024

What do you mean by "this error does not appear in any other instances"?

If you mean this error only appears in life but not other WebAssembly runtimes, can you post the .wasm file that causes the error?

from life.

losfair avatar losfair commented on July 20, 2024

Closing due to inactivity.

from life.

iwasaki-kenta avatar iwasaki-kenta commented on July 20, 2024

Hello,

Tried it out just now and it appears to work just fine.

index.ts:

import "allocator/arena";

declare namespace env {
    function log(offset: usize, len: usize): void
}

function log(str: string): void {
    env.log(str.toUTF8(), str.lengthUTF8);
}

export function main(): void {
    let v = 'teste';
    let number = "2";

    log(v);
    log(number);
    log("1" + number);
}

main.go:

package main

import (
	"errors"
	"github.com/perlin-network/life/exec"
	"io/ioutil"
	"fmt"
)

func check(err error) {
	if err != nil {
		panic(err)
	}
}

var _ exec.ImportResolver = (*resolver)(nil)

type resolver struct {}

func (resolver) ResolveFunc(module, field string) exec.FunctionImport {
	switch module {
	case "env":
		switch field {
		case "abort":
			return func(vm *exec.VirtualMachine) int64 {
				return 0
			}
		case "log":
			return func(vm *exec.VirtualMachine) int64 {
				frame := vm.GetCurrentFrame()

				msgPtr := int(uint32(frame.Locals[0]))
				msgLen := int(uint32(frame.Locals[1]))
				msg := string(vm.Memory[msgPtr : msgPtr+msgLen])

				fmt.Println(msg)

				return 0
			}
		default:
			panic(fmt.Errorf("unknown import resolved: %s", field))
		}
	}

	panic(fmt.Errorf("unknown module: %s", module))
}

func (resolver) ResolveGlobal(module, field string) int64 {
	panic("implement me")
}

func main() {
	code, err := ioutil.ReadFile("build/optimized.wasm")
	check(err)

	vm, err := exec.NewVirtualMachine(code, exec.VMConfig{}, new(resolver), nil)
	check(err)

	entrypoint, exists := vm.GetFunctionExport("main")
	if !exists {
		check(errors.New("failed to find entry point"))
	}

	_, err = vm.Run(entrypoint)
	check(err)
}

image

from life.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.