Always support debugging and profiling.

This eliminates the use of the WITH_DEBUGGER and WITH_PROFILER
conditional compilation flags.  We've never shipped a device without
these features, and it's unlikely we ever will.  They're not worth
the code clutter they cause.

As usual, since I can't test the x86-atom code I left that alone and
added an item to the TODO list.

Bug 2923442.

Change-Id: I335ebd5193bc86f7641513b1b41c0378839be1fe
diff --git a/vm/oo/Object.h b/vm/oo/Object.h
index 7428cef..903450f 100644
--- a/vm/oo/Object.h
+++ b/vm/oo/Object.h
@@ -594,9 +594,8 @@
      */
     const RegisterMap* registerMap;
 
-#ifdef WITH_PROFILER
+    /* set if method was called during method profiling */
     bool            inProfile;
-#endif
 };