Subzero: Switch to AT&T asm syntax.  I give up.

The main motivation is that -build-on-read introduces Intel-style asm output like:
  mov al, byte ptr [flags]
and llvm-mc misinterprets the global symbol "flags" as the flags register.  Further workarounds will likely cost more effort than switching over to AT&T syntax.

Most of the lit tests don't need changing, since the asm text is generated by assembling and disassembling the llvm2ice asm output.

There some LEAHACK TODOs that can be fixed, but that would change some of the instructions, so that can be a separate CL.

The Operand emit() routines really ought to be moved entirely into the target-specific source files.

BUG= none
R=jvoung@chromium.org

Review URL: https://codereview.chromium.org/695993004
diff --git a/src/IceInstX8632.h b/src/IceInstX8632.h
index eb831ac..6b1acc7 100644
--- a/src/IceInstX8632.h
+++ b/src/IceInstX8632.h
@@ -263,6 +263,7 @@
   };
 
   static const char *getWidthString(Type Ty);
+  static const char *getFldString(Type Ty);
   void dump(const Cfg *Func) const override;
 
 protected:
@@ -514,10 +515,18 @@
   void emit(const Cfg *Func) const override {
     Ostream &Str = Func->getContext()->getStrEmit();
     assert(getSrcSize() == 1);
-    Str << "\t" << Opcode << "\t";
-    getDest()->emit(Func);
-    Str << ", ";
+    Type SrcTy = getSrc(0)->getType();
+    Type DestTy = getDest()->getType();
+    Str << "\t" << Opcode << getWidthString(SrcTy);
+    // Movsx and movzx need both the source and dest type width letter
+    // to define the operation.  The other unary operations have the
+    // same source and dest type and as a result need only one letter.
+    if (SrcTy != DestTy)
+      Str << getWidthString(DestTy);
+    Str << "\t";
     getSrc(0)->emit(Func);
+    Str << ", ";
+    getDest()->emit(Func);
   }
   void emitIAS(const Cfg *Func) const override {
     assert(getSrcSize() == 1);
@@ -562,9 +571,9 @@
     Ostream &Str = Func->getContext()->getStrEmit();
     assert(getSrcSize() == 1);
     Str << "\t" << Opcode << "\t";
-    getDest()->emit(Func);
-    Str << ", ";
     getSrc(0)->emit(Func);
+    Str << ", ";
+    getDest()->emit(Func);
   }
   void emitIAS(const Cfg *Func) const override {
     Type Ty = getDest()->getType();
@@ -780,11 +789,11 @@
     Ostream &Str = Func->getContext()->getStrEmit();
     assert(getSrcSize() == 3);
     Str << "\t" << Opcode << "\t";
-    getDest()->emit(Func);
+    getSrc(2)->emit(Func);
     Str << ", ";
     getSrc(1)->emit(Func);
     Str << ", ";
-    getSrc(2)->emit(Func);
+    getDest()->emit(Func);
   }
   void emitIAS(const Cfg *Func) const override;
   void dump(const Cfg *Func) const override {
@@ -822,11 +831,11 @@
     Ostream &Str = Func->getContext()->getStrEmit();
     assert(getSrcSize() == 2);
     Str << "\t" << Opcode << "\t";
-    getDest()->emit(Func);
+    getSrc(1)->emit(Func);
     Str << ", ";
     getSrc(0)->emit(Func);
     Str << ", ";
-    getSrc(1)->emit(Func);
+    getDest()->emit(Func);
   }
   void emitIAS(const Cfg *Func) const override;
   void dump(const Cfg *Func) const override {