Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LLVM project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Panda
LLVM project
Commits
e69a8c42
Commit
e69a8c42
authored
3 years ago
by
Jianzhou Zhao
Browse files
Options
Downloads
Patches
Plain Diff
[dfsan] Fix doc build errors
parent
1a3bf295
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
clang/docs/DataFlowSanitizer.rst
+5
-0
5 additions, 0 deletions
clang/docs/DataFlowSanitizer.rst
with
5 additions
and
0 deletions
clang/docs/DataFlowSanitizer.rst
+
5
−
0
View file @
e69a8c42
...
...
@@ -147,6 +147,7 @@ Compilation Flags
For example:
.. code-block:: c++
v = *p;
If the flag is true, the label of ``v`` is the union of the label of ``p`` and
...
...
@@ -157,6 +158,7 @@ just ``*p``.
false. For example:
.. code-block:: c++
*p = v;
If the flag is true, the label of ``*p`` is the union of the label of ``p`` and
...
...
@@ -166,6 +168,7 @@ just ``v``.
labels of offsets in GEP instructions. Its default value is true. For example:
.. code-block:: c++
p += i;
If the flag is true, the label of ``p`` is the union of the label of ``p`` and
...
...
@@ -174,6 +177,7 @@ the label of ``i``. If the flag is false, the label of ``p`` is unchanged.
flow of select instructions. Its default value is true. For example:
.. code-block:: c++
v = b? v1: v2;
If the flag is true, the label of ``v`` is the union of the labels of ``b``,
...
...
@@ -186,6 +190,7 @@ is false. If this flag is set to true, a user must provide definitions for the
following callback functions:
.. code-block:: c++
void __dfsan_load_callback(dfsan_label Label, void* Addr);
void __dfsan_store_callback(dfsan_label Label, void* Addr);
void __dfsan_mem_transfer_callback(dfsan_label *Start, size_t Len);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment