Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for optabLess (3.77 sec)

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

    		return true
    	}
    
    	return false
    }
    
    // Used when sorting the optab. Sorting is
    // done in a way so that the best choice of
    // opcode/operand combination is considered first.
    func optabLess(i, j int) bool {
    	p1 := &optab[i]
    	p2 := &optab[j]
    	n := int(p1.as) - int(p2.as)
    	// same opcode
    	if n != 0 {
    		return n < 0
    	}
    	// Consider those that generate fewer
    	// instructions first.
    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