diff options
author | 2015-11-23 12:11:46 +0000 | |
---|---|---|
committer | 2015-11-23 12:11:46 +0000 | |
commit | 6d92d59fb0acc1f9fde1d736f80e6cb1a8541da9 (patch) | |
tree | 182079e5ab2802bd85470cd4fed614432c869df1 /compiler/optimizing/nodes.h | |
parent | f180af0fc0d0bd981dd6356848df2ba237e1a227 (diff) | |
parent | 8e1ef53e3d551f11bb424ae4f29cc1f5eabbe6bc (diff) |
Merge "Do not change to the access check entrypoint when inlined."
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index a5ea15408c..3b5c384c84 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -1631,6 +1631,11 @@ class HEnvironment : public ArenaObject<kArenaAllocEnvironment> { return holder_; } + + bool IsFromInlinedInvoke() const { + return GetParent() != nullptr; + } + private: // Record instructions' use entries of this environment for constant-time removal. // It should only be called by HInstruction when a new environment use is added. @@ -3243,7 +3248,7 @@ class HInvoke : public HInstruction { void SetIntrinsic(Intrinsics intrinsic, IntrinsicNeedsEnvironmentOrCache needs_env_or_cache); bool IsFromInlinedInvoke() const { - return GetEnvironment()->GetParent() != nullptr; + return GetEnvironment()->IsFromInlinedInvoke(); } bool CanThrow() const OVERRIDE { return true; } |