[clang][AIX] Don't ignore XCOFF visibility by default

D87451 added -mignore-xcoff-visibility for AIX targets and made it the default (which mimicked the behaviour of the XL 16.1 compiler on AIX).

However, ignoring hidden visibility has unwanted side effects and some libraries depend on visibility to hide non-ABI facing entities from user headers and
reserve the right to change these implementation details based on this (https://libcxx.llvm.org/DesignDocs/VisibilityMacros.html). This forces us to use
internal linkage fallbacks for these cases on AIX and creates an unwanted divergence in implementations on the plaform.

For these reasons, it's preferable to not add -mignore-xcoff-visibility by default, which is what this patch does.

Reviewed By: DiggerLin

Differential Revision: https://reviews.llvm.org/D125141
This commit is contained in:
David Tenty 2022-05-02 17:06:04 -04:00
parent 0cc607345f
commit d9c1d3cbcb
5 changed files with 19 additions and 31 deletions

View File

@ -298,6 +298,17 @@ Windows Support
JustMyCode feature. Note, you may need to manually add ``/JMC`` as additional JustMyCode feature. Note, you may need to manually add ``/JMC`` as additional
compile options in the Visual Studio since it currently assumes clang-cl does not support ``/JMC``. compile options in the Visual Studio since it currently assumes clang-cl does not support ``/JMC``.
AIX Support
-----------
- The driver no longer adds ``-mignore-xcoff-visibility`` by default for AIX
targets when no other visibility command-line options are in effect, as
ignoring hidden visibility can silently have undesirable side effects (e.g
when libraries depend on visibility to hide non-ABI facing entities). The
``-mignore-xcoff-visibility`` option can be manually specified on the
command-line to recover the previous behavior if desired.
C Language Changes in Clang C Language Changes in Clang
--------------------------- ---------------------------

View File

@ -5922,9 +5922,7 @@ def stack_protector_buffer_size : Separate<["-"], "stack-protector-buffer-size">
MarshallingInfoInt<CodeGenOpts<"SSPBufferSize">, "8">; MarshallingInfoInt<CodeGenOpts<"SSPBufferSize">, "8">;
def fvisibility : Separate<["-"], "fvisibility">, def fvisibility : Separate<["-"], "fvisibility">,
HelpText<"Default type and symbol visibility">, HelpText<"Default type and symbol visibility">,
MarshallingInfoVisibility<LangOpts<"ValueVisibilityMode">, "DefaultVisibility">, MarshallingInfoVisibility<LangOpts<"ValueVisibilityMode">, "DefaultVisibility">;
// Always emitting because of the relation to `-mignore-xcoff-visibility`.
AlwaysEmit;
def ftype_visibility : Separate<["-"], "ftype-visibility">, def ftype_visibility : Separate<["-"], "ftype-visibility">,
HelpText<"Default type visibility">, HelpText<"Default type visibility">,
MarshallingInfoVisibility<LangOpts<"TypeVisibilityMode">, fvisibility.KeyPath>; MarshallingInfoVisibility<LangOpts<"TypeVisibilityMode">, fvisibility.KeyPath>;

View File

@ -3739,28 +3739,7 @@ bool CompilerInvocation::ParseLangArgs(LangOptions &Opts, ArgList &Args,
Opts.GNUCVersion = Major * 100 * 100 + Minor * 100 + Patch; Opts.GNUCVersion = Major * 100 * 100 + Minor * 100 + Patch;
} }
// In AIX OS, the -mignore-xcoff-visibility is enable by default if there is if (T.isOSAIX() && (Args.hasArg(OPT_mignore_xcoff_visibility)))
// no -fvisibility=* option.
// This is the reason why '-fvisibility' needs to be always generated:
// its absence implies '-mignore-xcoff-visibility'.
//
// Suppose the original cc1 command line does contain '-fvisibility default':
// '-mignore-xcoff-visibility' should not be implied.
// * If '-fvisibility' is not generated (as most options with default values
// don't), its absence would imply '-mignore-xcoff-visibility'. This changes
// the command line semantics.
// * If '-fvisibility' is generated regardless of its presence and value,
// '-mignore-xcoff-visibility' won't be implied and the command line
// semantics are kept intact.
//
// When the original cc1 command line does **not** contain '-fvisibility',
// '-mignore-xcoff-visibility' is implied. The generated command line will
// contain both '-fvisibility default' and '-mignore-xcoff-visibility' and
// subsequent calls to `CreateFromArgs`/`generateCC1CommandLine` will always
// produce the same arguments.
if (T.isOSAIX() && (Args.hasArg(OPT_mignore_xcoff_visibility) ||
!Args.hasArg(OPT_fvisibility)))
Opts.IgnoreXCOFFVisibility = 1; Opts.IgnoreXCOFFVisibility = 1;
if (Args.hasArg(OPT_ftrapv)) { if (Args.hasArg(OPT_ftrapv)) {

View File

@ -1,8 +1,8 @@
// RUN: %clang_cc1 -no-opaque-pointers -triple powerpc-unknown-aix -emit-llvm -o - -x c++ %s | \ // RUN: %clang_cc1 -no-opaque-pointers -triple powerpc-unknown-aix -emit-llvm -o - -x c++ %s | \
// RUN: FileCheck -check-prefix=NOVISIBILITY-IR %s // RUN: FileCheck -check-prefix=VISIBILITY-IR %s
// RUN: %clang_cc1 -no-opaque-pointers -triple powerpc-unknown-aix -emit-llvm -round-trip-args -o - -x c++ %s | \ // RUN: %clang_cc1 -no-opaque-pointers -triple powerpc-unknown-aix -emit-llvm -round-trip-args -o - -x c++ %s | \
// RUN: FileCheck -check-prefix=NOVISIBILITY-IR %s // RUN: FileCheck -check-prefix=VISIBILITY-IR %s
// RUN: %clang_cc1 -no-opaque-pointers -triple powerpc-unknown-aix -mignore-xcoff-visibility -fvisibility default -emit-llvm -o - -x c++ %s | \ // RUN: %clang_cc1 -no-opaque-pointers -triple powerpc-unknown-aix -mignore-xcoff-visibility -fvisibility default -emit-llvm -o - -x c++ %s | \
// RUN: FileCheck -check-prefix=NOVISIBILITY-IR %s // RUN: FileCheck -check-prefix=NOVISIBILITY-IR %s

View File

@ -1,13 +1,13 @@
// RUN: %clang_cc1 -triple powerpc-unknown-aix -mcmodel=large -emit-llvm -o - -x c++ %s | \ // RUN: %clang_cc1 -triple powerpc-unknown-aix -mcmodel=large -emit-llvm -o - -x c++ %s | \
// RUN: FileCheck -check-prefix=NOVISIBILITY-IR %s // RUN: FileCheck -check-prefix=VISIBILITY-IR %s
// RUN: %clang_cc1 -triple powerpc-unknown-aix -mcmodel=large \ // RUN: %clang_cc1 -triple powerpc-unknown-aix -mcmodel=large \
// RUN: -fvisibility-inlines-hidden -emit-llvm -o - -x c++ %s | \ // RUN: -fvisibility-inlines-hidden -emit-llvm -o - -x c++ %s | \
// RUN: FileCheck -check-prefix=NOVISIBILITY-IR %s // RUN: FileCheck -check-prefixes=VISIBILITY-IR,HIDDENINLINE-IR %s
// RUN: %clang_cc1 -triple powerpc-unknown-aix -mcmodel=large -fvisibility-inlines-hidden \ // RUN: %clang_cc1 -triple powerpc-unknown-aix -mcmodel=large -fvisibility-inlines-hidden \
// RUN: -fvisibility default -emit-llvm -o - -x c++ %s | \ // RUN: -fvisibility default -emit-llvm -o - -x c++ %s | \
// RUN: FileCheck -check-prefix=VISIBILITY-IR %s // RUN: FileCheck -check-prefixes=VISIBILITY-IR,HIDDENINLINE-IR %s
// RUN: %clang_cc1 -triple powerpc-unknown-aix -mcmodel=large -mignore-xcoff-visibility -emit-llvm \ // RUN: %clang_cc1 -triple powerpc-unknown-aix -mcmodel=large -mignore-xcoff-visibility -emit-llvm \
// RUN: -fvisibility-inlines-hidden -fvisibility default -o - -x c++ %s | \ // RUN: -fvisibility-inlines-hidden -fvisibility default -o - -x c++ %s | \
@ -30,7 +30,7 @@ int bar() {
return x; return x;
} }
// VISIBILITY-IR: define linkonce_odr hidden void @_Z1fv() // HIDDENINLINE-IR: define linkonce_odr hidden void @_Z1fv()
// NOVISIBILITY-IR: define linkonce_odr void @_Z1fv() // NOVISIBILITY-IR: define linkonce_odr void @_Z1fv()
// VISIBILITY-IR: define linkonce_odr hidden void @_Z3foov() // VISIBILITY-IR: define linkonce_odr hidden void @_Z3foov()