llvm-project/clang/test/CodeGen/builtin-expect.c
Chandler Carruth 93786da2cb Make '-disable-llvm-optzns' an alias for '-disable-llvm-passes'.
Much to my surprise, '-disable-llvm-optzns' which I thought was the
magical flag I wanted to get at the raw LLVM IR coming out of Clang
deosn't do that. It still runs some passes over the IR. I don't want
that, I really want the *raw* IR coming out of Clang and I strongly
suspect everyone else using it is in the same camp.

There is actually a flag that does what I want that I didn't know about
called '-disable-llvm-passes'. I suspect many others don't know about it
either. It both does what I want and is much simpler.

This removes the confusing version and makes that spelling of the flag
an alias for '-disable-llvm-passes'. I've also moved everything in Clang
to use the 'passes' spelling as it seems both more accurate (*all* LLVM
passes are disabled, not just optimizations) and much easier to remember
and spell correctly.

This is part of simplifying how Clang drives LLVM to make it cleaner to
wire up to the new pass manager.

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

llvm-svn: 290392
2016-12-23 00:23:01 +00:00

81 lines
2.0 KiB
C

// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -O1 -disable-llvm-passes | FileCheck %s --check-prefix=ALL --check-prefix=O1
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -O0 | FileCheck %s --check-prefix=ALL --check-prefix=O0
// In all tests, make sure that no expect is generated if optimizations are off.
// If optimizations are on, generate the correct expect and preserve other necessary operations.
int expect_taken(int x) {
// ALL-LABEL: define i32 @expect_taken
// O1: call i64 @llvm.expect.i64(i64 {{%.*}}, i64 1)
// O0-NOT: @llvm.expect
if (__builtin_expect (x, 1))
return 0;
return x;
}
int expect_not_taken(int x) {
// ALL-LABEL: define i32 @expect_not_taken
// O1: call i64 @llvm.expect.i64(i64 {{%.*}}, i64 0)
// O0-NOT: @llvm.expect
if (__builtin_expect (x, 0))
return 0;
return x;
}
int x;
int y(void);
void foo();
void expect_value_side_effects() {
// ALL-LABEL: define void @expect_value_side_effects()
// ALL: [[CALL:%.*]] = call i32 @y
// O1: [[SEXT:%.*]] = sext i32 [[CALL]] to i64
// O1: call i64 @llvm.expect.i64(i64 {{%.*}}, i64 [[SEXT]])
// O0-NOT: @llvm.expect
if (__builtin_expect (x, y()))
foo ();
}
// Make sure that issigprocmask() is called before bar()?
// There's no compare, so there's nothing to expect?
// rdar://9330105
void isigprocmask(void);
long bar();
int main() {
// ALL-LABEL: define i32 @main()
// ALL: call void @isigprocmask()
// ALL: [[CALL:%.*]] = call i64 (...) @bar()
// O1: call i64 @llvm.expect.i64(i64 0, i64 [[CALL]])
// O0-NOT: @llvm.expect
(void) __builtin_expect((isigprocmask(), 0), bar());
}
int switch_cond(int x) {
// ALL-LABEL: define i32 @switch_cond
// O1: call i64 @llvm.expect.i64(i64 {{%.*}}, i64 5)
// O0-NOT: @llvm.expect
switch(__builtin_expect(x, 5)) {
default:
return 0;
case 0:
case 1:
case 2:
return 1;
case 5:
return 5;
};
return 0;
}