Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TPTR (0.2 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    // t = type of sub-portion of v.
    func clobberWalk(b *ssa.Block, v *ir.Name, offset int64, t *types.Type) {
    	if !t.HasPointers() {
    		return
    	}
    	switch t.Kind() {
    	case types.TPTR,
    		types.TUNSAFEPTR,
    		types.TFUNC,
    		types.TCHAN,
    		types.TMAP:
    		clobberPtr(b, v, offset)
    
    	case types.TSTRING:
    		// struct { byte *str; int len; }
    		clobberPtr(b, v, offset)
    
    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