1 // RUN: %clang_cc1 -fsanitize=implicit-signed-integer-truncation -fsanitize-recover=implicit-signed-integer-truncation -emit-llvm %s -o - -triple x86_64-linux-gnu | FileCheck %s -implicit-check-not="call void @__ubsan_handle_implicit_conversion" --check-prefixes=CHECK
4 // * Two types - int and char
5 // * Two signs - signed and unsigned
6 // * Square that - we have input and output types.
7 // Thus, there are total of (2*2)^2 == 16 tests.
8 // These are all the possible variations/combinations of casts.
9 // However, not all of them should result in the check.
10 // So here, we *only* check which should and which should not result in checks.
12 // CHECK-DAG: @[[LINE_1100_SIGNED_TRUNCATION:.*]] = {{.*}}, i32 1100, i32 10 }, {{.*}}, {{.*}}, i8 2, i32 0 }
13 // CHECK-DAG: @[[LINE_1500_SIGNED_TRUNCATION:.*]] = {{.*}}, i32 1500, i32 10 }, {{.*}}, {{.*}}, i8 2, i32 0 }
14 // CHECK-DAG: @[[LINE_1600_SIGNED_TRUNCATION:.*]] = {{.*}}, i32 1600, i32 10 }, {{.*}}, {{.*}}, i8 2, i32 0 }
16 // CHECK-LABEL: @convert_unsigned_int_to_unsigned_int
17 unsigned int convert_unsigned_int_to_unsigned_int(unsigned int x
) {
22 // CHECK-LABEL: @convert_unsigned_char_to_unsigned_char
23 unsigned char convert_unsigned_char_to_unsigned_char(unsigned char x
) {
28 // CHECK-LABEL: @convert_signed_int_to_signed_int
29 signed int convert_signed_int_to_signed_int(signed int x
) {
34 // CHECK-LABEL: @convert_signed_char_to_signed_char
35 signed char convert_signed_char_to_signed_char(signed char x
) {
40 // CHECK-LABEL: @convert_unsigned_int_to_unsigned_char
41 unsigned char convert_unsigned_int_to_unsigned_char(unsigned int x
) {
46 // CHECK-LABEL: @convert_unsigned_char_to_unsigned_int
47 unsigned int convert_unsigned_char_to_unsigned_int(unsigned char x
) {
52 // CHECK-LABEL: @convert_unsigned_char_to_signed_int
53 signed int convert_unsigned_char_to_signed_int(unsigned char x
) {
58 // CHECK-LABEL: @convert_signed_char_to_signed_int
59 signed int convert_signed_char_to_signed_int(signed char x
) {
64 // CHECK-LABEL: @convert_unsigned_int_to_signed_int
65 signed int convert_unsigned_int_to_signed_int(unsigned int x
) {
70 // CHECK-LABEL: @convert_signed_int_to_unsigned_int
71 unsigned int convert_signed_int_to_unsigned_int(signed int x
) {
76 // CHECK-LABEL: @convert_signed_int_to_unsigned_char
77 unsigned char convert_signed_int_to_unsigned_char(signed int x
) {
78 // CHECK: call void @__ubsan_handle_implicit_conversion(ptr @[[LINE_1100_SIGNED_TRUNCATION]]
83 // CHECK-LABEL: @convert_signed_char_to_unsigned_char
84 unsigned char convert_signed_char_to_unsigned_char(signed char x
) {
89 // CHECK-LABEL: @convert_unsigned_char_to_signed_char
90 signed char convert_unsigned_char_to_signed_char(unsigned char x
) {
95 // CHECK-LABEL: @convert_signed_char_to_unsigned_int
96 unsigned int convert_signed_char_to_unsigned_int(signed char x
) {
101 // CHECK-LABEL: @convert_unsigned_int_to_signed_char
102 signed char convert_unsigned_int_to_signed_char(unsigned int x
) {
103 // CHECK: call void @__ubsan_handle_implicit_conversion(ptr @[[LINE_1500_SIGNED_TRUNCATION]]
108 // CHECK-LABEL: @convert_signed_int_to_signed_char
109 signed char convert_signed_int_to_signed_char(signed int x
) {
110 // CHECK: call void @__ubsan_handle_implicit_conversion(ptr @[[LINE_1600_SIGNED_TRUNCATION]]