In the sanitizer code, when you unwind the stack you can “request fast unwinding”
void BufferedStackTrace::Unwind(u32 max_depth, ..., bool request_fast_unwind);
What are the differences between fast and slow unwinding?
When is one more appropriate than the other?
Are there any hidden “costs” to fast unwinding?
Thank you