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

Unified Diff: src/lithium.cc

Issue 11552033: This patch is the propagation version of https://codereview.chromium.org/10824032 patch (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: src/lithium.cc
===================================================================
--- src/lithium.cc (revision 13276)
+++ src/lithium.cc (working copy)
@@ -416,6 +416,12 @@
Handle<Code> LChunk::Codegen(Code::Kind kind) {
MacroAssembler assembler(info()->isolate(), NULL, 0);
+ if (info()->isolate()->logger()->is_code_event_handler_enabled()) {
+ JITCodeLineInfo* lineinfo =
+ assembler.positions_recorder()->InitializeJITLineInfo();
+ LOG_CODE_EVENT(info()->isolate(),
+ CodeStartLinePosInfoRecordEvent(lineinfo));
+ }
LCodeGen generator(this, &assembler, info());
MarkEmptyBlocks();
@@ -429,6 +435,15 @@
Handle<Code> code =
CodeGenerator::MakeCodeEpilogue(&assembler, flags, info());
generator.FinishCode(code);
+
+ if (info()->isolate()->logger()->is_code_event_handler_enabled()) {
+ if (!code.is_null()) {
+ JITCodeLineInfo* lineinfo =
+ assembler.positions_recorder()->DetachJITLineInfo();
+ LOG_CODE_EVENT(info()->isolate(),
+ CodeEndLinePosInfoRecordEvent(*code, lineinfo));
+ }
+ }
CodeGenerator::PrintCode(code, info());
return code;
}

Powered by Google App Engine
This is Rietveld 408576698