Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 265 for Value (0.57 sec)

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

    	return s.curBlock.NewValue3(s.peekPos(), op, t, arg0, arg1, arg2)
    }
    
    // newValue3I adds a new value with three arguments and an auxint value to the current block.
    func (s *state) newValue3I(op ssa.Op, t *types.Type, aux int64, arg0, arg1, arg2 *ssa.Value) *ssa.Value {
    	return s.curBlock.NewValue3I(s.peekPos(), op, t, aux, arg0, arg1, arg2)
    }
    
    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/ssa/schedule.go

    	// reusable priority queue
    	priq := new(ValHeap)
    
    	// "priority" for a value
    	score := f.Cache.allocInt8Slice(f.NumValues())
    	defer f.Cache.freeInt8Slice(score)
    
    	// maps mem values to the next live memory value
    	nextMem := f.Cache.allocValueSlice(f.NumValues())
    	defer f.Cache.freeValueSlice(nextMem)
    
    	// inBlockUses records whether a value is used in the block
    	// in which it lives. (block control values don't count as uses.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64splitload.go

    // Code generated from _gen/AMD64splitload.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    func rewriteValueAMD64splitload(v *Value) bool {
    	switch v.Op {
    	case OpAMD64CMPBconstload:
    		return rewriteValueAMD64splitload_OpAMD64CMPBconstload(v)
    	case OpAMD64CMPBconstloadidx1:
    		return rewriteValueAMD64splitload_OpAMD64CMPBconstloadidx1(v)
    	case OpAMD64CMPBload:
    		return rewriteValueAMD64splitload_OpAMD64CMPBload(v)
    	case OpAMD64CMPBloadidx1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    	doClobber bool
    }
    
    type endReg struct {
    	r register
    	v *Value // pre-regalloc value held in this register (TODO: can we use ID here?)
    	c *Value // cached version of the value
    }
    
    type startReg struct {
    	r   register
    	v   *Value   // pre-regalloc value needed in this register
    	c   *Value   // cached version of the value
    	pos src.XPos // source position of use of this register
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM64latelower.go

    // Code generated from _gen/ARM64latelower.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    func rewriteValueARM64latelower(v *Value) bool {
    	switch v.Op {
    	case OpARM64ADDSconstflags:
    		return rewriteValueARM64latelower_OpARM64ADDSconstflags(v)
    	case OpARM64ADDconst:
    		return rewriteValueARM64latelower_OpARM64ADDconst(v)
    	case OpARM64ANDconst:
    		return rewriteValueARM64latelower_OpARM64ANDconst(v)
    	case OpARM64CMNWconst:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/reflectdata/helpers.go

    // expression that yields the *runtime._type value representing typ.
    func kindRType(pos src.XPos, typ *types.Type, k types.Kind) ir.Node {
    	base.AssertfAt(typ.Kind() == k, pos, "want %v type, have %v", k, typ)
    	return TypePtrAt(pos, typ)
    }
    
    // mapRType asserts that typ is a map type, and returns an expression
    // that yields the *runtime._type value representing typ.
    func mapRType(pos src.XPos, typ *types.Type) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadstore.go

    func elimDeadAutosGeneric(f *Func) {
    	addr := make(map[*Value]*ir.Name) // values that the address of the auto reaches
    	elim := make(map[*Value]*ir.Name) // values that could be eliminated if the auto is
    	var used ir.NameSet               // used autos that must be kept
    
    	// visit the value and report whether any of the maps are updated
    	visit := func(v *Value) (changed bool) {
    		args := v.Args
    		switch v.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/memcombine.go

    type BaseAddress struct {
    	ptr *Value
    	idx *Value
    }
    
    // splitPtr returns the base address of ptr and any
    // constant offset from that base.
    // BaseAddress{ptr,nil},0 is always a valid result, but splitPtr
    // tries to peel away as many constants into off as possible.
    func splitPtr(ptr *Value) (BaseAddress, int64) {
    	var idx *Value
    	var off int64
    	for {
    		if ptr.Op == OpOffPtr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritedec64.go

    		return true
    	}
    }
    func rewriteValuedec64_OpInt64Hi(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Int64Hi (Int64Make hi _))
    	// result: hi
    	for {
    		if v_0.Op != OpInt64Make {
    			break
    		}
    		hi := v_0.Args[0]
    		v.copyOf(hi)
    		return true
    	}
    	return false
    }
    func rewriteValuedec64_OpInt64Lo(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Int64Lo (Int64Make _ lo))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/net/http/66008.md

    The new [ParseCookie] function parses a Cookie header value and
    returns all the cookies which were set in it. Since the same cookie
    name can appear multiple times the returned Values can contain
    more than one value for a given key.
    
    The new [ParseSetCookie] function parses a Set-Cookie header value and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 17:43:50 UTC 2024
    - 359 bytes
    - Viewed (0)
Back to top