Skip to content

Commit 6053822

Browse files
author
YunQiang Su
committed
MIPS/libunwind: Use -mfp64 if compiler is FPXX
Libunwind supports FP64 and FP32 modes, but not FPXX. The reason is that, FP64 and FP32 have different way to save/restore FPRs. If libunwind is built as FPXX, we have no idea which one should we use. If libunwind is built as FP64, it will interoperatable with FPXX/FP64 APPs, and if it is built as FP32, it will interoperatable with FP32/FPXX. Currently most of O32 APPs are FPXX or FP64, while few are FP32. So if the compiler is FPXX, which is the default value of most toolchain, let's switch it to FP64.
1 parent b3523d7 commit 6053822

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

libunwind/CMakeLists.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ set(LIBUNWIND_LIBCXX_PATH "${CMAKE_CURRENT_LIST_DIR}/../libcxx" CACHE PATH
2121
"Specify path to libc++ source.")
2222

2323
include(GNUInstallDirs)
24+
include(CheckSymbolExists)
2425

2526
#===============================================================================
2627
# Setup CMake Options
@@ -101,6 +102,20 @@ endif()
101102
option(LIBUNWIND_HIDE_SYMBOLS
102103
"Do not export any symbols from the static library." ${LIBUNWIND_DEFAULT_HIDE_SYMBOLS})
103104

105+
# If toolchain is FPXX, we switch to FP64 to save the full FPRs. See:
106+
# https://web.archive.org/web/20180828210612/https://dmz-portal.mips.com/wiki/MIPS_O32_ABI_-_FR0_and_FR1_Interlinking
107+
check_symbol_exists(__mips_hard_float "" __MIPSHF)
108+
check_symbol_exists(_ABIO32 "" __MIPS_O32)
109+
if (__MIPSHF AND __MIPS_O32)
110+
file(WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/mips_is_fpxx.c
111+
"#if __mips_fpr != 0\n"
112+
"# error\n"
113+
"#endif\n")
114+
try_compile(MIPS_FPABI_FPXX ${CMAKE_BINARY_DIR}
115+
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/mips_is_fpxx.c
116+
CMAKE_FLAGS -DCMAKE_C_LINK_EXECUTABLE='echo')
117+
endif()
118+
104119
#===============================================================================
105120
# Configure System
106121
#===============================================================================
@@ -184,6 +199,10 @@ if (WIN32)
184199
add_compile_flags_if_supported(-Wno-dll-attribute-on-redeclaration)
185200
endif()
186201

202+
if (MIPS_FPABI_FPXX)
203+
add_compile_flags(-mfp64)
204+
endif()
205+
187206
# Get feature flags.
188207
# Exceptions
189208
# Catches C++ exceptions only and tells the compiler to assume that extern C

0 commit comments

Comments
 (0)