Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    func AOP_Z23I(op uint32, d uint32, a uint32, b uint32, c uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<16 | (b&31)<<11 | (c&3)<<9
    }
    
    /* X-form, 3-register operands + EH field */
    func AOP_RRRI(op uint32, d uint32, a uint32, b uint32, c uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<16 | (b&31)<<11 | (c & 1)
    }
    
    func LOP_RRR(op uint32, a uint32, s uint32, b 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