diff options
author | Chris Apple <cja-private@pm.me> | 2024-08-22 14:08:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-22 14:08:24 -0700 |
commit | d010ec6af8162a8ae4e42d2cac5282f83db0ce07 (patch) | |
tree | 738fef1c29752af645441ace46548b203675cdac /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 172c4a4a147833f1c08df1555f3170aa9ccb6cbe (diff) | |
download | llvm-d010ec6af8162a8ae4e42d2cac5282f83db0ce07.zip llvm-d010ec6af8162a8ae4e42d2cac5282f83db0ce07.tar.gz llvm-d010ec6af8162a8ae4e42d2cac5282f83db0ce07.tar.bz2 |
[clang][rtsan] Introduce realtime sanitizer codegen and driver (#102622)
Introduce the `-fsanitize=realtime` flag in clang driver
Plug in the RealtimeSanitizer PassManager pass in Codegen, and attribute
a function based on if it has the `[[clang::nonblocking]]` function
effect.
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index eff8c9f..c89eaa0 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -845,6 +845,13 @@ void CodeGenFunction::StartFunction(GlobalDecl GD, QualType RetTy, if (SanOpts.has(SanitizerKind::ShadowCallStack)) Fn->addFnAttr(llvm::Attribute::ShadowCallStack); + if (SanOpts.has(SanitizerKind::Realtime)) + if (FD && FD->getASTContext().hasAnyFunctionEffects()) + for (const FunctionEffectWithCondition &Fe : FD->getFunctionEffects()) { + if (Fe.Effect.kind() == FunctionEffect::Kind::NonBlocking) + Fn->addFnAttr(llvm::Attribute::SanitizeRealtime); + } + // Apply fuzzing attribute to the function. if (SanOpts.hasOneOf(SanitizerKind::Fuzzer | SanitizerKind::FuzzerNoLink)) Fn->addFnAttr(llvm::Attribute::OptForFuzzing); |