Results 261 comments of Bartosz Taudul

Interesting. The callstack you see is basically doing a memcpy of a memory fragment contained in the memory mapping of the program executable image, or mappings of loaded libraries. I...

> but the read is oddly large (832 bytes). This is what you could reasonably expect from a symbol code fragment. > Which seems like a weird pointer to get...

I think it would be best to focus on why you are getting wrong PCs, rather than on workarounds.

A similar problem may have been recently described by Raymond Chen: https://devblogs.microsoft.com/oldnewthing/20220527-00/?p=106689 There is some memory mapping checking already done in Tracy, but only on Android. Maybe it could be...

> useful info? No. The base address of a symbol has to be known, otherwise the machine code couldn't be retrieved. It obviously is retrieved, as you are able to...

The following image shows anatomy of a symbol. It may be of some help. ![symbol](https://user-images.githubusercontent.com/600573/168423641-99fece61-60d3-4521-94fb-797bef2f3485.png) Example: Symbol = `sort` Inline function = `operator

I have just fixed a rather nasty regression with 5a36782c. It was introduced in 18112d3c6, in April, which nicely lines up with this issue submission date. Please check if your...

There is no way to change how the "main" frames work.

For fibers I am imagining a separate thread-like track, which will present a continuous zone graph. Implementing flow events would present several difficulties: - Instrumentation would be the resposibility of...

The investigation into this feature had stopped when it became apparent that the fiber implementations I was provided don't have clear entry and leave points defined, making me chase elusive...