Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 157 for s390 (0.03 sec)

  1. test/codegen/rotate.go

    	// riscv64: "RORI\t[$]57"
    	a += x<<7 | x>>57
    
    	// amd64:"ROLQ\t[$]8"
    	// arm64:"ROR\t[$]56"
    	// s390x:"RISBGZ\t[$]0, [$]63, [$]8, "
    	// ppc64x:"ROTL\t[$]8"
    	// loong64: "ROTRV\t[$]56"
    	// riscv64: "RORI\t[$]56"
    	a += x<<8 + x>>56
    
    	// amd64:"ROLQ\t[$]9"
    	// arm64:"ROR\t[$]55"
    	// s390x:"RISBGZ\t[$]0, [$]63, [$]9, "
    	// ppc64x:"ROTL\t[$]9"
    	// loong64: "ROTRV\t[$]55"
    	// riscv64: "RORI\t[$]55"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. test/codegen/stack.go

    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    func ZeroLargeStruct(x *T) {
    	t := T{}
    	*x = t
    }
    
    // Check that structs are partially initialised directly (issue #24386).
    
    // Notes:
    // - 386 fails due to spilling a register
    // amd64:"TEXT\t.*, [$]0-"
    // arm:"TEXT\t.*, [$]0-" (spills return address)
    // arm64:"TEXT\t.*, [$]0-"
    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/export_test.go

    	"cmd/internal/obj"
    	"cmd/internal/obj/arm64"
    	"cmd/internal/obj/s390x"
    	"cmd/internal/obj/x86"
    	"cmd/internal/src"
    	"cmd/internal/sys"
    )
    
    var CheckFunc = checkFunc
    var Opt = opt
    var Deadcode = deadcode
    var Copyelim = copyelim
    
    var testCtxts = map[string]*obj.Link{
    	"amd64": obj.Linknew(&x86.Linkamd64),
    	"s390x": obj.Linknew(&s390x.Links390x),
    	"arm64": obj.Linknew(&arm64.Linkarm64),
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/runtime/vdso_linux_s390x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && s390x
    
    package runtime
    
    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/s390x/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6.29", 0x75fcbb9}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 659 bytes
    - Viewed (0)
  5. src/cmd/link/main.go

    		arch, theArch = mips.Init()
    	case "mips64", "mips64le":
    		arch, theArch = mips64.Init()
    	case "ppc64", "ppc64le":
    		arch, theArch = ppc64.Init()
    	case "riscv64":
    		arch, theArch = riscv64.Init()
    	case "s390x":
    		arch, theArch = s390x.Init()
    	case "wasm":
    		arch, theArch = wasm.Init()
    	}
    	ld.Main(arch, theArch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 17:54:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. src/race.bash

    function usage {
    	echo 'race detector is only supported on linux/amd64, linux/ppc64le, linux/arm64, linux/s390x, freebsd/amd64, netbsd/amd64, openbsd/amd64, darwin/amd64, and darwin/arm64' 1>&2
    	exit 1
    }
    
    case $(uname -s -m) in
      "Darwin x86_64") ;;
      "Darwin arm64")  ;;
      "Linux x86_64")  ;;
      "Linux ppc64le") ;;
      "Linux aarch64") ;;
      "Linux s390x")   ;;
      "FreeBSD amd64") ;;
      "NetBSD amd64")  ;;
      "OpenBSD amd64") ;;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 14:17:20 UTC 2022
    - 919 bytes
    - Viewed (0)
  7. docker-buildx.sh

    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release .
    
    docker buildx prune -f
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:${release}-cpuv1" \
    	-t "quay.io/minio/minio:${release}-cpuv1" \
    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release.old_cpu .
    
    docker buildx prune -f
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/internal/platform/supported.go

    	case "shared":
    		switch platform {
    		case "linux/386", "linux/amd64", "linux/arm", "linux/arm64", "linux/ppc64le", "linux/s390x":
    			return true
    		}
    		return false
    
    	case "plugin":
    		switch platform {
    		case "linux/amd64", "linux/arm", "linux/arm64", "linux/386", "linux/loong64", "linux/s390x", "linux/ppc64le",
    			"android/amd64", "android/386",
    			"darwin/amd64", "darwin/arm64",
    			"freebsd/amd64":
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_s390x.s

    // Copyright 2016 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.
    
    //go:build linux && s390x && gc
    
    #include "textflag.h"
    
    //
    // System calls for s390x, Linux
    //
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT ·Syscall(SB),NOSPLIT,$0-56
    	BR	syscall·Syscall(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. cluster/get-kube-binaries.sh

            CLIENT_ARCH="386"
            ;;
          ppc64le*)
            CLIENT_ARCH="ppc64le"
            ;;
          s390x*)
            CLIENT_ARCH="s390x"
            ;;
          *)
            echo "Unknown, unsupported architecture (${machine})." >&2
            echo "Supported architectures x86_64, i686, arm, arm64, ppc64le, s390x." >&2
            echo "Bailing out." >&2
            exit 3
            ;;
        esac
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top