Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for UnsafePoint (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "LoweredAtomicOr8", argLength: 3, reg: gpxchg, resultNotInArgs: true, asm: "ORR", faultOnNilArg0: true, hasSideEffects: true, unsafePoint: true, needIntTemp: true},
    		{name: "LoweredAtomicAnd64", argLength: 3, reg: gpxchg, resultNotInArgs: true, asm: "AND", faultOnNilArg0: true, hasSideEffects: true, unsafePoint: true, needIntTemp: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    			},
    			clobberFlags:   true,
    			typ:            "Mem",
    			faultOnNilArg0: true,
    			unsafePoint:    true,
    		},
    		{
    			name:      "LoweredZeroShort",
    			aux:       "Int64",
    			argLength: 2,
    			reg: regInfo{
    				inputs: []regMask{gp}},
    			typ:            "Mem",
    			faultOnNilArg0: true,
    			unsafePoint:    true,
    		},
    		{
    			name:      "LoweredQuadZeroShort",
    			aux:       "Int64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    		clobberFlags:   true,
    		faultOnNilArg0: true,
    		unsafePoint:    true,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 1048576}, // R20
    			},
    			clobbers: 1048576, // R20
    		},
    	},
    	{
    		name:           "LoweredZeroShort",
    		auxType:        auxInt64,
    		argLen:         2,
    		faultOnNilArg0: true,
    		unsafePoint:    true,
    		reg: regInfo{
    			inputs: []inputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/op.go

    	zeroWidth         bool      // op never translates into any machine code. example: copy, which may sometimes translate to machine code, is not zero-width.
    	unsafePoint       bool      // this op is an unsafe point, i.e. not safe for async preemption
    	symEffect         SymEffect // effect this op has on symbol in aux
    	scale             uint8     // amd64/386 indexed load scale
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. src/runtime/export_test.go

    func GetPinnerLeakPanic() func() {
    	return pinnerLeakPanic
    }
    
    var testUintptr uintptr
    
    func MyGenericFunc[T any]() {
    	systemstack(func() {
    		testUintptr = 4
    	})
    }
    
    func UnsafePoint(pc uintptr) bool {
    	fi := findfunc(pc)
    	v := pcdatavalue(fi, abi.PCDATA_UnsafePoint, pc)
    	switch v {
    	case abi.UnsafePointUnsafe:
    		return true
    	case abi.UnsafePointSafe:
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    	lv.unsafeBlocks = bitvec.New(int32(lv.f.NumBlocks()))
    
    	// Mark architecture-specific unsafe points.
    	for _, b := range lv.f.Blocks {
    		for _, v := range b.Values {
    			if v.Op.UnsafePoint() {
    				lv.unsafePoints.Set(int32(v.ID))
    			}
    		}
    	}
    
    	for _, b := range lv.f.Blocks {
    		for _, v := range b.Values {
    			if v.Op != ssa.OpWBend {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top