summaryrefslogtreecommitdiff
path: root/compiler/optimizing/nodes.h
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2017-02-06 11:53:53 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-02-06 11:53:54 +0000
commit85bd7a37139bf79ee664777db079b86a7105dac8 (patch)
treec000e4944ba096f9794b5a31a2fc75c56d7db775 /compiler/optimizing/nodes.h
parentf85fc6bd9d65ef4689d6af797adb889da8cf15e3 (diff)
parentfbdfa6d7485534eedbd3fb32cf572529ebddb63c (diff)
Merge "Revert "Revert "Inline across dex files for JIT."""
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r--compiler/optimizing/nodes.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h
index fae164aa0b..96f9abafbf 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_; }