diff options
-rw-r--r-- | libart/src/main/java/java/lang/reflect/ArtMethod.java | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/libart/src/main/java/java/lang/reflect/ArtMethod.java b/libart/src/main/java/java/lang/reflect/ArtMethod.java index 8ce158a..07cc30c 100644 --- a/libart/src/main/java/java/lang/reflect/ArtMethod.java +++ b/libart/src/main/java/java/lang/reflect/ArtMethod.java @@ -56,35 +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. - */ - 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; |