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

Side by Side Diff: src/builtins.cc

Issue 14106011: Allow setting debugger breakpoints on CompareNilICs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 7 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/debug.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 1599 matching lines...) Expand 10 before | Expand all | Expand 10 after
1610 static void Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) { 1610 static void Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) {
1611 Debug::GenerateKeyedLoadICDebugBreak(masm); 1611 Debug::GenerateKeyedLoadICDebugBreak(masm);
1612 } 1612 }
1613 1613
1614 1614
1615 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) { 1615 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) {
1616 Debug::GenerateKeyedStoreICDebugBreak(masm); 1616 Debug::GenerateKeyedStoreICDebugBreak(masm);
1617 } 1617 }
1618 1618
1619 1619
1620 static void Generate_CompareNilIC_DebugBreak(MacroAssembler* masm) {
1621 Debug::GenerateCompareNilICDebugBreak(masm);
1622 }
1623
1624
1620 static void Generate_Return_DebugBreak(MacroAssembler* masm) { 1625 static void Generate_Return_DebugBreak(MacroAssembler* masm) {
1621 Debug::GenerateReturnDebugBreak(masm); 1626 Debug::GenerateReturnDebugBreak(masm);
1622 } 1627 }
1623 1628
1624 1629
1625 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { 1630 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) {
1626 Debug::GenerateCallFunctionStubDebugBreak(masm); 1631 Debug::GenerateCallFunctionStubDebugBreak(masm);
1627 } 1632 }
1628 1633
1629 1634
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
1865 return Handle<Code>(code_address); \ 1870 return Handle<Code>(code_address); \
1866 } 1871 }
1867 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1872 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1868 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1873 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1869 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1874 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1870 #undef DEFINE_BUILTIN_ACCESSOR_C 1875 #undef DEFINE_BUILTIN_ACCESSOR_C
1871 #undef DEFINE_BUILTIN_ACCESSOR_A 1876 #undef DEFINE_BUILTIN_ACCESSOR_A
1872 1877
1873 1878
1874 } } // namespace v8::internal 1879 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698