]> git.ipfire.org Git - thirdparty/gcc.git/blame - config/cet.m4
Simple patch only add assumed-rank to the list of possible attributes.
[thirdparty/gcc.git] / config / cet.m4
CommitLineData
1ecae1fc
IT
1dnl
2dnl GCC_CET_FLAGS
3dnl (SHELL-CODE_HANDLER)
4dnl
5AC_DEFUN([GCC_CET_FLAGS],[dnl
8d286dd1 6GCC_ENABLE(cet, auto, ,[enable Intel CET in target libraries],
a0e1df88 7 permit yes|no|auto)
14e335ed
IT
8AC_MSG_CHECKING([for CET support])
9
9051b548 10# NB: Avoid nested save_CFLAGS and save_LDFLAGS.
1ecae1fc
IT
11case "$host" in
12 i[[34567]]86-*-linux* | x86_64-*-linux*)
13 case "$enable_cet" in
a0e1df88 14 auto)
14e335ed
IT
15 # Check if target supports multi-byte NOPs
16 # and if assembler supports CET insn.
9051b548 17 cet_save_CFLAGS="$CFLAGS"
4c1a5d8b 18 CFLAGS="$CFLAGS -fcf-protection"
1ecae1fc
IT
19 AC_COMPILE_IFELSE(
20 [AC_LANG_PROGRAM(
21 [],
14e335ed
IT
22 [
23#if !defined(__SSE2__)
24#error target does not support multi-byte NOPs
25#else
26asm ("setssbsy");
27#endif
28 ])],
1ecae1fc
IT
29 [enable_cet=yes],
30 [enable_cet=no])
9051b548 31 CFLAGS="$cet_save_CFLAGS"
1ecae1fc
IT
32 ;;
33 yes)
34 # Check if assembler supports CET.
35 AC_COMPILE_IFELSE(
36 [AC_LANG_PROGRAM(
37 [],
38 [asm ("setssbsy");])],
39 [],
40 [AC_MSG_ERROR([assembler with CET support is required for --enable-cet])])
41 ;;
42 esac
43 ;;
44 *)
45 enable_cet=no
46 ;;
47esac
48if test x$enable_cet = xyes; then
8624f868 49 $1="-fcf-protection -mshstk"
14e335ed
IT
50 AC_MSG_RESULT([yes])
51else
52 AC_MSG_RESULT([no])
1ecae1fc
IT
53fi
54])
8fc8bf80
L
55
56dnl
57dnl GCC_CET_HOST_FLAGS
58dnl (SHELL-CODE_HANDLER)
59dnl
60AC_DEFUN([GCC_CET_HOST_FLAGS],[dnl
61GCC_ENABLE(cet, auto, ,[enable Intel CET in host libraries],
62 permit yes|no|auto)
63AC_MSG_CHECKING([for CET support])
64
65case "$host" in
66 i[[34567]]86-*-linux* | x86_64-*-linux*)
67 may_have_cet=yes
9051b548 68 cet_save_CFLAGS="$CFLAGS"
8fc8bf80
L
69 CFLAGS="$CFLAGS -fcf-protection"
70 case "$enable_cet" in
71 auto)
72 # Check if target supports multi-byte NOPs
73 # and if assembler supports CET insn.
74 AC_COMPILE_IFELSE(
75 [AC_LANG_PROGRAM(
76 [],
77 [
78#if !defined(__SSE2__)
79#error target does not support multi-byte NOPs
80#else
81asm ("setssbsy");
82#endif
83 ])],
84 [enable_cet=yes],
85 [enable_cet=no])
86 ;;
87 yes)
88 # Check if assembler supports CET.
89 AC_COMPILE_IFELSE(
90 [AC_LANG_PROGRAM(
91 [],
92 [asm ("setssbsy");])],
93 [],
94 [AC_MSG_ERROR([assembler with CET support is required for --enable-cet])])
95 ;;
96 esac
9051b548 97 CFLAGS="$cet_save_CFLAGS"
8fc8bf80
L
98 ;;
99 *)
100 may_have_cet=no
101 enable_cet=no
102 ;;
103esac
104
9051b548 105cet_save_CFLAGS="$CFLAGS"
eedc73a2 106CFLAGS="$CFLAGS -fcf-protection=none"
9051b548 107cet_save_LDFLAGS="$LDFLAGS"
eedc73a2
L
108LDFLAGS="$LDFLAGS -Wl,-z,ibt,-z,shstk"
109if test x$may_have_cet = xyes; then
110 # Check whether -fcf-protection=none -Wl,-z,ibt,-z,shstk work.
111 AC_TRY_LINK(
112 [],[return 0;],
113 [may_have_cet=yes],
114 [may_have_cet=no])
115fi
116
8fc8bf80 117if test x$may_have_cet = xyes; then
d17cdc17
L
118 if test x$cross_compiling = xno; then
119 AC_TRY_RUN([
8fc8bf80
L
120static void
121foo (void)
122{
123}
124
125static void
126__attribute__ ((noinline, noclone))
127xxx (void (*f) (void))
128{
129 f ();
130}
131
132static void
133__attribute__ ((noinline, noclone))
134bar (void)
135{
136 xxx (foo);
137}
138
139int
140main ()
141{
142 bar ();
143 return 0;
144}
d17cdc17
L
145 ],
146 [have_cet=no],
147 [have_cet=yes])
148 if test x$enable_cet = xno -a x$have_cet = xyes; then
149 AC_MSG_ERROR([Intel CET must be enabled on Intel CET enabled host])
150 fi
8fc8bf80 151 fi
d17cdc17
L
152else
153 # Enable CET in cross compiler if possible so that it will run on both
154 # CET and non-CET hosts.
155 have_cet=yes
8fc8bf80
L
156fi
157if test x$enable_cet = xyes; then
158 $1="-fcf-protection"
159 AC_MSG_RESULT([yes])
160else
161 AC_MSG_RESULT([no])
162fi
9051b548
L
163CFLAGS="$cet_save_CFLAGS"
164LDFLAGS="$cet_save_LDFLAGS"
8fc8bf80 165])