Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for POPCNT (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "I64Rotl", asm: "I64Rotl", argLength: 2, reg: gp21, typ: "Int64"},     // rotl(arg0, arg1)
    		{name: "I64Popcnt", asm: "I64Popcnt", argLength: 1, reg: gp11, typ: "Int64"}, // popcnt(arg0)
    	}
    
    	archs = append(archs, arch{
    		name:            "Wasm",
    		pkg:             "cmd/internal/obj/wasm",
    		genfile:         "../../wasm/ssa.go",
    		ops:             WasmOps,
    		blocks:          nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/s390x.s

    	NEG	R1                    // b9030011
    	NEG	R1, R2                // b9030021
    	NEGW	R1                    // b9130011
    	NEGW	R1, R2                // b9130021
    	FLOGR	R2, R2                // b9830022
    	POPCNT	R3, R4                // b9e10043
    
    	AND	R1, R2                // b9800021
    	AND	R1, R2, R3            // b9e42031
    	AND	$-2, R1               // a517fffe
    	AND	$-65536, R1           // c01bffff0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		//
    		// Counts the number of ones in each byte of arg0
    		// and places the result into the corresponding byte
    		// of the result.
    		{
    			name:         "POPCNT",
    			argLength:    1,
    			reg:          gp11,
    			asm:          "POPCNT",
    			typ:          "UInt64",
    			clobberFlags: true,
    		},
    
    		// unsigned multiplication (64x64 → 128)
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*6467*/ uint16(xCondPrefix), 1,
    	0xF3, 6471,
    	/*6471*/ uint16(xCondDataSize), 6475, 6481, 0,
    	/*6475*/ uint16(xSetOp), uint16(POPCNT),
    	/*6477*/ uint16(xReadSlashR),
    	/*6478*/ uint16(xArgR16),
    	/*6479*/ uint16(xArgRM16),
    	/*6480*/ uint16(xMatch),
    	/*6481*/ uint16(xSetOp), uint16(POPCNT),
    	/*6483*/ uint16(xReadSlashR),
    	/*6484*/ uint16(xArgR32),
    	/*6485*/ uint16(xArgRM32),
    	/*6486*/ uint16(xMatch),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    // Define a list of AMD64 microarchitecture level features
    // https://en.wikipedia.org/wiki/X86-64#Microarchitecture_levels
    
                         // SSE3     SSSE3    CMPXCHNG16 SSE4.1    SSE4.2    POPCNT
    #define V2_FEATURES_CX (1 << 0 | 1 << 9 | 1 << 13  | 1 << 19 | 1 << 20 | 1 << 23)
                             // LAHF/SAHF
    #define V2_EXT_FEATURES_CX (1 << 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (BitLen64 x) => (SUBFCconst [64] (CNTLZD <typ.Int> x))
    (BitLen32 x) => (SUBFCconst [32] (CNTLZW <typ.Int> x))
    
    (PopCount64 ...) => (POPCNTD ...)
    (PopCount(32|16|8) x) => (POPCNT(W|W|B) (MOV(W|H|B)Zreg x))
    
    (And(64|32|16|8) ...) => (AND ...)
    (Or(64|32|16|8) ...) => (OR ...)
    (Xor(64|32|16|8) ...) => (XOR ...)
    
    (Neg(64|32|16|8) ...) => (NEG ...)
    (Neg(64|32)F ...) => (FNEG ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteS390X.go

    	}
    	return false
    }
    func rewriteValueS390X_OpPopCount16(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (PopCount16 x)
    	// result: (MOVBZreg (SumBytes2 (POPCNT <typ.UInt16> x)))
    	for {
    		x := v_0
    		v.reset(OpS390XMOVBZreg)
    		v0 := b.NewValue0(v.Pos, OpS390XSumBytes2, typ.UInt8)
    		v1 := b.NewValue0(v.Pos, OpS390XPOPCNT, typ.UInt16)
    		v1.AddArg(x)
    		v0.AddArg(v1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (BitLen8 <t> x) && buildcfg.GOAMD64 >= 3 => (NEGQ (ADDQconst <t> [-32] (LZCNTL (MOVBQZX <x.Type> x))))
    
    (Bswap(64|32) ...) => (BSWAP(Q|L) ...)
    (Bswap16 x) => (ROLWconst [8] x)
    
    (PopCount(64|32) ...) => (POPCNT(Q|L) ...)
    (PopCount16 x) => (POPCNTL (MOVWQZX <typ.UInt32> x))
    (PopCount8 x) => (POPCNTL (MOVBQZX <typ.UInt32> x))
    
    (Sqrt ...) => (SQRTSD ...)
    (Sqrt32 ...) => (SQRTSS ...)
    
    (RoundToEven x) => (ROUNDSD [0] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:       return %[[RES]]
    // CHECK:         }
    func.func @convert_population_count_i32(%arg0: tensor<8xi32>) -> tensor<8xi32> {
      %0 = "mhlo.popcnt"(%arg0) : (tensor<8xi32>) -> tensor<8xi32>
      func.return %0 : tensor<8xi32>
    }
    
    // CHECK-LABEL:   func @convert_population_count_ui8(
    // CHECK-SAME:                                   %[[ARG_0:.*]]: tensor<8xui8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    			/* imm reg */
    			/* operand order: FRB, BF */
    			bf := int(c.regoff(&p.To)) << 2
    			o1 = AOP_RR(c.opirr(p.As), uint32(bf), uint32(p.From.Reg))
    		} else if p.Reg == 0 {
    			/* popcnt* r,r, X-form */
    			/* operand order: RS, RA */
    			o1 = AOP_RRR(c.oprrr(p.As), uint32(p.From.Reg), uint32(p.To.Reg), uint32(p.Reg))
    		}
    
    	case 94: /* Z23-form instructions, 4-operands */
    		/* reg reg reg imm */
    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