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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sim/testsuite/sim/bfin/random_0016.S
diff --git a/sim/testsuite/sim/bfin/random_0016.S b/sim/testsuite/sim/bfin/random_0016.S
new file mode 100644
index 0000000000000000000000000000000000000000..0b450748ea9222273f64edc24e5d0f3cf3e1a194
--- /dev/null
+++ b/sim/testsuite/sim/bfin/random_0016.S
@@ -0,0 +1,26 @@
+# Test LSHIFT values and ASTAT flags
+# mach: bfin
+#include "test.h"
+.include "testutils.inc"
+
+ start
+
+ dmm32 ASTAT, (0x7ce00000 | _VS | _V | _AV0S | _AQ | _CC | _V_COPY | _AN);
+ dmm32 A0.w, 0xe1a3909e;
+ dmm32 A0.x, 0xffffffff;
+ imm32 R2, 0x214a26f6;
+ A0 = LSHIFT A0 BY R2.L;
+ checkreg A0.w, 0x3ff868e4;
+ checkreg A0.x, 0x00000000;
+ checkreg ASTAT, (0x7ce00000 | _VS | _V | _AV0S | _AQ | _CC | _V_COPY);
+
+ dmm32 ASTAT, (0x64008a00 | _AV1 | _AV0S | _AV0 | _AC0 | _AQ | _CC | _AN);
+ dmm32 A0.w, 0x72af1593;
+ dmm32 A0.x, 0xfffffffd;
+ imm32 R2, 0x6505b40c;
+ A0 = LSHIFT A0 BY R2.L;
+ checkreg A0.w, 0xf1593000;
+ checkreg A0.x, 0x0000002a;
+ checkreg ASTAT, (0x64008a00 | _AV1 | _AV0S | _AC0 | _AQ | _CC);
+
+ pass
« 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