Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LDP (0.17 sec)

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

    	LDP	-8(RSP), (R1, R2)   // e18b7fa9
    	LDP	11(RSP), (R1, R2)   // fb2f0091610b40a9
    	LDP	1024(RSP), (R1, R2) // fb031091610b40a9
    	LDP.W	8(RSP), (R1, R2)    // e18bc0a9
    	LDP.P	8(RSP), (R1, R2)    // e18bc0a8
    	LDP	-31(R0), (R1, R2)   // 1b7c00d1610b40a9
    	LDP	-4(R0), (R1, R2)    // 1b1000d1610b40a9
    	LDP	-8(R0), (R1, R2)    // 01887fa9
    	LDP	x(SB), (R1, R2)
    	LDP	x+8(SB), (R1, R2)
    	LDP	8(R1), (ZR, R2)     // 3f8840a9
    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

    	CSETM	NV, R2                                           // ERROR "invalid condition"
    	LDP.P	8(R2), (R2, R3)                                  // ERROR "constrained unpredictable behavior"
    	LDP.W	8(R3), (R2, R3)                                  // ERROR "constrained unpredictable behavior"
    	LDP	(R1), (R2, R2)                                   // ERROR "constrained unpredictable behavior"
    	LDP	(R0), (F0, F1)                                   // ERROR "invalid register pair"
    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/parse.go

    	if r2 != 0 {
    		// TODO: Consistency in the encoding would be nice here.
    		if p.arch.InFamily(sys.ARM, sys.ARM64) {
    			// Special form
    			// ARM: destination register pair (R1, R2).
    			// ARM64: register pair (R1, R2) for LDP/STP.
    			if prefix != 0 || scale != 0 {
    				p.errorf("illegal address mode for register pair")
    				return
    			}
    			a.Type = obj.TYPE_REGREG
    			a.Offset = int64(r2)
    			// Nothing may follow
    			return
    		}
    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