Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for wasm_export_resume (0.12 sec)

  1. src/runtime/rt0_js_wasm.s

    	I64ExtendI32U
    	I64Store $8
    
    	I32Const $0 // entry PC_B
    	Call runtime·rt0_go(SB)
    	Drop
    	Call wasm_pc_f_loop(SB)
    
    	Return
    
    // wasm_export_resume gets called from JavaScript. It resumes the execution of Go code until it needs to wait for
    // an event.
    TEXT wasm_export_resume(SB),NOSPLIT,$0
    	I32Const $0
    	Call runtime·handleEvent(SB)
    	Drop
    	Call wasm_pc_f_loop(SB)
    
    	Return
    
    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

    // 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,
    	"runtime.gcWriteBarrier2": 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

    	"wasm_export__start":      {},                                                         //
    	"wasm_export_run":         {Params: []byte{I32, I32}},                                 // argc, argv
    	"wasm_export_resume":      {Params: []byte{}},                                         //
    	"wasm_export_getsp":       {Results: []byte{I32}},                                     // sp
    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