Support GenSelect for x86

kMirOpSelect is an extended MIR that has been generated in order
to remove trivial diamond shapes where the conditional is an
if-eqz or if-nez and on each of the paths there is a move or
const bytecode with same destination register.

This patch enables x86 to generate code for this extended MIR.

A) Handling the constant specialization of kMirOpSelect:
  1) When the true case is zero and result_reg is not same as src_reg:
      xor result_reg, result_reg
      cmp $0, src_reg
      mov t1, $false_case
      cmovnz result_reg, t1
  2) When the false case is zero and result_reg is not same as src_reg:
      xor result_reg, result_reg
      cmp $0, src_reg
      mov t1, $true_case
      cmovz result_reg, t1
  3) All other cases (we do compare first to set eflags):
      cmp $0, src_reg
      mov result_reg, $true_case
      mov t1, $false_case
      cmovnz result_reg, t1
B) Handling the move specialization of kMirOpSelect:
  1) When true case is already in place:
      cmp $0, src_reg
      cmovnz result_reg, false_reg
  2) When false case is already in place:
      cmp $0, src_reg
      cmovz result_reg, true_reg
  3) When neither cases are in place:
      cmp $0, src_reg
      mov result_reg, true_reg
      cmovnz result_reg, false_reg

Change-Id: Ic7c50823208fe82019916476a0a77c6a271679fe
Signed-off-by: Razvan A Lupusoru <razvan.a.lupusoru@intel.com>
diff --git a/compiler/dex/quick/mir_to_lir.h b/compiler/dex/quick/mir_to_lir.h
index b59ec5e..60b783d 100644
--- a/compiler/dex/quick/mir_to_lir.h
+++ b/compiler/dex/quick/mir_to_lir.h
@@ -796,7 +796,14 @@
     virtual void GenFusedFPCmpBranch(BasicBlock* bb, MIR* mir, bool gt_bias,
                                      bool is_double) = 0;
     virtual void GenFusedLongCmpBranch(BasicBlock* bb, MIR* mir) = 0;
+
+    /**
+     * @brief Lowers the kMirOpSelect MIR into LIR.
+     * @param bb The basic block in which the MIR is from.
+     * @param mir The MIR whose opcode is kMirOpSelect.
+     */
     virtual void GenSelect(BasicBlock* bb, MIR* mir) = 0;
+
     virtual void GenMemBarrier(MemBarrierKind barrier_kind) = 0;
     virtual void GenMoveException(RegLocation rl_dest) = 0;
     virtual void GenMultiplyByTwoBitMultiplier(RegLocation rl_src,