Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for maxPCDisp (0.41 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    // to avoid needing to recompute the literal pool flush points
    // as span-dependent jumps are enlarged.
    const maxPCDisp = 512 * 1024
    
    // ispcdisp reports whether v is a valid PC-relative displacement.
    func ispcdisp(v int32) bool {
    	return -maxPCDisp < v && v < maxPCDisp && v&3 == 0
    }
    
    func isaddcon(v int64) bool {
    	/* uimm12 or uimm24? */
    	if v < 0 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top