Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AOP_IR (0.09 sec)

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

    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 */
    func AOP_IR(op uint32, d uint32, simm uint32) uint32 {
    	return op | (d&31)<<21 | (simm&31)<<16
    }
    
    /* XX1-form 3-register operands, 1 VSR operand */
    func AOP_XX1(op uint32, r uint32, a 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