]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
mips64: Add tests that cover Cavium-specific load indexed instructions
authorPetar Jovanovic <mips32r2@gmail.com>
Fri, 31 Jan 2014 12:49:22 +0000 (12:49 +0000)
committerPetar Jovanovic <mips32r2@gmail.com>
Fri, 31 Jan 2014 12:49:22 +0000 (12:49 +0000)
Tests for lhux, lwux, and lbx for Cavium Octeon II.

Patch by Zahid Anwar, with changes.

Related to Bugzilla issue 326444.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13786

none/tests/mips64/Makefile.am
none/tests/mips64/cvm_ins.c
none/tests/mips64/cvm_ins.stdout.exp-non-octeon [new file with mode: 0644]
none/tests/mips64/cvm_lx_ins.c [new file with mode: 0644]
none/tests/mips64/cvm_lx_ins.stderr.exp [new file with mode: 0644]
none/tests/mips64/cvm_lx_ins.stdout.exp-LE [new file with mode: 0644]
none/tests/mips64/cvm_lx_ins.stdout.exp-non-octeon [new file with mode: 0644]
none/tests/mips64/cvm_lx_ins.vgtest [new file with mode: 0644]

index b8f6d65dbfba8879c1da916a862a98b29f1abc82..a88bcf02363099cd942222dbb9a4970a7839c181 100644 (file)
@@ -10,7 +10,10 @@ EXTRA_DIST = \
        branch_and_jump_instructions.stdout.exp \
        branch_and_jump_instructions.stderr.exp branch_and_jump_instructions.vgtest \
        branches.stdout.exp branches.stderr.exp branches.vgtest \
-       cvm_ins.stdout.exp cvm_ins.stderr.exp cvm_ins.vgtest \
+       cvm_ins.stdout.exp cvm_ins.stdout.exp-non-octeon \
+       cvm_ins.stderr.exp cvm_ins.vgtest \
+       cvm_lx_ins.stdout.exp-LE cvm_lx_ins.stdout.exp-non-octeon \
+       cvm_lx_ins.stderr.exp cvm_lx_ins.vgtest \
        extract_insert_bit_field.stdout.exp-mips64 \
        extract_insert_bit_field.stdout.exp-mips64r2 \
        extract_insert_bit_field.stderr.exp extract_insert_bit_field.vgtest \
@@ -52,6 +55,7 @@ check_PROGRAMS = \
        branch_and_jump_instructions \
        branches \
        cvm_ins \
+       cvm_lx_ins \
        extract_insert_bit_field \
        fpu_arithmetic \
        fpu_branches \
@@ -77,7 +81,8 @@ AM_CCASFLAGS += @FLAG_M64@
 
 allexec_CFLAGS          = $(AM_CFLAGS) @FLAG_W_NO_NONNULL@
 
-cvm_ins_CFLAGS = $(AM_CFLAGS) -g -O0 -march=octeon
+cvm_ins_CFLAGS = $(AM_CFLAGS) -g -O0 @FLAG_OCTEON@
+cvm_lx_ins_CFLAGS = $(AM_CFLAGS) -g -O0 @FLAG_OCTEON2@
 fpu_arithmetic_CFLAGS = $(AM_CFLAGS) -lm
 
 # C++ tests
index fc74a2e5ed2043f8098d722b785f5bfa729d550f..39c75c57ae083b7c1e76aa95883a78fc7ecb44e8 100644 (file)
@@ -120,28 +120,29 @@ typedef enum {
 
 int main()
 {
+#if (_MIPS_ARCH_OCTEON)
    int i, j;
    cvm_op op;
    for (op = EXTS; op <= SEQ; op++) {
-       switch(op) {
+      switch(op) {
          case EXTS: {  /* To extract and sign-extend a bit field that starts
                           from the lower 32 bits of a register. */
-           for(i = 0; i <= 255; i+=4)
-             TESTINST1("exts $t1, $t2, 1, 7", reg_val[i], t1, t2, 1, 7);
-           break;
+            for(i = 0; i <= 255; i+=4)
+               TESTINST1("exts $t1, $t2, 1, 7", reg_val[i], t1, t2, 1, 7);
+            break;
          }
 
          case EXTS32: { /* To extract and sign-extend a bit field that starts
                            from the upper 32 bits of a register. */
-           for(i = 0; i <= 255; i+=4)
-             TESTINST1("exts32 $t1, $t2, 1 , 7",  reg_val[i], t1, t2,1,7);
-           break;
+            for(i = 0; i <= 255; i+=4)
+               TESTINST1("exts32 $t1, $t2, 1 , 7",  reg_val[i], t1, t2, 1, 7);
+            break;
          }
 
          case CINS:{  /* To insert a bit field that starts in the lower 32 bits
                          of a register. */
             for(i = 0; i <= 255; i+=4)
-               TESTINST1("cins $t1, $t2, 2 , 9",  reg_val[i], t1, t2,2,9);
+               TESTINST1("cins $t1, $t2, 2 , 9",  reg_val[i], t1, t2, 2, 9);
             break;
          }
 
@@ -153,10 +154,10 @@ int main()
          }
 
          case SEQ: {  /* To record the result of an equals comparison. */
-           for(i = 0; i <= 255; i+=4)
-              for(j = 0; j <= 255; j+=4)
-                 TESTINST2("seq $t1, $t2 ,$t3 ", reg_val[i], reg_val[j],
-                                                 t1, t2, t3);
+            for(i = 0; i <= 255; i+=4)
+               for(j = 0; j <= 255; j+=4)
+                  TESTINST2("seq $t1, $t2 ,$t3 ", reg_val[i], reg_val[j],
+                                                  t1, t2, t3);
             break;
          }
 
@@ -192,5 +193,6 @@ int main()
          }
       }
    }
+#endif
    return 0;
 }
diff --git a/none/tests/mips64/cvm_ins.stdout.exp-non-octeon b/none/tests/mips64/cvm_ins.stdout.exp-non-octeon
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/none/tests/mips64/cvm_lx_ins.c b/none/tests/mips64/cvm_lx_ins.c
new file mode 100644 (file)
index 0000000..c74d8de
--- /dev/null
@@ -0,0 +1,117 @@
+#include <stdio.h>
+const int reg_val[256] = {
+   0x00000000L, 0x04c11db7L, 0x09823b6eL, 0x0d4326d9L,
+   0x130476dcL, 0x17c56b6bL, 0x1a864db2L, 0x1e475005L,
+   0x2608edb8L, 0x22c9f00fL, 0x2f8ad6d6L, 0x2b4bcb61L,
+   0x350c9b64L, 0x31cd86d3L, 0x3c8ea00aL, 0x384fbdbdL,
+   0x4c11db70L, 0x48d0c6c7L, 0x4593e01eL, 0x4152fda9L,
+   0x5f15adacL, 0x5bd4b01bL, 0x569796c2L, 0x52568b75L,
+   0x6a1936c8L, 0x6ed82b7fL, 0x639b0da6L, 0x675a1011L,
+   0x791d4014L, 0x7ddc5da3L, 0x709f7b7aL, 0x745e66cdL,
+   0x9823b6e0L, 0x9ce2ab57L, 0x91a18d8eL, 0x95609039L,
+   0x8b27c03cL, 0x8fe6dd8bL, 0x82a5fb52L, 0x8664e6e5L,
+   0xbe2b5b58L, 0xbaea46efL, 0xb7a96036L, 0xb3687d81L,
+   0xad2f2d84L, 0xa9ee3033L, 0xa4ad16eaL, 0xa06c0b5dL,
+   0xd4326d90L, 0xd0f37027L, 0xddb056feL, 0xd9714b49L,
+   0xc7361b4cL, 0xc3f706fbL, 0xceb42022L, 0xca753d95L,
+   0xf23a8028L, 0xf6fb9d9fL, 0xfbb8bb46L, 0xff79a6f1L,
+   0xe13ef6f4L, 0xe5ffeb43L, 0xe8bccd9aL, 0xec7dd02dL,
+   0x34867077L, 0x30476dc0L, 0x3d044b19L, 0x39c556aeL,
+   0x278206abL, 0x23431b1cL, 0x2e003dc5L, 0x2ac12072L,
+   0x128e9dcfL, 0x164f8078L, 0x1b0ca6a1L, 0x1fcdbb16L,
+   0x018aeb13L, 0x054bf6a4L, 0x0808d07dL, 0x0cc9cdcaL,
+   0x7897ab07L, 0x7c56b6b0L, 0x71159069L, 0x75d48ddeL,
+   0x6b93dddbL, 0x6f52c06cL, 0x6211e6b5L, 0x66d0fb02L,
+   0x5e9f46bfL, 0x5a5e5b08L, 0x571d7dd1L, 0x53dc6066L,
+   0x4d9b3063L, 0x495a2dd4L, 0x44190b0dL, 0x40d816baL,
+   0xaca5c697L, 0xa864db20L, 0xa527fdf9L, 0xa1e6e04eL,
+   0xbfa1b04bL, 0xbb60adfcL, 0xb6238b25L, 0xb2e29692L,
+   0x8aad2b2fL, 0x8e6c3698L, 0x832f1041L, 0x87ee0df6L,
+   0x99a95df3L, 0x9d684044L, 0x902b669dL, 0x94ea7b2aL,
+   0xe0b41de7L, 0xe4750050L, 0xe9362689L, 0xedf73b3eL,
+   0xf3b06b3bL, 0xf771768cL, 0xfa325055L, 0xfef34de2L,
+   0xc6bcf05fL, 0xc27dede8L, 0xcf3ecb31L, 0xcbffd686L,
+   0xd5b88683L, 0xd1799b34L, 0xdc3abdedL, 0xd8fba05aL,
+   0x690ce0eeL, 0x6dcdfd59L, 0x608edb80L, 0x644fc637L,
+   0x7a089632L, 0x7ec98b85L, 0x738aad5cL, 0x774bb0ebL,
+   0x4f040d56L, 0x4bc510e1L, 0x46863638L, 0x42472b8fL,
+   0x5c007b8aL, 0x58c1663dL, 0x558240e4L, 0x51435d53L,
+   0x251d3b9eL, 0x21dc2629L, 0x2c9f00f0L, 0x285e1d47L,
+   0x36194d42L, 0x32d850f5L, 0x3f9b762cL, 0x3b5a6b9bL,
+   0x0315d626L, 0x07d4cb91L, 0x0a97ed48L, 0x0e56f0ffL,
+   0x1011a0faL, 0x14d0bd4dL, 0x19939b94L, 0x1d528623L,
+   0xf12f560eL, 0xf5ee4bb9L, 0xf8ad6d60L, 0xfc6c70d7L,
+   0xe22b20d2L, 0xe6ea3d65L, 0xeba91bbcL, 0xef68060bL,
+   0xd727bbb6L, 0xd3e6a601L, 0xdea580d8L, 0xda649d6fL,
+   0xc423cd6aL, 0xc0e2d0ddL, 0xcda1f604L, 0xc960ebb3L,
+   0xbd3e8d7eL, 0xb9ff90c9L, 0xb4bcb610L, 0xb07daba7L,
+   0xae3afba2L, 0xaafbe615L, 0xa7b8c0ccL, 0xa379dd7bL,
+   0x9b3660c6L, 0x9ff77d71L, 0x92b45ba8L, 0x9675461fL,
+   0x8832161aL, 0x8cf30badL, 0x81b02d74L, 0x857130c3L,
+   0x5d8a9099L, 0x594b8d2eL, 0x5408abf7L, 0x50c9b640L,
+   0x4e8ee645L, 0x4a4ffbf2L, 0x470cdd2bL, 0x43cdc09cL,
+   0x7b827d21L, 0x7f436096L, 0x7200464fL, 0x76c15bf8L,
+   0x68860bfdL, 0x6c47164aL, 0x61043093L, 0x65c52d24L,
+   0x119b4be9L, 0x155a565eL, 0x18197087L, 0x1cd86d30L,
+   0x029f3d35L, 0x065e2082L, 0x0b1d065bL, 0x0fdc1becL,
+   0x3793a651L, 0x3352bbe6L, 0x3e119d3fL, 0x3ad08088L,
+   0x2497d08dL, 0x2056cd3aL, 0x2d15ebe3L, 0x29d4f654L,
+   0xc5a92679L, 0xc1683bceL, 0xcc2b1d17L, 0xc8ea00a0L,
+   0xd6ad50a5L, 0xd26c4d12L, 0xdf2f6bcbL, 0xdbee767cL,
+   0xe3a1cbc1L, 0xe760d676L, 0xea23f0afL, 0xeee2ed18L,
+   0xf0a5bd1dL, 0xf464a0aaL, 0xf9278673L, 0xfde69bc4L,
+   0x89b8fd09L, 0x8d79e0beL, 0x803ac667L, 0x84fbdbd0L,
+   0x9abc8bd5L, 0x9e7d9662L, 0x933eb0bbL, 0x97ffad0cL,
+   0xafb010b1L, 0xab710d06L, 0xa6322bdfL, 0xa2f33668L,
+   0xbcb4666dL, 0xb8757bdaL, 0xb5365d03L, 0xb1f740b4L
+};
+
+#define TEST1(instruction, offset, mem)        \
+{                                              \
+    unsigned long out = 0;                     \
+   __asm__ volatile(                           \
+     "move        $t0, %1"        "\n\t"       \
+     "move        $t1, %2"        "\n\t"       \
+     instruction" $t2, $t1($t0)"  "\n\t"       \
+     "move        %0,  $t2"       "\n\t"       \
+     : "=&r" (out)                             \
+     : "r" (mem) , "r" (offset)                \
+     : "t0", "t1", "t2", "memory"              \
+   );                                          \
+   printf("%s :: offset: 0x%x, out: 0x%lx\n",  \
+          instruction, offset, out);           \
+}
+
+typedef enum {
+   lhux, lwux, lbx
+} cvm_op;
+
+int main()
+{
+#if (_MIPS_ARCH_OCTEON2)
+   int i;
+   cvm_op op;
+   for (op = lhux; op <= lbx; op++) {
+      switch(op) {
+         case lhux: {  // LHUX rd, index(base) (Cavium OCTEON)
+            for(i = 4; i <= 255; i += 4)
+               TEST1("lhux", i, reg_val);
+            break;
+         }
+         case lwux: {  // LWUX rd, index(base) (Cavium OCTEON)
+            for(i = 4; i <= 255; i += 4)
+               TEST1("lwux", i, reg_val);
+            break;
+         }
+         case lbx: {  // LBX rd, index(base) (Cavium OCTEON)
+            for(i = 4; i <= 255; i += 4)
+               TEST1("lbx", i, reg_val);
+            break;
+         }
+         default:
+            printf("Nothing to be executed \n");
+      }
+   }
+#endif
+   return 0;
+}
diff --git a/none/tests/mips64/cvm_lx_ins.stderr.exp b/none/tests/mips64/cvm_lx_ins.stderr.exp
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/none/tests/mips64/cvm_lx_ins.stdout.exp-LE b/none/tests/mips64/cvm_lx_ins.stdout.exp-LE
new file mode 100644 (file)
index 0000000..4e72ed1
--- /dev/null
@@ -0,0 +1,189 @@
+lhux :: offset: 0x4, out: 0x1db7
+lhux :: offset: 0x8, out: 0x3b6e
+lhux :: offset: 0xc, out: 0x26d9
+lhux :: offset: 0x10, out: 0x76dc
+lhux :: offset: 0x14, out: 0x6b6b
+lhux :: offset: 0x18, out: 0x4db2
+lhux :: offset: 0x1c, out: 0x5005
+lhux :: offset: 0x20, out: 0xedb8
+lhux :: offset: 0x24, out: 0xf00f
+lhux :: offset: 0x28, out: 0xd6d6
+lhux :: offset: 0x2c, out: 0xcb61
+lhux :: offset: 0x30, out: 0x9b64
+lhux :: offset: 0x34, out: 0x86d3
+lhux :: offset: 0x38, out: 0xa00a
+lhux :: offset: 0x3c, out: 0xbdbd
+lhux :: offset: 0x40, out: 0xdb70
+lhux :: offset: 0x44, out: 0xc6c7
+lhux :: offset: 0x48, out: 0xe01e
+lhux :: offset: 0x4c, out: 0xfda9
+lhux :: offset: 0x50, out: 0xadac
+lhux :: offset: 0x54, out: 0xb01b
+lhux :: offset: 0x58, out: 0x96c2
+lhux :: offset: 0x5c, out: 0x8b75
+lhux :: offset: 0x60, out: 0x36c8
+lhux :: offset: 0x64, out: 0x2b7f
+lhux :: offset: 0x68, out: 0xda6
+lhux :: offset: 0x6c, out: 0x1011
+lhux :: offset: 0x70, out: 0x4014
+lhux :: offset: 0x74, out: 0x5da3
+lhux :: offset: 0x78, out: 0x7b7a
+lhux :: offset: 0x7c, out: 0x66cd
+lhux :: offset: 0x80, out: 0xb6e0
+lhux :: offset: 0x84, out: 0xab57
+lhux :: offset: 0x88, out: 0x8d8e
+lhux :: offset: 0x8c, out: 0x9039
+lhux :: offset: 0x90, out: 0xc03c
+lhux :: offset: 0x94, out: 0xdd8b
+lhux :: offset: 0x98, out: 0xfb52
+lhux :: offset: 0x9c, out: 0xe6e5
+lhux :: offset: 0xa0, out: 0x5b58
+lhux :: offset: 0xa4, out: 0x46ef
+lhux :: offset: 0xa8, out: 0x6036
+lhux :: offset: 0xac, out: 0x7d81
+lhux :: offset: 0xb0, out: 0x2d84
+lhux :: offset: 0xb4, out: 0x3033
+lhux :: offset: 0xb8, out: 0x16ea
+lhux :: offset: 0xbc, out: 0xb5d
+lhux :: offset: 0xc0, out: 0x6d90
+lhux :: offset: 0xc4, out: 0x7027
+lhux :: offset: 0xc8, out: 0x56fe
+lhux :: offset: 0xcc, out: 0x4b49
+lhux :: offset: 0xd0, out: 0x1b4c
+lhux :: offset: 0xd4, out: 0x6fb
+lhux :: offset: 0xd8, out: 0x2022
+lhux :: offset: 0xdc, out: 0x3d95
+lhux :: offset: 0xe0, out: 0x8028
+lhux :: offset: 0xe4, out: 0x9d9f
+lhux :: offset: 0xe8, out: 0xbb46
+lhux :: offset: 0xec, out: 0xa6f1
+lhux :: offset: 0xf0, out: 0xf6f4
+lhux :: offset: 0xf4, out: 0xeb43
+lhux :: offset: 0xf8, out: 0xcd9a
+lhux :: offset: 0xfc, out: 0xd02d
+lwux :: offset: 0x4, out: 0x4c11db7
+lwux :: offset: 0x8, out: 0x9823b6e
+lwux :: offset: 0xc, out: 0xd4326d9
+lwux :: offset: 0x10, out: 0x130476dc
+lwux :: offset: 0x14, out: 0x17c56b6b
+lwux :: offset: 0x18, out: 0x1a864db2
+lwux :: offset: 0x1c, out: 0x1e475005
+lwux :: offset: 0x20, out: 0x2608edb8
+lwux :: offset: 0x24, out: 0x22c9f00f
+lwux :: offset: 0x28, out: 0x2f8ad6d6
+lwux :: offset: 0x2c, out: 0x2b4bcb61
+lwux :: offset: 0x30, out: 0x350c9b64
+lwux :: offset: 0x34, out: 0x31cd86d3
+lwux :: offset: 0x38, out: 0x3c8ea00a
+lwux :: offset: 0x3c, out: 0x384fbdbd
+lwux :: offset: 0x40, out: 0x4c11db70
+lwux :: offset: 0x44, out: 0x48d0c6c7
+lwux :: offset: 0x48, out: 0x4593e01e
+lwux :: offset: 0x4c, out: 0x4152fda9
+lwux :: offset: 0x50, out: 0x5f15adac
+lwux :: offset: 0x54, out: 0x5bd4b01b
+lwux :: offset: 0x58, out: 0x569796c2
+lwux :: offset: 0x5c, out: 0x52568b75
+lwux :: offset: 0x60, out: 0x6a1936c8
+lwux :: offset: 0x64, out: 0x6ed82b7f
+lwux :: offset: 0x68, out: 0x639b0da6
+lwux :: offset: 0x6c, out: 0x675a1011
+lwux :: offset: 0x70, out: 0x791d4014
+lwux :: offset: 0x74, out: 0x7ddc5da3
+lwux :: offset: 0x78, out: 0x709f7b7a
+lwux :: offset: 0x7c, out: 0x745e66cd
+lwux :: offset: 0x80, out: 0x9823b6e0
+lwux :: offset: 0x84, out: 0x9ce2ab57
+lwux :: offset: 0x88, out: 0x91a18d8e
+lwux :: offset: 0x8c, out: 0x95609039
+lwux :: offset: 0x90, out: 0x8b27c03c
+lwux :: offset: 0x94, out: 0x8fe6dd8b
+lwux :: offset: 0x98, out: 0x82a5fb52
+lwux :: offset: 0x9c, out: 0x8664e6e5
+lwux :: offset: 0xa0, out: 0xbe2b5b58
+lwux :: offset: 0xa4, out: 0xbaea46ef
+lwux :: offset: 0xa8, out: 0xb7a96036
+lwux :: offset: 0xac, out: 0xb3687d81
+lwux :: offset: 0xb0, out: 0xad2f2d84
+lwux :: offset: 0xb4, out: 0xa9ee3033
+lwux :: offset: 0xb8, out: 0xa4ad16ea
+lwux :: offset: 0xbc, out: 0xa06c0b5d
+lwux :: offset: 0xc0, out: 0xd4326d90
+lwux :: offset: 0xc4, out: 0xd0f37027
+lwux :: offset: 0xc8, out: 0xddb056fe
+lwux :: offset: 0xcc, out: 0xd9714b49
+lwux :: offset: 0xd0, out: 0xc7361b4c
+lwux :: offset: 0xd4, out: 0xc3f706fb
+lwux :: offset: 0xd8, out: 0xceb42022
+lwux :: offset: 0xdc, out: 0xca753d95
+lwux :: offset: 0xe0, out: 0xf23a8028
+lwux :: offset: 0xe4, out: 0xf6fb9d9f
+lwux :: offset: 0xe8, out: 0xfbb8bb46
+lwux :: offset: 0xec, out: 0xff79a6f1
+lwux :: offset: 0xf0, out: 0xe13ef6f4
+lwux :: offset: 0xf4, out: 0xe5ffeb43
+lwux :: offset: 0xf8, out: 0xe8bccd9a
+lwux :: offset: 0xfc, out: 0xec7dd02d
+lbx :: offset: 0x4, out: 0xffffffffffffffb7
+lbx :: offset: 0x8, out: 0x6e
+lbx :: offset: 0xc, out: 0xffffffffffffffd9
+lbx :: offset: 0x10, out: 0xffffffffffffffdc
+lbx :: offset: 0x14, out: 0x6b
+lbx :: offset: 0x18, out: 0xffffffffffffffb2
+lbx :: offset: 0x1c, out: 0x5
+lbx :: offset: 0x20, out: 0xffffffffffffffb8
+lbx :: offset: 0x24, out: 0xf
+lbx :: offset: 0x28, out: 0xffffffffffffffd6
+lbx :: offset: 0x2c, out: 0x61
+lbx :: offset: 0x30, out: 0x64
+lbx :: offset: 0x34, out: 0xffffffffffffffd3
+lbx :: offset: 0x38, out: 0xa
+lbx :: offset: 0x3c, out: 0xffffffffffffffbd
+lbx :: offset: 0x40, out: 0x70
+lbx :: offset: 0x44, out: 0xffffffffffffffc7
+lbx :: offset: 0x48, out: 0x1e
+lbx :: offset: 0x4c, out: 0xffffffffffffffa9
+lbx :: offset: 0x50, out: 0xffffffffffffffac
+lbx :: offset: 0x54, out: 0x1b
+lbx :: offset: 0x58, out: 0xffffffffffffffc2
+lbx :: offset: 0x5c, out: 0x75
+lbx :: offset: 0x60, out: 0xffffffffffffffc8
+lbx :: offset: 0x64, out: 0x7f
+lbx :: offset: 0x68, out: 0xffffffffffffffa6
+lbx :: offset: 0x6c, out: 0x11
+lbx :: offset: 0x70, out: 0x14
+lbx :: offset: 0x74, out: 0xffffffffffffffa3
+lbx :: offset: 0x78, out: 0x7a
+lbx :: offset: 0x7c, out: 0xffffffffffffffcd
+lbx :: offset: 0x80, out: 0xffffffffffffffe0
+lbx :: offset: 0x84, out: 0x57
+lbx :: offset: 0x88, out: 0xffffffffffffff8e
+lbx :: offset: 0x8c, out: 0x39
+lbx :: offset: 0x90, out: 0x3c
+lbx :: offset: 0x94, out: 0xffffffffffffff8b
+lbx :: offset: 0x98, out: 0x52
+lbx :: offset: 0x9c, out: 0xffffffffffffffe5
+lbx :: offset: 0xa0, out: 0x58
+lbx :: offset: 0xa4, out: 0xffffffffffffffef
+lbx :: offset: 0xa8, out: 0x36
+lbx :: offset: 0xac, out: 0xffffffffffffff81
+lbx :: offset: 0xb0, out: 0xffffffffffffff84
+lbx :: offset: 0xb4, out: 0x33
+lbx :: offset: 0xb8, out: 0xffffffffffffffea
+lbx :: offset: 0xbc, out: 0x5d
+lbx :: offset: 0xc0, out: 0xffffffffffffff90
+lbx :: offset: 0xc4, out: 0x27
+lbx :: offset: 0xc8, out: 0xfffffffffffffffe
+lbx :: offset: 0xcc, out: 0x49
+lbx :: offset: 0xd0, out: 0x4c
+lbx :: offset: 0xd4, out: 0xfffffffffffffffb
+lbx :: offset: 0xd8, out: 0x22
+lbx :: offset: 0xdc, out: 0xffffffffffffff95
+lbx :: offset: 0xe0, out: 0x28
+lbx :: offset: 0xe4, out: 0xffffffffffffff9f
+lbx :: offset: 0xe8, out: 0x46
+lbx :: offset: 0xec, out: 0xfffffffffffffff1
+lbx :: offset: 0xf0, out: 0xfffffffffffffff4
+lbx :: offset: 0xf4, out: 0x43
+lbx :: offset: 0xf8, out: 0xffffffffffffff9a
+lbx :: offset: 0xfc, out: 0x2d
diff --git a/none/tests/mips64/cvm_lx_ins.stdout.exp-non-octeon b/none/tests/mips64/cvm_lx_ins.stdout.exp-non-octeon
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/none/tests/mips64/cvm_lx_ins.vgtest b/none/tests/mips64/cvm_lx_ins.vgtest
new file mode 100644 (file)
index 0000000..5361397
--- /dev/null
@@ -0,0 +1,3 @@
+prog: cvm_lx_ins
+prereq: ../../../tests/mips_features cavium-octeon2
+vgopts: -q