Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for wasm_export_run (0.28 sec)

  1. src/runtime/rt0_js_wasm.s

    #include "textflag.h"
    
    // _rt0_wasm_js is not used itself. It only exists to mark the exported functions as alive.
    TEXT _rt0_wasm_js(SB),NOSPLIT,$0
    	I32Const $wasm_export_run(SB)
    	Drop
    	I32Const $wasm_export_resume(SB)
    	Drop
    	I32Const $wasm_export_getsp(SB)
    	Drop
    
    // wasm_export_run gets called from JavaScript. It initializes the Go runtime and executes Go code until it needs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 19:28:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/wasm/wasmobj.go

    // Most of the Go functions has a single parameter (PC_B) in
    // Wasm ABI. This is a list of exceptions.
    var notUsePC_B = map[string]bool{
    	"_rt0_wasm_js":            true,
    	"_rt0_wasm_wasip1":        true,
    	"wasm_export_run":         true,
    	"wasm_export_resume":      true,
    	"wasm_export_getsp":       true,
    	"wasm_pc_f_loop":          true,
    	"gcWriteBarrier":          true,
    	"runtime.gcWriteBarrier1": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/wasm/asm.go

    	"_rt0_wasm_wasip1":        {Params: []byte{}},                                         //
    	"wasm_export__start":      {},                                                         //
    	"wasm_export_run":         {Params: []byte{I32, I32}},                                 // argc, argv
    	"wasm_export_resume":      {Params: []byte{}},                                         //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top