When looking at the backtrace in lldb, I'm sitting on frame #0, and attempt to move "down" the stack, but lldb says:
(lldb) down
error: Already at the bottom of the stack
In my mind, I'm sitting at the top of the stack, since it's the top-most stack frame. Even the lldb commands to move up
or down
the stack seem backwards. Moving down, for example, will move from frame #1 to frame #0, with frame #0 being the frame I broke on. Any ideas why they are backwards? Or why I'm backwards? Or am I misses an essential concept of call stacks?