mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-28 10:15:10 +01:00
Fix incorrect source file name for inlined frames
Processor shows incorrect source file name if a frame have an inlined frame and their source files are different. Consider this example: FILE 0 /tmp/a.h FILE 1 /tmp/a.cpp INLINE_ORIGIN 0 0 foo() FUNC 1110 a 0 main INLINE 0 22 0 1110 7 1110 7 3 0 1117 3 23 1 When querying the address 0x1110, we know this line 0x1110 corresponds to /tmp/a.h line 3 and it's inside a inlined function foo() which is defined at /tmp/a.h and called at line 22. But we don't know at which file it's being called at line 22. So, we will get stacks like this: void foo() /tmp/a.h:3 int main() /tmp/a.h:22 The correct stacks should be this: void foo() /tmp/a.h:3 int main() /tmp/a.cpp:22 In this change: 1. Remove file_id field for INLINE_ORIGIN record. 2. Add call_site_file_id for INLINE record to represents the file where this call being inlined. After adding call_site_file_id to it (as third field), it looks like this: FILE 0 /tmp/a.h FILE 1 /tmp/a.cpp INLINE_ORIGIN 0 foo() FUNC 1110 a 0 main INLINE 0 22 1 0 1110 7 1110 7 3 0 1117 3 23 1 Bug: 1190878 Change-Id: Ibbb697d2f7e1b6ac3208cac6fae4353c8743198d Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/3232838 Reviewed-by: Joshua Peraza <jperaza@chromium.org>
This commit is contained in:
parent
71387fc200
commit
54d878abcb
18 changed files with 223 additions and 214 deletions
|
|
@ -1,13 +1,16 @@
|
|||
MODULE Linux x86_64 BBA6FA10B8AAB33D00000000000000000 linux_inline
|
||||
INFO CODE_ID 10FAA6BBAAB83DB3
|
||||
FILE 0 linux_inline.cpp
|
||||
INLINE_ORIGIN 0 0 bar()
|
||||
INLINE_ORIGIN 1 0 foo()
|
||||
INLINE_ORIGIN 2 0 func()
|
||||
FILE 1 a.cpp
|
||||
FILE 2 b.cpp
|
||||
FILE 3 c.cpp
|
||||
INLINE_ORIGIN 0 bar()
|
||||
INLINE_ORIGIN 1 foo()
|
||||
INLINE_ORIGIN 2 func()
|
||||
FUNC 15b30 6cf 0 main
|
||||
INLINE 0 42 1 15b45 6b1
|
||||
INLINE 1 39 0 15b72 684
|
||||
INLINE 2 32 2 15b83 673
|
||||
INLINE 0 42 1 1 15b45 6b1
|
||||
INLINE 1 39 2 0 15b72 684
|
||||
INLINE 2 32 3 2 15b83 673
|
||||
15b30 15 41 0
|
||||
15b45 11 36 0
|
||||
15b56 a 37 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue