diff options
author | Vladimir Marko <vmarko@google.com> | 2014-05-13 15:56:14 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-05-13 15:56:14 +0000 |
commit | dd8a196af3f25fa64d8c9deb325e0c44a9a8699a (patch) | |
tree | 62e4808f9ca9c848935f6ced0c5f4792fa21e491 | |
parent | c03fdbdeda2f1885039f51c7eb1527eac7078a2c (diff) | |
parent | 2d2cead249daa3c68ffeb350a4231abb989b1208 (diff) | |
download | libcore-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.java | 13 |
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() {} |