Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 525 for zarch (0.29 sec)

  1. src/internal/cpu/cpu_s390x.go

    		if !bitIsSet(q.bits[:], uint(f)) {
    			return false
    		}
    	}
    	return true
    }
    
    // facility is a bit index for the named facility.
    type facility uint8
    
    const (
    	// mandatory facilities
    	zarch  facility = 1  // z architecture mode is active
    	stflef facility = 7  // store-facility-list-extended
    	ldisp  facility = 18 // long-displacement
    	eimm   facility = 21 // extended-immediate
    
    	// miscellaneous facilities
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go

    // license that can be found in the LICENSE file.
    
    package cpu
    
    func initS390Xbase() {
    	// get the facilities list
    	facilities := stfle()
    
    	// mandatory
    	S390X.HasZARCH = facilities.Has(zarch)
    	S390X.HasSTFLE = facilities.Has(stflef)
    	S390X.HasLDISP = facilities.Has(ldisp)
    	S390X.HasEIMM = facilities.Has(eimm)
    
    	// optional
    	S390X.HasETF3EH = facilities.Has(etf3eh)
    	S390X.HasDFP = facilities.Has(dfp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 643 bytes
    - Viewed (0)
  3. src/internal/cpu/cpu_s390x_test.go

    	mapping := make(map[string]*bool)
    	for _, option := range Options {
    		mapping[option.Name] = option.Feature
    	}
    
    	// these must be true on the machines Go supports
    	mandatory := make(map[string]bool)
    	mandatory["zarch"] = false
    	mandatory["eimm"] = false
    	mandatory["ldisp"] = false
    	mandatory["stfle"] = false
    
    	features, err := getFeatureList()
    	if err != nil {
    		t.Error(err)
    	}
    	for _, feature := range features {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cpu
    
    const cacheLineSize = 256
    
    func initOptions() {
    	options = []option{
    		{Name: "zarch", Feature: &S390X.HasZARCH, Required: true},
    		{Name: "stfle", Feature: &S390X.HasSTFLE, Required: true},
    		{Name: "ldisp", Feature: &S390X.HasLDISP, Required: true},
    		{Name: "eimm", Feature: &S390X.HasEIMM, Required: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/internal/sys/arch.go

    type ArchFamily byte
    
    const (
    	NoArch ArchFamily = iota
    	AMD64
    	ARM
    	ARM64
    	I386
    	Loong64
    	MIPS
    	MIPS64
    	PPC64
    	RISCV64
    	S390X
    	Wasm
    )
    
    // Arch represents an individual architecture.
    type Arch struct {
    	Name   string
    	Family ArchFamily
    
    	ByteOrder binary.ByteOrder
    
    	// PtrSize is the size in bytes of pointers and the
    	// predeclared "int", "uint", and "uintptr" types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arch.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package arch defines architecture-specific information and support functions.
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/arm"
    	"cmd/internal/obj/arm64"
    	"cmd/internal/obj/loong64"
    	"cmd/internal/obj/mips"
    	"cmd/internal/obj/ppc64"
    	"cmd/internal/obj/riscv"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/arch.go

    package ssagen
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    )
    
    var Arch ArchInfo
    
    // interface to back end
    
    type ArchInfo struct {
    	LinkArch *obj.LinkArch
    
    	REGSP     int
    	MAXWIDTH  int64
    	SoftFloat bool
    
    	PadFrame func(int64) int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. samples/ambient-argo/documentation/argo-reference-arch.svg

    argo-reference-arch.svg...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. samples/ambient-argo/documentation/argo-reference-arch.dot

    Mitch Connors <******@****.***> 1699062890 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

    Pavlo Shevchenko <******@****.***> 1712149508 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top