Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1211)

Unified Diff: src/ic/ppc/handler-compiler-ppc.cc

Issue 1189153002: Revert of [strong] Implement strong mode restrictions on property access (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ic/mips64/ic-mips64.cc ('k') | src/ic/ppc/ic-ppc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ppc/handler-compiler-ppc.cc
diff --git a/src/ic/ppc/handler-compiler-ppc.cc b/src/ic/ppc/handler-compiler-ppc.cc
index 0a802f0ba1e4735682ddce23b2d94a2355de0793..8988b08e2c1749265eb670564f24283d8f010f47 100644
--- a/src/ic/ppc/handler-compiler-ppc.cc
+++ b/src/ic/ppc/handler-compiler-ppc.cc
@@ -14,30 +14,6 @@
namespace internal {
#define __ ACCESS_MASM(masm)
-
-
-void NamedLoadHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
- // Push receiver and key for runtime call.
- __ Push(LoadDescriptor::ReceiverRegister(), LoadDescriptor::NameRegister());
-
- // The slow case calls into the runtime to complete the store without causing
- // an IC miss that would otherwise cause a transition to the generic stub.
- ExternalReference ref =
- ExternalReference(IC_Utility(IC::LoadIC_Slow), masm->isolate());
- __ TailCallExternalReference(ref, 2, 1);
-}
-
-
-void NamedLoadHandlerCompiler::GenerateLoadSlow(MacroAssembler* masm) {
- // Push receiver and key for runtime call.
- __ Push(LoadDescriptor::ReceiverRegister(), LoadDescriptor::NameRegister());
-
- // The slow case calls into the runtime to complete the store without causing
- // an IC miss that would otherwise cause a transition to the generic stub.
- ExternalReference ref =
- ExternalReference(IC_Utility(IC::KeyedLoadIC_Slow), masm->isolate());
- __ TailCallExternalReference(ref, 2, 1);
-}
void NamedLoadHandlerCompiler::GenerateLoadViaGetter(
« no previous file with comments | « src/ic/mips64/ic-mips64.cc ('k') | src/ic/ppc/ic-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698