Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/internal/obj/x86/asm6.go

    	default:
    		return nil
    	}
    
    	return q
    }
    
    // fusedJump determines whether p can be fused with a subsequent conditional jump instruction.
    // If it can, we return true followed by the total size of the fused jump. If it can't, we return false.
    // Macro fusion rules are derived from the Intel Optimization Manual (April 2019) section 3.4.2.2.
    func fusedJump(p *obj.Prog) (bool, uint8) {
    	var fusedSize uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top