Home
last modified time | relevance | path

Searched refs:frame_record (Results 1 – 1 of 1) sorted by relevance

/external/arm-trusted-firmware/common/backtrace/
Dbacktrace.c33 struct frame_record { struct
35 struct frame_record *parent; argument
157 static bool is_valid_frame_record(struct frame_record *fr) in is_valid_frame_record()
159 return is_valid_object((uintptr_t)fr, sizeof(struct frame_record)); in is_valid_frame_record()
166 static struct frame_record *adjust_frame_record(struct frame_record *fr) in adjust_frame_record()
171 return (struct frame_record *)((uintptr_t)fr - 4U); in adjust_frame_record()
175 static void unwind_stack(struct frame_record *fr, uintptr_t current_pc, in unwind_stack()
261 struct frame_record *fr = __builtin_frame_address(0U); in backtrace()