Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for is32Bit (0.15 sec)

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

    	// match: (ADDconst [c] x:(SP))
    	// cond: is32Bit(c)
    	// result: (MOVDaddr [int32(c)] x)
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		x := v_0
    		if x.Op != OpSP || !(is32Bit(c)) {
    			break
    		}
    		v.reset(OpPPC64MOVDaddr)
    		v.AuxInt = int32ToAuxInt(int32(c))
    		v.AddArg(x)
    		return true
    	}
    	// match: (ADDconst [c] (SUBFCconst [d] x))
    	// cond: is32Bit(c+d)
    	// result: (SUBFCconst [c+d] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top