You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -513,6 +515,18 @@ To enable this target feature compile with `-C target-feature="+mte"`.
513
515
514
516
More information can be found in the associated [LLVM documentation](https://llvm.org/docs/MemTagSanitizer.html).
515
517
518
+
# ShadowCallStack
519
+
520
+
ShadowCallStack provides backward edge control flow protection by storing a function's return address in a separately allocated 'shadow call stack' and loading the return address from that shadow call stack.
521
+
522
+
ShadowCallStack requires a platform ABI which reserves `x18` as the instrumentation makes use of this register.
523
+
524
+
ShadowCallStack can be enabled with `-Zsanitizer=shadow-call-stack` option and is supported on the following targets:
525
+
526
+
* `aarch64-linux-android`
527
+
528
+
A runtime must be provided by the application or operating system. See the [LLVM documentation][clang-scs] for further details.
529
+
516
530
# ThreadSanitizer
517
531
518
532
ThreadSanitizer is a data race detection tool. It is supported on the following
@@ -610,4 +624,5 @@ Sanitizers produce symbolized stacktraces when llvm-symbolizer binary is in `PAT
0 commit comments