Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AOP_RR (0.06 sec)

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

    func AOP_RRR(op uint32, d uint32, a uint32, b uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<16 | (b&31)<<11
    }
    
    /* VX-form 2-register operands, r/none/r */
    func AOP_RR(op uint32, d uint32, a uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<11
    }
    
    /* VA-form 4-register operands */
    func AOP_RRRR(op uint32, d uint32, a uint32, b uint32, c uint32) uint32 {
    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