Files
llvm-project/clang/test/CIR/CodeGen/inline-attributes.cpp
Erich Keane b16e7de0f2 [CIR] Implement func/call return-attributes (#181052)
This patch implements the infrastructure for return attributes on
function/call operations, a little of the common infrastructure for arg
attributes on the same, and 4 return attributes lowering: noundef
nonnull
dereferenceable
align

These 4 common attributes are all pretty reasonable/common, so these
will change a lot of tests.

This patch chooses to just use the LLVM-IR-Dialect variant of these
attributes (as a NamedAttr), which means no changes to the dialect or
lowering are necessary.
2026-02-13 06:20:27 -08:00

76 lines
2.5 KiB
C++

// RUN: %clang_cc1 -std=c++11 -triple x86_64-unknown-linux-gnu -O1 -fclangir -emit-cir %s -o %t.cir
// RUN: FileCheck --check-prefix=CIR --input-file=%t.cir %s
// RUN: %clang_cc1 -std=c++11 -triple x86_64-unknown-linux-gnu -O1 -fclangir -emit-llvm %s -o %t-cir.ll
// RUN: FileCheck --check-prefix=LLVM --input-file=%t-cir.ll %s
// RUN: %clang_cc1 -std=c++11 -triple x86_64-unknown-linux-gnu -O1 -emit-llvm %s -o %t.ll
// RUN: FileCheck --check-prefix=OGCG --input-file=%t.ll %s
extern int global_var;
__attribute__((always_inline)) inline int always_inline_function(int x) {
return x * 2 + global_var;
}
inline int inline_hint_function(int x) {
return x - 1 + global_var;
}
__attribute__((noinline)) int noinline_function(int x) {
return x / 2 + global_var;
}
int regular_function(int x) {
return x + 1 + global_var;
}
// Force emission of all functions with function pointers
int (*always_inline_ptr)(int) = &always_inline_function;
int (*inline_hint_ptr)(int) = &inline_hint_function;
int (*noinline_ptr)(int) = &noinline_function;
int (*regular_ptr)(int) = &regular_function;
// CIR-LABEL: cir.func no_inline dso_local @_Z17noinline_functioni(%arg0: !s32i {{.*}}) -> (!s32i {{.*}})
// CIR-LABEL: cir.func dso_local @_Z16regular_functioni(%arg0: !s32i {{.*}}) -> (!s32i {{.*}})
// CIR-NOT: no_inline
// CIR-NOT: always_inline
// CIR-NOT: inline_hint
// CIR-SAME: {
// CIR-LABEL: cir.func{{.*}} always_inline {{.*}}@_Z22always_inline_functioni(%arg0: !s32i {{.*}}) -> (!s32i{{.*}})
// CIR-LABEL: cir.func{{.*}} inline_hint {{.*}}@_Z20inline_hint_functioni(%arg0: !s32i {{.*}}) -> (!s32i{{.*}})
// LLVM: ; Function Attrs:{{.*}} noinline
// LLVM: define{{.*}} i32 @_Z17noinline_functioni
// LLVM: ; Function Attrs:
// LLVM-NOT: noinline
// LLVM-NOT: alwaysinline
// LLVM-NOT: inlinehint
// LLVM-SAME: {{$}}
// LLVM: define{{.*}} i32 @_Z16regular_functioni
// LLVM: ; Function Attrs:{{.*}} alwaysinline
// LLVM: define{{.*}} i32 @_Z22always_inline_functioni
// LLVM: ; Function Attrs:{{.*}} inlinehint
// LLVM: define{{.*}} i32 @_Z20inline_hint_functioni
// OGCG: ; Function Attrs:{{.*}} noinline
// OGCG: define{{.*}} i32 @_Z17noinline_functioni
// OGCG: ; Function Attrs:
// OGCG-NOT: noinline
// OGCG-NOT: alwaysinline
// OGCG-NOT: inlinehint
// OGCG-SAME: {{$}}
// OGCG: define{{.*}} i32 @_Z16regular_functioni
// OGCG: ; Function Attrs:{{.*}} alwaysinline
// OGCG: define{{.*}} i32 @_Z22always_inline_functioni
// OGCG: ; Function Attrs:{{.*}} inlinehint
// OGCG: define{{.*}} i32 @_Z20inline_hint_functioni