Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for int16ToAuxInt (0.28 sec)

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

    	// result: (CMPWconst x [int16(c)])
    	for {
    		x := v_0
    		if v_1.Op != Op386MOVLconst {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		v.reset(Op386CMPWconst)
    		v.AuxInt = int16ToAuxInt(int16(c))
    		v.AddArg(x)
    		return true
    	}
    	// match: (CMPW (MOVLconst [c]) x)
    	// result: (InvertFlags (CMPWconst x [int16(c)]))
    	for {
    		if v_0.Op != Op386MOVLconst {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    			x := v_0
    			if v_1.Op != OpS390XMOVDconst {
    				continue
    			}
    			c := auxIntToInt64(v_1.AuxInt)
    			if !(is16Bit(c)) {
    				continue
    			}
    			v.reset(OpS390XADDCconst)
    			v.AuxInt = int16ToAuxInt(int16(c))
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueS390X_OpS390XADDE(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM.go

    	for {
    		if v_1.Op != OpConst64 {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		if !(uint64(c) >= 16) {
    			break
    		}
    		v.reset(OpConst16)
    		v.AuxInt = int16ToAuxInt(0)
    		return true
    	}
    	return false
    }
    func rewriteValueARM_OpLsh16x8(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top