summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2014-05-13 16:13:56 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-05-13 16:13:56 +0000
commit8f863cc84923451eac80b94956dd62176cb091c4 (patch)
tree4c59106f8acd21fb7ad336623c2dcb5f88a2ecc8
parentd149dc6b2fe3bce5c7ad27ea0c4f369c01e7e001 (diff)
parent8c215000b3a4f4cc090f9a52bfaf4ee21126ac46 (diff)
downloadlibcore-8f863cc84923451eac80b94956dd62176cb091c4.zip
libcore-8f863cc84923451eac80b94956dd62176cb091c4.tar.gz
libcore-8f863cc84923451eac80b94956dd62176cb091c4.tar.bz2
am 8c215000: am d8467fa1: am dd8a196a: Merge "Remove ArtMethod\'s quick fields for frame size and spills."
* commit '8c215000b3a4f4cc090f9a52bfaf4ee21126ac46': 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() {}