Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 74 of 74 for callsite (0.16 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    			}
    			return v
    		}
    
    		// map <--> *hmap
    		if to.Kind() == types.TMAP && from == types.NewPtr(reflectdata.MapType()) {
    			return v
    		}
    
    		types.CalcSize(from)
    		types.CalcSize(to)
    		if from.Size() != to.Size() {
    			s.Fatalf("CONVNOP width mismatch %v (%d) -> %v (%d)\n", from, from.Size(), to, to.Size())
    			return nil
    		}
    		if etypesign(from.Kind()) != etypesign(to.Kind()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/order.go

    func (o *orderState) addrTemp(n ir.Node) ir.Node {
    	if n.Op() == ir.OLITERAL || n.Op() == ir.ONIL {
    		// TODO: expand this to all static composite literal nodes?
    		n = typecheck.DefaultLit(n, nil)
    		types.CalcSize(n.Type())
    		vstat := readonlystaticname(n.Type())
    		var s staticinit.Schedule
    		s.StaticAssign(vstat, 0, n, n.Type())
    		if s.Out != nil {
    			base.Fatalf("staticassign of const generated code: %+v", n)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    if(wakeup!==undefined&&reasons.length&&reasons[0].ts<wakeup.ts){blockedReason=reasons.shift();}
    const pushSleep=function(state){if(wakeup!==undefined){midDuration=wakeup.ts-prevSlice.end;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(StructTag).Get", Method, 0},
    		{"(StructTag).Lookup", Method, 7},
    		{"(Value).Addr", Method, 0},
    		{"(Value).Bool", Method, 0},
    		{"(Value).Bytes", Method, 0},
    		{"(Value).Call", Method, 0},
    		{"(Value).CallSlice", Method, 0},
    		{"(Value).CanAddr", Method, 0},
    		{"(Value).CanComplex", Method, 18},
    		{"(Value).CanConvert", Method, 17},
    		{"(Value).CanFloat", Method, 18},
    		{"(Value).CanInt", Method, 18},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top