summaryrefslogtreecommitdiff
path: root/tools/cpp-define-generator/art_method.def
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cpp-define-generator/art_method.def')
-rw-r--r--tools/cpp-define-generator/art_method.def4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/cpp-define-generator/art_method.def b/tools/cpp-define-generator/art_method.def
index a73bbedc8a..d5ba59998d 100644
--- a/tools/cpp-define-generator/art_method.def
+++ b/tools/cpp-define-generator/art_method.def
@@ -21,6 +21,10 @@
ASM_DEFINE(ART_METHOD_ACCESS_FLAGS_OFFSET,
art::ArtMethod::AccessFlagsOffset().Int32Value())
+ASM_DEFINE(ART_METHOD_IS_MEMORY_SHARED_FLAG,
+ art::kAccMemorySharedMethod)
+ASM_DEFINE(ART_METHOD_IS_MEMORY_SHARED_FLAG_BIT,
+ art::MostSignificantBit(art::kAccMemorySharedMethod))
ASM_DEFINE(ART_METHOD_IS_STATIC_FLAG,
art::kAccStatic)
ASM_DEFINE(ART_METHOD_IS_STATIC_FLAG_BIT,