Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for gccgoArchSizes (0.32 sec)

  1. src/cmd/compile/internal/types2/gccgosizes.go

    // license that can be found in the LICENSE file.
    
    // This is a copy of the file generated during the gccgo build process.
    // Last update 2019-01-22.
    
    package types2
    
    var gccgoArchSizes = map[string]*StdSizes{
    	"386":         {4, 4},
    	"alpha":       {8, 8},
    	"amd64":       {8, 8},
    	"amd64p32":    {4, 8},
    	"arm":         {4, 8},
    	"armbe":       {4, 8},
    	"arm64":       {8, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:06 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/go/types/gccgosizes.go

    // license that can be found in the LICENSE file.
    
    // This is a copy of the file generated during the gccgo build process.
    // Last update 2019-01-22.
    
    package types
    
    var gccgoArchSizes = map[string]*StdSizes{
    	"386":         {4, 4},
    	"alpha":       {8, 8},
    	"amd64":       {8, 8},
    	"amd64p32":    {4, 8},
    	"arm":         {4, 8},
    	"armbe":       {4, 8},
    	"arm64":       {8, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/sizes.go

    func SizesFor(compiler, arch string) Sizes {
    	switch compiler {
    	case "gc":
    		if s := gcSizesFor(compiler, arch); s != nil {
    			return Sizes(s)
    		}
    	case "gccgo":
    		if s, ok := gccgoArchSizes[arch]; ok {
    			return Sizes(s)
    		}
    	}
    	return nil
    }
    
    // stdSizes is used if Config.Sizes == nil.
    var stdSizes = SizesFor("gc", "amd64")
    
    func (conf *Config) alignof(T Type) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/go/types/sizes.go

    func SizesFor(compiler, arch string) Sizes {
    	switch compiler {
    	case "gc":
    		if s := gcSizesFor(compiler, arch); s != nil {
    			return Sizes(s)
    		}
    	case "gccgo":
    		if s, ok := gccgoArchSizes[arch]; ok {
    			return Sizes(s)
    		}
    	}
    	return nil
    }
    
    // stdSizes is used if Config.Sizes == nil.
    var stdSizes = SizesFor("gc", "amd64")
    
    func (conf *Config) alignof(T Type) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top