Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for constSyms (0.23 sec)

  1. src/cmd/internal/obj/sym.go

    	}
    
    	// Constant symbols are created late in the concurrent phase. Sort them
    	// to ensure a deterministic order.
    	sort.Slice(ctxt.constSyms, func(i, j int) bool {
    		return ctxt.constSyms[i].Name < ctxt.constSyms[j].Name
    	})
    	ctxt.Data = append(ctxt.Data, ctxt.constSyms...)
    	ctxt.constSyms = nil
    
    	// So are SEH symbols.
    	sort.Slice(ctxt.SEHSyms, func(i, j int) bool {
    		return ctxt.SEHSyms[i].Name < ctxt.SEHSyms[j].Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    	// Constant symbols (e.g. $i64.*) are data symbols created late
    	// in the concurrent phase. To ensure a deterministic order, we
    	// add them to a separate list, sort at the end, and append it
    	// to Data.
    	constSyms []*LSym
    
    	// Windows SEH symbols are also data symbols that can be created
    	// concurrently.
    	SEHSyms []*LSym
    
    	// pkgIdx maps package path to index. The index is used for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top