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

Side by Side Diff: src/assembler.cc

Issue 345048: Fix issue 493: Infinite loop when debug break is set when entering function.apply (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 1 month 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/assembler.h ('k') | src/execution.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 (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 ExternalReference ExternalReference::the_hole_value_location() { 572 ExternalReference ExternalReference::the_hole_value_location() {
573 return ExternalReference(Factory::the_hole_value().location()); 573 return ExternalReference(Factory::the_hole_value().location());
574 } 574 }
575 575
576 576
577 ExternalReference ExternalReference::roots_address() { 577 ExternalReference ExternalReference::roots_address() {
578 return ExternalReference(Heap::roots_address()); 578 return ExternalReference(Heap::roots_address());
579 } 579 }
580 580
581 581
582 ExternalReference ExternalReference::address_of_stack_guard_limit() { 582 ExternalReference ExternalReference::address_of_stack_limit() {
583 return ExternalReference(StackGuard::address_of_jslimit()); 583 return ExternalReference(StackGuard::address_of_jslimit());
584 } 584 }
585 585
586 586
587 ExternalReference ExternalReference::address_of_real_stack_limit() {
588 return ExternalReference(StackGuard::address_of_real_jslimit());
589 }
590
591
587 ExternalReference ExternalReference::address_of_regexp_stack_limit() { 592 ExternalReference ExternalReference::address_of_regexp_stack_limit() {
588 return ExternalReference(RegExpStack::limit_address()); 593 return ExternalReference(RegExpStack::limit_address());
589 } 594 }
590 595
591 596
592 ExternalReference ExternalReference::new_space_start() { 597 ExternalReference ExternalReference::new_space_start() {
593 return ExternalReference(Heap::NewSpaceStart()); 598 return ExternalReference(Heap::NewSpaceStart());
594 } 599 }
595 600
596 601
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); 715 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break)));
711 } 716 }
712 717
713 718
714 ExternalReference ExternalReference::debug_step_in_fp_address() { 719 ExternalReference ExternalReference::debug_step_in_fp_address() {
715 return ExternalReference(Debug::step_in_fp_addr()); 720 return ExternalReference(Debug::step_in_fp_addr());
716 } 721 }
717 #endif 722 #endif
718 723
719 } } // namespace v8::internal 724 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/execution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698