diff options
author | Mathieu Chartier <mathieuc@google.com> | 2014-11-10 11:07:50 -0800 |
---|---|---|
committer | Mathieu Chartier <mathieuc@google.com> | 2014-11-14 11:56:01 -0800 |
commit | 13e57c9c508dea33e9bd5768a3cbd79eb263790e (patch) | |
tree | 04b89efc051b29bedd74f120c78e8e28ba73d3a5 /libart/src | |
parent | 657afa6cd8da378f30afe7b491e6d9de6c7c23fd (diff) | |
download | libcore-13e57c9c508dea33e9bd5768a3cbd79eb263790e.zip libcore-13e57c9c508dea33e9bd5768a3cbd79eb263790e.tar.gz libcore-13e57c9c508dea33e9bd5768a3cbd79eb263790e.tar.bz2 |
Delete pointer sized fields
Change-Id: Ia0ad61589542c5ce317b6a5a6bb4ca12d7e6647b
Diffstat (limited to 'libart/src')
-rw-r--r-- | libart/src/main/java/java/lang/reflect/ArtMethod.java | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/libart/src/main/java/java/lang/reflect/ArtMethod.java b/libart/src/main/java/java/lang/reflect/ArtMethod.java index 6d21f59..07cc30c 100644 --- a/libart/src/main/java/java/lang/reflect/ArtMethod.java +++ b/libart/src/main/java/java/lang/reflect/ArtMethod.java @@ -56,36 +56,6 @@ public final class ArtMethod { /** Short-cut to declaringClass.dexCache.strings */ private String[] dexCacheStrings; - /** - * Method dispatch from the interpreter invokes this pointer which may cause a bridge into - * compiled code. - */ - private long entryPointFromInterpreter; - - /** - * Pointer to JNI function registered to this method, or a function to resolve the JNI function. - */ - private long entryPointFromJni; - - /** - * Method dispatch from portable compiled code invokes this pointer which may cause bridging - * into quick compiled code or the interpreter. - * Uncomment to enable. - */ - // private long entryPointFromPortableCompiledCode; - - /** - * Method dispatch from quick compiled code invokes this pointer which may cause bridging - * into portable compiled code or the interpreter. - */ - private long entryPointFromQuickCompiledCode; - - /** - * Pointer to a data structure created by the compiler and used by the garbage collector to - * determine which registers hold live references to objects within the heap. - */ - private long gcMap; - /** Bits encoding access (e.g. public, private) as well as other runtime specific flags */ private int accessFlags; |