在 Solaris x86 平台上覆盖映射文件中的 hwcap_2

Override hwcap_2 in mapfile on Solaris x86 platforms

我们有一个保护运行时路径的库。如果 cpu 功能可用,则采用更快的代码路径。我们正在尝试在 Solaris 11.3 上添加 AVX2 代码路径。

在没有 AVX2 的旧的下层机器上,我们遇到:

$ ./cryptest.exe v
ld.so.1: cryptest.exe: fatal: cryptest.exe: hardware capability (CA_SUNW_HW_2) unsupported: 0x40  [ AVX2 ]
Killed

由于运行时特征检测,我们有一个清除功能的映射文件。它适用于 CA_SUNW_HW_1 和 AESNI、CLMUL、SSE4.2、SSE4.1 和 SSE3:

$ cat cryptopp.mapfile
hwcap_1 = SSE SSE2 OVERRIDE;

我们需要清除 hwcap_2 的上限。根据 Sun 的 Mapfile Directives,我们应该可以使用空赋值来清除上限:

If the “=” operator is used, the value specified replaces the previous value, and exclude is reset to 0. In addition, the use of “=” overrides any capabilities that are collected from input file processing.

然后在文档的后面:

To completely eliminate a given capability from the output object, it suffices to use the “=” operator and an empty value list...

所以我们添加了一个空的hwcap_2来消除能力:

$ cat cryptopp.mapfile
hwcap_1 = SSE SSE2 OVERRIDE;
hwcap_2 = ;

但它会导致相同的运行时错误。

我们在 Disable hwcaps on libgfortran 发现了一个错误报告,但它有一个 Autools 解决方法,而不是一个映射文件修复。

我们如何清除 Solaris x86 上映射文件中的 AVX 和 AVX2 功能?


设置 hwcap_2 = 0; 在 link 时产生以下结果:

ld: fatal: cryptopp.mapfile: 4: unknown segment attribute: 0
make: *** [GNUmakefile:1084: cryptest.exe] Error 2

我们不能使用 hwcap_2 = SSE SSE2,因为 hwcap_1SSESSE2 与 [=18] 的 AV2_386_RDSEEDAV2_386_ADX 冲突=].


这是使用映射文件的完整 link 命令:

$ CXX=/opt/solarisstudio12.4/bin/CC make
/opt/solarisstudio12.4/bin/CC -o cryptest.exe -DNDEBUG -g -xO3 -template=no%extd
ef adhoc.o test.o bench1.o bench2.o bench3.o datatest.o dlltest.o fipsalgt.o val
idat0.o validat1.o validat2.o validat3.o validat4.o validat5.o validat6.o valida
t7.o validat8.o validat9.o validat10.o regtest1.o regtest2.o regtest3.o regtest4
.o ./libcryptopp.a -xarch=sse2 -xarch=ssse3 -xarch=sse4_1 -xarch=sse4_2 -xarch=a
es -xarch=avx -xarch=avx2 -M cryptopp.mapfile -lnsl -lsocket
$

linker 包含 -xarch 选项(已被映射文件删除)的原因是,手册告诉我们 link 命令必须包含所有 -xarch选项。所以我们别无选择。


这里是 <sys/auxv_386.h>:

$ cat /usr/include/sys/auxv_386.h
/*
 * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
 */

#ifndef _SYS_AUXV_386_H
#define _SYS_AUXV_386_H

#ifdef __cplusplus
extern "C" {
#endif

/*
 * Flags used in AT_SUN_CAP_HW* elements to describe various userland
 * instruction set extensions available on different processors.
 * The basic assumption is that of the i386 ABI; that is, i386 plus i387
 * floating point.
 *
 * Note that if a given bit is set; the implication is that the kernel
 * provides all the underlying architectural support for the correct
 * functioning of the extended instruction(s).
 */
#define AV_386_FPU              0x00001 /* x87-style floating point */
#define AV_386_TSC              0x00002 /* rdtsc insn */
#define AV_386_CX8              0x00004 /* cmpxchg8b insn */
#define AV_386_SEP              0x00008 /* sysenter and sysexit */
#define AV_386_AMD_SYSC         0x00010 /* AMD's syscall and sysret */
#define AV_386_CMOV             0x00020 /* conditional move insns */
#define AV_386_MMX              0x00040 /* MMX insns */
#define AV_386_AMD_MMX          0x00080 /* AMD's MMX insns */
#define AV_386_AMD_3DNow        0x00100 /* AMD's 3Dnow! insns */
#define AV_386_AMD_3DNowx       0x00200 /* AMD's 3Dnow! extended insns */
#define AV_386_FXSR             0x00400 /* fxsave and fxrstor */
#define AV_386_SSE              0x00800 /* SSE insns and regs */
#define AV_386_SSE2             0x01000 /* SSE2 insns and regs */
                                        /* 0x02000 withdrawn - do not assign */
#define AV_386_SSE3             0x04000 /* SSE3 insns and regs */
                                        /* 0x08000 withdrawn - do not assign */
#define AV_386_CX16             0x10000 /* cmpxchg16b insn */
#define AV_386_AHF              0x20000 /* lahf/sahf insns */
#define AV_386_TSCP             0x40000 /* rdtscp instruction */
#define AV_386_AMD_SSE4A        0x80000 /* AMD's SSE4A insns */
#define AV_386_POPCNT           0x100000 /* POPCNT insn */
#define AV_386_AMD_LZCNT        0x200000 /* AMD's LZCNT insn */
#define AV_386_SSSE3            0x400000 /* Intel SSSE3 insns */
#define AV_386_SSE4_1           0x800000 /* Intel SSE4.1 insns */
#define AV_386_SSE4_2           0x1000000 /* Intel SSE4.2 insns */
#define AV_386_MOVBE            0x2000000 /* Intel MOVBE insns */
#define AV_386_AES              0x4000000 /* Intel AES insns */
#define AV_386_PCLMULQDQ        0x8000000 /* Intel PCLMULQDQ insn */
#define AV_386_XSAVE            0x10000000 /* Intel XSAVE/XRSTOR insns */
#define AV_386_AVX              0x20000000 /* Intel AVX insns */
#define AV_386_AMD_XOP          0x40000000 /* AMD XOP insns */
#define AV_386_AMD_FMA4         0x80000000 /* AMD FMA4 insns */

#define FMT_AV_386_HW1                                                  \
        ""                                                           \
        "amd_fma4amd_xop"                                         \
        "avxxsave"                                                \
        "pclmulqdqaes"                                            \
        "movbesse4.2"                                             \
        "sse4.1ssse3amd_lzcntpopcnt"                        \
        "amd_sse4atscpahfcx16"                              \
        "sse3sse2ssefxsramd3dxamd3d"  \
        "amdmmxmmxcmovamdsyscsepcx8tscfpu"

#define FMT_AV_386_HW2                                                  \
        ""                                                           \
        "prfchwadxrdseedefsrtmhlebmi2avx2"       \
        "fsgsbasebmi1amd_tbmf16cfmardrand"

/*
 * Flags used in AT_SUN_CAP_HW2 elements.
 */
#define AV2_386_RDRAND          0x00001 /* Intel RDRAND insns */
#define AV2_386_FMA             0x00002 /* Intel FMA insn */
#define AV2_386_F16C            0x00004 /* IEEE half precn(float) insn */
#define AV2_386_AMD_TBM         0x00008 /* AMD TBM insn */
#define AV2_386_BMI1            0x00010 /* Intel BMI1 insn */
#define AV2_386_FSGSBASE        0x00020 /* Intel RD/WR FS/GSBASE insn */
#define AV2_386_AVX2            0x00040 /* Intel AVX2 insns */
#define AV2_386_BMI2            0x00080 /* Intel BMI2 insns */
#define AV2_386_HLE             0x00100 /* Intel HLE insns */
#define AV2_386_RTM             0x00200 /* Intel RTM insns */
#define AV2_386_EFS             0x00400 /* Intel Enhanced Fast String */
#define AV2_386_RDSEED          0x00800 /* Intel RDSEED insn */
#define AV2_386_ADX             0x01000 /* Intel ADX insns */
#define AV2_386_PRFCHW          0x02000 /* Intel PREFETCHW hint */

#ifdef __cplusplus
}
#endif

#endif  /* !_SYS_AUXV_386_H */

在我看来,您的地图文件不完整。从您的 link 到 Oracle Solaris 11.1 Linkers and Libraries Guide 的示例如下所示:

To completely eliminate a given capability from the output object, it suffices to use the “=” operator and an empty value list. For example, the following suppresses any hardware capabilities contributed by the input objects:

   $mapfile_version 2
   CAPABILITY {
           HW = ;
   };

但是你的地图文件是:

hwcap_1 = SSE SSE2 OVERRIDE;
hwcap_2 = ;

编辑:

此外,根据@jww 检查 the ld source code 解析 linker 映射,未记录的值 V0x0 用于删除版本 1 映射文件的硬件功能:

hwcap_1 = SSE SSE2 OVERRIDE;
hwcap_2 = V0x0;