Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 0x1f0000 (0.06 sec)

  1. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// match: (Ctz16 <t> x)
    	// result: (CLZW <t> (RBITW <typ.UInt32> (ORconst <typ.UInt32> [0x10000] x)))
    	for {
    		t := v.Type
    		x := v_0
    		v.reset(OpARM64CLZW)
    		v.Type = t
    		v0 := b.NewValue0(v.Pos, OpARM64RBITW, typ.UInt32)
    		v1 := b.NewValue0(v.Pos, OpARM64ORconst, typ.UInt32)
    		v1.AuxInt = int64ToAuxInt(0x10000)
    		v1.AddArg(x)
    		v0.AddArg(v1)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top