1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef LIBUNWIND_CET_UNWIND_H
11 #define LIBUNWIND_CET_UNWIND_H
13 #include "libunwind.h"
15 // Currently, CET is implemented on Linux x86 platforms.
16 #if defined(_LIBUNWIND_TARGET_LINUX) && defined(__CET__) && defined(__SHSTK__)
17 #define _LIBUNWIND_USE_CET 1
20 #if defined(_LIBUNWIND_USE_CET)
22 #include <immintrin.h>
24 #define _LIBUNWIND_POP_CET_SSP(x) \
26 unsigned long ssp = _get_ssp(); \
28 unsigned int tmp = (x); \
38 extern void *__libunwind_cet_get_registers(unw_cursor_t
*);
39 extern void *__libunwind_cet_get_jump_target(void);