diff options
author | Indu Bhagat <indu.bhagat@oracle.com> | 2024-01-15 01:00:19 -0800 |
---|---|---|
committer | Indu Bhagat <indu.bhagat@oracle.com> | 2024-01-15 03:31:35 -0800 |
commit | c02a969de74ae3118f4a66ae76860ad21603fc44 (patch) | |
tree | 399ac896091f9e9de7deac6799aa297368711f7f /gas/Makefile.am | |
parent | ad9bd833d48cd56697406f82ff2769a6a1dc5db7 (diff) | |
download | gdb-c02a969de74ae3118f4a66ae76860ad21603fc44.zip gdb-c02a969de74ae3118f4a66ae76860ad21603fc44.tar.gz gdb-c02a969de74ae3118f4a66ae76860ad21603fc44.tar.bz2 |
gas: scfidw2gen: new functionality to prepare for SCFI
Define a new set of handlers for CFI directives for the purpose of SCFI.
The SCFI machinery ignores many of the user-specified CFI direcives when
SCFI is in effect. A warning ("Warning: SCFI ignores most
user-specified CFI directives") is issued once per file. The following
CFI directives, however, are not ignored:
- .cfi_sections
- .cfi_label
- .cfi_signal_frame
gas/
* Makefile.am: Add new files to GAS_CFILES and HFILES.
* Makefile.in: Likewise.
* gas/read.c (scfi_pop_insert): New define.
(pobegin): Use the SCFI handlers.
* scfidw2gen.c: New file.
* scfidw2gen.h: New file.
Diffstat (limited to 'gas/Makefile.am')
-rw-r--r-- | gas/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gas/Makefile.am b/gas/Makefile.am index 77c92d4..2848fac 100644 --- a/gas/Makefile.am +++ b/gas/Makefile.am @@ -93,6 +93,7 @@ GAS_CFILES = \ read.c \ remap.c \ sb.c \ + scfidw2gen.c \ sframe-opt.c \ stabs.c \ subsegs.c \ @@ -128,6 +129,7 @@ HFILES = \ output-file.h \ read.h \ sb.h \ + scfidw2gen.h \ subsegs.h \ symbols.h \ tc.h \ |