Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for Or8 (2.8 sec)

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

    }
    func rewriteValueARM64_OpRotateLeft8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (RotateLeft8 <t> x (MOVDconst [c]))
    	// result: (Or8 (Lsh8x64 <t> x (MOVDconst [c&7])) (Rsh8Ux64 <t> x (MOVDconst [-c&7])))
    	for {
    		t := v.Type
    		x := v_0
    		if v_1.Op != OpARM64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    		commutative: true,
    		generic:     true,
    	},
    	{
    		name:        "And64",
    		argLen:      2,
    		commutative: true,
    		generic:     true,
    	},
    	{
    		name:        "Or8",
    		argLen:      2,
    		commutative: true,
    		generic:     true,
    	},
    	{
    		name:        "Or16",
    		argLen:      2,
    		commutative: true,
    		generic:     true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top