Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AOP_IRRR (0.13 sec)

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

    func AOP_IIRR(op uint32, d uint32, a uint32, sbit uint32, simm uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<16 | (sbit&1)<<15 | (simm&0xF)<<11
    }
    
    /* VA-form 3-register + SHB operands */
    func AOP_IRRR(op uint32, d uint32, a uint32, b uint32, simm uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<16 | (b&31)<<11 | (simm&0xF)<<6
    }
    
    /* VX-form 1-register + SIM operands */
    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