mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-02-17 02:31:41 +01:00
Document behavior of r1 (gp) more accurately. Minor grammatical fixes.
(Logical change 1.59)
This commit is contained in:
parent
0d7a2e92b0
commit
eb6d0a751f
1 changed files with 34 additions and 28 deletions
|
@ -109,10 +109,16 @@ The following normal register name macros are available:
|
||||||
\item[\Const{UNW\_IA64\_GR}:] The base-index for general (integer)
|
\item[\Const{UNW\_IA64\_GR}:] The base-index for general (integer)
|
||||||
registers. Add an index in the range from 0..127 to get a
|
registers. Add an index in the range from 0..127 to get a
|
||||||
particular general register. For example, to access \texttt{r4},
|
particular general register. For example, to access \texttt{r4},
|
||||||
the index \Const{UNW\_IA64\_GR}\texttt{+4} should be used. Register
|
the index \Const{UNW\_IA64\_GR}\texttt{+4} should be used.
|
||||||
\texttt{r0} is read-only, and any attempt to write to index
|
Registers \texttt{r0} and \texttt{r1} (\texttt{gp}) are read-only,
|
||||||
\Const{UNW\_IA64\_GR}\texttt{+0} will result in an error
|
and any attempt to write them will result in an error
|
||||||
(\texttt{-}\Const{UNW\_EREADONLYREG}).
|
(\texttt{-}\Const{UNW\_EREADONLYREG}). Even though \texttt{r1} is
|
||||||
|
read-only, \Prog{libunwind} will automatically adjust its value if
|
||||||
|
the instruction-pointer (\Const{UNW\_IA64\_IP}) is modified. For
|
||||||
|
example, if \Const{UNW\_IA64\_IP} is set to a value inside a
|
||||||
|
function \Func{func}(), then reading
|
||||||
|
\Const{UNW\_IA64\_GR}\texttt{+1} will return the global-pointer
|
||||||
|
value for this function.
|
||||||
\item[\Const{UNW\_IA64\_NAT}:] The base-index for the NaT bits of the
|
\item[\Const{UNW\_IA64\_NAT}:] The base-index for the NaT bits of the
|
||||||
general (integer) registers. A non-zero value in these registers
|
general (integer) registers. A non-zero value in these registers
|
||||||
corresponds to a set NaT-bit. Add an index in the range from 0..127
|
corresponds to a set NaT-bit. Add an index in the range from 0..127
|
||||||
|
@ -152,35 +158,35 @@ The following normal register name macros are available:
|
||||||
Convenience macros are simply aliases for certain frequently used
|
Convenience macros are simply aliases for certain frequently used
|
||||||
registers:
|
registers:
|
||||||
\begin{Description}
|
\begin{Description}
|
||||||
\item[\Const{UNW\_IA64\_GP}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+1}.
|
\item[\Const{UNW\_IA64\_GP}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+1},
|
||||||
The global-pointer register. For unwinding-purposes, this register
|
the global-pointer register.
|
||||||
is treated as read-only.
|
\item[\Const{UNW\_IA64\_TP}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+13},
|
||||||
\item[\Const{UNW\_IA64\_TP}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+13}.
|
the thread-pointer register.
|
||||||
The thread-pointer register. For unwinding-purposes, this register is
|
\item[\Const{UNW\_IA64\_AR\_RSC}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+16},
|
||||||
treated as read-only.
|
the register-stack configuration register.
|
||||||
\item[\Const{UNW\_IA64\_AR\_RSC}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+16}.
|
|
||||||
The register-stack configuration register.
|
|
||||||
\item[\Const{UNW\_IA64\_AR\_BSP}:] Alias for
|
\item[\Const{UNW\_IA64\_AR\_BSP}:] Alias for
|
||||||
\Const{UNW\_IA64\_GR}\texttt{+17}. This register index accesses the
|
\Const{UNW\_IA64\_GR}\texttt{+17}. This register index accesses the
|
||||||
value of register \texttt{ar.bsp} as of the time it was last saved
|
value of register \texttt{ar.bsp} as of the time it was last saved
|
||||||
explicitly. This is rarely what you want. Normally, you'll want to
|
explicitly. This is rarely what you want. Normally, you'll want to
|
||||||
use \Const{UNW\_IA64\_BSP} instead.
|
use \Const{UNW\_IA64\_BSP} instead.
|
||||||
\item[\Const{UNW\_IA64\_AR\_BSPSTORE}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+18}.
|
\item[\Const{UNW\_IA64\_AR\_BSPSTORE}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+18},
|
||||||
The register-backing store write pointer.
|
the register-backing store write pointer.
|
||||||
\item[\Const{UNW\_IA64\_AR\_RNAT}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+19}.
|
\item[\Const{UNW\_IA64\_AR\_RNAT}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+19},
|
||||||
The register-backing store NaT-collection register.
|
the register-backing store NaT-collection register.
|
||||||
\item[\Const{UNW\_IA64\_AR\_CCV}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+32}.
|
\item[\Const{UNW\_IA64\_AR\_CCV}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+32},
|
||||||
The compare-and-swap value register.
|
the compare-and-swap value register.
|
||||||
\item[\Const{UNW\_IA64\_AR\_UNAT}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+36}.
|
\item[\Const{UNW\_IA64\_AR\_CSD}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+25},
|
||||||
The user NaT-collection register.
|
the compare-and-swap-data register (used by 16-byte atomic operations).
|
||||||
\item[\Const{UNW\_IA64\_AR\_FPSR}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+40}.
|
\item[\Const{UNW\_IA64\_AR\_UNAT}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+36},
|
||||||
The floating-point status (and control) register.
|
the user NaT-collection register.
|
||||||
\item[\Const{UNW\_IA64\_AR\_PFS}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+64}.
|
\item[\Const{UNW\_IA64\_AR\_FPSR}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+40},
|
||||||
The previous frame-state register.
|
the floating-point status (and control) register.
|
||||||
\item[\Const{UNW\_IA64\_AR\_LC}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+65}.
|
\item[\Const{UNW\_IA64\_AR\_PFS}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+64},
|
||||||
The loop-count register.
|
the previous frame-state register.
|
||||||
\item[\Const{UNW\_IA64\_AR\_EC}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+66}.
|
\item[\Const{UNW\_IA64\_AR\_LC}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+65}
|
||||||
The epilogue-count register.
|
the loop-count register.
|
||||||
|
\item[\Const{UNW\_IA64\_AR\_EC}:] Alias for \Const{UNW\_IA64\_GR}\texttt{+66},
|
||||||
|
the epilogue-count register.
|
||||||
\end{Description}
|
\end{Description}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue