Merge pull request #4559 from haiodo/enable-profiler-filenames

Enable embedded profiler to display filenames.
This commit is contained in:
Andreas Rumpf
2016-08-02 17:13:33 +02:00
committed by GitHub
2 changed files with 23 additions and 12 deletions

View File

@@ -27,8 +27,11 @@ const
tickCountCorrection = 50_000
when not declared(system.StackTrace):
type StackTrace = array[0..20, cstring]
type StackTrace = object
lines: array[0..20, cstring]
files: array[0..20, cstring]
{.deprecated: [TStackTrace: StackTrace].}
proc `[]`*(st: StackTrace, i: int): cstring = st.lines[i]
# We use a simple hash table of bounded size to keep track of the stack traces:
type
@@ -39,7 +42,7 @@ type
{.deprecated: [TProfileEntry: ProfileEntry, TProfileData: ProfileData].}
proc `==`(a, b: StackTrace): bool =
for i in 0 .. high(a):
for i in 0 .. high(a.lines):
if a[i] != b[i]: return false
result = true
@@ -72,7 +75,7 @@ proc hookAux(st: StackTrace, costs: int) =
# this is quite performance sensitive!
when withThreads: acquire profilingLock
inc totalCalls
var last = high(st)
var last = high(st.lines)
while last > 0 and isNil(st[last]): dec last
var h = hash(pointer(st[last])) and high(profileData)
@@ -178,7 +181,7 @@ proc writeProfile() {.noconv.} =
var perProc = initCountTable[string]()
for i in 0..entries-1:
var dups = initSet[string]()
for ii in 0..high(StackTrace):
for ii in 0..high(StackTrace.lines):
let procname = profileData[i].st[ii]
if isNil(procname): break
let p = $procname
@@ -193,10 +196,11 @@ proc writeProfile() {.noconv.} =
writeLine(f, "Entry: ", i+1, "/", entries, " Calls: ",
profileData[i].total // totalCalls, " [sum: ", sum, "; ",
sum // totalCalls, "]")
for ii in 0..high(StackTrace):
for ii in 0..high(StackTrace.lines):
let procname = profileData[i].st[ii]
let filename = profileData[i].st.files[ii]
if isNil(procname): break
writeLine(f, " ", procname, " ", perProc[$procname] // totalCalls)
writeLine(f, " ", $filename & ": " & $procname, " ", perProc[$procname] // totalCalls)
close(f)
echo "... done"
else:

View File

@@ -19,10 +19,14 @@ const
MaxTraceLen = 20 # tracking the last 20 calls is enough
type
StackTrace* = array[0..MaxTraceLen-1, cstring]
StackTrace* = object
lines*: array[0..MaxTraceLen-1, cstring]
files*: array[0..MaxTraceLen-1, cstring]
ProfilerHook* = proc (st: StackTrace) {.nimcall.}
{.deprecated: [TStackTrace: StackTrace, TProfilerHook: ProfilerHook].}
proc `[]`*(st: StackTrace, i: int): cstring = st.lines[i]
proc captureStackTrace(f: PFrame, st: var StackTrace) =
const
firstCalls = 5
@@ -30,9 +34,10 @@ proc captureStackTrace(f: PFrame, st: var StackTrace) =
it = f
i = 0
total = 0
while it != nil and i <= high(st)-(firstCalls-1):
while it != nil and i <= high(st.lines)-(firstCalls-1):
# the (-1) is for the "..." entry
st[i] = it.procname
st.lines[i] = it.procname
st.files[i] = it.filename
inc(i)
inc(total)
it = it.prev
@@ -43,10 +48,12 @@ proc captureStackTrace(f: PFrame, st: var StackTrace) =
for j in 1..total-i-(firstCalls-1):
if b != nil: b = b.prev
if total != i:
st[i] = "..."
st.lines[i] = "..."
st.files[i] = "..."
inc(i)
while b != nil and i <= high(st):
st[i] = b.procname
while b != nil and i <= high(st.lines):
st.lines[i] = b.procname
st.files[i] = b.filename
inc(i)
b = b.prev