summaryrefslogtreecommitdiffstats
path: root/vm/Globals.h
diff options
context:
space:
mode:
authorAndy McFadden <fadden@android.com>2011-03-18 14:27:06 -0700
committerAndy McFadden <fadden@android.com>2011-03-22 12:52:48 -0700
commit0970976b0e980be00424f93a69c2bc13ca3131f3 (patch)
treedf37de5180d5f260a2a6e5647e790ca6b85e1823 /vm/Globals.h
parent479badfce1a5c910368eacae6af10c1ea7ffaffc (diff)
downloadandroid_dalvik-0970976b0e980be00424f93a69c2bc13ca3131f3.tar.gz
android_dalvik-0970976b0e980be00424f93a69c2bc13ca3131f3.tar.bz2
android_dalvik-0970976b0e980be00424f93a69c2bc13ca3131f3.zip
Fix up some JDWP stuff
Notably: - Claim to know about synthetic attributes (canGetSyntheticAttribute). Set an appropriate flag in the access flags of fields and methods. (Makes no difference that I can see in Eclipse.) - Stop making copies of descriptor strings. That ceased to be necessary after they were normalized in DEX (pre-1.0). - Correct object type determination, especially w.r.t. the specially- tagged types (strings, threads, classloaders, etc). - Handle a FIELD_ONLY mod (not tested). - Added a bit of debugging stuff. Change-Id: I5651b5b76d904a9edbd051e039423795faaa1650
Diffstat (limited to 'vm/Globals.h')
-rw-r--r--vm/Globals.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm/Globals.h b/vm/Globals.h
index db329e4ba..f2f9778fb 100644
--- a/vm/Globals.h
+++ b/vm/Globals.h
@@ -262,6 +262,7 @@ struct DvmGlobals {
* Quick lookups for popular classes used internally.
*/
ClassObject* classJavaLangClassArray;
+ ClassObject* classJavaLangClassLoader;
ClassObject* classJavaLangObject;
ClassObject* classJavaLangObjectArray;
ClassObject* classJavaLangString;