Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for callsite (0.21 sec)

  1. src/cmd/compile/internal/walk/builtin.go

    	}
    	if n.Esc() == ir.EscNone {
    		if t.Size() > ir.MaxImplicitStackVarSize {
    			base.Fatalf("large ONEW with EscNone: %v", n)
    		}
    		return stackTempAddr(init, t)
    	}
    	types.CalcSize(t)
    	n.MarkNonNil()
    	return n
    }
    
    func walkMinMax(n *ir.CallExpr, init *ir.Nodes) ir.Node {
    	init.Append(ir.TakeInit(n)...)
    	walkExprList(n.Args, init)
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. api/go1.txt

    pkg reflect, method (Value) Addr() Value
    pkg reflect, method (Value) Bool() bool
    pkg reflect, method (Value) Bytes() []uint8
    pkg reflect, method (Value) Call([]Value) []Value
    pkg reflect, method (Value) CallSlice([]Value) []Value
    pkg reflect, method (Value) CanAddr() bool
    pkg reflect, method (Value) CanInterface() bool
    pkg reflect, method (Value) CanSet() bool
    pkg reflect, method (Value) Cap() int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top