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

Side by Side Diff: src/compiler.cc

Issue 18058008: CPUProfiler: Improve line numbers support in profiler. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: cosmetic changes Created 7 years, 5 months 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 | src/cpu-profiler.h » ('j') | 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 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1193 1193
1194 // Log the code generation. If source information is available include 1194 // Log the code generation. If source information is available include
1195 // script name and line number. Check explicitly whether logging is 1195 // script name and line number. Check explicitly whether logging is
1196 // enabled as finding the line number is not free. 1196 // enabled as finding the line number is not free.
1197 if (info->isolate()->logger()->is_logging_code_events() || 1197 if (info->isolate()->logger()->is_logging_code_events() ||
1198 info->isolate()->cpu_profiler()->is_profiling()) { 1198 info->isolate()->cpu_profiler()->is_profiling()) {
1199 Handle<Script> script = info->script(); 1199 Handle<Script> script = info->script();
1200 Handle<Code> code = info->code(); 1200 Handle<Code> code = info->code();
1201 if (*code == info->isolate()->builtins()->builtin(Builtins::kLazyCompile)) 1201 if (*code == info->isolate()->builtins()->builtin(Builtins::kLazyCompile))
1202 return; 1202 return;
1203 int line_num = GetScriptLineNumber(script, shared->start_position()) + 1;
1204 USE(line_num);
yurys 2013/07/06 05:03:22 It seems that you can drop this line as line_num i
1203 if (script->name()->IsString()) { 1205 if (script->name()->IsString()) {
1204 int line_num = GetScriptLineNumber(script, shared->start_position()) + 1;
1205 USE(line_num);
1206 PROFILE(info->isolate(), 1206 PROFILE(info->isolate(),
1207 CodeCreateEvent(Logger::ToNativeByScript(tag, *script), 1207 CodeCreateEvent(Logger::ToNativeByScript(tag, *script),
1208 *code, 1208 *code,
1209 *shared, 1209 *shared,
1210 info, 1210 info,
1211 String::cast(script->name()), 1211 String::cast(script->name()),
1212 line_num)); 1212 line_num));
1213 } else { 1213 } else {
1214 PROFILE(info->isolate(), 1214 PROFILE(info->isolate(),
1215 CodeCreateEvent(Logger::ToNativeByScript(tag, *script), 1215 CodeCreateEvent(Logger::ToNativeByScript(tag, *script),
1216 *code, 1216 *code,
1217 *shared, 1217 *shared,
1218 info, 1218 info,
1219 shared->DebugName())); 1219 info->isolate()->heap()->empty_string(),
1220 line_num));
1220 } 1221 }
1221 } 1222 }
1222 1223
1223 GDBJIT(AddCode(Handle<String>(shared->DebugName()), 1224 GDBJIT(AddCode(Handle<String>(shared->DebugName()),
1224 Handle<Script>(info->script()), 1225 Handle<Script>(info->script()),
1225 Handle<Code>(info->code()), 1226 Handle<Code>(info->code()),
1226 info)); 1227 info));
1227 } 1228 }
1228 1229
1229 1230
(...skipping 17 matching lines...) Expand all
1247 1248
1248 1249
1249 bool CompilationPhase::ShouldProduceTraceOutput() const { 1250 bool CompilationPhase::ShouldProduceTraceOutput() const {
1250 // Produce trace output if flag is set so that the first letter of the 1251 // Produce trace output if flag is set so that the first letter of the
1251 // phase name matches the command line parameter FLAG_trace_phase. 1252 // phase name matches the command line parameter FLAG_trace_phase.
1252 return (FLAG_trace_hydrogen && 1253 return (FLAG_trace_hydrogen &&
1253 OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL); 1254 OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL);
1254 } 1255 }
1255 1256
1256 } } // namespace v8::internal 1257 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/cpu-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698