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

Side by Side Diff: src/builtins.cc

Issue 21173004: Version 3.20.11.1 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: 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/checks.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
1554 #ifdef ENABLE_DEBUGGER_SUPPORT 1563 #ifdef ENABLE_DEBUGGER_SUPPORT
1555 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { 1564 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) {
1556 Debug::GenerateLoadICDebugBreak(masm); 1565 Debug::GenerateLoadICDebugBreak(masm);
1557 } 1566 }
1558 1567
1559 1568
1560 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { 1569 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) {
1561 Debug::GenerateStoreICDebugBreak(masm); 1570 Debug::GenerateStoreICDebugBreak(masm);
1562 } 1571 }
1563 1572
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
1826 return Handle<Code>(code_address); \ 1835 return Handle<Code>(code_address); \
1827 } 1836 }
1828 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1837 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1829 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1838 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1830 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1839 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1831 #undef DEFINE_BUILTIN_ACCESSOR_C 1840 #undef DEFINE_BUILTIN_ACCESSOR_C
1832 #undef DEFINE_BUILTIN_ACCESSOR_A 1841 #undef DEFINE_BUILTIN_ACCESSOR_A
1833 1842
1834 1843
1835 } } // namespace v8::internal 1844 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/checks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698