Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for R7 (0.29 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD	$0x2001(R7), R1               // MOVD	$8193(R7), R1               // e108409121040091
    	MOVD	$0xffffff(R7), R1             // MOVD	$16777215(R7), R1           // e1fc7f9121fc3f91
    	MOVD	$-0x1(R7), R1                 // MOVD	$-1(R7), R1                 // e10400d1
    	MOVD	$-0x30(R7), R1                // MOVD	$-48(R7), R1                // e1c000d1
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64error.s

    	ADDS	R7@>2, R5, R16                                   // ERROR "unsupported shift operator"
    	ADDSW	R7@>2, R5, R16                                   // ERROR "unsupported shift operator"
    	SUB	R7@>2, R5, R16                                   // ERROR "unsupported shift operator"
    	SUBW	R7@>2, R5, R16                                   // ERROR "unsupported shift operator"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 37.8K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm.s

    	TST	$4278190080, R9      // ff0419e3
    	TST	R9<<30, R7           // 090f17e1
    	TST	R9>>30, R7           // 290f17e1
    	TST	R9->30, R7           // 490f17e1
    	TST	R9@>30, R7           // 690f17e1
    	TST	R9<<R8, R7           // 190817e1
    	TST	R9>>R8, R7           // 390817e1
    	TST	R9->R8, R7           // 590817e1
    	TST	R9@>R8, R7           // 790817e1
    
    // CMP
    	CMP	$255, R7             // ff0057e3
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    	OR $65535, R5, R6               // 60a6ffff
    	OR $65536, R6                   // 64c60001
    	OR $65536, R6, R7               // 64c70001
    	OR $-32767, R5                  // 3be080017fe52b78
    	OR $-32767, R5, R6              // 3be080017fe62b78
    	OR $-32768, R6                  // 3be080007fe63378
    	OR $-32768, R6, R7              // 3be080007fe73378
    	OR $1234567, R5                 // 64a5001260a5d687
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/parse.go

    		}
    		// fmt.Printf("SYM %s\n", obj.Dconv(&emptyProg, 0, a))
    		if p.peek() == scanner.EOF {
    			return
    		}
    	}
    
    	// Special register list syntax for arm: [R1,R3-R7]
    	if tok.ScanToken == '[' {
    		if prefix != 0 {
    			p.errorf("illegal use of register list")
    		}
    		p.registerList(a)
    		p.expectOperandEnd()
    		return
    	}
    
    	// Register: R1
    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