[binutils-gdb/binutils-2_46-branch] sframe: doc: minor fixups in language for clarity
Indu Bhagat
ibhagat@sourceware.org
Fri Feb 6 19:10:49 GMT 2026
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=fd2048da80b1779fac4f1386d808df911e36b3be
commit fd2048da80b1779fac4f1386d808df911e36b3be
Author: Indu Bhagat <indu.bhagat@oracle.com>
Date: Thu Feb 5 23:17:41 2026 -0800
sframe: doc: minor fixups in language for clarity
libsframe/doc/
* sframe-spec.texi: Minor language and formatting fixup.
(cherry picked from commit 2c4129c4cc3e715baa78a9327368a079b58bebeb)
Diff:
---
libsframe/doc/sframe-spec.texi | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/libsframe/doc/sframe-spec.texi b/libsframe/doc/sframe-spec.texi
index b54c7bee484..215aca8d685 100644
--- a/libsframe/doc/sframe-spec.texi
+++ b/libsframe/doc/sframe-spec.texi
@@ -80,9 +80,9 @@ Appendices
@section Overview
@cindex Overview
-The SFrame stack trace information is provided in a loaded section, known as
-the @code{.sframe} section. When available, the @code{.sframe} section appears
-in segment of type @code{PT_GNU_SFRAME}. An ELF SFrame section will have the type
+The SFrame stack trace information is provided in a loaded section, named
+@code{.sframe}. When available, the @code{.sframe} section appears in segment
+of type @code{PT_GNU_SFRAME}. An ELF SFrame section will have the type
@code{SHT_GNU_SFRAME}.
The SFrame format is currently supported only for select ABIs, namely, AMD64,
@@ -1253,19 +1253,19 @@ Examples:
@itemize @bullet
@item
CFA = *(RBP - 8): (Typical DRAP pattern on AMD64)
-@* Offset 1: @code{(RBP << 3) | (1 << 1) | 1} (Reg RBP, deref_p=True, reg_p=True)
-@* Offset 2: @code{-8}
+@* Data Word 1: @code{(RBP << 3) | (1 << 1) | 1} (Reg RBP, deref_p=True, reg_p=True)
+@* Data Word 2: @code{-8}
@item
FP = *(RBP + 0):
-@* Offset 1: @code{(RBP << 3) | (1 << 1) | 1} (Reg RBP, deref_p=True, reg_p=True)
-@* Offset 2: @code{0}
+@* Data Word 1: @code{(RBP << 3) | (1 << 1) | 1} (Reg RBP, deref_p=True, reg_p=True)
+@* Data Word 2: @code{0}
@item
RA = *(CFA - 8): (Standard RA recovery on AMD64)
-@* Offset 1: @code{(0 << 3 | (1 << 1) | 0)} (reg_p=False, implies Base=CFA,
+@* Data Word 1: @code{(0 << 3 | (1 << 1) | 0)} (reg_p=False, implies Base=CFA,
deref_p=True by implication of standard stack save)
-@* Offset 2: @code{-8}
+@* Data Word 2: @code{-8}
@end itemize
If the FDE type is @code{SFRAME_FDE_TYPE_FLEX}, the FRE bytes are interpreted
More information about the Binutils-cvs
mailing list