deps: update v8 to 4.3.61.21
[platform/upstream/nodejs.git] / deps / v8 / test / cctest / test-disasm-arm.cc
1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 //     * Redistributions of source code must retain the above copyright
7 //       notice, this list of conditions and the following disclaimer.
8 //     * Redistributions in binary form must reproduce the above
9 //       copyright notice, this list of conditions and the following
10 //       disclaimer in the documentation and/or other materials provided
11 //       with the distribution.
12 //     * Neither the name of Google Inc. nor the names of its
13 //       contributors may be used to endorse or promote products derived
14 //       from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 //
28
29 #include <stdlib.h>
30
31 #include "src/v8.h"
32
33 #include "src/debug.h"
34 #include "src/disasm.h"
35 #include "src/disassembler.h"
36 #include "src/macro-assembler.h"
37 #include "test/cctest/cctest.h"
38
39 using namespace v8::internal;
40
41
42 bool DisassembleAndCompare(byte* pc, const char* compare_string) {
43   disasm::NameConverter converter;
44   disasm::Disassembler disasm(converter);
45   EmbeddedVector<char, 128> disasm_buffer;
46
47   disasm.InstructionDecode(disasm_buffer, pc);
48
49   if (strcmp(compare_string, disasm_buffer.start()) != 0) {
50     fprintf(stderr,
51             "expected: \n"
52             "%s\n"
53             "disassembled: \n"
54             "%s\n\n",
55             compare_string, disasm_buffer.start());
56     return false;
57   }
58   return true;
59 }
60
61
62 // Set up V8 to a state where we can at least run the assembler and
63 // disassembler. Declare the variables and allocate the data structures used
64 // in the rest of the macros.
65 #define SET_UP()                                          \
66   CcTest::InitializeVM();                                 \
67   Isolate* isolate = CcTest::i_isolate();                  \
68   HandleScope scope(isolate);                             \
69   byte *buffer = reinterpret_cast<byte*>(malloc(4*1024)); \
70   Assembler assm(isolate, buffer, 4*1024);                \
71   bool failure = false;
72
73
74 // This macro assembles one instruction using the preallocated assembler and
75 // disassembles the generated instruction, comparing the output to the expected
76 // value. If the comparison fails an error message is printed, but the test
77 // continues to run until the end.
78 #define COMPARE(asm_, compare_string) \
79   { \
80     int pc_offset = assm.pc_offset(); \
81     byte *progcounter = &buffer[pc_offset]; \
82     assm.asm_; \
83     if (!DisassembleAndCompare(progcounter, compare_string)) failure = true; \
84   }
85
86 // Force emission of any pending literals into a pool.
87 #define EMIT_PENDING_LITERALS() \
88   assm.CheckConstPool(true, false)
89
90
91 // Verify that all invocations of the COMPARE macro passed successfully.
92 // Exit with a failure if at least one of the tests failed.
93 #define VERIFY_RUN() \
94 if (failure) { \
95     V8_Fatal(__FILE__, __LINE__, "ARM Disassembler tests failed.\n"); \
96   }
97
98
99 TEST(Type0) {
100   SET_UP();
101
102   COMPARE(and_(r0, r1, Operand(r2)),
103           "e0010002       and r0, r1, r2");
104   COMPARE(and_(r1, r2, Operand(r3), LeaveCC),
105           "e0021003       and r1, r2, r3");
106   COMPARE(and_(r2, r3, Operand(r4), SetCC),
107           "e0132004       ands r2, r3, r4");
108   COMPARE(and_(r3, r4, Operand(r5), LeaveCC, eq),
109           "00043005       andeq r3, r4, r5");
110
111   COMPARE(eor(r4, r5, Operand(r6, LSL, 0)),
112           "e0254006       eor r4, r5, r6");
113   COMPARE(eor(r4, r5, Operand(r7, LSL, 1), SetCC),
114           "e0354087       eors r4, r5, r7, lsl #1");
115   COMPARE(eor(r4, r5, Operand(r8, LSL, 2), LeaveCC, ne),
116           "10254108       eorne r4, r5, r8, lsl #2");
117   COMPARE(eor(r4, r5, Operand(r9, LSL, 3), SetCC, cs),
118           "20354189       eorcss r4, r5, r9, lsl #3");
119
120   COMPARE(sub(r5, r6, Operand(r10, LSL, 31), LeaveCC, hs),
121           "20465f8a       subcs r5, r6, r10, lsl #31");
122   COMPARE(sub(r5, r6, Operand(r10, LSL, 30), SetCC, cc),
123           "30565f0a       subccs r5, r6, r10, lsl #30");
124   COMPARE(sub(r5, r6, Operand(r10, LSL, 24), LeaveCC, lo),
125           "30465c0a       subcc r5, r6, r10, lsl #24");
126   COMPARE(sub(r5, r6, Operand(r10, LSL, 16), SetCC, mi),
127           "4056580a       submis r5, r6, r10, lsl #16");
128
129   COMPARE(rsb(r6, r7, Operand(fp)),
130           "e067600b       rsb r6, r7, fp");
131   COMPARE(rsb(r6, r7, Operand(fp, LSR, 1)),
132           "e06760ab       rsb r6, r7, fp, lsr #1");
133   COMPARE(rsb(r6, r7, Operand(fp, LSR, 0), SetCC),
134           "e077602b       rsbs r6, r7, fp, lsr #32");
135   COMPARE(rsb(r6, r7, Operand(fp, LSR, 31), LeaveCC, pl),
136           "50676fab       rsbpl r6, r7, fp, lsr #31");
137
138   COMPARE(add(r7, r8, Operand(ip, ASR, 1)),
139           "e08870cc       add r7, r8, ip, asr #1");
140   COMPARE(add(r7, r8, Operand(ip, ASR, 0)),
141           "e088704c       add r7, r8, ip, asr #32");
142   COMPARE(add(r7, r8, Operand(ip), SetCC),
143           "e098700c       adds r7, r8, ip");
144   COMPARE(add(r7, r8, Operand(ip, ASR, 31), SetCC, vs),
145           "60987fcc       addvss r7, r8, ip, asr #31");
146
147   COMPARE(adc(r7, fp, Operand(ip, ASR, 5)),
148           "e0ab72cc       adc r7, fp, ip, asr #5");
149   COMPARE(adc(r4, ip, Operand(ip, ASR, 1), LeaveCC, vc),
150           "70ac40cc       adcvc r4, ip, ip, asr #1");
151   COMPARE(adc(r5, sp, Operand(ip), SetCC),
152           "e0bd500c       adcs r5, sp, ip");
153   COMPARE(adc(r8, lr, Operand(ip, ASR, 31), SetCC, vc),
154           "70be8fcc       adcvcs r8, lr, ip, asr #31");
155
156   COMPARE(sbc(r7, r1, Operand(ip, ROR, 1), LeaveCC, hi),
157           "80c170ec       sbchi r7, r1, ip, ror #1");
158   COMPARE(sbc(r7, r9, Operand(ip, ROR, 4)),
159           "e0c9726c       sbc r7, r9, ip, ror #4");
160   COMPARE(sbc(r7, r10, Operand(ip), SetCC),
161           "e0da700c       sbcs r7, r10, ip");
162   COMPARE(sbc(r7, ip, Operand(ip, ROR, 31), SetCC, hi),
163           "80dc7fec       sbchis r7, ip, ip, ror #31");
164
165   COMPARE(rsc(r7, r8, Operand(ip, LSL, r0)),
166           "e0e8701c       rsc r7, r8, ip, lsl r0");
167   COMPARE(rsc(r7, r8, Operand(ip, LSL, r1)),
168           "e0e8711c       rsc r7, r8, ip, lsl r1");
169   COMPARE(rsc(r7, r8, Operand(ip), SetCC),
170           "e0f8700c       rscs r7, r8, ip");
171   COMPARE(rsc(r7, r8, Operand(ip, LSL, r3), SetCC, ls),
172           "90f8731c       rsclss r7, r8, ip, lsl r3");
173
174   COMPARE(tst(r7, Operand(r5, ASR, ip), ge),
175           "a1170c55       tstge r7, r5, asr ip");
176   COMPARE(tst(r7, Operand(r6, ASR, sp)),
177           "e1170d56       tst r7, r6, asr sp");
178   COMPARE(tst(r7, Operand(r7), ge),
179           "a1170007       tstge r7, r7");
180   COMPARE(tst(r7, Operand(r8, ASR, fp), ge),
181           "a1170b58       tstge r7, r8, asr fp");
182
183   COMPARE(teq(r7, Operand(r5, ROR, r0), lt),
184           "b1370075       teqlt r7, r5, ror r0");
185   COMPARE(teq(r7, Operand(r6, ROR, lr)),
186           "e1370e76       teq r7, r6, ror lr");
187   COMPARE(teq(r7, Operand(r7), lt),
188           "b1370007       teqlt r7, r7");
189   COMPARE(teq(r7, Operand(r8, ROR, r1)),
190           "e1370178       teq r7, r8, ror r1");
191
192   COMPARE(cmp(r7, Operand(r4)),
193           "e1570004       cmp r7, r4");
194   COMPARE(cmp(r7, Operand(r6, LSL, 1), gt),
195           "c1570086       cmpgt r7, r6, lsl #1");
196   COMPARE(cmp(r7, Operand(r8, LSR, 3), gt),
197           "c15701a8       cmpgt r7, r8, lsr #3");
198   COMPARE(cmp(r7, Operand(r8, ASR, 19)),
199           "e15709c8       cmp r7, r8, asr #19");
200
201   COMPARE(cmn(r0, Operand(r4)),
202           "e1700004       cmn r0, r4");
203   COMPARE(cmn(r1, Operand(r6, ROR, 1)),
204           "e17100e6       cmn r1, r6, ror #1");
205   COMPARE(cmn(r2, Operand(r8)),
206           "e1720008       cmn r2, r8");
207   COMPARE(cmn(r3, Operand(fp), le),
208           "d173000b       cmnle r3, fp");
209
210   COMPARE(orr(r7, r8, Operand(lr), LeaveCC, al),
211           "e188700e       orr r7, r8, lr");
212   COMPARE(orr(r7, r8, Operand(fp)),
213           "e188700b       orr r7, r8, fp");
214   COMPARE(orr(r7, r8, Operand(sp), SetCC),
215           "e198700d       orrs r7, r8, sp");
216   COMPARE(orr(r7, r8, Operand(ip), SetCC, al),
217           "e198700c       orrs r7, r8, ip");
218
219   COMPARE(mov(r0, Operand(r1), LeaveCC, eq),
220           "01a00001       moveq r0, r1");
221   COMPARE(mov(r0, Operand(r2)),
222           "e1a00002       mov r0, r2");
223   COMPARE(mov(r0, Operand(r3), SetCC),
224           "e1b00003       movs r0, r3");
225   COMPARE(mov(r0, Operand(r4), SetCC, pl),
226           "51b00004       movpls r0, r4");
227
228   COMPARE(bic(r0, lr, Operand(r1), LeaveCC, vs),
229           "61ce0001       bicvs r0, lr, r1");
230   COMPARE(bic(r0, r9, Operand(r2), LeaveCC, vc),
231           "71c90002       bicvc r0, r9, r2");
232   COMPARE(bic(r0, r5, Operand(r3), SetCC),
233           "e1d50003       bics r0, r5, r3");
234   COMPARE(bic(r0, r1, Operand(r4), SetCC, pl),
235           "51d10004       bicpls r0, r1, r4");
236
237   COMPARE(mvn(r10, Operand(r1)),
238           "e1e0a001       mvn r10, r1");
239   COMPARE(mvn(r9, Operand(r2)),
240           "e1e09002       mvn r9, r2");
241   COMPARE(mvn(r0, Operand(r3), SetCC),
242           "e1f00003       mvns r0, r3");
243   COMPARE(mvn(r5, Operand(r4), SetCC, cc),
244           "31f05004       mvnccs r5, r4");
245
246   // Instructions autotransformed by the assembler.
247   // mov -> mvn.
248   COMPARE(mov(r3, Operand(-1), LeaveCC, al),
249           "e3e03000       mvn r3, #0");
250   COMPARE(mov(r4, Operand(-2), SetCC, al),
251           "e3f04001       mvns r4, #1");
252   COMPARE(mov(r5, Operand(0x0ffffff0), SetCC, ne),
253           "13f052ff       mvnnes r5, #-268435441");
254   COMPARE(mov(r6, Operand(-1), LeaveCC, ne),
255           "13e06000       mvnne r6, #0");
256
257   // mvn -> mov.
258   COMPARE(mvn(r3, Operand(-1), LeaveCC, al),
259           "e3a03000       mov r3, #0");
260   COMPARE(mvn(r4, Operand(-2), SetCC, al),
261           "e3b04001       movs r4, #1");
262   COMPARE(mvn(r5, Operand(0x0ffffff0), SetCC, ne),
263           "13b052ff       movnes r5, #-268435441");
264   COMPARE(mvn(r6, Operand(-1), LeaveCC, ne),
265           "13a06000       movne r6, #0");
266
267   // mov -> movw.
268   if (CpuFeatures::IsSupported(ARMv7)) {
269     COMPARE(mov(r5, Operand(0x01234), LeaveCC, ne),
270             "13015234       movwne r5, #4660");
271     // We only disassemble one instruction so the eor instruction is not here.
272     COMPARE(eor(r5, r4, Operand(0x1234), LeaveCC, ne),
273             "1301c234       movwne ip, #4660");
274     // Movw can't do setcc, so first move to ip, then the following instruction
275     // moves to r5.  Mov immediate with setcc is pretty strange anyway.
276     COMPARE(mov(r5, Operand(0x01234), SetCC, ne),
277             "1301c234       movwne ip, #4660");
278     // Emit a literal pool now, otherwise this could be dumped later, in the
279     // middle of a different test.
280     EMIT_PENDING_LITERALS();
281
282     // We only disassemble one instruction so the eor instruction is not here.
283     // The eor does the setcc so we get a movw here.
284     COMPARE(eor(r5, r4, Operand(0x1234), SetCC, ne),
285             "1301c234       movwne ip, #4660");
286
287     COMPARE(movt(r5, 0x4321, ne),
288             "13445321       movtne r5, #17185");
289     COMPARE(movw(r5, 0xabcd, eq),
290             "030a5bcd       movweq r5, #43981");
291   }
292
293   // Eor doesn't have an eor-negative variant, but we can do an mvn followed by
294   // an eor to get the same effect.
295   COMPARE(eor(r5, r4, Operand(0xffffff34), SetCC, ne),
296           "13e0c0cb       mvnne ip, #203");
297
298   // and <-> bic.
299   COMPARE(and_(r3, r5, Operand(0xfc03ffff)),
300           "e3c537ff       bic r3, r5, #66846720");
301   COMPARE(bic(r3, r5, Operand(0xfc03ffff)),
302           "e20537ff       and r3, r5, #66846720");
303
304   // sub <-> add.
305   COMPARE(add(r3, r5, Operand(-1024)),
306           "e2453b01       sub r3, r5, #1024");
307   COMPARE(sub(r3, r5, Operand(-1024)),
308           "e2853b01       add r3, r5, #1024");
309
310   // cmp <-> cmn.
311   COMPARE(cmp(r3, Operand(-1024)),
312           "e3730b01       cmn r3, #1024");
313   COMPARE(cmn(r3, Operand(-1024)),
314           "e3530b01       cmp r3, #1024");
315
316   // Miscellaneous instructions encoded as type 0.
317   COMPARE(blx(ip),
318           "e12fff3c       blx ip");
319   COMPARE(bkpt(0),
320           "e1200070       bkpt 0");
321   COMPARE(bkpt(0xffff),
322           "e12fff7f       bkpt 65535");
323   COMPARE(clz(r6, r7),
324           "e16f6f17       clz r6, r7");
325
326   VERIFY_RUN();
327 }
328
329
330 TEST(Type1) {
331   SET_UP();
332
333   COMPARE(and_(r0, r1, Operand(0x00000000)),
334           "e2010000       and r0, r1, #0");
335   COMPARE(and_(r1, r2, Operand(0x00000001), LeaveCC),
336           "e2021001       and r1, r2, #1");
337   COMPARE(and_(r2, r3, Operand(0x00000010), SetCC),
338           "e2132010       ands r2, r3, #16");
339   COMPARE(and_(r3, r4, Operand(0x00000100), LeaveCC, eq),
340           "02043c01       andeq r3, r4, #256");
341   COMPARE(and_(r4, r5, Operand(0x00001000), SetCC, ne),
342           "12154a01       andnes r4, r5, #4096");
343
344   COMPARE(eor(r4, r5, Operand(0x00001000)),
345           "e2254a01       eor r4, r5, #4096");
346   COMPARE(eor(r4, r4, Operand(0x00010000), LeaveCC),
347           "e2244801       eor r4, r4, #65536");
348   COMPARE(eor(r4, r3, Operand(0x00100000), SetCC),
349           "e2334601       eors r4, r3, #1048576");
350   COMPARE(eor(r4, r2, Operand(0x01000000), LeaveCC, cs),
351           "22224401       eorcs r4, r2, #16777216");
352   COMPARE(eor(r4, r1, Operand(0x10000000), SetCC, cc),
353           "32314201       eorccs r4, r1, #268435456");
354
355   VERIFY_RUN();
356 }
357
358
359 TEST(Type3) {
360   SET_UP();
361
362   if (CpuFeatures::IsSupported(ARMv7)) {
363     COMPARE(ubfx(r0, r1, 5, 10),
364             "e7e902d1       ubfx r0, r1, #5, #10");
365     COMPARE(ubfx(r1, r0, 5, 10),
366             "e7e912d0       ubfx r1, r0, #5, #10");
367     COMPARE(ubfx(r0, r1, 31, 1),
368             "e7e00fd1       ubfx r0, r1, #31, #1");
369     COMPARE(ubfx(r1, r0, 31, 1),
370             "e7e01fd0       ubfx r1, r0, #31, #1");
371
372     COMPARE(sbfx(r0, r1, 5, 10),
373             "e7a902d1       sbfx r0, r1, #5, #10");
374     COMPARE(sbfx(r1, r0, 5, 10),
375             "e7a912d0       sbfx r1, r0, #5, #10");
376     COMPARE(sbfx(r0, r1, 31, 1),
377             "e7a00fd1       sbfx r0, r1, #31, #1");
378     COMPARE(sbfx(r1, r0, 31, 1),
379             "e7a01fd0       sbfx r1, r0, #31, #1");
380
381     COMPARE(bfc(r0, 5, 10),
382             "e7ce029f       bfc r0, #5, #10");
383     COMPARE(bfc(r1, 5, 10),
384             "e7ce129f       bfc r1, #5, #10");
385     COMPARE(bfc(r0, 31, 1),
386             "e7df0f9f       bfc r0, #31, #1");
387     COMPARE(bfc(r1, 31, 1),
388             "e7df1f9f       bfc r1, #31, #1");
389
390     COMPARE(bfi(r0, r1, 5, 10),
391             "e7ce0291       bfi r0, r1, #5, #10");
392     COMPARE(bfi(r1, r0, 5, 10),
393             "e7ce1290       bfi r1, r0, #5, #10");
394     COMPARE(bfi(r0, r1, 31, 1),
395             "e7df0f91       bfi r0, r1, #31, #1");
396     COMPARE(bfi(r1, r0, 31, 1),
397             "e7df1f90       bfi r1, r0, #31, #1");
398
399     COMPARE(usat(r0, 1, Operand(r1)),
400             "e6e10011       usat r0, #1, r1");
401     COMPARE(usat(r2, 7, Operand(lr)),
402             "e6e7201e       usat r2, #7, lr");
403     COMPARE(usat(r3, 31, Operand(r4, LSL, 31)),
404             "e6ff3f94       usat r3, #31, r4, lsl #31");
405     COMPARE(usat(r8, 0, Operand(r5, ASR, 17)),
406             "e6e088d5       usat r8, #0, r5, asr #17");
407
408     COMPARE(pkhbt(r3, r4, Operand(r5, LSL, 17)),
409             "e6843895       pkhbt r3, r4, r5, lsl #17");
410     COMPARE(pkhtb(r3, r4, Operand(r5, ASR, 17)),
411             "e68438d5       pkhtb r3, r4, r5, asr #17");
412
413     COMPARE(sxtb(r1, r7, 0, eq), "06af1077       sxtbeq r1, r7");
414     COMPARE(sxtb(r0, r0, 8, ne), "16af0470       sxtbne r0, r0, ror #8");
415     COMPARE(sxtb(r9, r10, 16), "e6af987a       sxtb r9, r10, ror #16");
416     COMPARE(sxtb(r4, r3, 24), "e6af4c73       sxtb r4, r3, ror #24");
417
418     COMPARE(sxtab(r3, r4, r5), "e6a43075       sxtab r3, r4, r5");
419
420     COMPARE(sxth(r5, r0), "e6bf5070       sxth r5, r0");
421     COMPARE(sxth(r5, r9, 8), "e6bf5479       sxth r5, r9, ror #8");
422     COMPARE(sxth(r5, r9, 16, hi), "86bf5879       sxthhi r5, r9, ror #16");
423     COMPARE(sxth(r8, r9, 24, cc), "36bf8c79       sxthcc r8, r9, ror #24");
424
425     COMPARE(sxtah(r3, r4, r5, 16), "e6b43875       sxtah r3, r4, r5, ror #16");
426
427     COMPARE(uxtb(r9, r10), "e6ef907a       uxtb r9, r10");
428     COMPARE(uxtb(r3, r4, 8), "e6ef3474       uxtb r3, r4, ror #8");
429
430     COMPARE(uxtab(r3, r4, r5, 8), "e6e43475       uxtab r3, r4, r5, ror #8");
431
432     COMPARE(uxtb16(r3, r4, 8), "e6cf3474       uxtb16 r3, r4, ror #8");
433
434     COMPARE(uxth(r9, r10), "e6ff907a       uxth r9, r10");
435     COMPARE(uxth(r3, r4, 8), "e6ff3474       uxth r3, r4, ror #8");
436
437     COMPARE(uxtah(r3, r4, r5, 24), "e6f43c75       uxtah r3, r4, r5, ror #24");
438   }
439
440   COMPARE(smmla(r0, r1, r2, r3), "e7503211       smmla r0, r1, r2, r3");
441   COMPARE(smmla(r10, r9, r8, r7), "e75a7819       smmla r10, r9, r8, r7");
442
443   COMPARE(smmul(r0, r1, r2), "e750f211       smmul r0, r1, r2");
444   COMPARE(smmul(r8, r9, r10), "e758fa19       smmul r8, r9, r10");
445
446   VERIFY_RUN();
447 }
448
449
450
451 TEST(Vfp) {
452   SET_UP();
453
454   if (CpuFeatures::IsSupported(VFP3)) {
455     CpuFeatureScope scope(&assm, VFP3);
456     COMPARE(vmov(d0, r2, r3),
457             "ec432b10       vmov d0, r2, r3");
458     COMPARE(vmov(r2, r3, d0),
459             "ec532b10       vmov r2, r3, d0");
460     COMPARE(vmov(d0, d1),
461             "eeb00b41       vmov.f64 d0, d1");
462     COMPARE(vmov(d3, d3, eq),
463             "0eb03b43       vmoveq.f64 d3, d3");
464
465     COMPARE(vmov(s0, s31),
466             "eeb00a6f       vmov.f32 s0, s31");
467     COMPARE(vmov(s31, s0),
468             "eef0fa40       vmov.f32 s31, s0");
469     COMPARE(vmov(r0, s0),
470             "ee100a10       vmov r0, s0");
471     COMPARE(vmov(r10, s31),
472             "ee1faa90       vmov r10, s31");
473     COMPARE(vmov(s0, r0),
474             "ee000a10       vmov s0, r0");
475     COMPARE(vmov(s31, r10),
476             "ee0faa90       vmov s31, r10");
477
478     COMPARE(vabs(d0, d1),
479             "eeb00bc1       vabs.f64 d0, d1");
480     COMPARE(vabs(d3, d4, mi),
481             "4eb03bc4       vabsmi.f64 d3, d4");
482
483     COMPARE(vneg(d0, d1),
484             "eeb10b41       vneg.f64 d0, d1");
485     COMPARE(vneg(d3, d4, mi),
486             "4eb13b44       vnegmi.f64 d3, d4");
487
488     COMPARE(vadd(d0, d1, d2),
489             "ee310b02       vadd.f64 d0, d1, d2");
490     COMPARE(vadd(d3, d4, d5, mi),
491             "4e343b05       vaddmi.f64 d3, d4, d5");
492
493     COMPARE(vsub(d0, d1, d2),
494             "ee310b42       vsub.f64 d0, d1, d2");
495     COMPARE(vsub(d3, d4, d5, ne),
496             "1e343b45       vsubne.f64 d3, d4, d5");
497
498     COMPARE(vmul(d2, d1, d0),
499             "ee212b00       vmul.f64 d2, d1, d0");
500     COMPARE(vmul(d6, d4, d5, cc),
501             "3e246b05       vmulcc.f64 d6, d4, d5");
502
503     COMPARE(vdiv(d2, d2, d2),
504             "ee822b02       vdiv.f64 d2, d2, d2");
505     COMPARE(vdiv(d6, d7, d7, hi),
506             "8e876b07       vdivhi.f64 d6, d7, d7");
507
508     COMPARE(vcmp(d0, d1),
509             "eeb40b41       vcmp.f64 d0, d1");
510     COMPARE(vcmp(d0, 0.0),
511             "eeb50b40       vcmp.f64 d0, #0.0");
512
513     COMPARE(vsqrt(d0, d0),
514             "eeb10bc0       vsqrt.f64 d0, d0");
515     COMPARE(vsqrt(d2, d3, ne),
516             "1eb12bc3       vsqrtne.f64 d2, d3");
517
518     COMPARE(vmov(d0, 1.0),
519             "eeb70b00       vmov.f64 d0, #1");
520     COMPARE(vmov(d2, -13.0),
521             "eeba2b0a       vmov.f64 d2, #-13");
522
523     COMPARE(vmov(d0, VmovIndexLo, r0),
524             "ee000b10       vmov.32 d0[0], r0");
525     COMPARE(vmov(d0, VmovIndexHi, r0),
526             "ee200b10       vmov.32 d0[1], r0");
527
528     COMPARE(vmov(r2, VmovIndexLo, d15),
529             "ee1f2b10       vmov.32 r2, d15[0]");
530     COMPARE(vmov(r3, VmovIndexHi, d14),
531             "ee3e3b10       vmov.32 r3, d14[1]");
532
533     COMPARE(vldr(s0, r0, 0),
534             "ed900a00       vldr s0, [r0 + 4*0]");
535     COMPARE(vldr(s1, r1, 4),
536             "edd10a01       vldr s1, [r1 + 4*1]");
537     COMPARE(vldr(s15, r4, 16),
538             "edd47a04       vldr s15, [r4 + 4*4]");
539     COMPARE(vldr(s16, r5, 20),
540             "ed958a05       vldr s16, [r5 + 4*5]");
541     COMPARE(vldr(s31, r10, 1020),
542             "eddafaff       vldr s31, [r10 + 4*255]");
543
544     COMPARE(vstr(s0, r0, 0),
545             "ed800a00       vstr s0, [r0 + 4*0]");
546     COMPARE(vstr(s1, r1, 4),
547             "edc10a01       vstr s1, [r1 + 4*1]");
548     COMPARE(vstr(s15, r8, 8),
549             "edc87a02       vstr s15, [r8 + 4*2]");
550     COMPARE(vstr(s16, r9, 12),
551             "ed898a03       vstr s16, [r9 + 4*3]");
552     COMPARE(vstr(s31, r10, 1020),
553             "edcafaff       vstr s31, [r10 + 4*255]");
554
555     COMPARE(vldr(d0, r0, 0),
556             "ed900b00       vldr d0, [r0 + 4*0]");
557     COMPARE(vldr(d1, r1, 4),
558             "ed911b01       vldr d1, [r1 + 4*1]");
559     COMPARE(vldr(d15, r10, 1020),
560             "ed9afbff       vldr d15, [r10 + 4*255]");
561     COMPARE(vstr(d0, r0, 0),
562             "ed800b00       vstr d0, [r0 + 4*0]");
563     COMPARE(vstr(d1, r1, 4),
564             "ed811b01       vstr d1, [r1 + 4*1]");
565     COMPARE(vstr(d15, r10, 1020),
566             "ed8afbff       vstr d15, [r10 + 4*255]");
567
568     COMPARE(vmsr(r5),
569             "eee15a10       vmsr FPSCR, r5");
570     COMPARE(vmsr(r10, pl),
571             "5ee1aa10       vmsrpl FPSCR, r10");
572     COMPARE(vmsr(pc),
573             "eee1fa10       vmsr FPSCR, APSR");
574     COMPARE(vmrs(r5),
575             "eef15a10       vmrs r5, FPSCR");
576     COMPARE(vmrs(r10, ge),
577             "aef1aa10       vmrsge r10, FPSCR");
578     COMPARE(vmrs(pc),
579             "eef1fa10       vmrs APSR, FPSCR");
580
581     COMPARE(vstm(ia, r0, d1, d3),
582             "ec801b06       vstmia r0, {d1-d3}");
583     COMPARE(vldm(ia, r1, d2, d5),
584             "ec912b08       vldmia r1, {d2-d5}");
585     COMPARE(vstm(ia, r2, d0, d15),
586             "ec820b20       vstmia r2, {d0-d15}");
587     COMPARE(vldm(ia, r3, d0, d15),
588             "ec930b20       vldmia r3, {d0-d15}");
589     COMPARE(vstm(ia, r4, s1, s3),
590             "ecc40a03       vstmia r4, {s1-s3}");
591     COMPARE(vldm(ia, r5, s2, s5),
592             "ec951a04       vldmia r5, {s2-s5}");
593     COMPARE(vstm(ia, r6, s0, s31),
594             "ec860a20       vstmia r6, {s0-s31}");
595     COMPARE(vldm(ia, r7, s0, s31),
596             "ec970a20       vldmia r7, {s0-s31}");
597
598     COMPARE(vmla(d2, d1, d0),
599             "ee012b00       vmla.f64 d2, d1, d0");
600     COMPARE(vmla(d6, d4, d5, cc),
601             "3e046b05       vmlacc.f64 d6, d4, d5");
602
603     COMPARE(vmls(d2, d1, d0),
604             "ee012b40       vmls.f64 d2, d1, d0");
605     COMPARE(vmls(d6, d4, d5, cc),
606             "3e046b45       vmlscc.f64 d6, d4, d5");
607
608     COMPARE(vcvt_u32_f64(s0, d0),
609             "eebc0bc0       vcvt.u32.f64 s0, d0");
610     COMPARE(vcvt_s32_f64(s0, d0),
611             "eebd0bc0       vcvt.s32.f64 s0, d0");
612     COMPARE(vcvt_f64_u32(d0, s1),
613             "eeb80b60       vcvt.f64.u32 d0, s1");
614     COMPARE(vcvt_f64_s32(d0, s1),
615             "eeb80be0       vcvt.f64.s32 d0, s1");
616     COMPARE(vcvt_f32_s32(s0, s2),
617             "eeb80ac1       vcvt.f32.s32 s0, s2");
618     COMPARE(vcvt_f64_s32(d0, 2),
619             "eeba0bcf       vcvt.f64.s32 d0, d0, #2");
620
621     if (CpuFeatures::IsSupported(VFP32DREGS)) {
622       COMPARE(vmov(d3, d27),
623               "eeb03b6b       vmov.f64 d3, d27");
624       COMPARE(vmov(d18, d7),
625               "eef02b47       vmov.f64 d18, d7");
626       COMPARE(vmov(d18, r2, r3),
627               "ec432b32       vmov d18, r2, r3");
628       COMPARE(vmov(r2, r3, d18),
629               "ec532b32       vmov r2, r3, d18");
630       COMPARE(vmov(d20, d31),
631               "eef04b6f       vmov.f64 d20, d31");
632
633       COMPARE(vabs(d16, d31),
634               "eef00bef       vabs.f64 d16, d31");
635
636       COMPARE(vneg(d16, d31),
637               "eef10b6f       vneg.f64 d16, d31");
638
639       COMPARE(vadd(d16, d17, d18),
640               "ee710ba2       vadd.f64 d16, d17, d18");
641
642       COMPARE(vsub(d16, d17, d18),
643               "ee710be2       vsub.f64 d16, d17, d18");
644
645       COMPARE(vmul(d16, d17, d18),
646               "ee610ba2       vmul.f64 d16, d17, d18");
647
648       COMPARE(vdiv(d16, d17, d18),
649               "eec10ba2       vdiv.f64 d16, d17, d18");
650
651       COMPARE(vcmp(d16, d17),
652               "eef40b61       vcmp.f64 d16, d17");
653       COMPARE(vcmp(d16, 0.0),
654               "eef50b40       vcmp.f64 d16, #0.0");
655
656       COMPARE(vsqrt(d16, d17),
657               "eef10be1       vsqrt.f64 d16, d17");
658
659       COMPARE(vmov(d30, 16.0),
660               "eef3eb00       vmov.f64 d30, #16");
661
662       COMPARE(vmov(d31, VmovIndexLo, r7),
663               "ee0f7b90       vmov.32 d31[0], r7");
664       COMPARE(vmov(d31, VmovIndexHi, r7),
665               "ee2f7b90       vmov.32 d31[1], r7");
666
667       COMPARE(vldr(d25, r0, 0),
668               "edd09b00       vldr d25, [r0 + 4*0]");
669       COMPARE(vldr(d26, r1, 4),
670               "edd1ab01       vldr d26, [r1 + 4*1]");
671       COMPARE(vldr(d31, r10, 1020),
672               "eddafbff       vldr d31, [r10 + 4*255]");
673
674       COMPARE(vstr(d16, r0, 0),
675               "edc00b00       vstr d16, [r0 + 4*0]");
676       COMPARE(vstr(d17, r1, 4),
677               "edc11b01       vstr d17, [r1 + 4*1]");
678       COMPARE(vstr(d31, r10, 1020),
679               "edcafbff       vstr d31, [r10 + 4*255]");
680
681       COMPARE(vstm(ia, r0, d16, d31),
682               "ecc00b20       vstmia r0, {d16-d31}");
683       COMPARE(vldm(ia, r3, d16, d31),
684               "ecd30b20       vldmia r3, {d16-d31}");
685       COMPARE(vstm(ia, r0, d23, d27),
686               "ecc07b0a       vstmia r0, {d23-d27}");
687       COMPARE(vldm(ia, r3, d23, d27),
688               "ecd37b0a       vldmia r3, {d23-d27}");
689
690       COMPARE(vmla(d16, d17, d18),
691               "ee410ba2       vmla.f64 d16, d17, d18");
692
693       COMPARE(vcvt_u32_f64(s0, d16),
694               "eebc0be0       vcvt.u32.f64 s0, d16");
695       COMPARE(vcvt_s32_f64(s0, d16),
696               "eebd0be0       vcvt.s32.f64 s0, d16");
697       COMPARE(vcvt_f64_u32(d16, s1),
698               "eef80b60       vcvt.f64.u32 d16, s1");
699     }
700   }
701
702   VERIFY_RUN();
703 }
704
705
706 TEST(ARMv8_vrintX_disasm) {
707   SET_UP();
708
709   if (CpuFeatures::IsSupported(ARMv8)) {
710     COMPARE(vrinta(d0, d0), "feb80b40       vrinta.f64.f64 d0, d0");
711     COMPARE(vrinta(d2, d3), "feb82b43       vrinta.f64.f64 d2, d3");
712
713     COMPARE(vrintp(d0, d0), "feba0b40       vrintp.f64.f64 d0, d0");
714     COMPARE(vrintp(d2, d3), "feba2b43       vrintp.f64.f64 d2, d3");
715
716     COMPARE(vrintn(d0, d0), "feb90b40       vrintn.f64.f64 d0, d0");
717     COMPARE(vrintn(d2, d3), "feb92b43       vrintn.f64.f64 d2, d3");
718
719     COMPARE(vrintm(d0, d0), "febb0b40       vrintm.f64.f64 d0, d0");
720     COMPARE(vrintm(d2, d3), "febb2b43       vrintm.f64.f64 d2, d3");
721
722     COMPARE(vrintz(d0, d0), "eeb60bc0       vrintz.f64.f64 d0, d0");
723     COMPARE(vrintz(d2, d3, ne), "1eb62bc3       vrintzne.f64.f64 d2, d3");
724   }
725
726   VERIFY_RUN();
727 }
728
729
730 TEST(Neon) {
731   SET_UP();
732
733   if (CpuFeatures::IsSupported(NEON)) {
734     CpuFeatureScope scope(&assm, NEON);
735       COMPARE(vld1(Neon8, NeonListOperand(d4, 4), NeonMemOperand(r1)),
736               "f421420f       vld1.8 {d4, d5, d6, d7}, [r1]");
737       COMPARE(vst1(Neon16, NeonListOperand(d17, 4), NeonMemOperand(r9)),
738               "f449124f       vst1.16 {d17, d18, d19, d20}, [r9]");
739       COMPARE(vmovl(NeonU8, q3, d1),
740               "f3886a11       vmovl.u8 q3, d1");
741       COMPARE(vmovl(NeonU8, q4, d2),
742               "f3888a12       vmovl.u8 q4, d2");
743   }
744
745   VERIFY_RUN();
746 }
747
748
749 TEST(LoadStore) {
750   SET_UP();
751
752   COMPARE(ldrb(r0, MemOperand(r1)),
753           "e5d10000       ldrb r0, [r1, #+0]");
754   COMPARE(ldrb(r2, MemOperand(r3, 42)),
755           "e5d3202a       ldrb r2, [r3, #+42]");
756   COMPARE(ldrb(r4, MemOperand(r5, -42)),
757           "e555402a       ldrb r4, [r5, #-42]");
758   COMPARE(ldrb(r6, MemOperand(r7, 42, PostIndex)),
759           "e4d7602a       ldrb r6, [r7], #+42");
760   COMPARE(ldrb(r8, MemOperand(r9, -42, PostIndex)),
761           "e459802a       ldrb r8, [r9], #-42");
762   COMPARE(ldrb(r10, MemOperand(fp, 42, PreIndex)),
763           "e5fba02a       ldrb r10, [fp, #+42]!");
764   COMPARE(ldrb(ip, MemOperand(sp, -42, PreIndex)),
765           "e57dc02a       ldrb ip, [sp, #-42]!");
766   COMPARE(ldrb(r0, MemOperand(r1, r2)),
767           "e7d10002       ldrb r0, [r1, +r2]");
768   COMPARE(ldrb(r0, MemOperand(r1, r2, NegOffset)),
769           "e7510002       ldrb r0, [r1, -r2]");
770   COMPARE(ldrb(r0, MemOperand(r1, r2, PostIndex)),
771           "e6d10002       ldrb r0, [r1], +r2");
772   COMPARE(ldrb(r0, MemOperand(r1, r2, NegPostIndex)),
773           "e6510002       ldrb r0, [r1], -r2");
774   COMPARE(ldrb(r0, MemOperand(r1, r2, PreIndex)),
775           "e7f10002       ldrb r0, [r1, +r2]!");
776   COMPARE(ldrb(r0, MemOperand(r1, r2, NegPreIndex)),
777           "e7710002       ldrb r0, [r1, -r2]!");
778
779   COMPARE(strb(r0, MemOperand(r1)),
780           "e5c10000       strb r0, [r1, #+0]");
781   COMPARE(strb(r2, MemOperand(r3, 42)),
782           "e5c3202a       strb r2, [r3, #+42]");
783   COMPARE(strb(r4, MemOperand(r5, -42)),
784           "e545402a       strb r4, [r5, #-42]");
785   COMPARE(strb(r6, MemOperand(r7, 42, PostIndex)),
786           "e4c7602a       strb r6, [r7], #+42");
787   COMPARE(strb(r8, MemOperand(r9, -42, PostIndex)),
788           "e449802a       strb r8, [r9], #-42");
789   COMPARE(strb(r10, MemOperand(fp, 42, PreIndex)),
790           "e5eba02a       strb r10, [fp, #+42]!");
791   COMPARE(strb(ip, MemOperand(sp, -42, PreIndex)),
792           "e56dc02a       strb ip, [sp, #-42]!");
793   COMPARE(strb(r0, MemOperand(r1, r2)),
794           "e7c10002       strb r0, [r1, +r2]");
795   COMPARE(strb(r0, MemOperand(r1, r2, NegOffset)),
796           "e7410002       strb r0, [r1, -r2]");
797   COMPARE(strb(r0, MemOperand(r1, r2, PostIndex)),
798           "e6c10002       strb r0, [r1], +r2");
799   COMPARE(strb(r0, MemOperand(r1, r2, NegPostIndex)),
800           "e6410002       strb r0, [r1], -r2");
801   COMPARE(strb(r0, MemOperand(r1, r2, PreIndex)),
802           "e7e10002       strb r0, [r1, +r2]!");
803   COMPARE(strb(r0, MemOperand(r1, r2, NegPreIndex)),
804           "e7610002       strb r0, [r1, -r2]!");
805
806   COMPARE(ldrh(r0, MemOperand(r1)),
807           "e1d100b0       ldrh r0, [r1, #+0]");
808   COMPARE(ldrh(r2, MemOperand(r3, 42)),
809           "e1d322ba       ldrh r2, [r3, #+42]");
810   COMPARE(ldrh(r4, MemOperand(r5, -42)),
811           "e15542ba       ldrh r4, [r5, #-42]");
812   COMPARE(ldrh(r6, MemOperand(r7, 42, PostIndex)),
813           "e0d762ba       ldrh r6, [r7], #+42");
814   COMPARE(ldrh(r8, MemOperand(r9, -42, PostIndex)),
815           "e05982ba       ldrh r8, [r9], #-42");
816   COMPARE(ldrh(r10, MemOperand(fp, 42, PreIndex)),
817           "e1fba2ba       ldrh r10, [fp, #+42]!");
818   COMPARE(ldrh(ip, MemOperand(sp, -42, PreIndex)),
819           "e17dc2ba       ldrh ip, [sp, #-42]!");
820   COMPARE(ldrh(r0, MemOperand(r1, r2)),
821           "e19100b2       ldrh r0, [r1, +r2]");
822   COMPARE(ldrh(r0, MemOperand(r1, r2, NegOffset)),
823           "e11100b2       ldrh r0, [r1, -r2]");
824   COMPARE(ldrh(r0, MemOperand(r1, r2, PostIndex)),
825           "e09100b2       ldrh r0, [r1], +r2");
826   COMPARE(ldrh(r0, MemOperand(r1, r2, NegPostIndex)),
827           "e01100b2       ldrh r0, [r1], -r2");
828   COMPARE(ldrh(r0, MemOperand(r1, r2, PreIndex)),
829           "e1b100b2       ldrh r0, [r1, +r2]!");
830   COMPARE(ldrh(r0, MemOperand(r1, r2, NegPreIndex)),
831           "e13100b2       ldrh r0, [r1, -r2]!");
832
833   COMPARE(strh(r0, MemOperand(r1)),
834           "e1c100b0       strh r0, [r1, #+0]");
835   COMPARE(strh(r2, MemOperand(r3, 42)),
836           "e1c322ba       strh r2, [r3, #+42]");
837   COMPARE(strh(r4, MemOperand(r5, -42)),
838           "e14542ba       strh r4, [r5, #-42]");
839   COMPARE(strh(r6, MemOperand(r7, 42, PostIndex)),
840           "e0c762ba       strh r6, [r7], #+42");
841   COMPARE(strh(r8, MemOperand(r9, -42, PostIndex)),
842           "e04982ba       strh r8, [r9], #-42");
843   COMPARE(strh(r10, MemOperand(fp, 42, PreIndex)),
844           "e1eba2ba       strh r10, [fp, #+42]!");
845   COMPARE(strh(ip, MemOperand(sp, -42, PreIndex)),
846           "e16dc2ba       strh ip, [sp, #-42]!");
847   COMPARE(strh(r0, MemOperand(r1, r2)),
848           "e18100b2       strh r0, [r1, +r2]");
849   COMPARE(strh(r0, MemOperand(r1, r2, NegOffset)),
850           "e10100b2       strh r0, [r1, -r2]");
851   COMPARE(strh(r0, MemOperand(r1, r2, PostIndex)),
852           "e08100b2       strh r0, [r1], +r2");
853   COMPARE(strh(r0, MemOperand(r1, r2, NegPostIndex)),
854           "e00100b2       strh r0, [r1], -r2");
855   COMPARE(strh(r0, MemOperand(r1, r2, PreIndex)),
856           "e1a100b2       strh r0, [r1, +r2]!");
857   COMPARE(strh(r0, MemOperand(r1, r2, NegPreIndex)),
858           "e12100b2       strh r0, [r1, -r2]!");
859
860   COMPARE(ldr(r0, MemOperand(r1)),
861           "e5910000       ldr r0, [r1, #+0]");
862   COMPARE(ldr(r2, MemOperand(r3, 42)),
863           "e593202a       ldr r2, [r3, #+42]");
864   COMPARE(ldr(r4, MemOperand(r5, -42)),
865           "e515402a       ldr r4, [r5, #-42]");
866   COMPARE(ldr(r6, MemOperand(r7, 42, PostIndex)),
867           "e497602a       ldr r6, [r7], #+42");
868   COMPARE(ldr(r8, MemOperand(r9, -42, PostIndex)),
869           "e419802a       ldr r8, [r9], #-42");
870   COMPARE(ldr(r10, MemOperand(fp, 42, PreIndex)),
871           "e5bba02a       ldr r10, [fp, #+42]!");
872   COMPARE(ldr(ip, MemOperand(sp, -42, PreIndex)),
873           "e53dc02a       ldr ip, [sp, #-42]!");
874   COMPARE(ldr(r0, MemOperand(r1, r2)),
875           "e7910002       ldr r0, [r1, +r2]");
876   COMPARE(ldr(r0, MemOperand(r1, r2, NegOffset)),
877           "e7110002       ldr r0, [r1, -r2]");
878   COMPARE(ldr(r0, MemOperand(r1, r2, PostIndex)),
879           "e6910002       ldr r0, [r1], +r2");
880   COMPARE(ldr(r0, MemOperand(r1, r2, NegPostIndex)),
881           "e6110002       ldr r0, [r1], -r2");
882   COMPARE(ldr(r0, MemOperand(r1, r2, PreIndex)),
883           "e7b10002       ldr r0, [r1, +r2]!");
884   COMPARE(ldr(r0, MemOperand(r1, r2, NegPreIndex)),
885           "e7310002       ldr r0, [r1, -r2]!");
886
887   COMPARE(str(r0, MemOperand(r1)),
888           "e5810000       str r0, [r1, #+0]");
889   COMPARE(str(r2, MemOperand(r3, 42)),
890           "e583202a       str r2, [r3, #+42]");
891   COMPARE(str(r4, MemOperand(r5, -42)),
892           "e505402a       str r4, [r5, #-42]");
893   COMPARE(str(r6, MemOperand(r7, 42, PostIndex)),
894           "e487602a       str r6, [r7], #+42");
895   COMPARE(str(r8, MemOperand(r9, -42, PostIndex)),
896           "e409802a       str r8, [r9], #-42");
897   COMPARE(str(r10, MemOperand(fp, 42, PreIndex)),
898           "e5aba02a       str r10, [fp, #+42]!");
899   COMPARE(str(ip, MemOperand(sp, -42, PreIndex)),
900           "e52dc02a       str ip, [sp, #-42]!");
901   COMPARE(str(r0, MemOperand(r1, r2)),
902           "e7810002       str r0, [r1, +r2]");
903   COMPARE(str(r0, MemOperand(r1, r2, NegOffset)),
904           "e7010002       str r0, [r1, -r2]");
905   COMPARE(str(r0, MemOperand(r1, r2, PostIndex)),
906           "e6810002       str r0, [r1], +r2");
907   COMPARE(str(r0, MemOperand(r1, r2, NegPostIndex)),
908           "e6010002       str r0, [r1], -r2");
909   COMPARE(str(r0, MemOperand(r1, r2, PreIndex)),
910           "e7a10002       str r0, [r1, +r2]!");
911   COMPARE(str(r0, MemOperand(r1, r2, NegPreIndex)),
912           "e7210002       str r0, [r1, -r2]!");
913
914   if (CpuFeatures::IsSupported(ARMv7)) {
915     CpuFeatureScope scope(&assm, ARMv7);
916     COMPARE(ldrd(r0, r1, MemOperand(r1)),
917             "e1c100d0       ldrd r0, [r1, #+0]");
918     COMPARE(ldrd(r2, r3, MemOperand(r3, 127)),
919             "e1c327df       ldrd r2, [r3, #+127]");
920     COMPARE(ldrd(r4, r5, MemOperand(r5, -127)),
921             "e14547df       ldrd r4, [r5, #-127]");
922     COMPARE(ldrd(r6, r7, MemOperand(r7, 127, PostIndex)),
923             "e0c767df       ldrd r6, [r7], #+127");
924     COMPARE(ldrd(r8, r9, MemOperand(r9, -127, PostIndex)),
925             "e04987df       ldrd r8, [r9], #-127");
926     COMPARE(ldrd(r10, fp, MemOperand(fp, 127, PreIndex)),
927             "e1eba7df       ldrd r10, [fp, #+127]!");
928     COMPARE(ldrd(ip, sp, MemOperand(sp, -127, PreIndex)),
929             "e16dc7df       ldrd ip, [sp, #-127]!");
930
931     COMPARE(strd(r0, r1, MemOperand(r1)),
932             "e1c100f0       strd r0, [r1, #+0]");
933     COMPARE(strd(r2, r3, MemOperand(r3, 127)),
934             "e1c327ff       strd r2, [r3, #+127]");
935     COMPARE(strd(r4, r5, MemOperand(r5, -127)),
936             "e14547ff       strd r4, [r5, #-127]");
937     COMPARE(strd(r6, r7, MemOperand(r7, 127, PostIndex)),
938             "e0c767ff       strd r6, [r7], #+127");
939     COMPARE(strd(r8, r9, MemOperand(r9, -127, PostIndex)),
940             "e04987ff       strd r8, [r9], #-127");
941     COMPARE(strd(r10, fp, MemOperand(fp, 127, PreIndex)),
942             "e1eba7ff       strd r10, [fp, #+127]!");
943     COMPARE(strd(ip, sp, MemOperand(sp, -127, PreIndex)),
944             "e16dc7ff       strd ip, [sp, #-127]!");
945
946     COMPARE(pld(MemOperand(r1, 0)),
947             "f5d1f000       pld [r1]");
948     COMPARE(pld(MemOperand(r2, 128)),
949             "f5d2f080       pld [r2, #+128]");
950   }
951
952   VERIFY_RUN();
953 }