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

Side by Side Diff: src/compiler.cc

Issue 796823002: Disable generating of code cache if the debugger is loaded (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 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
« no previous file with comments | « src/compiler.h ('k') | 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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/compiler.h" 7 #include "src/compiler.h"
8 8
9 #include "src/ast-numbering.h" 9 #include "src/ast-numbering.h"
10 #include "src/ast-this-access-visitor.h" 10 #include "src/ast-this-access-visitor.h"
(...skipping 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after
1277 int source_length = source->length(); 1277 int source_length = source->length();
1278 isolate->counters()->total_load_size()->Increment(source_length); 1278 isolate->counters()->total_load_size()->Increment(source_length);
1279 isolate->counters()->total_compile_size()->Increment(source_length); 1279 isolate->counters()->total_compile_size()->Increment(source_length);
1280 1280
1281 CompilationCache* compilation_cache = isolate->compilation_cache(); 1281 CompilationCache* compilation_cache = isolate->compilation_cache();
1282 1282
1283 // Do a lookup in the compilation cache but not for extensions. 1283 // Do a lookup in the compilation cache but not for extensions.
1284 MaybeHandle<SharedFunctionInfo> maybe_result; 1284 MaybeHandle<SharedFunctionInfo> maybe_result;
1285 Handle<SharedFunctionInfo> result; 1285 Handle<SharedFunctionInfo> result;
1286 if (extension == NULL) { 1286 if (extension == NULL) {
1287 if (FLAG_serialize_toplevel && 1287 if (IsCodeCachingActive(isolate) &&
vogelheim 2014/12/11 11:06:22 I'd prefer to check the condition once upfront and
1288 compile_options == ScriptCompiler::kConsumeCodeCache && 1288 compile_options == ScriptCompiler::kConsumeCodeCache) {
1289 !isolate->debug()->is_loaded()) {
1290 HistogramTimerScope timer(isolate->counters()->compile_deserialize()); 1289 HistogramTimerScope timer(isolate->counters()->compile_deserialize());
1291 Handle<SharedFunctionInfo> result; 1290 Handle<SharedFunctionInfo> result;
1292 if (CodeSerializer::Deserialize(isolate, *cached_data, source) 1291 if (CodeSerializer::Deserialize(isolate, *cached_data, source)
1293 .ToHandle(&result)) { 1292 .ToHandle(&result)) {
1294 return result; 1293 return result;
1295 } 1294 }
1296 // Deserializer failed. Fall through to compile. 1295 // Deserializer failed. Fall through to compile.
1297 } else { 1296 } else {
1298 maybe_result = compilation_cache->LookupScript( 1297 maybe_result = compilation_cache->LookupScript(
1299 source, script_name, line_offset, column_offset, 1298 source, script_name, line_offset, column_offset,
1300 is_shared_cross_origin, context); 1299 is_shared_cross_origin, context);
1301 } 1300 }
1302 } 1301 }
1303 1302
1304 base::ElapsedTimer timer; 1303 base::ElapsedTimer timer;
1305 if (FLAG_profile_deserialization && FLAG_serialize_toplevel && 1304 if (FLAG_profile_deserialization && IsCodeCachingActive(isolate) &&
1306 compile_options == ScriptCompiler::kProduceCodeCache) { 1305 compile_options == ScriptCompiler::kProduceCodeCache) {
1307 timer.Start(); 1306 timer.Start();
1308 } 1307 }
1309 1308
1310 if (!maybe_result.ToHandle(&result)) { 1309 if (!maybe_result.ToHandle(&result)) {
1311 // No cache entry found. Compile the script. 1310 // No cache entry found. Compile the script.
1312 1311
1313 // Create a script object describing the script to be compiled. 1312 // Create a script object describing the script to be compiled.
1314 Handle<Script> script = isolate->factory()->NewScript(source); 1313 Handle<Script> script = isolate->factory()->NewScript(source);
1315 if (natives == NATIVES_CODE) { 1314 if (natives == NATIVES_CODE) {
1316 script->set_type(Smi::FromInt(Script::TYPE_NATIVE)); 1315 script->set_type(Smi::FromInt(Script::TYPE_NATIVE));
1317 } 1316 }
1318 if (!script_name.is_null()) { 1317 if (!script_name.is_null()) {
1319 script->set_name(*script_name); 1318 script->set_name(*script_name);
1320 script->set_line_offset(Smi::FromInt(line_offset)); 1319 script->set_line_offset(Smi::FromInt(line_offset));
1321 script->set_column_offset(Smi::FromInt(column_offset)); 1320 script->set_column_offset(Smi::FromInt(column_offset));
1322 } 1321 }
1323 script->set_is_shared_cross_origin(is_shared_cross_origin); 1322 script->set_is_shared_cross_origin(is_shared_cross_origin);
1324 1323
1325 // Compile the function and add it to the cache. 1324 // Compile the function and add it to the cache.
1326 CompilationInfoWithZone info(script); 1325 CompilationInfoWithZone info(script);
1327 info.MarkAsGlobal(); 1326 info.MarkAsGlobal();
1328 info.SetCachedData(cached_data, compile_options); 1327 info.SetCachedData(cached_data, compile_options);
1329 info.SetExtension(extension); 1328 info.SetExtension(extension);
1330 info.SetContext(context); 1329 info.SetContext(context);
1331 if (FLAG_serialize_toplevel && 1330 if (IsCodeCachingActive(isolate) &&
1332 compile_options == ScriptCompiler::kProduceCodeCache) { 1331 compile_options == ScriptCompiler::kProduceCodeCache) {
1333 info.PrepareForSerializing(); 1332 info.PrepareForSerializing();
1334 } 1333 }
1335 if (FLAG_use_strict) info.SetStrictMode(STRICT); 1334 if (FLAG_use_strict) info.SetStrictMode(STRICT);
1336 1335
1337 result = CompileToplevel(&info); 1336 result = CompileToplevel(&info);
1338 if (extension == NULL && !result.is_null() && !result->dont_cache()) { 1337 if (extension == NULL && !result.is_null() && !result->dont_cache()) {
1339 compilation_cache->PutScript(source, context, result); 1338 compilation_cache->PutScript(source, context, result);
1340 if (FLAG_serialize_toplevel && 1339 if (IsCodeCachingActive(isolate) &&
1341 compile_options == ScriptCompiler::kProduceCodeCache) { 1340 compile_options == ScriptCompiler::kProduceCodeCache) {
1342 HistogramTimerScope histogram_timer( 1341 HistogramTimerScope histogram_timer(
1343 isolate->counters()->compile_serialize()); 1342 isolate->counters()->compile_serialize());
1344 *cached_data = CodeSerializer::Serialize(isolate, result, source); 1343 *cached_data = CodeSerializer::Serialize(isolate, result, source);
1345 if (FLAG_profile_deserialization) { 1344 if (FLAG_profile_deserialization) {
1346 PrintF("[Compiling and serializing took %0.3f ms]\n", 1345 PrintF("[Compiling and serializing took %0.3f ms]\n",
1347 timer.Elapsed().InMillisecondsF()); 1346 timer.Elapsed().InMillisecondsF());
1348 } 1347 }
1349 } 1348 }
1350 } 1349 }
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
1544 1543
1545 bool Compiler::DebuggerWantsEagerCompilation(CompilationInfo* info, 1544 bool Compiler::DebuggerWantsEagerCompilation(CompilationInfo* info,
1546 bool allow_lazy_without_ctx) { 1545 bool allow_lazy_without_ctx) {
1547 if (LiveEditFunctionTracker::IsActive(info->isolate())) return true; 1546 if (LiveEditFunctionTracker::IsActive(info->isolate())) return true;
1548 Debug* debug = info->isolate()->debug(); 1547 Debug* debug = info->isolate()->debug();
1549 bool debugging = debug->is_active() || debug->has_break_points(); 1548 bool debugging = debug->is_active() || debug->has_break_points();
1550 return debugging && !allow_lazy_without_ctx; 1549 return debugging && !allow_lazy_without_ctx;
1551 } 1550 }
1552 1551
1553 1552
1553 bool Compiler::IsCodeCachingActive(Isolate* isolate) {
1554 return FLAG_serialize_toplevel && !isolate->debug()->is_loaded();
1555 }
1556
1557
1554 CompilationPhase::CompilationPhase(const char* name, CompilationInfo* info) 1558 CompilationPhase::CompilationPhase(const char* name, CompilationInfo* info)
1555 : name_(name), info_(info), zone_(info->isolate()) { 1559 : name_(name), info_(info), zone_(info->isolate()) {
1556 if (FLAG_hydrogen_stats) { 1560 if (FLAG_hydrogen_stats) {
1557 info_zone_start_allocation_size_ = info->zone()->allocation_size(); 1561 info_zone_start_allocation_size_ = info->zone()->allocation_size();
1558 timer_.Start(); 1562 timer_.Start();
1559 } 1563 }
1560 } 1564 }
1561 1565
1562 1566
1563 CompilationPhase::~CompilationPhase() { 1567 CompilationPhase::~CompilationPhase() {
(...skipping 11 matching lines...) Expand all
1575 AllowHandleDereference allow_deref; 1579 AllowHandleDereference allow_deref;
1576 bool tracing_on = info()->IsStub() 1580 bool tracing_on = info()->IsStub()
1577 ? FLAG_trace_hydrogen_stubs 1581 ? FLAG_trace_hydrogen_stubs
1578 : (FLAG_trace_hydrogen && 1582 : (FLAG_trace_hydrogen &&
1579 info()->closure()->PassesFilter(FLAG_trace_hydrogen_filter)); 1583 info()->closure()->PassesFilter(FLAG_trace_hydrogen_filter));
1580 return (tracing_on && 1584 return (tracing_on &&
1581 base::OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL); 1585 base::OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL);
1582 } 1586 }
1583 1587
1584 } } // namespace v8::internal 1588 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/compiler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698