Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for ppc64x (0.1 sec)

  1. src/cmd/compile/internal/ssa/branchelim.go

    // rewrite Phis in the postdominator as CondSelects.
    func branchelim(f *Func) {
    	// FIXME: add support for lowering CondSelects on more architectures
    	switch f.Config.arch {
    	case "arm64", "ppc64le", "ppc64", "amd64", "wasm", "loong64":
    		// implemented
    	default:
    		return
    	}
    
    	// Find all the values used in computing the address of any load.
    	// Typically these values have operations like AddPtr, Lsh64x64, etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    // cgo -godefs -objdir=/tmp/ppc64le/cgo -- -Wall -Werror -static -I/tmp/ppc64le/include linux/types.go | go run mkpost.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build ppc64le && linux
    
    package unix
    
    const (
    	SizeofPtr  = 0x8
    	SizeofLong = 0x8
    )
    
    type (
    	_C_long int64
    )
    
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. doc/asm.html

    </ul>
    
    <p>
    Reference: <a href="/pkg/cmd/internal/obj/arm64">Go ARM64 Assembly Instructions Reference Manual</a>
    </p>
    
    <h3 id="ppc64">PPC64</h3>
    
    <p>
    This assembler is used by GOARCH values ppc64 and ppc64le.
    </p>
    
    <p>
    Reference: <a href="/pkg/cmd/internal/obj/ppc64">Go PPC64 Assembly Instructions Reference Manual</a>
    </p>
    
    <h3 id="s390x">IBM z/Architecture, a.k.a. s390x</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  4. src/cmd/compile/internal/ssagen/abi.go

    	// OTAILCALL or something to this effect.
    	tailcall := fn.Type().NumResults() == 0 && fn.Type().NumParams() == 0 && fn.Type().NumRecvs() == 0
    	if base.Ctxt.Arch.Name == "ppc64le" && base.Ctxt.Flag_dynlink {
    		// cannot tailcall on PPC64 with dynamic linking, as we need
    		// to restore R2 after call.
    		tailcall = false
    	}
    	if base.Ctxt.Arch.Name == "amd64" && wrapperABI == obj.ABIInternal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gc.go

    	if cfg.Goarch == "mips64" || cfg.Goarch == "mips64le" {
    		// Define GOMIPS64_value from cfg.GOMIPS64.
    		args = append(args, "-D", "GOMIPS64_"+cfg.GOMIPS64)
    	}
    
    	if cfg.Goarch == "ppc64" || cfg.Goarch == "ppc64le" {
    		// Define GOPPC64_power8..N from cfg.PPC64.
    		// We treat each powerpc version as a superset of functionality.
    		switch cfg.GOPPC64 {
    		case "power10":
    			args = append(args, "-D", "GOPPC64_power10")
    			fallthrough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/crypto/sha256/sha256block_ppc64x.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 (ppc64 || ppc64le) && !purego
    
    // Based on CRYPTOGAMS code with the following comment:
    // # ====================================================================
    // # Written by Andy Polyakov <******@****.***> for the OpenSSL
    // # project. The module is, however, dual licensed under OpenSSL and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/os/signal/signal_test.go

    		//
    		// See https://golang.org/issue/33174.
    		settleTime = 5 * time.Second
    	} else if runtime.GOOS == "linux" && strings.HasPrefix(runtime.GOARCH, "ppc64") {
    		// Older linux kernels seem to have some hiccups delivering the signal
    		// in a timely manner on ppc64 and ppc64le. When running on a
    		// ppc64le/ubuntu 16.04/linux 4.4 host the time can vary quite
    		// substantially even on an idle system. 5 seconds is twice any value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_linux_ppc64.go

    // mksysnum_linux.pl /usr/include/asm/unistd.h
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build ppc64 && linux
    
    package syscall
    
    const (
    	SYS_RESTART_SYSCALL        = 0
    	SYS_EXIT                   = 1
    	SYS_FORK                   = 2
    	SYS_READ                   = 3
    	SYS_WRITE                  = 4
    	SYS_OPEN                   = 5
    	SYS_CLOSE                  = 6
    	SYS_WAITPID                = 7
    	SYS_CREAT                  = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  9. src/cmd/internal/notsha256/sha256block_ppc64x.s

    //
    // WARNING: this file is built by the bootstrap compiler, thus
    // it must maintain compatibility with the oldest supported
    // bootstrap toolchain.
    //
    
    //go:build !purego && (ppc64 || ppc64le)
    
    // Based on CRYPTOGAMS code with the following comment:
    // # ====================================================================
    // # Written by Andy Polyakov <******@****.***> for the OpenSSL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. hack/lib/golang.sh

    # The server platform we are building on.
    readonly KUBE_SUPPORTED_SERVER_PLATFORMS=(
      linux/amd64
      linux/arm64
      linux/s390x
      linux/ppc64le
    )
    
    # The node platforms we build for
    readonly KUBE_SUPPORTED_NODE_PLATFORMS=(
      linux/amd64
      linux/arm64
      linux/s390x
      linux/ppc64le
      windows/amd64
    )
    
    # If we update this we should also update the set of platforms whose standard
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top