Skip to content

Commit

Permalink
[clang][AArch64] Pass down stack clash protection options to LLVM/Bac…
Browse files Browse the repository at this point in the history
…kend (#68993)
  • Loading branch information
momchil-velikov committed Nov 30, 2023
1 parent c80b91b commit 092507a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
13 changes: 13 additions & 0 deletions clang/lib/CodeGen/CodeGenModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1121,6 +1121,15 @@ void CodeGenModule::Release() {
"sign-return-address-with-bkey", 1);
}

if (CodeGenOpts.StackClashProtector)
getModule().addModuleFlag(
llvm::Module::Override, "probe-stack",
llvm::MDString::get(TheModule.getContext(), "inline-asm"));

if (CodeGenOpts.StackProbeSize && CodeGenOpts.StackProbeSize != 4096)
getModule().addModuleFlag(llvm::Module::Min, "stack-probe-size",
CodeGenOpts.StackProbeSize);

if (!CodeGenOpts.MemoryProfileOutput.empty()) {
llvm::LLVMContext &Ctx = TheModule.getContext();
getModule().addModuleFlag(
Expand Down Expand Up @@ -2335,6 +2344,10 @@ void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D,
if (CodeGenOpts.StackClashProtector)
B.addAttribute("probe-stack", "inline-asm");

if (CodeGenOpts.StackProbeSize && CodeGenOpts.StackProbeSize != 4096)
B.addAttribute("stack-probe-size",
std::to_string(CodeGenOpts.StackProbeSize));

if (!hasUnwindExceptions(LangOpts))
B.addAttribute(llvm::Attribute::NoUnwind);

Expand Down
2 changes: 1 addition & 1 deletion clang/lib/Driver/ToolChains/Clang.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3507,7 +3507,7 @@ static void RenderSCPOptions(const ToolChain &TC, const ArgList &Args,
return;

if (!EffectiveTriple.isX86() && !EffectiveTriple.isSystemZ() &&
!EffectiveTriple.isPPC64())
!EffectiveTriple.isPPC64() && !EffectiveTriple.isAArch64())
return;

Args.addOptInFlag(CmdArgs, options::OPT_fstack_clash_protection,
Expand Down
18 changes: 11 additions & 7 deletions clang/test/CodeGen/stack-clash-protection.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// Check the correct function attributes are generated
// RUN: %clang_cc1 -triple x86_64-linux -O0 -S -emit-llvm -o- %s -fstack-clash-protection | FileCheck %s
// RUN: %clang_cc1 -triple s390x-linux-gnu -O0 -S -emit-llvm -o- %s -fstack-clash-protection | FileCheck %s
// RUN: %clang_cc1 -triple powerpc64le-linux-gnu -O0 -S -emit-llvm -o- %s -fstack-clash-protection | FileCheck %s
// RUN: %clang_cc1 -triple powerpc64-linux-gnu -O0 -S -emit-llvm -o- %s -fstack-clash-protection | FileCheck %s
// RUN: %clang_cc1 -triple x86_64-linux -O0 -S -emit-llvm -o- %s -fstack-clash-protection -mstack-probe-size=8192 | FileCheck %s
// RUN: %clang_cc1 -triple s390x-linux-gnu -O0 -S -emit-llvm -o- %s -fstack-clash-protection -mstack-probe-size=8192 | FileCheck %s
// RUN: %clang_cc1 -triple powerpc64le-linux-gnu -O0 -S -emit-llvm -o- %s -fstack-clash-protection -mstack-probe-size=8192 | FileCheck %s
// RUN: %clang_cc1 -triple powerpc64-linux-gnu -O0 -S -emit-llvm -o- %s -fstack-clash-protection -mstack-probe-size=8192 | FileCheck %s
// RUN: %clang_cc1 -triple aarch64-linux-gnu -O0 -S -emit-llvm -o- %s -fstack-clash-protection -mstack-probe-size=8192 | FileCheck %s

// CHECK: define{{.*}} void @large_stack() #[[A:.*]] {
void large_stack(void) {
Expand All @@ -11,15 +12,18 @@ void large_stack(void) {
stack[i] = i;
}

// CHECK: define{{.*}} void @vla({{.*}}) #[[A:.*]] {
// CHECK: define{{.*}} void @vla({{.*}}) #[[A]] {
void vla(int n) {
volatile int vla[n];
__builtin_memset(&vla[0], 0, 1);
}

// CHECK: define{{.*}} void @builtin_alloca({{.*}}) #[[A:.*]] {
// CHECK: define{{.*}} void @builtin_alloca({{.*}}) #[[A]] {
void builtin_alloca(int n) {
volatile void *mem = __builtin_alloca(n);
}

// CHECK: attributes #[[A]] = {{.*}} "probe-stack"="inline-asm"
// CHECK: attributes #[[A]] = {{.*}}"probe-stack"="inline-asm" {{.*}}"stack-probe-size"="8192"

// CHECK: !{i32 4, !"probe-stack", !"inline-asm"}
// CHECK: !{i32 8, !"stack-probe-size", i32 8192}

0 comments on commit 092507a

Please sign in to comment.