Subzero: Improve the usability of UnimplementedError during lowering.

Provides a variant of the UnimplementedError macro specifically for use in incomplete target instruction lowering.  When --skip-unimplemented is specified, the UnimplementedLoweringError macro adds FakeUse and FakeDef instructions in order to maintain consistency in liveness analysis.

BUG= none
R=kschimpf@google.com

Review URL: https://codereview.chromium.org/1591893002 .
diff --git a/src/IceTargetLowering.h b/src/IceTargetLowering.h
index f45956c..9fb0c15 100644
--- a/src/IceTargetLowering.h
+++ b/src/IceTargetLowering.h
@@ -45,6 +45,21 @@
     }                                                                          \
   } while (0)
 
+// UnimplementedLoweringError is similar in style to UnimplementedError.  Given
+// a TargetLowering object pointer and an Inst pointer, it adds appropriate
+// FakeDef and FakeUse instructions to try maintain liveness consistency.
+#define UnimplementedLoweringError(Target, Instr)                              \
+  do {                                                                         \
+    if ((Target)->Ctx->getFlags().getSkipUnimplemented()) {                    \
+      (Target)->addFakeDefUses(Instr);                                         \
+    } else {                                                                   \
+      /* Use llvm_unreachable instead of report_fatal_error, which gives       \
+         better stack traces. */                                               \
+      llvm_unreachable("Not yet implemented");                                 \
+      abort();                                                                 \
+    }                                                                          \
+  } while (0)
+
 /// LoweringContext makes it easy to iterate through non-deleted instructions in
 /// a node, and insert new (lowered) instructions at the current point. Along
 /// with the instruction list container and associated iterators, it holds the
@@ -373,6 +388,12 @@
   /// before returning.
   virtual void postLower() {}
 
+  /// When the SkipUnimplemented flag is set, addFakeDefUses() gets invoked by
+  /// the UnimplementedLoweringError macro to insert fake uses of all the
+  /// instruction variables and a fake def of the instruction dest, in order to
+  /// preserve integrity of liveness analysis.
+  void addFakeDefUses(const Inst *Instr);
+
   /// Find (non-SSA) instructions where the Dest variable appears in some source
   /// operand, and set the IsDestRedefined flag.  This keeps liveness analysis
   /// consistent.