Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 01 (1.53 sec)

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

    		v.AuxInt = flagConstantToAuxInt(subFlags64(0, 1))
    		return true
    	}
    	// match: (CMPWconst (MOVHUreg _) [c])
    	// cond: 0xffff < c
    	// result: (FlagConstant [subFlags64(0,1)])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpARM64MOVHUreg || !(0xffff < c) {
    			break
    		}
    		v.reset(OpARM64FlagConstant)
    		v.AuxInt = flagConstantToAuxInt(subFlags64(0, 1))
    		return true
    	}
    	return false
    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/rewriteAMD64.go

    	typ := &b.Func.Config.Types
    	// match: (Neg32F x)
    	// result: (PXOR x (MOVSSconst <typ.Float32> [float32(math.Copysign(0, -1))]))
    	for {
    		x := v_0
    		v.reset(OpAMD64PXOR)
    		v0 := b.NewValue0(v.Pos, OpAMD64MOVSSconst, typ.Float32)
    		v0.AuxInt = float32ToAuxInt(float32(math.Copysign(0, -1)))
    		v.AddArg2(x, v0)
    		return true
    	}
    }
    func rewriteValueAMD64_OpNeg64F(v *Value) bool {
    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