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

Side by Side Diff: src/compiler.cc

Issue 119763005: Add missing PostponeInterruptsScope. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698