1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -O1 -disable-llvm-passes | FileCheck %s --check-prefix=ALL --check-prefix=O1
2 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -O0 | FileCheck %s --check-prefix=ALL --check-prefix=O0
4 // In all tests, make sure that no expect is generated if optimizations are off.
5 // If optimizations are on, generate the correct expect and preserve other necessary operations.
7 int expect_taken(int x
) {
8 // ALL-LABEL: define{{.*}} i32 @expect_taken
9 // O1: call i64 @llvm.expect.i64(i64 {{%.*}}, i64 1)
10 // O0-NOT: @llvm.expect
12 if (__builtin_expect (x
, 1))
18 int expect_not_taken(int x
) {
19 // ALL-LABEL: define{{.*}} i32 @expect_not_taken
20 // O1: call i64 @llvm.expect.i64(i64 {{%.*}}, i64 0)
21 // O0-NOT: @llvm.expect
23 if (__builtin_expect (x
, 0))
33 void expect_value_side_effects(void) {
34 // ALL-LABEL: define{{.*}} void @expect_value_side_effects()
35 // ALL: [[CALL:%.*]] = call i32 @y
36 // O1: [[SEXT:%.*]] = sext i32 [[CALL]] to i64
37 // O1: call i64 @llvm.expect.i64(i64 {{%.*}}, i64 [[SEXT]])
38 // O0-NOT: @llvm.expect
40 if (__builtin_expect (x
, y()))
45 // Make sure that issigprocmask() is called before bar()?
46 // There's no compare, so there's nothing to expect?
48 void isigprocmask(void);
52 // ALL-LABEL: define{{.*}} i32 @main()
53 // ALL: call void @isigprocmask()
54 // ALL: [[CALL:%.*]] = call i64 @bar()
55 // O1: call i64 @llvm.expect.i64(i64 0, i64 [[CALL]])
56 // O0-NOT: @llvm.expect
58 (void) __builtin_expect((isigprocmask(), 0), bar());
62 int switch_cond(int x
) {
63 // ALL-LABEL: define{{.*}} i32 @switch_cond
64 // O1: call i64 @llvm.expect.i64(i64 {{%.*}}, i64 5)
65 // O0-NOT: @llvm.expect
67 switch(__builtin_expect(x
, 5)) {
81 int variable_expected(int stuff
) {
82 // ALL-LABEL: define{{.*}} i32 @variable_expected(
83 // O1: call i64 @llvm.expect.i64(i64 {{%.*}}, i64 {{%.*}})
84 // O0-NOT: @llvm.expect
88 switch (__builtin_expect(stuff
, stuff
)) {