Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
2fa94890
Commit
2fa94890
authored
Nov 23, 2016
by
danh-arm
Committed by
GitHub
Nov 23, 2016
Browse files
Merge pull request #763 from douglas-raillard-arm/dr/add_debug_frame_info
Add CFI debug frame information for ASM functions
parents
984d54bb
b91d935f
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/common/asm_macros_common.S
View file @
2fa94890
...
@@ -33,12 +33,30 @@
...
@@ -33,12 +33,30 @@
/
*
/
*
*
This
macro
is
used
to
create
a
function
label
and
place
the
*
This
macro
is
used
to
create
a
function
label
and
place
the
*
code
into
a
separate
text
section
based
on
the
function
name
*
code
into
a
separate
text
section
based
on
the
function
name
*
to
enable
elimination
of
unused
code
during
linking
*
to
enable
elimination
of
unused
code
during
linking
.
It
also
adds
*
basic
debug
information
to
enable
call
stack
printing
most
of
the
*
time
.
*/
*/
.
macro
func
_name
.
macro
func
_name
/
*
*
Add
Call
Frame
Information
entry
in
the
.
debug_frame
section
for
*
debugger
consumption
.
This
enables
callstack
printing
in
debuggers
.
*
This
does
not
use
any
space
in
the
final
loaded
binary
,
only
in
the
*
ELF
file
.
*
Note
that
a
function
manipulating
the
CFA
pointer
location
(
i
.
e
.
the
*
x29
frame
pointer
on
AArch64
)
should
declare
it
using
the
*
appropriate
.
cfi
*
directives
,
or
be
prepared
to
have
a
degraded
*
debugging
experience
.
*/
.
cfi_sections
.
debug_frame
.
section
.
text
.
\
_name
,
"ax"
.
section
.
text
.
\
_name
,
"ax"
.
type
\
_name
,
%
function
.
type
\
_name
,
%
function
.
func
\
_name
.
func
\
_name
/
*
*
.
cfi_startproc
and
.
cfi_endproc
are
needed
to
output
entries
in
*
.
debug_frame
*/
.
cfi_startproc
\
_name
:
\
_name
:
.
endm
.
endm
...
@@ -47,6 +65,7 @@
...
@@ -47,6 +65,7 @@
*/
*/
.
macro
endfunc
_name
.
macro
endfunc
_name
.
endfunc
.
endfunc
.
cfi_endproc
.
size
\
_name
,
.
-
\
_name
.
size
\
_name
,
.
-
\
_name
.
endm
.
endm
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment