diff options
author | 2017-01-27 23:09:22 +0000 | |
---|---|---|
committer | 2017-02-02 15:48:23 +0000 | |
commit | f290c01c61f8a2979efa74ffcd2f54c5e426a3d0 (patch) | |
tree | 73c3f221a0d0299f8a595fe3e4b60aff2b632b27 /compiler/optimizing/nodes.h | |
parent | de09f06e243f9548e58feec79b0cd249065a5f28 (diff) |
Inline across dex files for JIT.
bug:30933338
test: ART_TEST_JIT=true test-art-host test-art-target
Change-Id: I4ac708d70d90c2db4139d99a75bf4665a810c206
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index f0ea9e20e6..e6842fc5bd 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -4322,6 +4322,11 @@ class HInvokeInterface FINAL : public HInvoke { return (obj == InputAt(0)) && !GetLocations()->Intrinsified(); } + bool NeedsDexCacheOfDeclaringClass() const OVERRIDE { + // The assembly stub currently needs it. + return true; + } + uint32_t GetImtIndex() const { return imt_index_; } uint32_t GetDexMethodIndex() const { return dex_method_index_; } |