Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for popcntw (0.13 sec)

  1. 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