Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for power9 (0.29 sec)

  1. test/codegen/memops_bigoffset.go

    	a3 := sw.w[1<<10]
    	// ppc64le/power10:`MOVWZ\s+[0-9]+\(R[0-9]+\),\sR[0-9]+`,-`ADD`
    	// ppc64x/power9:`ADD`,`MOVWZ\s+\(R[0-9]+\),\sR[0-9]+`
    	// ppc64x/power8:`ADD`,`MOVWZ\s+\(R[0-9]+\),\sR[0-9]+`
    	b3 := sw.w[1<<16]
    	// ppc64le/power10:`MOVWZ\s+[0-9]+\(R[0-9]+\),\sR[0-9]+`,-`ADD`
    	// ppc64x/power9:`ADD`,`MOVWZ\s+\(R[0-9]+\),\sR[0-9]+`
    	// ppc64x/power8:`ADD`,`MOVWZ\s+\(R[0-9]+\),\sR[0-9]+`
    	c3 := sw.w[1<<28]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 18:20:54 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/tooltags.txt

    stdout 'mips64.hardfloat'
    
    env GOARCH=ppc64
    env GOPPC64=power9
    go list -f '{{context.ToolTags}}'
    stdout 'ppc64.power8 ppc64.power9'
    
    env GOARCH=ppc64
    env GOPPC64=power10
    go list -f '{{context.ToolTags}}'
    stdout 'ppc64.power8 ppc64.power9 ppc64.power10'
    
    env GOARCH=ppc64le
    env GOPPC64=power9
    go list -f '{{context.ToolTags}}'
    stdout 'ppc64le.power8 ppc64le.power9'
    
    env GOARCH=ppc64le
    env GOPPC64=power10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 07:25:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/internal/cpu/cpu_ppc64x.go

    		{Name: "scv", Feature: &PPC64.HasSCV},
    		{Name: "power9", Feature: &PPC64.IsPOWER9},
    	}
    
    	osinit()
    }
    
    func isSet(hwc uint, value uint) bool {
    	return hwc&value != 0
    }
    
    func Name() string {
    	switch {
    	case PPC64.IsPOWER10:
    		return "POWER10"
    	case PPC64.IsPOWER9:
    		return "POWER9"
    	case PPC64.IsPOWER8:
    		return "POWER8"
    	}
    	return ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 651 bytes
    - Viewed (0)
  4. test/codegen/bool.go

    }
    
    func TestSetEq64(x uint64, y uint64) bool {
    	// ppc64x/power10:"SETBC\tCR0EQ",-"ISEL"
    	// ppc64x/power9:"CMP","ISEL",-"SETBC\tCR0EQ"
    	// ppc64x/power8:"CMP","ISEL",-"SETBC\tCR0EQ"
    	b := x == y
    	return b
    }
    func TestSetNeq64(x uint64, y uint64) bool {
    	// ppc64x/power10:"SETBCR\tCR0EQ",-"ISEL"
    	// ppc64x/power9:"CMP","ISEL",-"SETBCR\tCR0EQ"
    	// ppc64x/power8:"CMP","ISEL",-"SETBCR\tCR0EQ"
    	b := x != y
    	return b
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 22:12:32 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. test/codegen/copy.go

    func moveDisjointStack32() {
    	var s [32]byte
    	// ppc64x:-".*memmove"
    	// ppc64x/power8:"LXVD2X",-"ADD",-"BC"
    	// ppc64x/power9:"LXV",-"LXVD2X",-"ADD",-"BC"
    	copy(s[:], x[:32])
    	runtime.KeepAlive(&s)
    }
    
    func moveDisjointStack64() {
    	var s [96]byte
    	// ppc64x:-".*memmove"
    	// ppc64x/power8:"LXVD2X","ADD","BC"
    	// ppc64x/power9:"LXV",-"LXVD2X",-"ADD",-"BC"
    	copy(s[:], x[:96])
    	runtime.KeepAlive(&s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 14:09:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. test/codegen/floats.go

    	// ppc64x/power8:"FMOVS\t[$]f32\\.42440000\\(SB\\)"
    	// ppc64x/power9:"FMOVS\t[$]f32\\.42440000\\(SB\\)"
    	// ppc64x/power10:"XXSPLTIDP\t[$]1111752704,"
    	return 49.0
    }
    
    func Float64Constant() float64 {
    	// ppc64x/power8:"FMOVD\t[$]f64\\.4048800000000000\\(SB\\)"
    	// ppc64x/power9:"FMOVD\t[$]f64\\.4048800000000000\\(SB\\)"
    	// ppc64x/power10:"XXSPLTIDP\t[$]1111752704,"
    	return 49.0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. test/codegen/constants.go

    	out[1] = 0xFFFFF80000000001
    	// ppc64x: "MOVD\t[$]-1", "RLDC\tR[0-9]+, [$]43, [$]4,"
    	out[2] = 0x0FFFF80000000000
    	// ppc64x/power8: "MOVD\t[$]-1", "RLDC\tR[0-9]+, [$]33, [$]63,"
    	// ppc64x/power9: "MOVD\t[$]-1", "RLDC\tR[0-9]+, [$]33, [$]63,"
    	// ppc64x/power10: "MOVD\t[$]-8589934591,"
    	out[3] = 0xFFFFFFFE00000001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 14:03:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/internal/buildcfg/cfg.go

    	return defaultGOMIPS64
    }
    
    func goppc64() int {
    	switch v := envOr("GOPPC64", defaultGOPPC64); v {
    	case "power8":
    		return 8
    	case "power9":
    		return 9
    	case "power10":
    		return 10
    	}
    	Error = fmt.Errorf("invalid GOPPC64: must be power8, power9, power10")
    	return int(defaultGOPPC64[len("power")] - '0')
    }
    
    func goriscv64() int {
    	switch v := envOr("GORISCV64", defaultGORISCV64); v {
    	case "rva20u64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/bench_test.go

    	x := make([]int64, 1024)
    	y := make([]int64, 1024)
    	for i := 0; i < b.N; i++ {
    		var s int64
    		for i := range x {
    			s ^= x[i] + y[i]
    		}
    		globl = s
    	}
    }
    
    // Added for ppc64 extswsli on power9
    func BenchmarkExtShift(b *testing.B) {
    	x := make([]int32, 1024)
    	for i := 0; i < b.N; i++ {
    		var s int64
    		for i := range x {
    			s ^= int64(x[i]+32) * 8
    		}
    		globl = s
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 08 03:27:59 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. src/internal/cpu/cpu.go

    // those as well. The minimum processor requirement is POWER8 (ISA 2.07).
    // The struct is padded to avoid false sharing.
    var PPC64 struct {
    	_         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)
    	IsPOWER10 bool // ISA v3.1  (POWER10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top