mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:57:35 +00:00
LibJS: Lazily collect stack trace information
The previous implementation was calling `backtrace()` for every function call, which is quite slow. Instead, this implementation provides VM::stack_trace() which unwinds the native stack, maps it through NativeExecutable::get_source_range and combines it with source ranges from interpreted call frames.
This commit is contained in:
parent
77dc7c4d36
commit
68f4d21de2
11 changed files with 96 additions and 46 deletions
|
@ -6,6 +6,7 @@ shared_library("LibJS") {
|
|||
# FIXME: Why does LibSyntax need to depend on WindowServer headers?
|
||||
"//Userland",
|
||||
]
|
||||
cflags_cc = [ "-fno-omit-frame-pointer" ]
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue