Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for int64ToAuxInt (0.61 sec)

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

    				continue
    			}
    			m := auxIntToInt64(v_0.AuxInt)
    			x := v_1
    			if !(supportsPPC64PCRel() && (m<<30)>>30 == m) {
    				continue
    			}
    			v.reset(OpPPC64ADDconst)
    			v.AuxInt = int64ToAuxInt(m)
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValuePPC64latelower_OpPPC64AND(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64latelower.go

    	for {
    		c := auxIntToInt64(v.AuxInt)
    		x := v_0
    		if !(!isARM64addcon(c)) {
    			break
    		}
    		v.reset(OpARM64ADDSflags)
    		v0 := b.NewValue0(v.Pos, OpARM64MOVDconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(c)
    		v.AddArg2(x, v0)
    		return true
    	}
    	return false
    }
    func rewriteValueARM64latelower_OpARM64ADDconst(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top