Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for is63bit (0.27 sec)

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

    		}
    		// match: (CLGRJ {c} x (MOVDconst [y]) yes no)
    		// cond: !isU8Bit(y) && isU32Bit(y)
    		// result: (BRC {c} (CMPUconst x [int32(y)]) yes no)
    		for b.Controls[1].Op == OpS390XMOVDconst {
    			x := b.Controls[0]
    			v_1 := b.Controls[1]
    			y := auxIntToInt64(v_1.AuxInt)
    			c := auxToS390xCCMask(b.Aux)
    			if !(!isU8Bit(y) && isU32Bit(y)) {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// match: (MOVBZloadidx ptr (MOVDconst [c]) mem)
    	// cond: (is16Bit(c) || (buildcfg.GOPPC64 >= 10 && is32Bit(c)))
    	// result: (MOVBZload [int32(c)] ptr mem)
    	for {
    		ptr := v_0
    		if v_1.Op != OpPPC64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		mem := v_2
    		if !(is16Bit(c) || (buildcfg.GOPPC64 >= 10 && is32Bit(c))) {
    			break
    		}
    		v.reset(OpPPC64MOVBZload)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite386.go

    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (ADDLconst [c] (LEAL [d] {s} x))
    	// cond: is32Bit(int64(c)+int64(d))
    	// result: (LEAL [c+d] {s} x)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != Op386LEAL {
    			break
    		}
    		d := auxIntToInt32(v_0.AuxInt)
    		s := auxToSym(v_0.Aux)
    		x := v_0.Args[0]
    		if !(is32Bit(int64(c) + int64(d))) {
    			break
    		}
    		v.reset(Op386LEAL)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
Back to top