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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 | 747 |
748 static bool DebuggerWantsEagerCompilation(CompilationInfo* info, | 748 static bool DebuggerWantsEagerCompilation(CompilationInfo* info, |
749 bool allow_lazy_without_ctx = false) { | 749 bool allow_lazy_without_ctx = false) { |
750 return LiveEditFunctionTracker::IsActive(info->isolate()) || | 750 return LiveEditFunctionTracker::IsActive(info->isolate()) || |
751 (info->isolate()->DebuggerHasBreakPoints() && !allow_lazy_without_ctx); | 751 (info->isolate()->DebuggerHasBreakPoints() && !allow_lazy_without_ctx); |
752 } | 752 } |
753 | 753 |
754 | 754 |
755 static Handle<SharedFunctionInfo> CompileToplevel(CompilationInfo* info) { | 755 static Handle<SharedFunctionInfo> CompileToplevel(CompilationInfo* info) { |
756 Isolate* isolate = info->isolate(); | 756 Isolate* isolate = info->isolate(); |
| 757 PostponeInterruptsScope postpone(isolate); |
757 ASSERT(!isolate->native_context().is_null()); | 758 ASSERT(!isolate->native_context().is_null()); |
758 Handle<Script> script = info->script(); | 759 Handle<Script> script = info->script(); |
759 | 760 |
760 // TODO(svenpanne) Obscure place for this, perhaps move to OnBeforeCompile? | 761 // TODO(svenpanne) Obscure place for this, perhaps move to OnBeforeCompile? |
761 FixedArray* array = isolate->native_context()->embedder_data(); | 762 FixedArray* array = isolate->native_context()->embedder_data(); |
762 script->set_context_data(array->get(0)); | 763 script->set_context_data(array->get(0)); |
763 | 764 |
764 #ifdef ENABLE_DEBUGGER_SUPPORT | 765 #ifdef ENABLE_DEBUGGER_SUPPORT |
765 isolate->debugger()->OnBeforeCompile(script); | 766 isolate->debugger()->OnBeforeCompile(script); |
766 #endif | 767 #endif |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1284 AllowHandleDereference allow_deref; | 1285 AllowHandleDereference allow_deref; |
1285 bool tracing_on = info()->IsStub() | 1286 bool tracing_on = info()->IsStub() |
1286 ? FLAG_trace_hydrogen_stubs | 1287 ? FLAG_trace_hydrogen_stubs |
1287 : (FLAG_trace_hydrogen && | 1288 : (FLAG_trace_hydrogen && |
1288 info()->closure()->PassesFilter(FLAG_trace_hydrogen_filter)); | 1289 info()->closure()->PassesFilter(FLAG_trace_hydrogen_filter)); |
1289 return (tracing_on && | 1290 return (tracing_on && |
1290 OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL); | 1291 OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL); |
1291 } | 1292 } |
1292 | 1293 |
1293 } } // namespace v8::internal | 1294 } } // namespace v8::internal |
OLD | NEW |