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

Side by Side Diff: src/builtins.cc

Issue 131363008: A64: Synchronize with r15922. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
1837 return Handle<Code>(code_address); \ 1828 return Handle<Code>(code_address); \
1838 } 1829 }
1839 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1830 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1840 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1831 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1841 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1832 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1842 #undef DEFINE_BUILTIN_ACCESSOR_C 1833 #undef DEFINE_BUILTIN_ACCESSOR_C
1843 #undef DEFINE_BUILTIN_ACCESSOR_A 1834 #undef DEFINE_BUILTIN_ACCESSOR_A
1844 1835
1845 1836
1846 } } // namespace v8::internal 1837 } } // 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