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

Side by Side Diff: src/builtins.cc

Issue 18034024: Remove the compiled_transitions flag and cleanup the unused code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE Created 7 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/builtins.h ('k') | src/code-stubs.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 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after
1544 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) { 1544 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) {
1545 KeyedStoreIC::GenerateInitialize(masm); 1545 KeyedStoreIC::GenerateInitialize(masm);
1546 } 1546 }
1547 1547
1548 1548
1549 static void Generate_KeyedStoreIC_NonStrictArguments(MacroAssembler* masm) { 1549 static void Generate_KeyedStoreIC_NonStrictArguments(MacroAssembler* masm) {
1550 KeyedStoreIC::GenerateNonStrictArguments(masm); 1550 KeyedStoreIC::GenerateNonStrictArguments(masm);
1551 } 1551 }
1552 1552
1553 1553
1554 static void Generate_TransitionElementsSmiToDouble(MacroAssembler* masm) {
1555 KeyedStoreIC::GenerateTransitionElementsSmiToDouble(masm);
1556 }
1557
1558
1559 static void Generate_TransitionElementsDoubleToObject(MacroAssembler* masm) {
1560 KeyedStoreIC::GenerateTransitionElementsDoubleToObject(masm);
1561 }
1562
1563 #ifdef ENABLE_DEBUGGER_SUPPORT 1554 #ifdef ENABLE_DEBUGGER_SUPPORT
1564 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { 1555 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) {
1565 Debug::GenerateLoadICDebugBreak(masm); 1556 Debug::GenerateLoadICDebugBreak(masm);
1566 } 1557 }
1567 1558
1568 1559
1569 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { 1560 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) {
1570 Debug::GenerateStoreICDebugBreak(masm); 1561 Debug::GenerateStoreICDebugBreak(masm);
1571 } 1562 }
1572 1563
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
1835 return Handle<Code>(code_address); \ 1826 return Handle<Code>(code_address); \
1836 } 1827 }
1837 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1828 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1838 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1829 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1839 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1830 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1840 #undef DEFINE_BUILTIN_ACCESSOR_C 1831 #undef DEFINE_BUILTIN_ACCESSOR_C
1841 #undef DEFINE_BUILTIN_ACCESSOR_A 1832 #undef DEFINE_BUILTIN_ACCESSOR_A
1842 1833
1843 1834
1844 } } // namespace v8::internal 1835 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698