|
|
|
|
|
by JoshMcguigan
1943 days ago
|
|
> Normally Luke would group the same functions together but since I don’t have debugging symbols I had to eyeball nearby addresses to guess if it’s the same place. I really enjoyed this article, but I do have a question about this part. Why would a single function be listed at mutliple addresses? |
|
And going down the call tree, it's also not the start address, but the return address - so the place where in the previous function called this one.
Without debug symbols there's no way to tell if we're inside the same function block or not - it's all just addresses somewhere in the machine code.