OLD | NEW |
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 2543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2554 // Before creating the roots we must save the context and restore it | 2554 // Before creating the roots we must save the context and restore it |
2555 // on all function exits. | 2555 // on all function exits. |
2556 SaveContext saved_context(isolate); | 2556 SaveContext saved_context(isolate); |
2557 | 2557 |
2558 // During genesis, the boilerplate for stack overflow won't work until the | 2558 // During genesis, the boilerplate for stack overflow won't work until the |
2559 // environment has been at least partially initialized. Add a stack check | 2559 // environment has been at least partially initialized. Add a stack check |
2560 // before entering JS code to catch overflow early. | 2560 // before entering JS code to catch overflow early. |
2561 StackLimitCheck check(isolate); | 2561 StackLimitCheck check(isolate); |
2562 if (check.HasOverflowed()) return; | 2562 if (check.HasOverflowed()) return; |
2563 | 2563 |
2564 native_context_ = Snapshot::NewContextFromSnapshot(); | 2564 // TODO(siggi): DO NOT SUBMIT |
| 2565 native_context_ = Handle<Context>(); // Snapshot::NewContextFromSnapshot(); |
2565 if (!native_context().is_null()) { | 2566 if (!native_context().is_null()) { |
2566 AddToWeakNativeContextList(*native_context()); | 2567 AddToWeakNativeContextList(*native_context()); |
2567 isolate->set_context(*native_context()); | 2568 isolate->set_context(*native_context()); |
2568 isolate->counters()->contexts_created_by_snapshot()->Increment(); | 2569 isolate->counters()->contexts_created_by_snapshot()->Increment(); |
2569 Handle<GlobalObject> inner_global; | 2570 Handle<GlobalObject> inner_global; |
2570 Handle<JSGlobalProxy> global_proxy = | 2571 Handle<JSGlobalProxy> global_proxy = |
2571 CreateNewGlobals(global_template, | 2572 CreateNewGlobals(global_template, |
2572 global_object, | 2573 global_object, |
2573 &inner_global); | 2574 &inner_global); |
2574 | 2575 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2626 return from + sizeof(NestingCounterType); | 2627 return from + sizeof(NestingCounterType); |
2627 } | 2628 } |
2628 | 2629 |
2629 | 2630 |
2630 // Called when the top-level V8 mutex is destroyed. | 2631 // Called when the top-level V8 mutex is destroyed. |
2631 void Bootstrapper::FreeThreadResources() { | 2632 void Bootstrapper::FreeThreadResources() { |
2632 ASSERT(!IsActive()); | 2633 ASSERT(!IsActive()); |
2633 } | 2634 } |
2634 | 2635 |
2635 } } // namespace v8::internal | 2636 } } // namespace v8::internal |
OLD | NEW |