2018-05-17 20:19:58 +02:00
|
|
|
; RUN: opt -debugify-each -O3 -S -o /dev/null < %s 2> %t
|
2018-05-16 19:30:58 +02:00
|
|
|
; RUN: FileCheck %s -input-file=%t -check-prefix=MODULE-PASS
|
|
|
|
; RUN: FileCheck %s -input-file=%t -check-prefix=FUNCTION-PASS
|
|
|
|
|
2018-05-17 20:19:58 +02:00
|
|
|
; RUN: opt -enable-debugify -debugify-each -O3 -S -o /dev/null < %s 2> %t
|
2018-05-16 19:30:58 +02:00
|
|
|
; RUN: FileCheck %s -input-file=%t -check-prefix=MODULE-PASS
|
|
|
|
; RUN: FileCheck %s -input-file=%t -check-prefix=FUNCTION-PASS
|
|
|
|
|
2018-05-17 20:19:58 +02:00
|
|
|
; RUN: opt -debugify-each -instrprof -instrprof -sroa -sccp -S -o /dev/null < %s 2> %t
|
2018-05-16 19:30:58 +02:00
|
|
|
; RUN: FileCheck %s -input-file=%t -check-prefix=MODULE-PASS
|
|
|
|
; RUN: FileCheck %s -input-file=%t -check-prefix=FUNCTION-PASS
|
2018-05-15 02:29:27 +02:00
|
|
|
|
2018-05-17 20:19:58 +02:00
|
|
|
; Verify that debugify each can be safely used with piping
|
|
|
|
; RUN: opt -debugify-each -O1 < %s | opt -O2 -o /dev/null
|
|
|
|
|
2018-06-06 21:05:41 +02:00
|
|
|
; Check that the quiet mode emits no messages.
|
|
|
|
; RUN: opt -disable-output -debugify-quiet -debugify-each -O1 < %s 2>&1 | count 0
|
|
|
|
|
2018-06-04 02:11:49 +02:00
|
|
|
; Check that stripped textual IR compares equal before and after applying
|
|
|
|
; debugify.
|
|
|
|
; RUN: opt -O1 < %s -S -o - | \
|
2018-06-05 02:56:08 +02:00
|
|
|
; RUN: opt -strip -strip-dead-prototypes -strip-named-metadata -S -o %t.before
|
2018-06-04 02:11:49 +02:00
|
|
|
; RUN: opt -O1 -debugify-each < %s -S -o - | \
|
2018-06-05 02:56:08 +02:00
|
|
|
; RUN: opt -strip -strip-dead-prototypes -strip-named-metadata -S -o %t.after
|
2018-06-04 02:11:49 +02:00
|
|
|
; RUN: diff %t.before %t.after
|
|
|
|
|
|
|
|
; Check that stripped IR compares equal before and after applying debugify.
|
|
|
|
; RUN: opt -O1 < %s | \
|
2018-06-05 02:56:08 +02:00
|
|
|
; RUN: opt -strip -strip-dead-prototypes -strip-named-metadata | \
|
2018-06-04 02:11:49 +02:00
|
|
|
; RUN: llvm-dis -o %t.before
|
|
|
|
; RUN: opt -O1 -debugify-each < %s | \
|
2018-06-05 02:56:08 +02:00
|
|
|
; RUN: opt -strip -strip-dead-prototypes -strip-named-metadata | \
|
2018-06-04 02:11:49 +02:00
|
|
|
; RUN: llvm-dis -o %t.after
|
|
|
|
; RUN: diff %t.before %t.after
|
|
|
|
|
|
|
|
define void @foo(i32 %arg) {
|
|
|
|
call i32 asm "bswap $0", "=r,r"(i32 %arg)
|
2018-05-15 02:29:27 +02:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @bar() {
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Verify that the module & function (check-)debugify passes run at least twice.
|
|
|
|
|
2018-05-16 19:30:58 +02:00
|
|
|
; MODULE-PASS: CheckModuleDebugify [{{.*}}]
|
|
|
|
; MODULE-PASS: CheckModuleDebugify [{{.*}}]
|
2018-05-15 02:29:27 +02:00
|
|
|
|
2018-05-16 19:30:58 +02:00
|
|
|
; FUNCTION-PASS: CheckFunctionDebugify [{{.*}}]
|
|
|
|
; FUNCTION-PASS: CheckFunctionDebugify [{{.*}}]
|
|
|
|
; FUNCTION-PASS: CheckFunctionDebugify [{{.*}}]
|
|
|
|
; FUNCTION-PASS: CheckFunctionDebugify [{{.*}}]
|