mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-13 17:37:00 +00:00

Both options do not affect the AST content that is serialized into the PCM. This commit includes the following changes: 1.) Mark `-fvisibility={}` and `-ftype-visibility={}` as benign options.That means they are no longer considered part of the module hash, which can reduce the number of module variants. 2.) Add a test to verify the generated LLVM IR is not affected by the default visibiliy mode in the module. 3.) Add a test to clang-scan-deps to ensure only one module is build, even if the above mentioned options are used. This fixes rdar://118246054.
45 lines
1.7 KiB
C++
45 lines
1.7 KiB
C++
// Test that modules with different visibility mode can be shared.
|
|
// REQUIRES: aarch64-registered-target
|
|
|
|
// RUN: rm -rf %t && mkdir %t
|
|
// RUN: split-file %s %t
|
|
|
|
// RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=default -fmodules -emit-module -fmodule-name=foo %t/foo.modulemap -o %t/foo.default.pcm
|
|
// RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=hidden -fmodules -emit-module -fmodule-name=foo %t/foo.modulemap -o %t/foo.hidden.pcm
|
|
|
|
// RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=default -fmodules -fmodule-file=%t/foo.default.pcm -I%t -emit-llvm %t/test.cpp -o - | FileCheck %s --check-prefixes=DEFAULT,BOTH
|
|
// RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=default -fmodules -fmodule-file=%t/foo.hidden.pcm -I%t -emit-llvm %t/test.cpp -o - | FileCheck %s --check-prefixes=DEFAULT,BOTH
|
|
|
|
// RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=hidden -fmodules -fmodule-file=%t/foo.default.pcm -I%t -emit-llvm %t/test.cpp -o - | FileCheck %s --check-prefixes=HIDDEN,BOTH
|
|
// RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=hidden -fmodules -fmodule-file=%t/foo.hidden.pcm -I%t -emit-llvm %t/test.cpp -o - | FileCheck %s --check-prefixes=HIDDEN,BOTH
|
|
|
|
// DEFAULT: define void @_Z2f4v()
|
|
// HIDDEN: define hidden void @_Z2f4v()
|
|
// DEFAULT: define void @_Z4testv()
|
|
// HIDDEN: define hidden void @_Z4testv()
|
|
// BOTH: declare void @_Z2f1v()
|
|
// BOTH: define internal void @_ZL2f2v()
|
|
// DEFAULT: define linkonce_odr void @_Z2f3v()
|
|
// HIDDEN: define linkonce_odr hidden void @_Z2f3v()
|
|
|
|
|
|
//--- foo.h
|
|
void f1();
|
|
static void f2() {}
|
|
inline void f3() {}
|
|
void f4() {}
|
|
|
|
//--- test.cpp
|
|
#include "foo.h"
|
|
|
|
void test() {
|
|
f1();
|
|
f2();
|
|
f3();
|
|
f4();
|
|
}
|
|
|
|
//--- foo.modulemap
|
|
module foo { header "foo.h" }
|
|
|