summaryrefslogtreecommitdiffstats
path: root/libart
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2014-11-10 11:07:50 -0800
committerMathieu Chartier <mathieuc@google.com>2014-11-18 10:55:38 -0800
commit62a6a82bf3afd443e4553535b040444cd369f109 (patch)
treeede1d6d8ad79eea2534ca456faef4491a9db80ba /libart
parent4b5092ae80e4c3681080090eebd63a82d65eafd9 (diff)
downloadlibcore-62a6a82bf3afd443e4553535b040444cd369f109.zip
libcore-62a6a82bf3afd443e4553535b040444cd369f109.tar.gz
libcore-62a6a82bf3afd443e4553535b040444cd369f109.tar.bz2
Delete pointer sized fields
Change-Id: Ia0ad61589542c5ce317b6a5a6bb4ca12d7e6647b (cherry picked from commit 13e57c9c508dea33e9bd5768a3cbd79eb263790e)
Diffstat (limited to 'libart')
-rw-r--r--libart/src/main/java/java/lang/reflect/ArtMethod.java29
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;