OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 static void Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) { | 572 static void Generate_KeyedLoadIC_DebugBreak(MacroAssembler* masm) { |
573 Debug::GenerateKeyedLoadICDebugBreak(masm); | 573 Debug::GenerateKeyedLoadICDebugBreak(masm); |
574 } | 574 } |
575 | 575 |
576 | 576 |
577 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) { | 577 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm) { |
578 Debug::GenerateKeyedStoreICDebugBreak(masm); | 578 Debug::GenerateKeyedStoreICDebugBreak(masm); |
579 } | 579 } |
580 | 580 |
581 | 581 |
582 static void Generate_CallIC_DebugBreak(MacroAssembler* masm) { | |
583 Debug::GenerateCallICDebugBreak(masm); | |
584 } | |
585 | |
586 | |
587 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) { | 582 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) { |
588 Debug::GenerateConstructCallDebugBreak(masm); | 583 Debug::GenerateConstructCallDebugBreak(masm); |
589 } | 584 } |
590 | 585 |
591 | 586 |
592 static void Generate_Return_DebugBreak(MacroAssembler* masm) { | 587 static void Generate_Return_DebugBreak(MacroAssembler* masm) { |
593 Debug::GenerateReturnDebugBreak(masm); | 588 Debug::GenerateReturnDebugBreak(masm); |
594 } | 589 } |
595 | 590 |
596 | 591 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
740 if (entry->contains(pc)) { | 735 if (entry->contains(pc)) { |
741 return names_[i]; | 736 return names_[i]; |
742 } | 737 } |
743 } | 738 } |
744 } | 739 } |
745 return NULL; | 740 return NULL; |
746 } | 741 } |
747 | 742 |
748 | 743 |
749 } } // namespace v8::internal | 744 } } // namespace v8::internal |
OLD | NEW |