Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Howard (0.4 sec)

  1. src/cmd/cgo/gcc.go

    			// get writebarrier-ed or adjusted during a stack copy. This should handle
    			// all the cases badPointerTypedef used to handle, but hopefully will
    			// continue to work going forward without any more need for cgo changes.
    			tt.Go = c.Ident(incomplete)
    			typedef[name.Name] = &tt
    			break
    		}
    		switch dt.Kind {
    		case "class", "union":
    			t.Go = c.Opaque(t.Size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    	GReg        register
    	allocatable regMask
    
    	// live values at the end of each block.  live[b.ID] is a list of value IDs
    	// which are live at the end of b, together with a count of how many instructions
    	// forward to the next use.
    	live [][]liveInfo
    	// desired register assignments at the end of each block.
    	// Note that this is a static map computed before allocation occurs. Dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    				spInputs++
    			} else {
    				return false, r
    			}
    		}
    		return v.Type.IsMemory() && memInputs == 1 &&
    			regInputs == 1 && spInputs == 1, r
    	}
    
    	// OpArg*Reg values we've seen so far on our forward walk,
    	// for which we have not yet seen a corresponding spill.
    	regArgs := make([]ID, 0, 32)
    
    	// removeReg tries to remove a value from regArgs, returning true
    	// if found and removed, or false otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		//
    		// aux | rounding mode
    		// ----+-----------------------------------
    		//   1 | round to nearest, ties away from 0
    		//   4 | round to nearest, ties to even
    		//   5 | round toward 0
    		//   6 | round toward +∞
    		//   7 | round toward -∞
    		{name: "FIDBR", argLength: 1, reg: fp11, asm: "FIDBR", aux: "Int8"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    	t.wantEtype(TMAP)
    	return t.extra.(*Map)
    }
    
    // Forward contains Type fields specific to forward types.
    type Forward struct {
    	Copyto      []*Type  // where to copy the eventual value to
    	Embedlineno src.XPos // first use of this type as an embedded type
    }
    
    // forwardType returns t's extra forward-type-specific fields.
    func (t *Type) forwardType() *Forward {
    	t.wantEtype(TFORW)
    	return t.extra.(*Forward)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    			// this the start of a type parameter list, with some caveats:
    			// a single name followed by "]" tilts the decision towards an
    			// array declaration; a type parameter type that could also be
    			// an ordinary expression but which is followed by a comma tilts
    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == _Comma); pname != nil && (ptype != nil || p.tok != _Rbrack) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    			for _, e := range e.ElemList {
    				if kv, _ := e.(*syntax.KeyValueExpr); kv != nil {
    					// Ideally, we should also "use" kv.Key but we can't know
    					// if it's an externally defined struct key or not. Going
    					// forward anyway can lead to other errors. Give up instead.
    					e = kv.Value
    				}
    				check.use(e)
    			}
    			// if utyp is invalid, an error was reported before
    			if isValid(utyp) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top