Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OptDcl (0.13 sec)

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

    			continue
    		}
    		if mls != nil && mls.Subsumed(n) {
    			continue
    		}
    		if !n.Used() {
    			fn.DebugInfo.(*ssa.FuncDebug).OptDcl = fn.Dcl[i:]
    			fn.Dcl = fn.Dcl[:i]
    			break
    		}
    		types.CalcSize(n.Type())
    		w := n.Type().Size()
    		if w >= types.MaxWidth || w < 0 {
    			base.Fatalf("bad width")
    		}
    		if w == 0 && lastHasPtr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	LocationLists [][]byte
    	// Register-resident output parameters for the function. This is filled in at
    	// SSA generation time.
    	RegOutputParams []*ir.Name
    	// Variable declarations that were removed during optimization
    	OptDcl []*ir.Name
    
    	// Filled in by the user. Translates Block and Value ID to PC.
    	//
    	// NOTE: block is only used if value is BlockStart.ID or BlockEnd.ID.
    	// Otherwise, it is ignored.
    	GetPC func(block, value ID) int64
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top