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 12 matching lines...) Expand all Loading... |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #include <stdlib.h> | 28 #include <stdlib.h> |
29 | 29 |
30 #include "v8.h" | 30 #include "v8.h" |
31 | 31 |
32 #include "api.h" | 32 #include "api.h" |
| 33 #include "bootstrapper.h" |
33 #include "codegen-inl.h" | 34 #include "codegen-inl.h" |
34 #include "debug.h" | 35 #include "debug.h" |
35 #include "simulator.h" | 36 #include "simulator.h" |
36 #include "v8threads.h" | 37 #include "v8threads.h" |
37 | 38 |
38 namespace v8 { | 39 namespace v8 { |
39 namespace internal { | 40 namespace internal { |
40 | 41 |
41 | 42 |
42 static Handle<Object> Invoke(bool construct, | 43 static Handle<Object> Invoke(bool construct, |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
600 } | 601 } |
601 | 602 |
602 | 603 |
603 #ifdef ENABLE_DEBUGGER_SUPPORT | 604 #ifdef ENABLE_DEBUGGER_SUPPORT |
604 Object* Execution::DebugBreakHelper() { | 605 Object* Execution::DebugBreakHelper() { |
605 // Just continue if breaks are disabled. | 606 // Just continue if breaks are disabled. |
606 if (Debug::disable_break()) { | 607 if (Debug::disable_break()) { |
607 return Heap::undefined_value(); | 608 return Heap::undefined_value(); |
608 } | 609 } |
609 | 610 |
| 611 // Ignore debug break during bootstrapping. |
| 612 if (Bootstrapper::IsActive()) { |
| 613 return Heap::undefined_value(); |
| 614 } |
| 615 |
610 { | 616 { |
611 JavaScriptFrameIterator it; | 617 JavaScriptFrameIterator it; |
612 ASSERT(!it.done()); | 618 ASSERT(!it.done()); |
613 Object* fun = it.frame()->function(); | 619 Object* fun = it.frame()->function(); |
614 if (fun && fun->IsJSFunction()) { | 620 if (fun && fun->IsJSFunction()) { |
615 // Don't stop in builtin functions. | 621 // Don't stop in builtin functions. |
616 if (JSFunction::cast(fun)->IsBuiltin()) { | 622 if (JSFunction::cast(fun)->IsBuiltin()) { |
617 return Heap::undefined_value(); | 623 return Heap::undefined_value(); |
618 } | 624 } |
619 GlobalObject* global = JSFunction::cast(fun)->context()->global(); | 625 GlobalObject* global = JSFunction::cast(fun)->context()->global(); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
682 // All allocation spaces other than NEW_SPACE have the same effect. | 688 // All allocation spaces other than NEW_SPACE have the same effect. |
683 Heap::CollectAllGarbage(false); | 689 Heap::CollectAllGarbage(false); |
684 return v8::Undefined(); | 690 return v8::Undefined(); |
685 } | 691 } |
686 | 692 |
687 | 693 |
688 static GCExtension kGCExtension; | 694 static GCExtension kGCExtension; |
689 v8::DeclareExtension kGCExtensionDeclaration(&kGCExtension); | 695 v8::DeclareExtension kGCExtensionDeclaration(&kGCExtension); |
690 | 696 |
691 } } // namespace v8::internal | 697 } } // namespace v8::internal |
OLD | NEW |