Writing on Guile optimization: what are anon #x... functions?

2024-04-05 Thread Artyom Bologov
Hi y'all, I'm making a blog post on Guile optimization gotchas I learned. But I find that one piece of the picture is missing there: anon functions in the profiler output. Like "anon #x117f408" One of these functions eats up a lot of performance in my code. So I can't say I'm an expert on optimiz

Re: Writing on Guile optimization: what are anon #x... functions?

2024-04-05 Thread Olivier Dion
On Sat, 06 Apr 2024, Artyom Bologov wrote: > Hi y'all, > > I'm making a blog post on Guile optimization gotchas I learned. But I > find that one piece of the picture is missing there: anon functions in > the profiler output. Like "anon #x117f408" Anonymous, i.e. lambda? [...] -- Olivier Dion ol

Re: Writing on Guile optimization: what are anon #x... functions?

2024-04-05 Thread Artyom Bologov
Hi Olivier >Anonymous, i.e. lambda? No, lambdas display as :xxx:yyy: where x is lines y is columns. So anon functions are something else. -- Artyom.