X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gas%2Fdw2gencfi.h;h=3af2875767fa899a12d3f7a1f77414d064594a51;hb=41ab2f9b7b6173bf8ae2dc4d78c07ac17012c4c6;hp=cbc4233aae6b9cc0b12387a00fd6a8b5315f4a41;hpb=084303b8c636944564d7be3b85dde55e8c371e91;p=deliverable%2Fbinutils-gdb.git diff --git a/gas/dw2gencfi.h b/gas/dw2gencfi.h index cbc4233aae..3af2875767 100644 --- a/gas/dw2gencfi.h +++ b/gas/dw2gencfi.h @@ -1,5 +1,5 @@ /* dw2gencfi.h - Support for generating Dwarf2 CFI information. - Copyright (C) 2003-2016 Free Software Foundation, Inc. + Copyright (C) 2003-2020 Free Software Foundation, Inc. Contributed by Michal Ludvig This file is part of GAS, the GNU Assembler. @@ -135,6 +135,22 @@ enum { EH_COMPACT_HAS_LSDA }; +/* Stack of old CFI data, for save/restore. */ +struct cfa_save_data +{ + struct cfa_save_data *next; + offsetT cfa_offset; +}; + +/* Current open FDE entry. */ +struct frch_cfi_data +{ + struct fde_entry *cur_fde_data; + symbolS *last_address; + offsetT cur_cfa_offset; + struct cfa_save_data *cfa_save_stack; +}; + struct fde_entry { struct fde_entry *next; @@ -162,6 +178,9 @@ struct fde_entry /* For out of line tables and FDEs. */ symbolS *eh_loc; int sections; +#ifdef tc_fde_entry_extras + tc_fde_entry_extras +#endif }; /* The list of all FDEs that have been collected. */