Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for r31 (0.1 sec)

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

    func loadl16(r int, d int64) uint32 {
    	v := uint16(d)
    	if v == 0 {
    		// Avoid generating "ori r,r,0", r != 0. Instead, generate the architectually preferred nop.
    		// For example, "ori r31,r31,0" is a special execution serializing nop on Power10 called "exser".
    		return NOP
    	}
    	return LOP_IRR(OP_ORI, uint32(r), uint32(r), uint32(v))
    }
    
    // Load the upper 16 bits of a 32b constant into register r.
    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