Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for popcntw (0.15 sec)

  1. 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)
  2. src/cmd/internal/obj/x86/asm6.go

    	{APMULLW, ymm, Py1, opBytes{0xd5, Pe, 0xd5}},
    	{APMULULQ, ymm, Py1, opBytes{0xf4, Pe, 0xf4}},
    	{APOPAL, ynone, P32, opBytes{0x61}},
    	{APOPAW, ynone, Pe, opBytes{0x61}},
    	{APOPCNTW, yml_rl, Pef3, opBytes{0xb8}},
    	{APOPCNTL, yml_rl, Pf3, opBytes{0xb8}},
    	{APOPCNTQ, yml_rl, Pfw, opBytes{0xb8}},
    	{APOPFL, ynone, P32, opBytes{0x9d}},
    	{APOPFQ, ynone, Py, opBytes{0x9d}},
    	{APOPFW, ynone, Pe, opBytes{0x9d}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:       %[[POP_CNT:.*]] = "tf.PopulationCount"(%[[ARG_0]]) : (tensor<8xi32>) -> tensor<8xui8>
    // CHECK:       %[[RES:.*]] = "tf.Cast"(%[[POP_CNT]]) <{Truncate = false}> : (tensor<8xui8>) -> tensor<8xi32>
    // CHECK:       return %[[RES]]
    // CHECK:         }
    func.func @convert_population_count_i32(%arg0: tensor<8xi32>) -> tensor<8xi32> {
      %0 = "mhlo.popcnt"(%arg0) : (tensor<8xi32>) -> tensor<8xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	// load on condition
    	{i: 25, as: ALOCGR, a1: C_SCON, a2: C_REG, a6: C_REG},
    
    	// find leftmost one
    	{i: 8, as: AFLOGR, a1: C_REG, a6: C_REG},
    
    	// population count
    	{i: 9, as: APOPCNT, a1: C_REG, a6: C_REG},
    
    	// compare
    	{i: 70, as: ACMP, a1: C_REG, a6: C_REG},
    	{i: 71, as: ACMP, a1: C_REG, a6: C_LCON},
    	{i: 70, as: ACMPU, a1: C_REG, a6: C_REG},
    	{i: 71, as: ACMPU, a1: C_REG, a6: C_LCON},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    			bFalse := s.f.NewBlock(ssa.BlockPlain)
    			bEnd := s.f.NewBlock(ssa.BlockPlain)
    			b.AddEdgeTo(bTrue)
    			b.AddEdgeTo(bFalse)
    			b.Likely = ssa.BranchLikely // most machines have popcnt nowadays
    
    			// We have the intrinsic - use it directly.
    			s.startBlock(bTrue)
    			s.vars[n] = s.newValue1(op, types.Types[types.TINT], args[0])
    			s.endBlock().AddEdgeTo(bEnd)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    	return false
    }
    func rewriteValueAMD64_OpPopCount16(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (PopCount16 x)
    	// result: (POPCNTL (MOVWQZX <typ.UInt32> x))
    	for {
    		x := v_0
    		v.reset(OpAMD64POPCNTL)
    		v0 := b.NewValue0(v.Pos, OpAMD64MOVWQZX, typ.UInt32)
    		v0.AddArg(x)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top