- - Add gcc7-pfe-0001-Backport-Add-entry-for-patchable_function_entry.patch gcc7-pfe-0002-Backport-Skip-fpatchable-function-entry-tests-for-nv.patch gcc7-pfe-0003-Backport-Error-out-on-nvptx-for-fpatchable-function-.patch gcc7-pfe-0004-Backport-Adapt-scan-assembler-times-for-alpha.patch gcc7-pfe-0005-Backport-patchable_function_entry-decl.c-Use-3-NOPs-.patch gcc7-pfe-0006-Backport-IBM-Z-Use-the-dedicated-NOP-instructions-fo.patch gcc7-pfe-0007-Backport-Add-regex-to-search-for-uppercase-NOP-instr.patch gcc7-pfe-0008-Backport-ICE-segmentation-fault-with-patchable_funct.patch gcc7-pfe-0009-Backport-patchable_function_entry-decl.c-Pass-mcpu-g.patch gcc7-pfe-0010-Backport-patchable_function_entry-decl.c-Do-not-run-.patch gcc7-pfe-0011-Backport-patchable_function_entry-decl.c-Add-fno-pie.patch gcc7-pfe-0012-Backport-PR-c-89946-ICE-in-assemble_start_function-a.patch gcc7-pfe-0013-Backport-targhooks.c-default_print_patchable_functio.patch gcc7-pfe-0014-Backport-Align-__patchable_function_entries-to-POINT.patch gcc7-pfe-0015-Backport-Fix-PR-93242-patchable-function-entry-broke.patch gcc7-pfe-0016-Backport-AArch64-PR92424-Fix-fpatchable-function-ent.patch gcc7-pfe-0017-Backport-Fix-patchable-function-entry-on-arc.patch gcc7-pfe-0018-Backport-Add-patch_area_size-and-patch_area_entry-to.patch gcc7-pfe-0019-Backport-testsuite-Adjust-patchable_function-tests-f.patch gcc7-pfe-0020-Backport-Use-the-section-flag-o-for-__patchable_func.patch gcc7-pfe-0021-Backport-varasm-Fix-up-__patchable_function_entries-.patch gcc7-pfe-0022-Backport-rs6000-Avoid-fpatchable-function-entry-regr.patch gcc7-pfe-0023-Fix-unwinding-issues-when-pfe-is-enabled.patch to add -fpatchable-function-entry feature to gcc-7. OBS-URL: https://build.opensuse.org/request/show/926586 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gcc7?expand=0&rev=213
62 lines
1.9 KiB
Diff
62 lines
1.9 KiB
Diff
From c91e59d9039cc5074d318f2785b66d28a9fdc2c0 Mon Sep 17 00:00:00 2001
|
|
From: Tom de Vries <tom@codesourcery.com>
|
|
Date: Thu, 3 Aug 2017 11:18:09 +0000
|
|
Subject: [PATCH 03/23] Backport Error out on nvptx for
|
|
fpatchable-function-entry
|
|
|
|
2021-10-07 Giuliano Belinassi <gbelinassi@suse.de>
|
|
|
|
Backport from mainline
|
|
2017-08-03 Tom de Vries <tom@codesourcery.com>
|
|
|
|
PR target/81662
|
|
* config/nvptx/nvptx.c (nvptx_option_override): Emit sorry if
|
|
function_entry_patch_area_size > 0.
|
|
|
|
* gcc.target/nvptx/patchable_function_entry-default.c: New test.
|
|
---
|
|
gcc/config/nvptx/nvptx.c | 4 ++++
|
|
.../nvptx/patchable_function_entry-default.c | 15 +++++++++++++++
|
|
2 files changed, 19 insertions(+)
|
|
create mode 100644 gcc/testsuite/gcc.target/nvptx/patchable_function_entry-default.c
|
|
|
|
diff --git a/gcc/config/nvptx/nvptx.c b/gcc/config/nvptx/nvptx.c
|
|
index 74bce3ec8d0..b0470836fb8 100644
|
|
--- a/gcc/config/nvptx/nvptx.c
|
|
+++ b/gcc/config/nvptx/nvptx.c
|
|
@@ -178,6 +178,10 @@ nvptx_option_override (void)
|
|
if (!global_options_set.x_flag_no_common)
|
|
flag_no_common = 1;
|
|
|
|
+ /* The patch area requires nops, which we don't have. */
|
|
+ if (function_entry_patch_area_size > 0)
|
|
+ sorry ("not generating patch area, nops not supported");
|
|
+
|
|
/* Assumes that it will see only hard registers. */
|
|
flag_var_tracking = 0;
|
|
|
|
diff --git a/gcc/testsuite/gcc.target/nvptx/patchable_function_entry-default.c b/gcc/testsuite/gcc.target/nvptx/patchable_function_entry-default.c
|
|
new file mode 100644
|
|
index 00000000000..42544562725
|
|
--- /dev/null
|
|
+++ b/gcc/testsuite/gcc.target/nvptx/patchable_function_entry-default.c
|
|
@@ -0,0 +1,15 @@
|
|
+/* { dg-do compile } */
|
|
+/* { dg-options "-O2 -fpatchable-function-entry=3,1" } */
|
|
+
|
|
+extern int a;
|
|
+
|
|
+int f3 (void);
|
|
+
|
|
+int
|
|
+__attribute__((noinline))
|
|
+f3 (void)
|
|
+{
|
|
+ return 5*a;
|
|
+}
|
|
+
|
|
+/* { dg-excess-errors "sorry, unimplemented: not generating patch area, nops not supported" } */
|
|
--
|
|
2.33.1
|
|
|