Initial port of the Dalvik JIT enging to the internal repository.
Fixed files with trailing spaces.
Addressed review comments from Dan.
Addressed review comments from fadden.
Addressed review comments from Dan x 2.
Addressed review comments from Dan x 3.
diff --git a/libdex/InstrUtils.h b/libdex/InstrUtils.h
index 7621b8e..5ca175e 100644
--- a/libdex/InstrUtils.h
+++ b/libdex/InstrUtils.h
@@ -99,6 +99,9 @@
     kInstrCanSwitch     = 1 << 2,   // switch statement
     kInstrCanThrow      = 1 << 3,   // could cause an exception to be thrown
     kInstrCanReturn     = 1 << 4,   // returns, no additional statements
+    kInstrInvoke        = 1 << 5,   // a flavor of invoke
+    kInstrUnconditional = 1 << 6,   // unconditional branch
+    kInstrNoJit         = 1 << 7,   // don't jit trace containing this
 };