summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2014-05-13 15:56:14 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-05-13 15:56:14 +0000
commitdd8a196af3f25fa64d8c9deb325e0c44a9a8699a (patch)
tree62e4808f9ca9c848935f6ced0c5f4792fa21e491
parentc03fdbdeda2f1885039f51c7eb1527eac7078a2c (diff)
parent2d2cead249daa3c68ffeb350a4231abb989b1208 (diff)
downloadlibcore-dd8a196af3f25fa64d8c9deb325e0c44a9a8699a.zip
libcore-dd8a196af3f25fa64d8c9deb325e0c44a9a8699a.tar.gz
libcore-dd8a196af3f25fa64d8c9deb325e0c44a9a8699a.tar.bz2
Merge "Remove ArtMethod's quick fields for frame size and spills."
-rw-r--r--libart/src/main/java/java/lang/reflect/ArtMethod.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/libart/src/main/java/java/lang/reflect/ArtMethod.java b/libart/src/main/java/java/lang/reflect/ArtMethod.java
index 6ef06ee..8ce158a 100644
--- a/libart/src/main/java/java/lang/reflect/ArtMethod.java
+++ b/libart/src/main/java/java/lang/reflect/ArtMethod.java
@@ -105,19 +105,6 @@ public final class ArtMethod {
*/
private int methodIndex;
- /* Quick compiler meta-data. TODO: merge and place in native heap. */
-
- /** Bit map of spilled machine registers. */
- private int quickCoreSpillMask;
-
- /** Bit map of spilled floating point machine registers. */
- private int quickFpSpillMask;
-
- /** Fixed frame size for this method when executed. */
- private int quickFrameSizeInBytes;
-
- /* End of quick compiler meta-data. */
-
/** Only created by ART directly. */
private ArtMethod() {}