Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cgoCheckMemmove (0.38 sec)

  1. src/cmd/compile/internal/ir/symtab.go

    type symsStruct struct {
    	AssertE2I         *obj.LSym
    	AssertE2I2        *obj.LSym
    	AssertI2I         *obj.LSym
    	AssertI2I2        *obj.LSym
    	Asanread          *obj.LSym
    	Asanwrite         *obj.LSym
    	CgoCheckMemmove   *obj.LSym
    	CgoCheckPtrWrite  *obj.LSym
    	CheckPtrAlignment *obj.LSym
    	Deferproc         *obj.LSym
    	Deferprocat       *obj.LSym
    	DeferprocStack    *obj.LSym
    	Deferreturn       *obj.LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:26 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/runtime/cgocheck.go

    		throw(cgoWriteBarrierFail)
    	})
    }
    
    // cgoCheckMemmove is called when moving a block of memory.
    // It throws if the program is copying a block that contains an unpinned Go
    // pointer into non-Go memory.
    //
    // This is called from generated code when GOEXPERIMENT=cgocheck2 is enabled.
    //
    //go:nosplit
    //go:nowritebarrier
    func cgoCheckMemmove(typ *_type, dst, src unsafe.Pointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/writebarrier.go

    			wbZero = f.fe.Syslook("wbZero")
    			wbMove = f.fe.Syslook("wbMove")
    			if buildcfg.Experiment.CgoCheck2 {
    				cgoCheckPtrWrite = f.fe.Syslook("cgoCheckPtrWrite")
    				cgoCheckMemmove = f.fe.Syslook("cgoCheckMemmove")
    			}
    			const0 = f.ConstInt32(f.Config.Types.UInt32, 0)
    
    			// allocate auxiliary data structures for computing store order
    			sset = f.newSparseSet(f.NumValues())
    			defer f.retSparseSet(sset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	ir.Syms.AssertE2I2 = typecheck.LookupRuntimeFunc("assertE2I2")
    	ir.Syms.AssertI2I = typecheck.LookupRuntimeFunc("assertI2I")
    	ir.Syms.AssertI2I2 = typecheck.LookupRuntimeFunc("assertI2I2")
    	ir.Syms.CgoCheckMemmove = typecheck.LookupRuntimeFunc("cgoCheckMemmove")
    	ir.Syms.CgoCheckPtrWrite = typecheck.LookupRuntimeFunc("cgoCheckPtrWrite")
    	ir.Syms.CheckPtrAlignment = typecheck.LookupRuntimeFunc("checkptrAlignment")
    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