Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LSL (0.15 sec)

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

    				a.Reg = arm64.REG_SXTW + Rnum
    			}
    		case "SXTX":
    			if a.Type == obj.TYPE_MEM {
    				a.Index = arm64.REG_SXTX + Rnum
    			} else {
    				a.Reg = arm64.REG_SXTX + Rnum
    			}
    		case "LSL":
    			a.Index = arm64.REG_LSL + Rnum
    		default:
    			return errors.New("unsupported general register extension type: " + ext)
    
    		}
    	} else if reg <= arm64.REG_V31 && reg >= arm64.REG_V0 {
    		switch ext {
    		case "B8":
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	LDXRB (R0), R4                             // 047c5f08
    	LDXRH (R12), R26                           // 9a7d5f48
    	LSLW R11, R10, R15                         // 4f21cb1a
    	LSL R27, R24, R21                          // 1523db9a
    	LSLW $5, R7, R22                           // f6681b53
    	LSL $57, R17, R2                           // 221a47d3
    	LSRW R9, R3, R12                           // 6c24c91a
    	LSR R10, R5, R2                            // a224ca9a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  3. src/cmd/asm/internal/asm/parse.go

    		return
    	}
    
    	isIndex := false
    	num := int16(0)
    	isAmount := true // Amount is zero by default
    	ext := ""
    	if p.peek() == lex.LSH {
    		// (Rn)(Rm<<2), the shifted offset register.
    		ext = "LSL"
    	} else {
    		// (Rn)(Rm.UXTW<1), the extended offset register.
    		// Rm.UXTW<<3, the extended register.
    		p.get('.')
    		tok := p.next()
    		ext = tok.String()
    	}
    	if p.peek() == lex.LSH {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
Back to top