diff options
Diffstat (limited to 'compiler/optimizing/inliner.h')
| -rw-r--r-- | compiler/optimizing/inliner.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/compiler/optimizing/inliner.h b/compiler/optimizing/inliner.h index a032042c78..8f8b268cb2 100644 --- a/compiler/optimizing/inliner.h +++ b/compiler/optimizing/inliner.h @@ -107,15 +107,14 @@ class HInliner : public HOptimization { REQUIRES_SHARED(Locks::mutator_lock_); // Create a new HInstanceFieldGet. - HInstanceFieldGet* CreateInstanceFieldGet(uint32_t field_index, - ArtMethod* referrer, + HInstanceFieldGet* CreateInstanceFieldGet(Handle<mirror::DexCache> dex_cache, + uint32_t field_index, HInstruction* obj); // Create a new HInstanceFieldSet. - HInstanceFieldSet* CreateInstanceFieldSet(uint32_t field_index, - ArtMethod* referrer, + HInstanceFieldSet* CreateInstanceFieldSet(Handle<mirror::DexCache> dex_cache, + uint32_t field_index, HInstruction* obj, - HInstruction* value, - bool* is_final = nullptr); + HInstruction* value); // Try inlining the invoke instruction using inline caches. bool TryInlineFromInlineCache( |