Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for vpopcntw (0.15 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	VPKUDUS:        "vpkudus",
    	VPMSUMB:        "vpmsumb",
    	VPMSUMD:        "vpmsumd",
    	VPMSUMH:        "vpmsumh",
    	VPMSUMW:        "vpmsumw",
    	VPOPCNTB:       "vpopcntb",
    	VPOPCNTD:       "vpopcntd",
    	VPOPCNTH:       "vpopcnth",
    	VPOPCNTW:       "vpopcntw",
    	VRLD:           "vrld",
    	VSBOX:          "vsbox",
    	VSHASIGMAD:     "vshasigmad",
    	VSHASIGMAW:     "vshasigmaw",
    	VSLD:           "vsld",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/avx_optabs.go

    	}},
    	{as: AVPOPCNTB, ytab: _yvexpandpd, prefix: Pavx, op: opBytes{
    		avxEscape | evex128 | evex66 | evex0F38 | evexW0, evexN16 | evexZeroingEnabled, 0x54,
    		avxEscape | evex256 | evex66 | evex0F38 | evexW0, evexN32 | evexZeroingEnabled, 0x54,
    		avxEscape | evex512 | evex66 | evex0F38 | evexW0, evexN64 | evexZeroingEnabled, 0x54,
    	}},
    	{as: AVPOPCNTD, ytab: _yvexpandpd, prefix: Pavx, op: opBytes{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AddArg2(y, x)
    		return true
    	}
    }
    func rewriteValuePPC64_OpCtz16(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Ctz16 x)
    	// result: (POPCNTW (MOVHZreg (ANDN <typ.Int16> (ADDconst <typ.Int16> [-1] x) x)))
    	for {
    		x := v_0
    		v.reset(OpPPC64POPCNTW)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVHZreg, typ.Int64)
    		v1 := b.NewValue0(v.Pos, OpPPC64ANDN, typ.Int16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. 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)
Back to top