Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    func AOP_XX3(op uint32, xt uint32, xa uint32, xb uint32) uint32 {
    	return op | (xt&31)<<21 | (xa&31)<<16 | (xb&31)<<11 | (xa&32)>>3 | (xb&32)>>4 | (xt&32)>>5
    }
    
    /* XX3-form 3 VSR operands + immediate */
    func AOP_XX3I(op uint32, xt uint32, xa uint32, xb uint32, c uint32) uint32 {
    	return op | (xt&31)<<21 | (xa&31)<<16 | (xb&31)<<11 | (c&3)<<8 | (xa&32)>>3 | (xb&32)>>4 | (xt&32)>>5
    }
    
    /* XX4-form, 4 VSR 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