Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. test/live.go

    func f29(b bool) {
    	if b {
    		for k := range m { // ERROR "live at call to mapiterinit: .autotmp_[0-9]+$" "live at call to mapiternext: .autotmp_[0-9]+$" "stack object .autotmp_[0-9]+ runtime.hiter$"
    			printstring(k) // ERROR "live at call to printstring: .autotmp_[0-9]+$"
    		}
    	}
    	for k := range m { // ERROR "live at call to mapiterinit: .autotmp_[0-9]+$" "live at call to mapiternext: .autotmp_[0-9]+$"
    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

    func f29(b bool) {
    	if b {
    		for k := range m { // ERROR "live at call to mapiterinit: .autotmp_[0-9]+$" "live at call to mapiternext: .autotmp_[0-9]+$" "stack object .autotmp_[0-9]+ runtime.hiter$"
    			printstring(k) // ERROR "live at call to printstring: .autotmp_[0-9]+$"
    		}
    	}
    	for k := range m { // ERROR "live at call to mapiterinit: .autotmp_[0-9]+$" "live at call to mapiternext: .autotmp_[0-9]+$"
    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 mapassign_fast64ptr(mapType *byte, hmap map[any]any, key unsafe.Pointer) (val *any)
    func mapassign_faststr(mapType *byte, hmap map[any]any, key string) (val *any)
    func mapiterinit(mapType *byte, hmap map[any]any, hiter *any)
    func mapdelete(mapType *byte, hmap map[any]any, key *any)
    func mapdelete_fast32(mapType *byte, hmap map[any]any, key uint32)
    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

    	{"mapassign_fast32", funcTag, 81},
    	{"mapassign_fast32ptr", funcTag, 90},
    	{"mapassign_fast64", funcTag, 82},
    	{"mapassign_fast64ptr", funcTag, 90},
    	{"mapassign_faststr", funcTag, 83},
    	{"mapiterinit", funcTag, 91},
    	{"mapdelete", funcTag, 91},
    	{"mapdelete_fast32", funcTag, 92},
    	{"mapdelete_fast64", funcTag, 93},
    	{"mapdelete_faststr", funcTag, 94},
    	{"mapiternext", funcTag, 95},
    	{"mapclear", funcTag, 96},
    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/range.go

    		// depends on layout of iterator struct.
    		// See cmd/compile/internal/reflectdata/reflect.go:MapIterType
    		keysym := th.Field(0).Sym
    		elemsym := th.Field(1).Sym // ditto
    
    		fn := typecheck.LookupRuntime("mapiterinit", t.Key(), t.Elem(), th)
    		init = append(init, mkcallstmt1(fn, reflectdata.RangeMapRType(base.Pos, nrange), ha, typecheck.NodAddr(hit)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top