Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for printpointer (0.15 sec)

  1. test/live.go

    		printint(0)
    		return
    	}
    
    	if b2 {
    		var x *int       // ERROR "stack object x \*int$"
    		printpointer(&x) // ERROR "live at call to printpointer: x$"
    		printpointer(&x)
    	} else {
    		var y *int       // ERROR "stack object y \*int$"
    		printpointer(&y) // ERROR "live at call to printpointer: y$"
    		printpointer(&y)
    	}
    	printint(0) // nothing is live here
    }
    
    // The old algorithm treated x as live on all code that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. test/live_regabi.go

    		printint(0)
    		return
    	}
    
    	if b2 {
    		var x *int       // ERROR "stack object x \*int$"
    		printpointer(&x) // ERROR "live at call to printpointer: x$"
    		printpointer(&x)
    	} else {
    		var y *int       // ERROR "stack object y \*int$"
    		printpointer(&y) // ERROR "live at call to printpointer: y$"
    		printpointer(&y)
    	}
    	printint(0) // nothing is live here
    }
    
    // The old algorithm treated x as live on all code that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func goPanicSliceConvert(x int, y int)
    
    func printbool(bool)
    func printfloat(float64)
    func printint(int64)
    func printhex(uint64)
    func printuint(uint64)
    func printcomplex(complex128)
    func printstring(string)
    func printpointer(any)
    func printuintptr(uintptr)
    func printiface(any)
    func printeface(any)
    func printslice(any)
    func printnl()
    func printsp()
    func printlock()
    func printunlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/builtin.go

    	{"printbool", funcTag, 19},
    	{"printfloat", funcTag, 21},
    	{"printint", funcTag, 23},
    	{"printhex", funcTag, 25},
    	{"printuint", funcTag, 25},
    	{"printcomplex", funcTag, 27},
    	{"printstring", funcTag, 29},
    	{"printpointer", funcTag, 30},
    	{"printuintptr", funcTag, 31},
    	{"printiface", funcTag, 30},
    	{"printeface", funcTag, 30},
    	{"printslice", funcTag, 30},
    	{"printnl", funcTag, 9},
    	{"printsp", funcTag, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/builtin.go

    				n.SetType(types.Types[types.TUINTPTR])
    				break
    			}
    			fallthrough
    		case types.TCHAN, types.TMAP, types.TFUNC, types.TUNSAFEPTR:
    			on = typecheck.LookupRuntime("printpointer", n.Type())
    		case types.TSLICE:
    			on = typecheck.LookupRuntime("printslice", n.Type())
    		case types.TUINT, types.TUINT8, types.TUINT16, types.TUINT32, types.TUINT64, types.TUINTPTR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top