Changeset 3b0f1b9a in mainline for kernel/arch/amd64/src/debug/stacktrace_asm.S
- Timestamp:
- 2016-04-12T05:57:00Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f792c28, d84398a7
- Parents:
- 8844e70
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/debug/stacktrace_asm.S
r8844e70 r3b0f1b9a 27 27 # 28 28 29 #include <abi/asmtool.h> 30 29 31 .text 30 32 31 .global frame_pointer_get 32 .global program_counter_get 33 34 frame_pointer_get: 33 FUNCTION_BEGIN(frame_pointer_get) 35 34 movq %rbp, %rax 36 35 ret 36 FUNCTION_END(frame_pointer_get) 37 37 38 program_counter_get: 38 FUNCTION_BEGIN(program_counter_get) 39 39 movq (%rsp), %rax 40 40 ret 41 FUNCTION_END(program_counter_get)
Note:
See TracChangeset
for help on using the changeset viewer.