Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for POWER8 (0.41 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // 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.
    
    // GOPPC64 values indicate power8, power9, etc.
    // That means the code is compiled for that target,
    // and will not run on earlier targets.
    //
    (Add(Ptr|64|32|16|8) ...) => (ADD ...)
    (Add64F ...) => (FADD ...)
    (Add32F ...) => (FADDS ...)
    
    (Sub(Ptr|64|32|16|8) ...) => (SUB ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Hex constant 0x20004000000
    	MOVD $2199090364416, R5         // 60058001
    	// Hex constant 0xFFFFFE0004000000
    	MOVD $-2198956146688, R5        // 38a08001
    	// TODO: On GOPPC64={power8,power9}, this is preprocessed into MOVD $-1, R5; RLDC R5, $33, $63, R5.
    	//       This only captures the MOVD. Should the RLDC be appended to the encoding by the test?
    	// Hex constant 0xFFFFFFFE00000001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    					Offset:   0xb,
    					Tag:      dwarf.TagCompileUnit,
    					Children: true,
    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrProducer, Val: "GNU C 4.8.2 -Asystem=linux -Asystem=unix -Asystem=posix -msecure-plt -mtune=power8 -mcpu=power7 -gdwarf-2 -fstack-protector", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(1), Class: dwarf.ClassConstant},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    			stub.SetUint32(ctxt.Arch, stub.Size()-4, OP_LD_R12_R12) // ld r12,targ@plt@l(r12)
    		} else {
    			// Generate a PIC stub. This is ugly as the stub must determine its location using
    			// POWER8 or older instruction. These stubs are likely the combination of using
    			// GOPPC64 < 8 and linking external objects built with CFLAGS="... -mcpu=power10 ..."
    			stub.AddUint32(ctxt.Arch, OP_MFLR_R0)  // mflr r0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	}
    
    	c.ctxt.Diag("bad i/r/r/r opcode %v", a)
    	return 0
    }
    
    func (c *ctxt9) opiirr(a obj.As) uint32 {
    	switch a {
    	/* Vector (VMX/Altivec) instructions */
    	/* ISA 2.07 enables these for POWER8 and beyond. */
    	case AVSHASIGMAW:
    		return OPVX(4, 1666, 0, 0) /* vshasigmaw - v2.07 */
    	case AVSHASIGMAD:
    		return OPVX(4, 1730, 0, 0) /* vshasigmad - v2.07 */
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top