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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 #ifdef ENABLE_DEBUGGER_SUPPORT | 584 #ifdef ENABLE_DEBUGGER_SUPPORT |
585 Object* Execution::DebugBreakHelper() { | 585 Object* Execution::DebugBreakHelper() { |
586 // Just continue if breaks are disabled. | 586 // Just continue if breaks are disabled. |
587 if (Debug::disable_break()) { | 587 if (Debug::disable_break()) { |
588 return Heap::undefined_value(); | 588 return Heap::undefined_value(); |
589 } | 589 } |
590 | 590 |
591 // Collect the break state before clearing the flags. | 591 // Collect the break state before clearing the flags. |
592 bool debug_command_only = | 592 bool debug_command_only = |
593 StackGuard::IsDebugCommand() && !StackGuard::IsDebugBreak(); | 593 StackGuard::IsDebugCommand() && !StackGuard::IsDebugBreak(); |
594 bool is_debug_break = StackGuard::IsDebugBreak(); | |
595 | 594 |
596 // Clear the debug request flags. | 595 // Clear the debug request flags. |
597 StackGuard::Continue(DEBUGBREAK); | 596 StackGuard::Continue(DEBUGBREAK); |
598 StackGuard::Continue(DEBUGCOMMAND); | 597 StackGuard::Continue(DEBUGCOMMAND); |
599 | 598 |
600 HandleScope scope; | 599 HandleScope scope; |
601 // Enter the debugger. Just continue if we fail to enter the debugger. | 600 // Enter the debugger. Just continue if we fail to enter the debugger. |
602 EnterDebugger debugger; | 601 EnterDebugger debugger; |
603 if (debugger.FailedToEnter()) { | 602 if (debugger.FailedToEnter()) { |
604 return Heap::undefined_value(); | 603 return Heap::undefined_value(); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 // All allocation spaces other than NEW_SPACE have the same effect. | 642 // All allocation spaces other than NEW_SPACE have the same effect. |
644 Heap::CollectAllGarbage(); | 643 Heap::CollectAllGarbage(); |
645 return v8::Undefined(); | 644 return v8::Undefined(); |
646 } | 645 } |
647 | 646 |
648 | 647 |
649 static GCExtension kGCExtension; | 648 static GCExtension kGCExtension; |
650 v8::DeclareExtension kGCExtensionDeclaration(&kGCExtension); | 649 v8::DeclareExtension kGCExtensionDeclaration(&kGCExtension); |
651 | 650 |
652 } } // namespace v8::internal | 651 } } // namespace v8::internal |
OLD | NEW |