Fixes to x86 register promotion and load hoisting.
Fixed a check to ensure that the mvzxb source register can be byte
accessed, not the destination reg.
Disabled branch fusion for x86 since code generation for that is
unimplemented.
Changed regId mask for x86 to allow proper masking of double registers.
Also added more output to the disassembler.
Change-Id: Idc0a949755ec9ae7b6d5dba38caa5ac01fcc5713
diff --git a/src/compiler/Dataflow.cc b/src/compiler/Dataflow.cc
index 33ef0ad..ca9d865 100644
--- a/src/compiler/Dataflow.cc
+++ b/src/compiler/Dataflow.cc
@@ -1843,6 +1843,7 @@
squashDupRangeChecks(cUnit, &tbb, mir, arrSreg, idxSreg);
}
break;
+#if defined(TARGET_ARM)
case Instruction::CMPL_FLOAT:
case Instruction::CMPL_DOUBLE:
case Instruction::CMPG_FLOAT:
@@ -1912,6 +1913,7 @@
}
}
break;
+#endif
default:
break;
}