mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04:00

Clang interface stubs (previously referred to as clang-ifsos) is a new frontend action in clang that allows the generation of stub files that contain mangled name info that can be used to produce a stub library. These stub libraries can be useful for breaking up build dependencies and controlling access to a library's internal symbols. Generation of these stubs can be invoked by: clang -fvisibility=<visibility> -emit-interface-stubs \ -interface-stub-version=<interface format> Notice that -fvisibility (along with use of visibility attributes) can be used to control what symbols get generated. Currently the interface format is experimental but there are a wide range of possibilities here. Differential Revision: https://reviews.llvm.org/D60974 llvm-svn: 363626
32 lines
961 B
C++
32 lines
961 B
C++
// RUN: %clang -target x86_64-unknown-linux-gnu -o - -emit-interface-stubs \
|
|
// RUN: -interface-stub-version=experimental-tapi-elf-v1 %s | \
|
|
// RUN: FileCheck %s
|
|
|
|
// RUN: %clang -target x86_64-unknown-linux-gnu -o - -c %s | llvm-nm - 2>&1 | \
|
|
// RUN: FileCheck -check-prefix=CHECK-SYMBOLS %s
|
|
|
|
// CHECK: Symbols:
|
|
// CHECK-DAG: _ZN3qux3barEii: { Type: Func }
|
|
// CHECK-DAG: _ZN3baz3addIiEET_S1_S1_: { Type: Func }
|
|
// CHECK-DAG: _Z4fbarff: { Type: Func }
|
|
// CHECK-DAG: _ZN3baz3addIfEET_S1_S1_: { Type: Func }
|
|
|
|
// Same symbols just different order.
|
|
// CHECK-SYMBOLS-DAG: _Z4fbarff
|
|
// CHECK-SYMBOLS-DAG: _ZN3baz3addIfEET_S1_S1_
|
|
// CHECK-SYMBOLS-DAG: _ZN3baz3addIiEET_S1_S1_
|
|
// CHECK-SYMBOLS-DAG: _ZN3qux3barEii
|
|
|
|
namespace baz {
|
|
template <typename T>
|
|
T add(T a, T b) {
|
|
return a + b;
|
|
}
|
|
} // namespace baz
|
|
|
|
namespace qux {
|
|
int bar(int a, int b) { return baz::add<int>(a, b); }
|
|
} // namespace qux
|
|
|
|
float fbar(float a, float b) { return baz::add<float>(a, b); }
|