[compiler-rt] r279377 - [asan] Rename asan-instrument-allocas -> asan-instrument-dynamic-allocas

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 20 10:22:36 PDT 2016


Author: vitalybuka
Date: Sat Aug 20 12:22:36 2016
New Revision: 279377

URL: http://llvm.org/viewvc/llvm-project?rev=279377&view=rev
Log:
[asan] Rename asan-instrument-allocas -> asan-instrument-dynamic-allocas

Summary: Depends on D23707.

Subscribers: kubabrecka

Differential Revision: https://reviews.llvm.org/D23709

Modified:
    compiler-rt/trunk/test/asan/TestCases/alloca_big_alignment.cc
    compiler-rt/trunk/test/asan/TestCases/alloca_detect_custom_size_.cc
    compiler-rt/trunk/test/asan/TestCases/alloca_instruments_all_paddings.cc
    compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc
    compiler-rt/trunk/test/asan/TestCases/alloca_overflow_partial.cc
    compiler-rt/trunk/test/asan/TestCases/alloca_overflow_right.cc
    compiler-rt/trunk/test/asan/TestCases/alloca_safe_access.cc
    compiler-rt/trunk/test/asan/TestCases/alloca_underflow_left.cc
    compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc
    compiler-rt/trunk/test/asan/TestCases/vla_chrome_testcase.cc
    compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc
    compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc

Modified: compiler-rt/trunk/test/asan/TestCases/alloca_big_alignment.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_big_alignment.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_big_alignment.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_big_alignment.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: not %run %t 2>&1 | FileCheck %s
 //
 

Modified: compiler-rt/trunk/test/asan/TestCases/alloca_detect_custom_size_.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_detect_custom_size_.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_detect_custom_size_.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_detect_custom_size_.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: not %run %t 2>&1 | FileCheck %s
 //
 

Modified: compiler-rt/trunk/test/asan/TestCases/alloca_instruments_all_paddings.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_instruments_all_paddings.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_instruments_all_paddings.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_instruments_all_paddings.cc Sat Aug 20 12:22:36 2016
@@ -1,5 +1,5 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
-// RUN: %clangxx_asan -O3 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
+// RUN: %clangxx_asan -O3 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: %run %t 2>&1
 //
 

Modified: compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_loop_unpoisoning.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: %run %t 2>&1
 //
 // REQUIRES: stable-runtime

Modified: compiler-rt/trunk/test/asan/TestCases/alloca_overflow_partial.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_overflow_partial.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_overflow_partial.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_overflow_partial.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: not %run %t 2>&1 | FileCheck %s
 //
 

Modified: compiler-rt/trunk/test/asan/TestCases/alloca_overflow_right.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_overflow_right.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_overflow_right.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_overflow_right.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: not %run %t 2>&1 | FileCheck %s
 //
 

Modified: compiler-rt/trunk/test/asan/TestCases/alloca_safe_access.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_safe_access.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_safe_access.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_safe_access.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: %run %t 2>&1
 //
 

Modified: compiler-rt/trunk/test/asan/TestCases/alloca_underflow_left.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_underflow_left.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_underflow_left.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_underflow_left.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: not %run %t 2>&1 | FileCheck %s
 //
 

Modified: compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/alloca_vla_interact.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: %run %t 2>&1
 //
 // REQUIRES: stable-runtime

Modified: compiler-rt/trunk/test/asan/TestCases/vla_chrome_testcase.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/vla_chrome_testcase.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/vla_chrome_testcase.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/vla_chrome_testcase.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: not %run %t 2>&1 | FileCheck %s
 //
 

Modified: compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/vla_condition_overflow.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: not %run %t 2>&1 | FileCheck %s
 //
 // REQUIRES: stable-runtime

Modified: compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc?rev=279377&r1=279376&r2=279377&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/vla_loop_overfow.cc Sat Aug 20 12:22:36 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-allocas %s -o %t
+// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
 // RUN: not %run %t 2>&1 | FileCheck %s
 //
 // REQUIRES: stable-runtime




More information about the llvm-commits mailing list