Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for uimm16 (0.08 sec)

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

    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVHZreg (MOVDconst [c]))
    	// result: (MOVDconst [int64(uint16(c))])
    	for {
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(uint16(c)))
    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64MOVHload(v *Value) bool {
    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