Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for POPCNTB (0.13 sec)

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

    	FRIP:           "frip",
    	FRIPCC:         "frip.",
    	FRIZ:           "friz",
    	FRIZCC:         "friz.",
    	FRSQRTES:       "frsqrtes",
    	FRSQRTESCC:     "frsqrtes.",
    	HRFID:          "hrfid",
    	POPCNTB:        "popcntb",
    	MFOCRF:         "mfocrf",
    	MTOCRF:         "mtocrf",
    	SLBMFEE:        "slbmfee",
    	SLBMFEV:        "slbmfev",
    	SLBMTE:         "slbmte",
    	RFSCV:          "rfscv",
    	SCV:            "scv",
    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/compile/internal/ssa/rewritePPC64.go

    		v.AddArg(x)
    		return true
    	}
    }
    func rewriteValuePPC64_OpCtz8(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Ctz8 x)
    	// result: (POPCNTB (MOVBZreg (ANDN <typ.UInt8> (ADDconst <typ.UInt8> [-1] x) x)))
    	for {
    		x := v_0
    		v.reset(OpPPC64POPCNTB)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVBZreg, typ.Int64)
    		v1 := b.NewValue0(v.Pos, OpPPC64ANDN, typ.UInt8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top