diff options
author | 2016-07-15 15:28:35 +0100 | |
---|---|---|
committer | 2016-09-30 10:44:31 +0100 | |
commit | 762869dee6e0eadab5be1c606792d6693bbabf4e (patch) | |
tree | 8c986c621e8a5f3cf4e4e3b2cc13b400401ad89b /runtime/modifiers.h | |
parent | b4cf427734c6839b46d0d6037e3189a5e8aa1bdb (diff) |
Simplify our intrinsic recognizer.
- Use the modifiers for storing the intrinsic kind.
- Delete dex_file_method_inliner and its associated map.
This work was also motivated by the fact that the inline
method analyzer leaks intrinsic tables, and even worse, might re-use
a table from one dex file to another unrelated dex file in the presence
of class unloading and the unlikely event of the dex files getting
the same address.
test: m test-art-host m test-art-target
Change-Id: Ia653d2c72df13889dc85dd8c84997582c034ea4b
Diffstat (limited to 'runtime/modifiers.h')
-rw-r--r-- | runtime/modifiers.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/modifiers.h b/runtime/modifiers.h index fd7a125bc3..dd32df69d7 100644 --- a/runtime/modifiers.h +++ b/runtime/modifiers.h @@ -67,6 +67,7 @@ static constexpr uint32_t kAccCompileDontBother = 0x01000000; // method (ru // Set by the verifier for a method that could not be verified to follow structured locking. static constexpr uint32_t kAccMustCountLocks = 0x02000000; // method (runtime) +static constexpr uint32_t kAccIntrinsic = 0x80000000; // method (runtime) // Special runtime-only flags. // Interface and all its super-interfaces with default methods have been recursively initialized. @@ -76,6 +77,9 @@ static constexpr uint32_t kAccHasDefaultMethod = 0x40000000; // class/ancestor overrides finalize() static constexpr uint32_t kAccClassIsFinalizable = 0x80000000; +static constexpr uint32_t kAccFlagsNotUsedByIntrinsic = 0x007FFFFF; +static constexpr uint32_t kAccMaxIntrinsic = 0xFF; + // Valid (meaningful) bits for a field. static constexpr uint32_t kAccValidFieldFlags = kAccPublic | kAccPrivate | kAccProtected | kAccStatic | kAccFinal | kAccVolatile | kAccTransient | kAccSynthetic | kAccEnum; |