Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for ppc64x (0.11 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    		"loong64": {},
    		"mips":    {"GOMIPS", "hardfloat", "softfloat"},
    		"mips64":  {"GOMIPS64", "hardfloat", "softfloat"},
    		"ppc64":   {"GOPPC64", "power8", "power9", "power10"},
    		"ppc64le": {"GOPPC64", "power8", "power9", "power10"},
    		"ppc64x":  {}, // A pseudo-arch representing both ppc64 and ppc64le
    		"s390x":   {},
    		"wasm":    {},
    		"riscv64": {"GORISCV64", "rva20u64", "rva22u64"},
    	}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This contains the majority of valid opcode combinations
    // available in cmd/internal/obj/ppc64/asm9.go with
    // their valid instruction encodings.
    
    #include "../../../../../runtime/textflag.h"
    
    // In case of index mode instructions, usage of
    // (Rx)(R0) is equivalent to (Rx+R0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Rsh8x(64|32|16|8)   x y) && shiftIsBounded(v) => (SRAD (MOVBreg x) y)
    
    // Unbounded shifts. Go shifts saturate to 0 or -1 when shifting beyond the number of
    // bits in a type, PPC64 shifts do not (see the ISA for details).
    //
    // Note, y is always non-negative.
    //
    // Note, ISELZ is intentionally not used in lower. Where possible, ISEL is converted to ISELZ in late lower
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    		switch t.Size() {
    		case 4:
    			return ppc64.AFMOVS
    		case 8:
    			return ppc64.AFMOVD
    		}
    	} else {
    		switch t.Size() {
    		case 1:
    			if t.IsSigned() {
    				return ppc64.AMOVB
    			} else {
    				return ppc64.AMOVBZ
    			}
    		case 2:
    			if t.IsSigned() {
    				return ppc64.AMOVH
    			} else {
    				return ppc64.AMOVHZ
    			}
    		case 4:
    			if t.IsSigned() {
    				return ppc64.AMOVW
    			} else {
    				return ppc64.AMOVWZ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/internal/xcoff/testdata/gcc-ppc64-aix-dwarf2-exec

    Clément Chigot <******@****.***> 1544027005 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 55.8K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    			// https://golang.org/issue/14449
    			return true
    		case "arm64":
    			if goos == "windows" {
    				// windows/arm64 internal linking is not implemented.
    				return true
    			}
    		case "ppc64":
    			// Big Endian PPC64 cgo internal linking is not implemented for aix or linux.
    			if goos == "aix" || goos == "linux" {
    				return true
    			}
    		}
    
    		switch goos {
    		case "android":
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	// Internal and external linking supports this on ppc64le; internal linking on ppc64.
    	return buildcfg.GOPPC64 >= 10 && buildcfg.GOOS == "linux"
    }
    
    func newPPC64ShiftAuxInt(sh, mb, me, sz int64) int32 {
    	if sh < 0 || sh >= sz {
    		panic("PPC64 shift arg sh out of range")
    	}
    	if mb < 0 || mb >= sz {
    		panic("PPC64 shift arg mb out of range")
    	}
    	if me < 0 || me >= sz {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    		switch goos {
    		case "aix", "darwin", "ios", "windows":
    			return true
    		case "linux":
    			switch goarch {
    			case "386", "amd64", "arm", "armbe", "arm64", "arm64be", "loong64", "ppc64le", "riscv64", "s390x":
    				// linux/ppc64 not supported because it does
    				// not support external linking mode yet.
    				return true
    			default:
    				// Other targets do not support -shared,
    				// per ParseFlags in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    [kubernetes-client-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.31.0-alpha.1/kubernetes-client-linux-ppc64le.tar.gz) | 0b5602ec8c9c0afafe4f7c05590bdf8176ec158abb8b52e0bea026eb937945afc52aadeb4d1547fff0883b29e1aec0b92fbbae2e950a0cffa870db21674cef9e
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    	//    straight from the call stub to the real function, and
    	//    then call the function.
    
    	// NOTE: It's possible we could make ppc64 closer to other
    	// architectures: ppc64's .plt is like .plt.got on other
    	// platforms and ppc64's .glink is like .plt on other
    	// platforms.
    
    	// Find all relocations that reference dynamic imports.
    	// Reserve PLT entries for these symbols and generate call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top