1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Thumb2 assembly parsing and encoding for STRD.

llvm-svn: 139960
This commit is contained in:
Jim Grosbach 2011-09-16 22:19:38 +00:00
parent d0ef17692a
commit f8313f60b3

View File

@ -2266,6 +2266,24 @@ _func:
@ CHECK: strbt r1, [r8, #255] @ encoding: [0x08,0xf8,0xff,0x1e]
@------------------------------------------------------------------------------
@ STRD
@------------------------------------------------------------------------------
strd r3, r5, [r6, #24]
strd r3, r5, [r6, #24]!
strd r3, r5, [r6], #4
strd r3, r5, [r6], #-8
strd r3, r5, [r6]
strd r8, r1, [r3, #0]
@ CHECK: strd r3, r5, [r6, #24] @ encoding: [0xc6,0xe9,0x06,0x35]
@ CHECK: strd r3, r5, [r6, #24]! @ encoding: [0xe6,0xe9,0x06,0x35]
@ CHECK: strd r3, r5, [r6], #4 @ encoding: [0xe6,0xe8,0x01,0x35]
@ CHECK: strd r3, r5, [r6], #-8 @ encoding: [0x66,0xe8,0x02,0x35]
@ CHECK: strd r3, r5, [r6] @ encoding: [0xc6,0xe9,0x00,0x35]
@ CHECK: strd r8, r1, [r3] @ encoding: [0xc3,0xe9,0x00,0x81]
@------------------------------------------------------------------------------
@ STRH(immediate)
@------------------------------------------------------------------------------