Tweak the interpreter entries and 2nd level trace filter to capture more traces.

Real changes:
1) Add a new entry point from JIT to the interpreter to request hot traces w/o
   doing chaining.
2) Increase the granularity of the secondary profile filter to match 64-byte
   chunks using 64 entries.

The remaining are just cosmetic changes.
diff --git a/vm/compiler/codegen/arm/Assemble.c b/vm/compiler/codegen/arm/Assemble.c
index 7f8ad9e..2ad0842 100644
--- a/vm/compiler/codegen/arm/Assemble.c
+++ b/vm/compiler/codegen/arm/Assemble.c
@@ -1597,7 +1597,7 @@
                 case kChainingCellHot:
                 case kChainingCellInvokeSingleton:
                     targetOffset = offsetof(InterpState,
-                          jitToInterpEntries.dvmJitToTraceSelect);
+                          jitToInterpEntries.dvmJitToInterpTraceSelect);
                     break;
                 case kChainingCellInvokePredicted:
                     targetOffset = 0;
@@ -1614,7 +1614,7 @@
 #if defined(WITH_SELF_VERIFICATION)
                 case kChainingCellBackwardBranch:
                     targetOffset = offsetof(InterpState,
-                          jitToInterpEntries.dvmJitToBackwardBranch);
+                          jitToInterpEntries.dvmJitToInterpBackwardBranch);
                     break;
 #elif defined(WITH_JIT_TUNING)
                 case kChainingCellBackwardBranch: