]> granicus.if.org Git - clang/commitdiff
Specify if `-mno-red-zone' was used when creating the GCOV instrucmentation pass.
authorBill Wendling <isanbard@gmail.com>
Mon, 10 Dec 2012 19:47:53 +0000 (19:47 +0000)
committerBill Wendling <isanbard@gmail.com>
Mon, 10 Dec 2012 19:47:53 +0000 (19:47 +0000)
This prevents the functions generated by that pass from using the red zone.
<rdar://problem/12843084>

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169755 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/BackendUtil.cpp
test/CodeGen/code-coverage.c [new file with mode: 0644]

index f6e9dd7888e6f8e4f6fda7aa015d0402d24b939a..e9608715427b6142125030e03e26a9da7929f70c 100644 (file)
@@ -294,7 +294,9 @@ void EmitAssemblyHelper::CreatePasses(TargetMachine *TM) {
   if (CodeGenOpts.EmitGcovArcs || CodeGenOpts.EmitGcovNotes) {
     MPM->add(createGCOVProfilerPass(CodeGenOpts.EmitGcovNotes,
                                     CodeGenOpts.EmitGcovArcs,
-                                    TargetTriple.isMacOSX()));
+                                    TargetTriple.isMacOSX(),
+                                    false,
+                                    CodeGenOpts.DisableRedZone));
 
     if (CodeGenOpts.getDebugInfo() == CodeGenOptions::NoDebugInfo)
       MPM->add(createStripSymbolsPass(true));
diff --git a/test/CodeGen/code-coverage.c b/test/CodeGen/code-coverage.c
new file mode 100644 (file)
index 0000000..b073ae6
--- /dev/null
@@ -0,0 +1,19 @@
+// RUN: %clang_cc1 -O0  -mno-red-zone -fprofile-arcs -ftest-coverage -emit-llvm %s -o - | FileCheck %s
+// <rdar://problem/12843084>
+
+int test1(int a) {
+  switch (a % 2) {
+  case 0:
+    ++a;
+  case 1:
+    a /= 2;
+  }
+  return a;
+}
+
+// Check tha the `-mno-red-zone' flag is set here on the generated functions.
+
+// CHECK: void @__llvm_gcov_indirect_counter_increment(i32* %{{.*}}, i64** %{{.*}}) unnamed_addr noinline noredzone
+// CHECK: void @__llvm_gcov_writeout() unnamed_addr noinline noredzone
+// CHECK: void @__llvm_gcov_init() unnamed_addr noinline noredzone
+// CHECK: void @__gcov_flush() unnamed_addr noinline noredzone