Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ParamAssignmentForResult (0.18 sec)

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

    // which predated changes to the ABI; this version handles those changes.
    func (a *AuxCall) ArgWidth() int64 {
    	return a.abiInfo.ArgWidth()
    }
    
    // ParamAssignmentForResult returns the ABI Parameter assignment for result which (indexed 0, 1, etc).
    func (a *AuxCall) ParamAssignmentForResult(which int64) *abi.ABIParamAssignment {
    	return a.abiInfo.OutParam(int(which))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		s.Fatalf("unhandled expr %v", n.Op())
    		return nil
    	}
    }
    
    func (s *state) resultOfCall(c *ssa.Value, which int64, t *types.Type) *ssa.Value {
    	aux := c.Aux.(*ssa.AuxCall)
    	pa := aux.ParamAssignmentForResult(which)
    	// TODO(register args) determine if in-memory TypeOK is better loaded early from SelectNAddr or later when SelectN is expanded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top