Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LSL (0.01 sec)

  1. 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
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  2. 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 {
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Wed Nov 12 03:59:40 UTC 2025
    - 37.3K bytes
    - Viewed (0)
Back to top