Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(513)

Side by Side Diff: sim/testsuite/sim/bfin/random_0016.S

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sim/testsuite/sim/bfin/random_0015.S ('k') | sim/testsuite/sim/bfin/random_0017.S » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Test LSHIFT values and ASTAT flags
2 # mach: bfin
3 #include "test.h"
4 .include "testutils.inc"
5
6 start
7
8 dmm32 ASTAT, (0x7ce00000 | _VS | _V | _AV0S | _AQ | _CC | _V_COPY | _AN) ;
9 dmm32 A0.w, 0xe1a3909e;
10 dmm32 A0.x, 0xffffffff;
11 imm32 R2, 0x214a26f6;
12 A0 = LSHIFT A0 BY R2.L;
13 checkreg A0.w, 0x3ff868e4;
14 checkreg A0.x, 0x00000000;
15 checkreg ASTAT, (0x7ce00000 | _VS | _V | _AV0S | _AQ | _CC | _V_COPY);
16
17 dmm32 ASTAT, (0x64008a00 | _AV1 | _AV0S | _AV0 | _AC0 | _AQ | _CC | _AN) ;
18 dmm32 A0.w, 0x72af1593;
19 dmm32 A0.x, 0xfffffffd;
20 imm32 R2, 0x6505b40c;
21 A0 = LSHIFT A0 BY R2.L;
22 checkreg A0.w, 0xf1593000;
23 checkreg A0.x, 0x0000002a;
24 checkreg ASTAT, (0x64008a00 | _AV1 | _AV0S | _AC0 | _AQ | _CC);
25
26 pass
OLDNEW
« no previous file with comments | « sim/testsuite/sim/bfin/random_0015.S ('k') | sim/testsuite/sim/bfin/random_0017.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698