Revision: 5727
Author: [email protected]
Date: Thu Oct 28 09:48:10 2010
Log: ll_prof: minor fixes to the issues found while running with chromium.

Review URL: http://codereview.chromium.org/4097011
http://code.google.com/p/v8/source/detail?r=5727

Modified:
 /branches/bleeding_edge/tools/ll_prof.py

=======================================
--- /branches/bleeding_edge/tools/ll_prof.py    Tue Oct 19 09:45:11 2010
+++ /branches/bleeding_edge/tools/ll_prof.py    Thu Oct 28 09:48:10 2010
@@ -353,7 +353,7 @@
     r"code-info,([^,]+),(\d+)")

   _CODE_CREATE_RE = re.compile(
-    r"code-creation,([^,]+),(0x[a-f0-9]+),(\d+),\"([^\"]*)\"(?:,(\d+))?")
+    r"code-creation,([^,]+),(0x[a-f0-9]+),(\d+),\"(.*)\"(?:,(\d+))?")

   _CODE_MOVE_RE = re.compile(
     r"code-move,(0x[a-f0-9]+),(0x[a-f0-9]+)")
@@ -910,7 +910,7 @@
       start = time.time()
       mmap_info = trace_reader.ReadMmap(header, offset)
       if mmap_info.filename == V8_GC_FAKE_MMAP:
-        log_reader.ReadUpToGC()
+        log_reader.ReadUpToGC(code_info)
       else:
         library_repo.Load(mmap_info, code_map, options)
       mmap_time += time.time() - start

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to