Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for gcWriteBarrier4 (0.14 sec)

  1. test/codegen/writebarrier.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    func combine2string(p *[2]string, a, b string) {
    	// amd64:`.*runtime[.]gcWriteBarrier4\(SB\)`
    	// arm64:`.*runtime[.]gcWriteBarrier4\(SB\)`
    	p[0] = a
    	// amd64:-`.*runtime[.]gcWriteBarrier`
    	// arm64:-`.*runtime[.]gcWriteBarrier`
    	p[1] = b
    }
    
    func combine4string(p *[4]string, a, b, c, d string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 00:16:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/wasm/wasmobj.go

    	"wasm_pc_f_loop":          true,
    	"gcWriteBarrier":          true,
    	"runtime.gcWriteBarrier1": true,
    	"runtime.gcWriteBarrier2": true,
    	"runtime.gcWriteBarrier3": true,
    	"runtime.gcWriteBarrier4": true,
    	"runtime.gcWriteBarrier5": true,
    	"runtime.gcWriteBarrier6": true,
    	"runtime.gcWriteBarrier7": true,
    	"runtime.gcWriteBarrier8": true,
    	"runtime.wasmDiv":         true,
    	"runtime.wasmTruncS":      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/runtime/stubs.go

    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname gcWriteBarrier2
    func gcWriteBarrier2()
    
    func gcWriteBarrier3()
    func gcWriteBarrier4()
    func gcWriteBarrier5()
    func gcWriteBarrier6()
    func gcWriteBarrier7()
    func gcWriteBarrier8()
    func duffzero()
    func duffcopy()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/wasm/asm.go

    	"runtime.gcWriteBarrier2": {Results: []byte{I64}},                                     // -> bufptr
    	"runtime.gcWriteBarrier3": {Results: []byte{I64}},                                     // -> bufptr
    	"runtime.gcWriteBarrier4": {Results: []byte{I64}},                                     // -> bufptr
    	"runtime.gcWriteBarrier5": {Results: []byte{I64}},                                     // -> bufptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	ir.Syms.GCWriteBarrier[1] = typecheck.LookupRuntimeFunc("gcWriteBarrier2")
    	ir.Syms.GCWriteBarrier[2] = typecheck.LookupRuntimeFunc("gcWriteBarrier3")
    	ir.Syms.GCWriteBarrier[3] = typecheck.LookupRuntimeFunc("gcWriteBarrier4")
    	ir.Syms.GCWriteBarrier[4] = typecheck.LookupRuntimeFunc("gcWriteBarrier5")
    	ir.Syms.GCWriteBarrier[5] = typecheck.LookupRuntimeFunc("gcWriteBarrier6")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top