diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-11-20 07:46:48 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-11-20 07:46:48 +0530 |
commit | f3fd2628d8e86343f2add6de5be602cfc2cb8e00 (patch) | |
tree | 340ba983d4bbca3e2eaa24c0c5657c071da039db /manual/probes.texi | |
parent | b2f386c18f1e8c832c673bd813d56a07391c666d (diff) | |
download | glibc-f3fd2628d8e86343f2add6de5be602cfc2cb8e00.zip glibc-f3fd2628d8e86343f2add6de5be602cfc2cb8e00.tar.gz glibc-f3fd2628d8e86343f2add6de5be602cfc2cb8e00.tar.bz2 |
Add systemtap probe markers for sin, cos, asin and acos
Diffstat (limited to 'manual/probes.texi')
-rw-r--r-- | manual/probes.texi | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/manual/probes.texi b/manual/probes.texi index 5492bb7..108f460 100644 --- a/manual/probes.texi +++ b/manual/probes.texi @@ -353,3 +353,45 @@ results in multiple precision computation with precision 32. Argument @var{$arg1} is the input to the function and @var{$arg2} is the computed result. @end deftp + +@deftp Probe slowasin (double @var{$arg1}, double @var{$arg2}) +This probe is hit when the @code{asin} function is called with an input that +results in multiple precision computation with precision 32. Argument +@var{$arg1} is the input to the function and @var{$arg2} is the computed +result. +@end deftp + +@deftp Probe slowacos (double @var{$arg1}, double @var{$arg2}) +This probe is hit when the @code{acos} function is called with an input that +results in multiple precision computation with precision 32. Argument +@var{$arg1} is the input to the function and @var{$arg2} is the computed +result. +@end deftp + +@deftp Probe slowsin (double @var{$arg1}, double @var{$arg2}) +This probe is hit when the @code{sin} function is called with an input that +results in multiple precision computation with precision 32. Argument +@var{$arg1} is the input to the function and @var{$arg2} is the computed +result. +@end deftp + +@deftp Probe slowcos (double @var{$arg1}, double @var{$arg2}) +This probe is hit when the @code{cos} function is called with an input that +results in multiple precision computation with precision 32. Argument +@var{$arg1} is the input to the function and @var{$arg2} is the computed +result. +@end deftp + +@deftp Probe slowsin_dx (double @var{$arg1}, double @var{$arg2}, double @var{$arg3}) +This probe is hit when the @code{sin} function is called with an input that +results in multiple precision computation with precision 32. Argument +@var{$arg1} is the input to the function, @var{$arg2} is the error bound of +@var{$arg1} and @var{$arg3} is the computed result. +@end deftp + +@deftp Probe slowcos_dx (double @var{$arg1}, double @var{$arg2}, double @var{$arg3}) +This probe is hit when the @code{cos} function is called with an input that +results in multiple precision computation with precision 32. Argument +@var{$arg1} is the input to the function, @var{$arg2} is the error bound of +@var{$arg1} and @var{$arg3} is the computed result. +@end deftp |