Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 419 for power9 (0.16 sec)

  1. test/codegen/arithmetic.go

    	// ppc64x/power9:"ADDIS\t[$]19,", "ADD\t[$]-10617,"
    	// ppc64x/power8:"ADDIS\t[$]19,", "ADD\t[$]-10617,"
    	out[2] = a + 1234567
    	// ppc64x/power10:"ADD\t[$]-1234567,"
    	// ppc64x/power9:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	// ppc64x/power8:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	out[3] = a - 1234567
    	// ppc64x/power10:"ADD\t[$]2147450879,"
    	// ppc64x/power9:"ADDIS\t[$]32767,", "ADD\t[$]32767,"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. test/codegen/mathbits.go

    	// s390x:"FLOGR"
    	// ppc64x/power8:"ANDN","POPCNTD"
    	// ppc64x/power9: "CNTTZD"
    	// wasm:"I64Ctz"
    	return bits.TrailingZeros(n)
    }
    
    func TrailingZeros64(n uint64) int {
    	// amd64/v1,amd64/v2:"BSFQ","MOVL\t\\$64","CMOVQEQ"
    	// amd64/v3:"TZCNTQ"
    	// 386:"BSFL"
    	// arm64:"RBIT","CLZ"
    	// s390x:"FLOGR"
    	// ppc64x/power8:"ANDN","POPCNTD"
    	// ppc64x/power9: "CNTTZD"
    	// wasm:"I64Ctz"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. test/codegen/shift.go

    	// ppc64x:-"AND","CLRLSLWI"
    	h := (v32 & 0xFFFFF) << 2
    	// ppc64x:"CLRLSLDI"
    	i := (v64 & 0xFFFFFFFF) << 5
    	// ppc64x:-"CLRLSLDI"
    	i += (v64 & 0xFFFFFFF) << 38
    	// ppc64x/power9:-"CLRLSLDI"
    	i += (v64 & 0xFFFF00) << 10
    	// ppc64x/power9:-"SLD","EXTSWSLI"
    	j := int64(x32+32) * 8
    	return f, g, h, i, j
    }
    
    func checkWidenAfterShift(v int64, u uint64) (int64, uint64) {
    
    	// ppc64x:-".*MOVW"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    	  (or mips64le.hardfloat and mips64le.softfloat) feature build tags.
    	- For GOARCH=ppc64 or ppc64le,
    	  GOPPC64=power8, power9, and power10 correspond to the
    	  ppc64.power8, ppc64.power9, and ppc64.power10
    	  (or ppc64le.power8, ppc64le.power9, and ppc64le.power10)
    	  feature build tags.
    	- For GOARCH=riscv64,
    	  GORISCV64=rva20u64 and rva22u64 correspond to the riscv64.rva20u64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu.go

    	_        CacheLinePad
    	HasDARN  bool // Hardware random number generator (requires kernel enablement)
    	HasSCV   bool // Syscall vectored (requires kernel enablement)
    	IsPOWER8 bool // ISA v2.07 (POWER8)
    	IsPOWER9 bool // ISA v3.00 (POWER9), implies IsPOWER8
    	_        CacheLinePad
    }
    
    // S390X contains the supported CPU features of the current IBM Z
    // (s390x) platform. If the current platform is not IBM Z then all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/internal/bytealg/index_ppc64x.s

    // Unrolled index2to16 loop by 4 on ppc64le/power9
    // Work is still needed for a big endian
    // implementation on power9.
    
    //go:build ppc64 || ppc64le
    
    #include "go_asm.h"
    #include "textflag.h"
    
    // Needed to swap LXVD2X loads to the correct
    // byte order to work on POWER8.
    
    #ifdef GOARCH_ppc64
    DATA byteswap<>+0(SB)/8, $0x0001020304050607
    DATA byteswap<>+8(SB)/8, $0x08090a0b0c0d0e0f
    #else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/doc.go

    opcodes which explicitly translate to one PPC64 machine instruction. Most common opcodes
    are supported.
    
    Some examples of how pseudo-op assembly changes with GOPPC64:
    
    	Go asm                       GOPPC64 <= power9          GOPPC64 >= power10
    	MOVD mypackage·foo(SB), R3   addis r2, r3, ...          pld r3, ...
    	                             ld    r3, r3, ...
    
    	MOVD 131072(R3), R4          addis r31, r4, 2           pld r4, 131072(r3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    		// 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
    		case "power9":
    			args = append(args, "-D", "GOPPC64_power9")
    			fallthrough
    		default: // This should always be power8.
    			args = append(args, "-D", "GOPPC64_power8")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/crypto/aes/asm_ppc64x.s

    #ifdef GOARCH_ppc64le
    #  ifdef GOPPC64_power9
    #define P8_LXVB16X(RA,RB,VT)  LXVB16X	(RA+RB), VT
    #define P8_STXVB16X(VS,RA,RB) STXVB16X	VS, (RA+RB)
    #define XXBRD_ON_LE(VA,VT)    XXBRD	VA, VT
    #  else
    // On POWER8/ppc64le, emulate the POWER9 instructions by loading unaligned
    // doublewords and byte-swapping each doubleword to emulate BE load/stores.
    #define NEEDS_ESPERM
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X	(RA+RB), VT \
    	VPERM	VT, VT, ESPERM, VT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/crypto/aes/gcm_ppc64x.s

    #define VH4    VS62
    #define VH4H   VS63
    
    #define VIN0   VIN
    
    #define ESPERM V10
    #define TMP2 V11
    
    // The following macros provide appropriate
    // implementations for endianness as well as
    // ISA specific for power8 and power9.
    #ifdef GOARCH_ppc64le
    #  ifdef GOPPC64_power9
    #define P8_LXVB16X(RA,RB,VT)   LXVB16X (RA)(RB), VT
    #define P8_STXVB16X(VS,RA,RB)  STXVB16X VS, (RA)(RB)
    #  else
    #define NEEDS_ESPERM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top