llvm-project/clang/test/SemaCXX/attr-callback.cpp
Johannes Doerfert ac991bbb44 Emit !callback metadata and introduce the callback attribute
With commit r351627, LLVM gained the ability to apply (existing) IPO
  optimizations on indirections through callbacks, or transitive calls.
  The general idea is that we use an abstraction to hide the middle man
  and represent the callback call in the context of the initial caller.
  It is described in more detail in the commit message of the LLVM patch
  r351627, the llvm::AbstractCallSite class description, and the
  language reference section on callback-metadata.

  This commit enables clang to emit !callback metadata that is
  understood by LLVM. It does so in three different cases:
    1) For known broker functions declarations that are directly
       generated, e.g., __kmpc_fork_call for the OpenMP pragma parallel.
    2) For known broker functions that are identified by their name and
       source location through the builtin detection, e.g.,
       pthread_create from the POSIX thread API.
    3) For user annotated functions that carry the "callback(callee, ...)"
       attribute. The attribute has to include the name, or index, of
       the callback callee and how the passed arguments can be
       identified (as many as the callback callee has). See the callback
       attribute documentation for detailed information.

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

llvm-svn: 351629
2019-01-19 05:36:54 +00:00

68 lines
1.6 KiB
C++

// RUN: %clang_cc1 %s -verify -fsyntax-only
// expected-no-diagnostics
class C_in_class {
#include "../Sema/attr-callback.c"
};
struct Base {
void no_args_1(void (*callback)(void));
__attribute__((callback(1))) void no_args_2(void (*callback)(void));
__attribute__((callback(callback))) void no_args_3(void (*callback)(void)) {}
__attribute__((callback(1, 0))) virtual void
this_tr(void (*callback)(Base *));
__attribute__((callback(1, this, __, this))) virtual void
this_unknown_this(void (*callback)(Base *, Base *, Base *));
__attribute__((callback(1))) virtual void
virtual_1(void (*callback)(void));
__attribute__((callback(callback))) virtual void
virtual_2(void (*callback)(void));
__attribute__((callback(1))) virtual void
virtual_3(void (*callback)(void));
};
__attribute__((callback(1))) void
Base::no_args_1(void (*callback)(void)) {
}
void Base::no_args_2(void (*callback)(void)) {
}
struct Derived_1 : public Base {
__attribute__((callback(1, 0))) virtual void
this_tr(void (*callback)(Base *)) override;
__attribute__((callback(1))) virtual void
virtual_1(void (*callback)(void)) override {}
virtual void
virtual_3(void (*callback)(void)) override {}
};
struct Derived_2 : public Base {
__attribute__((callback(callback))) virtual void
virtual_1(void (*callback)(void)) override;
virtual void
virtual_2(void (*callback)(void)) override;
virtual void
virtual_3(void (*callback)(void)) override;
};
void Derived_2::virtual_1(void (*callback)(void)) {}
__attribute__((callback(1))) void
Derived_2::virtual_2(void (*callback)(void)) {}
void Derived_2::virtual_3(void (*callback)(void)) {}