44a45
> #include <sstream>
45a47
> using namespace std;
183c185,186
< panic("Unrecognized number of registers %d.\n", regs);
---
> // Unknown number of registers
> microOps[uopIdx++] = new Unknown(machInst);
219c222,223
< panic("Bad number of elements to deinterleave %d.\n", elems);
---
> // Bad number of elements to deinterleave
> microOps[uopIdx++] = new Unknown(machInst);
318c322,323
< panic("Unrecognized load size %d.\n", regs);
---
> // Unrecognized load size
> microOps[uopIdx++] = new Unknown(machInst);
361c366,367
< panic("Bad size %d.\n", size);
---
> // Bad size
> microOps[uopIdx++] = new Unknown(machInst);
396c402,403
< panic("Bad size %d.\n", size);
---
> // Bad size
> microOps[uopIdx++] = new Unknown(machInst);
432c439,440
< panic("Bad size %d.\n", size);
---
> // Bad size
> microOps[uopIdx++] = new Unknown(machInst);
475c483,484
< panic("Bad size %d.\n", size);
---
> // Bad size
> microOps[uopIdx++] = new Unknown(machInst);
481c490,491
< panic("Bad number of elements to unpack %d.\n", elems);
---
> // Bad number of elements to unpack
> microOps[uopIdx++] = new Unknown(machInst);
539c549,550
< panic("Bad number of elements to interleave %d.\n", elems);
---
> // Bad number of elements to interleave
> microOps[uopIdx++] = new Unknown(machInst);
564c575,576
< panic("Unrecognized number of registers %d.\n", regs);
---
> // Unknown number of registers
> microOps[uopIdx++] = new Unknown(machInst);
630c642,643
< panic("Bad size %d.\n", size);
---
> // Bad size
> microOps[uopIdx++] = new Unknown(machInst);
650c663,664
< panic("Bad size %d.\n", size);
---
> // Bad size
> microOps[uopIdx++] = new Unknown(machInst);
671c685,686
< panic("Bad size %d.\n", size);
---
> // Bad size
> microOps[uopIdx++] = new Unknown(machInst);
693c708,709
< panic("Bad size %d.\n", size);
---
> // Bad size
> microOps[uopIdx++] = new Unknown(machInst);
699c715,716
< panic("Bad number of elements to pack %d.\n", elems);
---
> // Bad number of elements to unpack
> microOps[uopIdx++] = new Unknown(machInst);
760c777,778
< panic("Unrecognized store size %d.\n", regs);
---
> // Bad store size
> microOps[uopIdx++] = new Unknown(machInst);