diff options
author | Vladimir Marko <vmarko@google.com> | 2014-04-28 09:09:07 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-04-28 09:09:08 +0000 |
commit | f7cd4db971faadc5242a5ee8e15d38837c61176c (patch) | |
tree | f515a663dbdaa0399d533e6f9491bd76fafa1fb4 | |
parent | edbc606d8ff8a32d17f26da4d4fbfbe8e2363955 (diff) | |
parent | e5a04f4fd928a23fb23980259cc226a120fc704d (diff) | |
download | libcore-f7cd4db971faadc5242a5ee8e15d38837c61176c.zip libcore-f7cd4db971faadc5242a5ee8e15d38837c61176c.tar.gz libcore-f7cd4db971faadc5242a5ee8e15d38837c61176c.tar.bz2 |
Merge "Remove ArtMethod's quick fields mapping table and vmap table."
-rw-r--r-- | libart/src/main/java/java/lang/reflect/ArtMethod.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libart/src/main/java/java/lang/reflect/ArtMethod.java b/libart/src/main/java/java/lang/reflect/ArtMethod.java index c88daef..6ef06ee 100644 --- a/libart/src/main/java/java/lang/reflect/ArtMethod.java +++ b/libart/src/main/java/java/lang/reflect/ArtMethod.java @@ -85,22 +85,6 @@ public final class ArtMethod { */ private long gcMap; - /* Quick compiler meta-data. TODO: merge and place in native heap. */ - - /** - * Pointer to a data structure created by the quick compiler to map between dex PCs and - * native PCs, and vice-versa. - */ - private long quickMappingTable; - - /** - * Pointer to a data structure used by the quick compiler to map between dalvik and machine - * registers. - */ - private long quickVmapTable; - - /* End of quick compiler meta-data. */ - /** Bits encoding access (e.g. public, private) as well as other runtime specific flags */ private int accessFlags; |