Updating the compiler to use the new-world model

New compiler is integrated and passes first test (Fibonacci).

Change-Id: Ic5448ab89ebd22baa30fafc3d1300324687d1fc2
diff --git a/src/compiler/SSATransformation.cc b/src/compiler/SSATransformation.cc
index a843d51..42e855d 100644
--- a/src/compiler/SSATransformation.cc
+++ b/src/compiler/SSATransformation.cc
@@ -107,8 +107,8 @@
      * Also set the incoming parameters as defs in the entry block.
      * Only need to handle the parameters for the outer method.
      */
-    int inReg = cUnit->method->registersSize - cUnit->method->insSize;
-    for (; inReg < cUnit->method->registersSize; inReg++) {
+    int inReg = cUnit->method->num_registers_ - cUnit->method->num_ins_;
+    for (; inReg < cUnit->method->num_registers_; inReg++) {
         oatSetBit(cUnit->defBlockMatrix[inReg],
                           cUnit->entryBlock->id);
     }