Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for ARM64 (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    	=> (EXTRWconst [32-c] x2 x)
    (XORshiftLL <t> [c] (UBFX [bfc] x) x2) && c < 32 && t.Size() == 4 && bfc == armBFAuxInt(32-c, c)
    	=> (EXTRWconst [32-c] x2 x)
    
    // Rewrite special pairs of shifts to AND.
    // On ARM64 the bitmask can fit into an instruction.
    (SRLconst [c] (SLLconst [c] x)) && 0 < c && c < 64 => (ANDconst [1<<uint(64-c)-1] x) // mask out high bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    		{Name: "sha3", Feature: &ARM64.HasSHA3},
    		{Name: "sha512", Feature: &ARM64.HasSHA512},
    		{Name: "sm3", Feature: &ARM64.HasSM3},
    		{Name: "sm4", Feature: &ARM64.HasSM4},
    		{Name: "sve", Feature: &ARM64.HasSVE},
    		{Name: "sve2", Feature: &ARM64.HasSVE2},
    		{Name: "crc32", Feature: &ARM64.HasCRC32},
    		{Name: "atomics", Feature: &ARM64.HasATOMICS},
    		{Name: "asimdhp", Feature: &ARM64.HasASIMDHP},
    		{Name: "cpuid", Feature: &ARM64.HasCPUID},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/internal/platform/supported.go

    		case "linux/386", "linux/amd64", "linux/arm", "linux/arm64", "linux/loong64", "linux/ppc64le", "linux/riscv64", "linux/s390x",
    			"android/amd64", "android/arm", "android/arm64", "android/386",
    			"freebsd/amd64",
    			"darwin/amd64", "darwin/arm64",
    			"ios/amd64", "ios/arm64",
    			"aix/ppc64",
    			"openbsd/arm64",
    			"windows/386", "windows/amd64", "windows/arm", "windows/arm64":
    			return true
    		}
    		return false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. test/codegen/comparisons.go

    	}
    	// arm64:`CMN`,-`CMP`
    	if b+c != 0 {
    		c5 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a == -c {
    		c6 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if b != -d {
    		c7 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a*b+c == 0 {
    		c8 = 1
    	}
    	// arm64:`CMN`,-`CMP`
    	if a*c+b != 0 {
    		c9 = 1
    	}
    	// arm64:`CMP`,-`CMN`
    	if b*c-a == 0 {
    		c10 = 1
    	}
    	// arm64:`CMP`,-`CMN`
    	if a*d-b != 0 {
    		c11 = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. test/codegen/mathbits.go

    func RotateLeft16(n uint16, s int) uint16 {
    	// amd64:"ROLW" 386:"ROLW"
    	// arm64:"RORW",-"CSEL"
    	return bits.RotateLeft16(n, s)
    }
    
    func RotateLeft8(n uint8, s int) uint8 {
    	// amd64:"ROLB" 386:"ROLB"
    	// arm64:"LSL","LSR",-"CSEL"
    	return bits.RotateLeft8(n, s)
    }
    
    func RotateLeftVariable(n uint, m int) uint {
    	// amd64:"ROLQ"
    	// arm64:"ROR"
    	// ppc64x:"ROTL"
    	// s390x:"RLLG"
    	// wasm:"I64Rotl"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/internal/cpu/cpu_arm64_darwin.go

    	// to detect their supported state dynamically. Assume the CPU features that
    	// Apple Silicon M1 supports to be available as a minimal set of features
    	// to all Go programs running on darwin/arm64.
    	ARM64.HasAES = true
    	ARM64.HasPMULL = true
    	ARM64.HasSHA1 = true
    	ARM64.HasSHA2 = true
    }
    
    //go:noescape
    func getsysctlbyname(name []byte) (int32, int32)
    
    // sysctlEnabled should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	ARM64.HasASIMDHP = isSet(hwCap, hwcap_ASIMDHP)
    	ARM64.HasCPUID = isSet(hwCap, hwcap_CPUID)
    	ARM64.HasASIMDRDM = isSet(hwCap, hwcap_ASIMDRDM)
    	ARM64.HasJSCVT = isSet(hwCap, hwcap_JSCVT)
    	ARM64.HasFCMA = isSet(hwCap, hwcap_FCMA)
    	ARM64.HasLRCPC = isSet(hwCap, hwcap_LRCPC)
    	ARM64.HasDCPOP = isSet(hwCap, hwcap_DCPOP)
    	ARM64.HasSHA3 = isSet(hwCap, hwcap_SHA3)
    	ARM64.HasSM3 = isSet(hwCap, hwcap_SM3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_arm64_hwcap.go

    	// is not supported in user space on older linux kernels.
    	ARM64.HasAES = isSet(HWCap, hwcap_AES)
    	ARM64.HasPMULL = isSet(HWCap, hwcap_PMULL)
    	ARM64.HasSHA1 = isSet(HWCap, hwcap_SHA1)
    	ARM64.HasSHA2 = isSet(HWCap, hwcap_SHA2)
    	ARM64.HasCRC32 = isSet(HWCap, hwcap_CRC32)
    	ARM64.HasCPUID = isSet(HWCap, hwcap_CPUID)
    	ARM64.HasSHA512 = isSet(HWCap, hwcap_SHA512)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. test/codegen/arithmetic.go

    func constantFold1(i0, j0, i1, j1, i2, j2, i3, j3 int) (int, int, int, int) {
    	// arm64:"SUB","ADD\t[$]2"
    	// ppc64x:"SUB","ADD\t[$]2"
    	r0 := (i0 + 3) - (j0 + 1)
    	// arm64:"SUB","SUB\t[$]4"
    	// ppc64x:"SUB","ADD\t[$]-4"
    	r1 := (i1 - 3) - (j1 + 1)
    	// arm64:"SUB","ADD\t[$]4"
    	// ppc64x:"SUB","ADD\t[$]4"
    	r2 := (i2 + 3) - (j2 - 1)
    	// arm64:"SUB","SUB\t[$]2"
    	// ppc64x:"SUB","ADD\t[$]-2"
    	r3 := (i3 - 3) - (j3 - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/env_changed.txt

    [GOOS:windows] env GOOS=linux
    [!GOOS:windows] env GOOS=windows
    [GOARCH:amd64] env GOARCH=arm64
    [!GOARCH:amd64] env GOARCH=amd64
    
    go env -changed GOOS
    [GOOS:windows] stdout 'set GOOS=linux'
    [!GOOS:windows] stdout 'GOOS=''windows'''
    go env -changed GOARCH
    [GOARCH:amd64] stdout 'set GOARCH=arm64|GOARCH=''arm64'''
    [!GOARCH:amd64] stdout 'set GOARCH=amd64|GOARCH=''amd64'''
    
    go env -changed -json GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:49:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top