binding

package
v0.36.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 10, 2022 License: BSD-3-Clause Imports: 3 Imported by: 4

Documentation

Overview

Package binding contains import and export utilities.

Index

Constants

View Source
const (
	VectorIndexLastImport    = -5
	VectorIndexMemoryAddr    = -4
	VectorIndexCurrentMemory = -3
	VectorIndexGrowMemory    = -2
	VectorIndexTrapHandler   = -1
)

Well-known indexes of the import vector. Import function addresses precede VectorIndexMemoryAddr.

Variables

This section is empty.

Functions

func BindImports

func BindImports(mod *compile.Module, reso ImportResolver) (err error)

func BindLibraryImports

func BindLibraryImports(lib *compile.Library, reso LibraryImportResolver) (err error)

func EntryFunc

func EntryFunc(mod compile.Module, name string) (funcIndex uint32, err error)

EntryFunc looks up an export function which is suitable as an entry point. Its result type must be void or i32, and it must not take any parameters.

func IsEntryFuncType

func IsEntryFuncType(sig wa.FuncType) bool

IsEntryFuncType checks if the signature is suitable for an entry function.

func IsStartFuncType

func IsStartFuncType(sig wa.FuncType) bool

IsStartFuncType checks if the signature is suitable for a start function.

Types

type ImportResolver

type ImportResolver interface {
	ResolveFunc(module, field string, sig wa.FuncType) (funcIndex uint32, err error)
	ResolveGlobal(module, field string, t wa.Type) (init uint64, err error)
}

ImportResolver maps symbols to library function indexes and constant values.

ResolveFunc returns a non-negative library function index.

ResolveGlobal returns a bit pattern the interpretation of which depends on the scalar type.

type LibraryImportResolver

type LibraryImportResolver interface {
	ResolveFunc(module, field string, sig wa.FuncType) (vectorIndex int, err error)
}

LibraryImportResolver maps symbols to vector indexes.

ResolveFunc returns a negative vector index. The vector is addressed from the end. VectorIndexLastImport is the largest valid index which ResolveFunc can return.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL