summaryrefslogtreecommitdiffstats
path: root/compiler/dex/compiler_enums.h
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-06-23 13:23:04 -0700
committerAndreas Gampe <agampe@google.com>2014-06-23 13:42:35 -0700
commit2689fbad6b5ec1ae8f8c8791a80c6fd3cf24144d (patch)
tree4a44acb05e5aba25418693fa43c218286e7ee76a /compiler/dex/compiler_enums.h
parent9462a31caedefac3e04bd4aa5088e050ed188b30 (diff)
downloadandroid_art-2689fbad6b5ec1ae8f8c8791a80c6fd3cf24144d.tar.gz
android_art-2689fbad6b5ec1ae8f8c8791a80c6fd3cf24144d.tar.bz2
android_art-2689fbad6b5ec1ae8f8c8791a80c6fd3cf24144d.zip
ART: Split out more cases of Load/StoreRef, volatile as parameter
Splits out more cases of ref registers being loaded or stored. For code clarity, adds volatile as a flag parameter instead of a separate method. On ARM64, continue cleanup. Add flags to print/fatal on size mismatches. Change-Id: I30ed88433a6b4ff5399aefffe44c14a5e6f4ca4e
Diffstat (limited to 'compiler/dex/compiler_enums.h')
-rw-r--r--compiler/dex/compiler_enums.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/compiler/dex/compiler_enums.h b/compiler/dex/compiler_enums.h
index de9ac4bd01..caecb7a48e 100644
--- a/compiler/dex/compiler_enums.h
+++ b/compiler/dex/compiler_enums.h
@@ -527,6 +527,13 @@ enum FixupKind {
std::ostream& operator<<(std::ostream& os, const FixupKind& kind);
+enum VolatileKind {
+ kNotVolatile, // Load/Store is not volatile
+ kVolatile // Load/Store is volatile
+};
+
+std::ostream& operator<<(std::ostream& os, const VolatileKind& kind);
+
} // namespace art
#endif // ART_COMPILER_DEX_COMPILER_ENUMS_H_