summaryrefslogtreecommitdiff
path: root/libdexfile/dex/modifiers.h
diff options
context:
space:
mode:
Diffstat (limited to 'libdexfile/dex/modifiers.h')
-rw-r--r--libdexfile/dex/modifiers.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libdexfile/dex/modifiers.h b/libdexfile/dex/modifiers.h
index 5fad46cb07..60141df7e8 100644
--- a/libdexfile/dex/modifiers.h
+++ b/libdexfile/dex/modifiers.h
@@ -99,6 +99,9 @@ static constexpr uint32_t kAccSingleImplementation = 0x08000000; // method (ru
// Whether nterp can take a fast path when entering this method (runtime; non-native)
static constexpr uint32_t kAccNterpEntryPointFastPathFlag = 0x00100000;
+// Set by the class linker to mark that a method does not have floating points
+// or longs in its shorty.
+static constexpr uint32_t kAccNterpInvokeFastPathFlag = 0x00200000; // method (runtime)
static constexpr uint32_t kAccPublicApi = 0x10000000; // field, method
static constexpr uint32_t kAccCorePlatformApi = 0x20000000; // field, method