Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Xeon (0.04 sec)

  1. src/cmd/go/internal/load/pkg.go

    // 4 workers. This was measured on the following machines.
    //
    // * MacBookPro with a 4-core Intel Core i7 CPU
    // * Linux workstation with 6-core Intel Xeon CPU
    // * Linux workstation with 24-core Intel Xeon CPU
    //
    // It is very likely (though not confirmed) that this workload is limited
    // by memory bandwidth. We don't have a good way to determine the number of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (ORN x0 x1:(RORconst [c] y)) && clobberIfDead(x1) => (ORNshiftRO x0 y [c])
    (EON x0 x1:(SLLconst [c] y)) && clobberIfDead(x1) => (EONshiftLL x0 y [c])
    (EON x0 x1:(SRLconst [c] y)) && clobberIfDead(x1) => (EONshiftRL x0 y [c])
    (EON x0 x1:(SRAconst [c] y)) && clobberIfDead(x1) => (EONshiftRA x0 y [c])
    (EON x0 x1:(RORconst [c] y)) && clobberIfDead(x1) => (EONshiftRO x0 y [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// DSB <option>|<imm>
    	{0xfffff0ff, 0xd503309f, DSB, instArgs{arg_option_DSB_BO_system_CRm}, nil},
    	// EON <Wd>, <Wn>, <Wm> {, <shift> #<amount> }
    	{0xff208000, 0x4a200000, EON, instArgs{arg_Wd, arg_Wn, arg_Wm_shift__LSL_0__LSR_1__ASR_2__ROR_3__0_31}, nil},
    	// EON <Xd>, <Xn>, <Xm> {, <shift> #<amount> }
    	{0xff200000, 0xca200000, EON, instArgs{arg_Xd, arg_Xn, arg_Xm_shift__LSL_0__LSR_1__ASR_2__ROR_3__0_63}, nil},
    	// EOR <Wd|WSP>, <Wn>, #<imm>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    	switch op {
    	case ASTXP, ASTLXP, ASTXPW, ASTLXPW:
    		return true
    	}
    	return false
    }
    
    func isANDop(op obj.As) bool {
    	switch op {
    	case AAND, AORR, AEOR, AANDS, ATST,
    		ABIC, AEON, AORN, ABICS:
    		return true
    	}
    	return false
    }
    
    func isANDWop(op obj.As) bool {
    	switch op {
    	case AANDW, AORRW, AEORW, AANDSW, ATSTW,
    		ABICW, AEONW, AORNW, ABICSW:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"EON (shifted register)","Bits":"0|1|0|0|1|0|1|0|shift:2|1|Rm:5|imm6:6|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"EON <Wd>, <Wn>, <Wm>{, <shift> #<amount>}","Code":"","Alias":""},
    {"Name":"EON (shifted register)","Bits":"1|1|0|0|1|0|1|0|shift:2|1|Rm:5|imm6:6|Rn:5|Rd:5","Arch":"64-bit variant","Syntax":"EON <Xd>, <Xn>, <Xm>{, <shift> #<amount>}","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
Back to top