summaryrefslogtreecommitdiffstats
path: root/docs/XRayFDRFormat.rst
diff options
context:
space:
mode:
authorDean Michael Berris <dberris@google.com>2017-09-18 06:08:46 +0000
committerDean Michael Berris <dberris@google.com>2017-09-18 06:08:46 +0000
commitd6aeff8fd74c6ba964298a580ab27ea3dad8a288 (patch)
treec1d342400a28539ac756434cefc06cfa845752ce /docs/XRayFDRFormat.rst
parentb0dac0f6f107b29e49a78d6aa358d1d8d76852bc (diff)
[XRay][tools] Support tail-call exits before we write them in the runtime
Summary: This change adds support for explicit tail-exit records to be written by the XRay runtime. This lets us differentiate the tail exit records/events in the log, and allows us to treat those exit events especially in the future. For now we allow printing those out in YAML (and reading them in). Reviewers: kpw, pelikan Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D37964 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@313514 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/XRayFDRFormat.rst')
-rw-r--r--docs/XRayFDRFormat.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/XRayFDRFormat.rst b/docs/XRayFDRFormat.rst
index 8a4088a20147..f7942bc212df 100644
--- a/docs/XRayFDRFormat.rst
+++ b/docs/XRayFDRFormat.rst
@@ -165,7 +165,7 @@ Function action types are as follows.
+---------------+--------------+-----------------------------------------------+
| Exit | ``1`` | Typical function exit. |
+---------------+--------------+-----------------------------------------------+
-| Tail_Exit | ``2`` | An exit from a function due to Tail call |
+| Tail_Exit | ``2`` | An exit from a function due to tail call |
| | | optimization. |
+---------------+--------------+-----------------------------------------------+
| Entry_Args | ``3`` | A function entry that records arguments. |