1 // RUN: %clang_cc1 -fsanitize=implicit-unsigned-integer-truncation,implicit-signed-integer-truncation -fsanitize-recover=implicit-unsigned-integer-truncation,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_500_UNSIGNED_TRUNCATION:.*]] = {{.*}}, i32 500, i32 10 }, {{.*}}, {{.*}}, i8 1, i32 0 }
13 // CHECK-DAG: @[[LINE_1100_SIGNED_TRUNCATION:.*]] = {{.*}}, i32 1100, i32 10 }, {{.*}}, {{.*}}, i8 2, i32 0 }
14 // CHECK-DAG: @[[LINE_1500_SIGNED_TRUNCATION:.*]] = {{.*}}, i32 1500, i32 10 }, {{.*}}, {{.*}}, i8 2, i32 0 }
15 // CHECK-DAG: @[[LINE_1600_SIGNED_TRUNCATION:.*]] = {{.*}}, i32 1600, i32 10 }, {{.*}}, {{.*}}, i8 2, i32 0 }
17 // CHECK-LABEL: @convert_unsigned_int_to_unsigned_int
18 unsigned int convert_unsigned_int_to_unsigned_int(unsigned int x
) {
23 // CHECK-LABEL: @convert_unsigned_char_to_unsigned_char
24 unsigned char convert_unsigned_char_to_unsigned_char(unsigned char x
) {
29 // CHECK-LABEL: @convert_signed_int_to_signed_int
30 signed int convert_signed_int_to_signed_int(signed int x
) {
35 // CHECK-LABEL: @convert_signed_char_to_signed_char
36 signed char convert_signed_char_to_signed_char(signed char x
) {
41 // CHECK-LABEL: @convert_unsigned_int_to_unsigned_char
42 unsigned char convert_unsigned_int_to_unsigned_char(unsigned int x
) {
43 // CHECK: call void @__ubsan_handle_implicit_conversion(ptr @[[LINE_500_UNSIGNED_TRUNCATION]]
48 // CHECK-LABEL: @convert_unsigned_char_to_unsigned_int
49 unsigned int convert_unsigned_char_to_unsigned_int(unsigned char x
) {
54 // CHECK-LABEL: @convert_unsigned_char_to_signed_int
55 signed int convert_unsigned_char_to_signed_int(unsigned char x
) {
60 // CHECK-LABEL: @convert_signed_char_to_signed_int
61 signed int convert_signed_char_to_signed_int(signed char x
) {
66 // CHECK-LABEL: @convert_unsigned_int_to_signed_int
67 signed int convert_unsigned_int_to_signed_int(unsigned int x
) {
72 // CHECK-LABEL: @convert_signed_int_to_unsigned_int
73 unsigned int convert_signed_int_to_unsigned_int(signed int x
) {
78 // CHECK-LABEL: @convert_signed_int_to_unsigned_char
79 unsigned char convert_signed_int_to_unsigned_char(signed int x
) {
80 // CHECK: call void @__ubsan_handle_implicit_conversion(ptr @[[LINE_1100_SIGNED_TRUNCATION]]
85 // CHECK-LABEL: @convert_signed_char_to_unsigned_char
86 unsigned char convert_signed_char_to_unsigned_char(signed char x
) {
91 // CHECK-LABEL: @convert_unsigned_char_to_signed_char
92 signed char convert_unsigned_char_to_signed_char(unsigned char x
) {
97 // CHECK-LABEL: @convert_signed_char_to_unsigned_int
98 unsigned int convert_signed_char_to_unsigned_int(signed char x
) {
103 // CHECK-LABEL: @convert_unsigned_int_to_signed_char
104 signed char convert_unsigned_int_to_signed_char(unsigned int x
) {
105 // CHECK: call void @__ubsan_handle_implicit_conversion(ptr @[[LINE_1500_SIGNED_TRUNCATION]]
110 // CHECK-LABEL: @convert_signed_int_to_signed_char
111 signed char convert_signed_int_to_signed_char(signed int x
) {
112 // CHECK: call void @__ubsan_handle_implicit_conversion(ptr @[[LINE_1600_SIGNED_TRUNCATION]]