Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ABIRefs (0.14 sec)

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

    			*pprag = append(*pprag, fn.ABI.String())
    		}
    
    		// Apply references.
    		if abis, ok := s.refs[symName]; ok {
    			fn.ABIRefs |= abis
    		}
    		// Assume all functions are referenced at least as
    		// ABIInternal, since they may be referenced from
    		// other packages.
    		fn.ABIRefs.Set(obj.ABIInternal, true)
    
    		// If a symbol is defined in this package (either in
    		// Go or assembly) and given a linkname, it may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    	//
    	// This is included in the export data and tracked across packages.
    	ABI obj.ABI
    	// ABIRefs is the set of ABIs by which this function is referenced.
    	// For ABIs other than this function's definition ABI, the
    	// compiler generates ABI wrapper functions. This is only tracked
    	// within a package.
    	ABIRefs obj.ABISet
    
    	NumDefers  int32 // number of defer calls in the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top