Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ParseARMCondition (0.07 sec)

  1. src/cmd/asm/internal/arch/arm64.go

    // codes, such as ".P.W". An initial period is ignored.
    func parseARM64Suffix(cond string) (uint8, bool) {
    	if cond == "" {
    		return 0, true
    	}
    	return parseARMCondition(cond, arm64LS, nil)
    }
    
    func arm64RegisterNumber(name string, n int16) (int16, bool) {
    	switch name {
    	case "F":
    		if 0 <= n && n <= 31 {
    			return arm64.REG_F0 + n, true
    		}
    	case "R":
    Registered: 2024-11-05 11:13
    - Last Modified: 2022-09-29 09:04
    - 10.4K bytes
    - Viewed (0)
Back to top