Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CLRLSLWI (0.2 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	case 62: /* clrlslwi $sh,s,$mask,a */
    		v := c.regoff(&p.From)
    		n := c.regoff(p.GetFrom3())
    		// This is an extended mnemonic described in the ISA C.8.2
    		// clrlslwi ra,rs,b,n -> rlwinm ra,rs,n,b-n,31-n
    		// It maps onto rlwinm which is directly generated here.
    		if n > v || v >= 32 {
    			c.ctxt.Diag("Invalid n or b for CLRLSLWI: %x %x\n%v", v, n, p)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top