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

Side by Side Diff: src/builtins.cc

Issue 95503003: Remove special "store global proxy" IC, use as slow_stub(). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/builtins.h ('k') | src/ic.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1418 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) { 1418 static void Generate_StoreIC_Megamorphic(MacroAssembler* masm) {
1419 StoreIC::GenerateMegamorphic(masm, kNonStrictMode); 1419 StoreIC::GenerateMegamorphic(masm, kNonStrictMode);
1420 } 1420 }
1421 1421
1422 1422
1423 static void Generate_StoreIC_Megamorphic_Strict(MacroAssembler* masm) { 1423 static void Generate_StoreIC_Megamorphic_Strict(MacroAssembler* masm) {
1424 StoreIC::GenerateMegamorphic(masm, kStrictMode); 1424 StoreIC::GenerateMegamorphic(masm, kStrictMode);
1425 } 1425 }
1426 1426
1427 1427
1428 static void Generate_StoreIC_GlobalProxy(MacroAssembler* masm) {
1429 StoreIC::GenerateRuntimeSetProperty(masm, kNonStrictMode);
1430 }
1431
1432
1433 static void Generate_StoreIC_GlobalProxy_Strict(MacroAssembler* masm) {
1434 StoreIC::GenerateRuntimeSetProperty(masm, kStrictMode);
1435 }
1436
1437
1438 static void Generate_StoreIC_Setter_ForDeopt(MacroAssembler* masm) { 1428 static void Generate_StoreIC_Setter_ForDeopt(MacroAssembler* masm) {
1439 StoreStubCompiler::GenerateStoreViaSetter(masm, Handle<JSFunction>()); 1429 StoreStubCompiler::GenerateStoreViaSetter(masm, Handle<JSFunction>());
1440 } 1430 }
1441 1431
1442 1432
1443 static void Generate_StoreIC_Generic(MacroAssembler* masm) { 1433 static void Generate_StoreIC_Generic(MacroAssembler* masm) {
1444 StoreIC::GenerateRuntimeSetProperty(masm, kNonStrictMode); 1434 StoreIC::GenerateRuntimeSetProperty(masm, kNonStrictMode);
1445 } 1435 }
1446 1436
1447 1437
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1799 } 1789 }
1800 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1790 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1801 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1791 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1802 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1792 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1803 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1793 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1804 #undef DEFINE_BUILTIN_ACCESSOR_C 1794 #undef DEFINE_BUILTIN_ACCESSOR_C
1805 #undef DEFINE_BUILTIN_ACCESSOR_A 1795 #undef DEFINE_BUILTIN_ACCESSOR_A
1806 1796
1807 1797
1808 } } // namespace v8::internal 1798 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/ic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698