diff options
author | 2019-12-02 12:38:49 +0000 | |
---|---|---|
committer | 2019-12-02 15:44:20 +0000 | |
commit | 08d0984bfeaff1a1bc2db2d51ecf45f2867b3bc4 (patch) | |
tree | 3c8c47aae746f4057d541448f873d6e287a092d6 /tools/cpp-define-generator/globals.def | |
parent | 2d8b7f4ef7a305b98dd54d259e0c2b9f6aed4fd7 (diff) |
Allow late lookup for @FastNative methods.
Avoid failing a runtime state assertion.
Test: Enable tests in 178-app-image-native-method
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Test: aosp_taimen-userdebug boots.
Test: run-gtests.sh
Test: testrunner.py --target --optimizing
Bug: 112189621
Change-Id: I3eb5c9fd239743732866e8ea0863a84bf85f7b20
Diffstat (limited to 'tools/cpp-define-generator/globals.def')
-rw-r--r-- | tools/cpp-define-generator/globals.def | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/cpp-define-generator/globals.def b/tools/cpp-define-generator/globals.def index 10542622ac..09d33ce756 100644 --- a/tools/cpp-define-generator/globals.def +++ b/tools/cpp-define-generator/globals.def @@ -30,6 +30,8 @@ #include "stack.h" #endif +ASM_DEFINE(ACCESS_FLAGS_METHOD_IS_FAST_NATIVE, + art::kAccFastNative) ASM_DEFINE(ACCESS_FLAGS_CLASS_IS_FINALIZABLE, art::kAccClassIsFinalizable) ASM_DEFINE(ACCESS_FLAGS_CLASS_IS_FINALIZABLE_BIT, |