diff options
author | Vladimir Marko <vmarko@google.com> | 2014-05-12 11:30:22 +0100 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2014-05-12 12:23:49 +0100 |
commit | 2d2cead249daa3c68ffeb350a4231abb989b1208 (patch) | |
tree | c78bd32cbc596fab9ee756f03e9d840d1286e7a4 /libart | |
parent | 0a2ddb63dcf5fa82131bc026f12c731ad85b2053 (diff) | |
download | libcore-2d2cead249daa3c68ffeb350a4231abb989b1208.zip libcore-2d2cead249daa3c68ffeb350a4231abb989b1208.tar.gz libcore-2d2cead249daa3c68ffeb350a4231abb989b1208.tar.bz2 |
Remove ArtMethod's quick fields for frame size and spills.
This is a companion CL for art/ change
"Move quick frame info to OatQuickMethodHeader."
https://android-review.googlesource.com/93241
Change-Id: I07e2f4c756a0738433d9341847410b612001c5b6
Diffstat (limited to 'libart')
-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() {} |