2003-05-20 15:58:07 +08:00
|
|
|
|
/* dw2gencfi.c - Support for generating Dwarf2 CFI information.
|
2009-06-09 23:12:45 +08:00
|
|
|
|
Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009
|
|
|
|
|
Free Software Foundation, Inc.
|
2003-05-20 15:58:07 +08:00
|
|
|
|
Contributed by Michal Ludvig <mludvig@suse.cz>
|
|
|
|
|
|
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
|
|
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 19:01:12 +08:00
|
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
GAS is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GAS; see the file COPYING. If not, write to the Free
|
2005-05-05 17:13:19 +08:00
|
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
|
02110-1301, USA. */
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
|
|
|
|
#include "as.h"
|
|
|
|
|
#include "dw2gencfi.h"
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
#include "subsegs.h"
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2007-09-26 15:02:07 +08:00
|
|
|
|
#ifdef TARGET_USE_CFIPOP
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
2008-09-08 06:54:54 +08:00
|
|
|
|
/* By default, use difference expressions if DIFF_EXPR_OK is defined. */
|
|
|
|
|
#ifndef CFI_DIFF_EXPR_OK
|
|
|
|
|
# ifdef DIFF_EXPR_OK
|
|
|
|
|
# define CFI_DIFF_EXPR_OK 1
|
|
|
|
|
# else
|
|
|
|
|
# define CFI_DIFF_EXPR_OK 0
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* We re-use DWARF2_LINE_MIN_INSN_LENGTH for the code alignment field
|
|
|
|
|
of the CIE. Default to 1 if not otherwise specified. */
|
2004-10-07 23:18:11 +08:00
|
|
|
|
#ifndef DWARF2_LINE_MIN_INSN_LENGTH
|
2003-05-28 00:52:49 +08:00
|
|
|
|
# define DWARF2_LINE_MIN_INSN_LENGTH 1
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-08-22 03:49:22 +08:00
|
|
|
|
/* By default, use 32-bit relocations from .eh_frame into .text. */
|
|
|
|
|
#ifndef DWARF2_FDE_RELOC_SIZE
|
|
|
|
|
# define DWARF2_FDE_RELOC_SIZE 4
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* By default, use a read-only .eh_frame section. */
|
|
|
|
|
#ifndef DWARF2_EH_FRAME_READ_ONLY
|
|
|
|
|
# define DWARF2_EH_FRAME_READ_ONLY SEC_READONLY
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-06-19 01:58:48 +08:00
|
|
|
|
#ifndef EH_FRAME_ALIGNMENT
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 09:25:29 +08:00
|
|
|
|
# define EH_FRAME_ALIGNMENT (bfd_get_arch_size (stdoutput) == 64 ? 3 : 2)
|
2003-06-19 01:58:48 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
#ifndef tc_cfi_frame_initial_instructions
|
|
|
|
|
# define tc_cfi_frame_initial_instructions() ((void)0)
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-09-25 07:21:04 +08:00
|
|
|
|
#ifndef DWARF2_ADDR_SIZE
|
|
|
|
|
# define DWARF2_ADDR_SIZE(bfd) (bfd_arch_bits_per_address (bfd) / 8)
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-09-11 23:27:38 +08:00
|
|
|
|
struct cfi_escape_data {
|
|
|
|
|
struct cfi_escape_data *next;
|
|
|
|
|
expressionS exp;
|
|
|
|
|
};
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
struct cfi_insn_data
|
2003-05-20 22:31:44 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
struct cfi_insn_data *next;
|
|
|
|
|
int insn;
|
|
|
|
|
union {
|
|
|
|
|
struct {
|
|
|
|
|
unsigned reg;
|
|
|
|
|
offsetT offset;
|
|
|
|
|
} ri;
|
|
|
|
|
|
|
|
|
|
struct {
|
|
|
|
|
unsigned reg1;
|
|
|
|
|
unsigned reg2;
|
|
|
|
|
} rr;
|
|
|
|
|
|
|
|
|
|
unsigned r;
|
|
|
|
|
offsetT i;
|
|
|
|
|
|
|
|
|
|
struct {
|
|
|
|
|
symbolS *lab1;
|
|
|
|
|
symbolS *lab2;
|
|
|
|
|
} ll;
|
2003-06-12 07:16:58 +08:00
|
|
|
|
|
2009-09-11 23:27:38 +08:00
|
|
|
|
struct cfi_escape_data *esc;
|
2008-09-25 07:21:04 +08:00
|
|
|
|
|
|
|
|
|
struct {
|
|
|
|
|
unsigned reg, encoding;
|
|
|
|
|
expressionS exp;
|
|
|
|
|
} ea;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
} u;
|
2003-05-20 22:31:44 +08:00
|
|
|
|
};
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
struct fde_entry
|
2003-05-20 22:31:44 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
struct fde_entry *next;
|
|
|
|
|
symbolS *start_address;
|
|
|
|
|
symbolS *end_address;
|
|
|
|
|
struct cfi_insn_data *data;
|
|
|
|
|
struct cfi_insn_data **last;
|
2006-11-03 15:29:37 +08:00
|
|
|
|
unsigned char per_encoding;
|
|
|
|
|
unsigned char lsda_encoding;
|
|
|
|
|
expressionS personality;
|
|
|
|
|
expressionS lsda;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
unsigned int return_column;
|
2006-02-28 07:07:06 +08:00
|
|
|
|
unsigned int signal_frame;
|
2003-05-20 22:31:44 +08:00
|
|
|
|
};
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
struct cie_entry
|
2003-05-20 22:31:44 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
struct cie_entry *next;
|
|
|
|
|
symbolS *start_address;
|
|
|
|
|
unsigned int return_column;
|
2006-02-28 07:07:06 +08:00
|
|
|
|
unsigned int signal_frame;
|
2006-11-03 15:29:37 +08:00
|
|
|
|
unsigned char per_encoding;
|
|
|
|
|
unsigned char lsda_encoding;
|
|
|
|
|
expressionS personality;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
struct cfi_insn_data *first, *last;
|
2003-05-20 22:31:44 +08:00
|
|
|
|
};
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
/* List of FDE entries. */
|
|
|
|
|
static struct fde_entry *all_fde_data;
|
|
|
|
|
static struct fde_entry **last_fde_data = &all_fde_data;
|
2003-05-20 22:31:44 +08:00
|
|
|
|
|
|
|
|
|
/* List of CIEs so that they could be reused. */
|
|
|
|
|
static struct cie_entry *cie_root;
|
|
|
|
|
|
2003-06-08 11:59:44 +08:00
|
|
|
|
/* Stack of old CFI data, for save/restore. */
|
|
|
|
|
struct cfa_save_data
|
|
|
|
|
{
|
|
|
|
|
struct cfa_save_data *next;
|
|
|
|
|
offsetT cfa_offset;
|
|
|
|
|
};
|
|
|
|
|
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
/* 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;
|
|
|
|
|
};
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
/* Construct a new FDE structure and add it to the end of the fde list. */
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static struct fde_entry *
|
|
|
|
|
alloc_fde_entry (void)
|
|
|
|
|
{
|
2009-09-11 23:27:38 +08:00
|
|
|
|
struct fde_entry *fde = (struct fde_entry *)
|
|
|
|
|
xcalloc (1, sizeof (struct fde_entry));
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2009-09-11 23:27:38 +08:00
|
|
|
|
frchain_now->frch_cfi_data = (struct frch_cfi_data *)
|
|
|
|
|
xcalloc (1, sizeof (struct frch_cfi_data));
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->cur_fde_data = fde;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
*last_fde_data = fde;
|
|
|
|
|
last_fde_data = &fde->next;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
fde->last = &fde->data;
|
|
|
|
|
fde->return_column = DWARF2_DEFAULT_RETURN_COLUMN;
|
2006-11-03 15:29:37 +08:00
|
|
|
|
fde->per_encoding = DW_EH_PE_omit;
|
|
|
|
|
fde->lsda_encoding = DW_EH_PE_omit;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
return fde;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The following functions are available for a backend to construct its
|
|
|
|
|
own unwind information, usually from legacy unwind directives. */
|
|
|
|
|
|
|
|
|
|
/* Construct a new INSN structure and add it to the end of the insn list
|
|
|
|
|
for the currently active FDE. */
|
|
|
|
|
|
|
|
|
|
static struct cfi_insn_data *
|
|
|
|
|
alloc_cfi_insn_data (void)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2009-09-11 23:27:38 +08:00
|
|
|
|
struct cfi_insn_data *insn = (struct cfi_insn_data *)
|
|
|
|
|
xcalloc (1, sizeof (struct cfi_insn_data));
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
struct fde_entry *cur_fde_data = frchain_now->frch_cfi_data->cur_fde_data;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
*cur_fde_data->last = insn;
|
|
|
|
|
cur_fde_data->last = &insn->next;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
return insn;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Construct a new FDE structure that begins at LABEL. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_new_fde (symbolS *label)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
struct fde_entry *fde = alloc_fde_entry ();
|
|
|
|
|
fde->start_address = label;
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->last_address = label;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* End the currently open FDE. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_end_fde (symbolS *label)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->cur_fde_data->end_address = label;
|
|
|
|
|
free (frchain_now->frch_cfi_data);
|
|
|
|
|
frchain_now->frch_cfi_data = NULL;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Set the return column for the current FDE. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_set_return_column (unsigned regno)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->cur_fde_data->return_column = regno;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
/* Universal functions to store new instructions. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
cfi_add_CFA_insn(int insn)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_insn_data *insn_ptr = alloc_cfi_insn_data ();
|
|
|
|
|
|
|
|
|
|
insn_ptr->insn = insn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
cfi_add_CFA_insn_reg (int insn, unsigned regno)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_insn_data *insn_ptr = alloc_cfi_insn_data ();
|
|
|
|
|
|
|
|
|
|
insn_ptr->insn = insn;
|
|
|
|
|
insn_ptr->u.r = regno;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
cfi_add_CFA_insn_offset (int insn, offsetT offset)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_insn_data *insn_ptr = alloc_cfi_insn_data ();
|
|
|
|
|
|
|
|
|
|
insn_ptr->insn = insn;
|
|
|
|
|
insn_ptr->u.i = offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
cfi_add_CFA_insn_reg_reg (int insn, unsigned reg1, unsigned reg2)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_insn_data *insn_ptr = alloc_cfi_insn_data ();
|
|
|
|
|
|
|
|
|
|
insn_ptr->insn = insn;
|
|
|
|
|
insn_ptr->u.rr.reg1 = reg1;
|
|
|
|
|
insn_ptr->u.rr.reg2 = reg2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
cfi_add_CFA_insn_reg_offset (int insn, unsigned regno, offsetT offset)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_insn_data *insn_ptr = alloc_cfi_insn_data ();
|
|
|
|
|
|
|
|
|
|
insn_ptr->insn = insn;
|
|
|
|
|
insn_ptr->u.ri.reg = regno;
|
|
|
|
|
insn_ptr->u.ri.offset = offset;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Add a CFI insn to advance the PC from the last address to LABEL. */
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
void
|
|
|
|
|
cfi_add_advance_loc (symbolS *label)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_insn_data *insn = alloc_cfi_insn_data ();
|
2003-05-20 19:35:45 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
insn->insn = DW_CFA_advance_loc;
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
insn->u.ll.lab1 = frchain_now->frch_cfi_data->last_address;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
insn->u.ll.lab2 = label;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->last_address = label;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Add a DW_CFA_offset record to the CFI data. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_add_CFA_offset (unsigned regno, offsetT offset)
|
|
|
|
|
{
|
2003-06-08 11:59:44 +08:00
|
|
|
|
unsigned int abs_data_align;
|
|
|
|
|
|
* gas/app, gas/as.c, gas/as.h, gas/atof-generic.c, gas/cgen.c,
gas/config/atof-ieee.c, gas/config/obj-aout.c,
gas/config/obj-coff.c, gas/config/obj-ecoff.c,
gas/config/obj-elf.c, gas/config/obj-som.c, gas/config/tc-alpha.c,
gas/config/tc-arc.c, gas/config/tc-arm.c, gas/config/tc-cr16.c,
gas/config/tc-cris.c, gas/config/tc-crx.c, gas/config/tc-d30v.c,
gas/config/tc-dlx.c, gas/config/tc-hppa.c, gas/config/tc-i370.c,
gas/config/tc-i386-intel.c, gas/config/tc-i386.c,
gas/config/tc-i860.c, gas/config/tc-i960.c, gas/config/tc-ia64.c,
gas/config/tc-iq2000.c, gas/config/tc-m32c.c,
gas/config/tc-m32r.c, gas/config/tc-m68hc11.c,
gas/config/tc-m68k.c, gas/config/tc-maxq.c, gas/config/tc-mcore.c,
gas/config/tc-mep.c, gas/config/tc-mips.c, gas/config/tc-mmix.c,
gas/config/tc-mn10300.c, gas/config/tc-moxie.c,
gas/config/tc-ns32k.c, gas/config/tc-pj.c, gas/config/tc-ppc.c,
gas/config/tc-s390.c, gas/config/tc-score.c,
gas/config/tc-score7.c, gas/config/tc-sh.c, gas/config/tc-sparc.c,
gas/config/tc-spu.c, gas/config/tc-tic30.c, gas/config/tc-vax.c,
gas/config/tc-xtensa.c, gas/config/xtensa-relax.c,
gas/dw2gencfi.c, gas/dwarf2dbg.c, gas/ehopt.c, gas/expr.c,
gas/frags.c, gas/input-file.c, gas/read.c, gas/sb.c,
gas/subsegs.c, gas/symbols.c, gas/write.c: Change the name of the
gas macro `assert' to `gas_assert'.
2009-06-23 01:56:02 +08:00
|
|
|
|
gas_assert (DWARF2_CIE_DATA_ALIGNMENT != 0);
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
cfi_add_CFA_insn_reg_offset (DW_CFA_offset, regno, offset);
|
2003-06-08 11:59:44 +08:00
|
|
|
|
|
|
|
|
|
abs_data_align = (DWARF2_CIE_DATA_ALIGNMENT < 0
|
|
|
|
|
? -DWARF2_CIE_DATA_ALIGNMENT : DWARF2_CIE_DATA_ALIGNMENT);
|
|
|
|
|
if (offset % abs_data_align)
|
|
|
|
|
as_bad (_("register save offset not a multiple of %u"), abs_data_align);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Add a DW_CFA_def_cfa record to the CFI data. */
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
void
|
|
|
|
|
cfi_add_CFA_def_cfa (unsigned regno, offsetT offset)
|
|
|
|
|
{
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
cfi_add_CFA_insn_reg_offset (DW_CFA_def_cfa, regno, offset);
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->cur_cfa_offset = offset;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Add a DW_CFA_register record to the CFI data. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_add_CFA_register (unsigned reg1, unsigned reg2)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
cfi_add_CFA_insn_reg_reg (DW_CFA_register, reg1, reg2);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Add a DW_CFA_def_cfa_register record to the CFI data. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_add_CFA_def_cfa_register (unsigned regno)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
cfi_add_CFA_insn_reg (DW_CFA_def_cfa_register, regno);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Add a DW_CFA_def_cfa_offset record to the CFI data. */
|
|
|
|
|
|
2003-05-20 15:58:07 +08:00
|
|
|
|
void
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cfi_add_CFA_def_cfa_offset (offsetT offset)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
cfi_add_CFA_insn_offset (DW_CFA_def_cfa_offset, offset);
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->cur_cfa_offset = offset;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
void
|
|
|
|
|
cfi_add_CFA_restore (unsigned regno)
|
|
|
|
|
{
|
|
|
|
|
cfi_add_CFA_insn_reg (DW_CFA_restore, regno);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_add_CFA_undefined (unsigned regno)
|
|
|
|
|
{
|
|
|
|
|
cfi_add_CFA_insn_reg (DW_CFA_undefined, regno);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_add_CFA_same_value (unsigned regno)
|
|
|
|
|
{
|
|
|
|
|
cfi_add_CFA_insn_reg (DW_CFA_same_value, regno);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_add_CFA_remember_state (void)
|
|
|
|
|
{
|
2003-06-08 11:59:44 +08:00
|
|
|
|
struct cfa_save_data *p;
|
|
|
|
|
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
cfi_add_CFA_insn (DW_CFA_remember_state);
|
2003-06-08 11:59:44 +08:00
|
|
|
|
|
2009-09-11 23:27:38 +08:00
|
|
|
|
p = (struct cfa_save_data *) xmalloc (sizeof (*p));
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
p->cfa_offset = frchain_now->frch_cfi_data->cur_cfa_offset;
|
|
|
|
|
p->next = frchain_now->frch_cfi_data->cfa_save_stack;
|
|
|
|
|
frchain_now->frch_cfi_data->cfa_save_stack = p;
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
cfi_add_CFA_restore_state (void)
|
|
|
|
|
{
|
2003-06-08 11:59:44 +08:00
|
|
|
|
struct cfa_save_data *p;
|
|
|
|
|
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
cfi_add_CFA_insn (DW_CFA_restore_state);
|
2003-06-08 11:59:44 +08:00
|
|
|
|
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
p = frchain_now->frch_cfi_data->cfa_save_stack;
|
2003-06-08 11:59:44 +08:00
|
|
|
|
if (p)
|
|
|
|
|
{
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->cur_cfa_offset = p->cfa_offset;
|
|
|
|
|
frchain_now->frch_cfi_data->cfa_save_stack = p->next;
|
2003-06-08 11:59:44 +08:00
|
|
|
|
free (p);
|
|
|
|
|
}
|
2004-10-07 23:18:11 +08:00
|
|
|
|
else
|
|
|
|
|
as_bad (_("CFI state restore without previous remember"));
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
/* Parse CFI assembler directives. */
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static void dot_cfi (int);
|
2003-06-12 07:16:58 +08:00
|
|
|
|
static void dot_cfi_escape (int);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static void dot_cfi_startproc (int);
|
|
|
|
|
static void dot_cfi_endproc (int);
|
2006-11-03 15:29:37 +08:00
|
|
|
|
static void dot_cfi_personality (int);
|
|
|
|
|
static void dot_cfi_lsda (int);
|
2008-09-25 07:21:04 +08:00
|
|
|
|
static void dot_cfi_val_encoded_addr (int);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Fake CFI type; outside the byte range of any real CFI insn. */
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
#define CFI_adjust_cfa_offset 0x100
|
|
|
|
|
#define CFI_return_column 0x101
|
2003-06-08 11:59:44 +08:00
|
|
|
|
#define CFI_rel_offset 0x102
|
2003-06-12 07:16:58 +08:00
|
|
|
|
#define CFI_escape 0x103
|
2006-02-28 07:07:06 +08:00
|
|
|
|
#define CFI_signal_frame 0x104
|
2008-09-25 07:21:04 +08:00
|
|
|
|
#define CFI_val_encoded_addr 0x105
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
const pseudo_typeS cfi_pseudo_table[] =
|
|
|
|
|
{
|
|
|
|
|
{ "cfi_startproc", dot_cfi_startproc, 0 },
|
|
|
|
|
{ "cfi_endproc", dot_cfi_endproc, 0 },
|
|
|
|
|
{ "cfi_def_cfa", dot_cfi, DW_CFA_def_cfa },
|
|
|
|
|
{ "cfi_def_cfa_register", dot_cfi, DW_CFA_def_cfa_register },
|
|
|
|
|
{ "cfi_def_cfa_offset", dot_cfi, DW_CFA_def_cfa_offset },
|
|
|
|
|
{ "cfi_adjust_cfa_offset", dot_cfi, CFI_adjust_cfa_offset },
|
|
|
|
|
{ "cfi_offset", dot_cfi, DW_CFA_offset },
|
2003-06-08 11:59:44 +08:00
|
|
|
|
{ "cfi_rel_offset", dot_cfi, CFI_rel_offset },
|
2003-05-28 00:52:49 +08:00
|
|
|
|
{ "cfi_register", dot_cfi, DW_CFA_register },
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
{ "cfi_return_column", dot_cfi, CFI_return_column },
|
|
|
|
|
{ "cfi_restore", dot_cfi, DW_CFA_restore },
|
|
|
|
|
{ "cfi_undefined", dot_cfi, DW_CFA_undefined },
|
|
|
|
|
{ "cfi_same_value", dot_cfi, DW_CFA_same_value },
|
|
|
|
|
{ "cfi_remember_state", dot_cfi, DW_CFA_remember_state },
|
|
|
|
|
{ "cfi_restore_state", dot_cfi, DW_CFA_restore_state },
|
2003-08-30 04:32:56 +08:00
|
|
|
|
{ "cfi_window_save", dot_cfi, DW_CFA_GNU_window_save },
|
2003-06-12 07:16:58 +08:00
|
|
|
|
{ "cfi_escape", dot_cfi_escape, 0 },
|
2006-02-28 07:07:06 +08:00
|
|
|
|
{ "cfi_signal_frame", dot_cfi, CFI_signal_frame },
|
2006-11-03 15:29:37 +08:00
|
|
|
|
{ "cfi_personality", dot_cfi_personality, 0 },
|
|
|
|
|
{ "cfi_lsda", dot_cfi_lsda, 0 },
|
2008-09-25 07:21:04 +08:00
|
|
|
|
{ "cfi_val_encoded_addr", dot_cfi_val_encoded_addr, 0 },
|
2003-05-28 00:52:49 +08:00
|
|
|
|
{ NULL, NULL, 0 }
|
|
|
|
|
};
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
|
|
|
|
static void
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cfi_parse_separator (void)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (*input_line_pointer == ',')
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
else
|
|
|
|
|
as_bad (_("missing separator"));
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2008-02-13 18:14:40 +08:00
|
|
|
|
#ifndef tc_parse_to_dw2regnum
|
|
|
|
|
static void
|
|
|
|
|
tc_parse_to_dw2regnum(expressionS *exp)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2008-02-13 18:14:40 +08:00
|
|
|
|
# ifdef tc_regname_to_dw2regnum
|
2003-05-28 00:52:49 +08:00
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (is_name_beginner (*input_line_pointer)
|
|
|
|
|
|| (*input_line_pointer == '%'
|
|
|
|
|
&& is_name_beginner (*++input_line_pointer)))
|
|
|
|
|
{
|
|
|
|
|
char *name, c;
|
|
|
|
|
|
|
|
|
|
name = input_line_pointer;
|
|
|
|
|
c = get_symbol_end ();
|
|
|
|
|
|
2008-02-13 18:14:40 +08:00
|
|
|
|
exp->X_op = O_constant;
|
|
|
|
|
exp->X_add_number = tc_regname_to_dw2regnum (name);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
*input_line_pointer = c;
|
|
|
|
|
}
|
2008-02-13 18:14:40 +08:00
|
|
|
|
else
|
|
|
|
|
# endif
|
|
|
|
|
expression_and_evaluate (exp);
|
|
|
|
|
}
|
2003-05-28 00:52:49 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-02-13 18:14:40 +08:00
|
|
|
|
static unsigned
|
|
|
|
|
cfi_parse_reg (void)
|
|
|
|
|
{
|
|
|
|
|
int regno;
|
|
|
|
|
expressionS exp;
|
|
|
|
|
|
|
|
|
|
tc_parse_to_dw2regnum (&exp);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
switch (exp.X_op)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case O_register:
|
|
|
|
|
case O_constant:
|
|
|
|
|
regno = exp.X_add_number;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2008-02-13 18:14:40 +08:00
|
|
|
|
regno = -1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (regno < 0)
|
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
as_bad (_("bad register expression"));
|
|
|
|
|
regno = 0;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
return regno;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static offsetT
|
|
|
|
|
cfi_parse_const (void)
|
|
|
|
|
{
|
|
|
|
|
return get_absolute_expression ();
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2003-05-28 00:52:49 +08:00
|
|
|
|
dot_cfi (int arg)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
offsetT offset;
|
|
|
|
|
unsigned reg1, reg2;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
if (frchain_now->frch_cfi_data == NULL)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
|
|
|
|
as_bad (_("CFI instruction used without previous .cfi_startproc"));
|
2005-09-28 22:51:02 +08:00
|
|
|
|
ignore_rest_of_line ();
|
2003-05-20 15:58:07 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* If the last address was not at the current PC, advance to current. */
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
if (symbol_get_frag (frchain_now->frch_cfi_data->last_address) != frag_now
|
|
|
|
|
|| S_GET_VALUE (frchain_now->frch_cfi_data->last_address)
|
|
|
|
|
!= frag_now_fix ())
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cfi_add_advance_loc (symbol_temp_new_now ());
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
|
|
|
|
switch (arg)
|
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case DW_CFA_offset:
|
|
|
|
|
reg1 = cfi_parse_reg ();
|
|
|
|
|
cfi_parse_separator ();
|
|
|
|
|
offset = cfi_parse_const ();
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
cfi_add_CFA_offset (reg1, offset);
|
|
|
|
|
break;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
2003-06-08 11:59:44 +08:00
|
|
|
|
case CFI_rel_offset:
|
|
|
|
|
reg1 = cfi_parse_reg ();
|
|
|
|
|
cfi_parse_separator ();
|
|
|
|
|
offset = cfi_parse_const ();
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
cfi_add_CFA_offset (reg1,
|
|
|
|
|
offset - frchain_now->frch_cfi_data->cur_cfa_offset);
|
2003-06-08 11:59:44 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
case DW_CFA_def_cfa:
|
|
|
|
|
reg1 = cfi_parse_reg ();
|
|
|
|
|
cfi_parse_separator ();
|
|
|
|
|
offset = cfi_parse_const ();
|
|
|
|
|
cfi_add_CFA_def_cfa (reg1, offset);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case DW_CFA_register:
|
|
|
|
|
reg1 = cfi_parse_reg ();
|
|
|
|
|
cfi_parse_separator ();
|
|
|
|
|
reg2 = cfi_parse_reg ();
|
|
|
|
|
cfi_add_CFA_register (reg1, reg2);
|
2003-05-20 22:31:44 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case DW_CFA_def_cfa_register:
|
|
|
|
|
reg1 = cfi_parse_reg ();
|
|
|
|
|
cfi_add_CFA_def_cfa_register (reg1);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case DW_CFA_def_cfa_offset:
|
|
|
|
|
offset = cfi_parse_const ();
|
|
|
|
|
cfi_add_CFA_def_cfa_offset (offset);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CFI_adjust_cfa_offset:
|
2003-05-28 00:52:49 +08:00
|
|
|
|
offset = cfi_parse_const ();
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
cfi_add_CFA_def_cfa_offset (frchain_now->frch_cfi_data->cur_cfa_offset
|
|
|
|
|
+ offset);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
case DW_CFA_restore:
|
2005-11-17 16:33:36 +08:00
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
reg1 = cfi_parse_reg ();
|
|
|
|
|
cfi_add_CFA_restore (reg1);
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (*input_line_pointer != ',')
|
|
|
|
|
break;
|
|
|
|
|
++input_line_pointer;
|
|
|
|
|
}
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_CFA_undefined:
|
2005-11-17 16:33:36 +08:00
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
reg1 = cfi_parse_reg ();
|
|
|
|
|
cfi_add_CFA_undefined (reg1);
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (*input_line_pointer != ',')
|
|
|
|
|
break;
|
|
|
|
|
++input_line_pointer;
|
|
|
|
|
}
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_CFA_same_value:
|
|
|
|
|
reg1 = cfi_parse_reg ();
|
|
|
|
|
cfi_add_CFA_same_value (reg1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CFI_return_column:
|
|
|
|
|
reg1 = cfi_parse_reg ();
|
|
|
|
|
cfi_set_return_column (reg1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_CFA_remember_state:
|
|
|
|
|
cfi_add_CFA_remember_state ();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_CFA_restore_state:
|
|
|
|
|
cfi_add_CFA_restore_state ();
|
|
|
|
|
break;
|
|
|
|
|
|
2003-08-30 04:20:18 +08:00
|
|
|
|
case DW_CFA_GNU_window_save:
|
|
|
|
|
cfi_add_CFA_insn (DW_CFA_GNU_window_save);
|
|
|
|
|
break;
|
|
|
|
|
|
2006-02-28 07:07:06 +08:00
|
|
|
|
case CFI_signal_frame:
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->cur_fde_data->signal_frame = 1;
|
2006-02-28 07:07:06 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-05-20 15:58:07 +08:00
|
|
|
|
default:
|
2003-05-28 00:52:49 +08:00
|
|
|
|
abort ();
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
demand_empty_rest_of_line ();
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-06-12 07:16:58 +08:00
|
|
|
|
static void
|
|
|
|
|
dot_cfi_escape (int ignored ATTRIBUTE_UNUSED)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_escape_data *head, **tail, *e;
|
|
|
|
|
struct cfi_insn_data *insn;
|
|
|
|
|
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
if (frchain_now->frch_cfi_data == NULL)
|
2003-06-12 07:16:58 +08:00
|
|
|
|
{
|
|
|
|
|
as_bad (_("CFI instruction used without previous .cfi_startproc"));
|
2005-09-28 22:51:02 +08:00
|
|
|
|
ignore_rest_of_line ();
|
2003-06-12 07:16:58 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If the last address was not at the current PC, advance to current. */
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
if (symbol_get_frag (frchain_now->frch_cfi_data->last_address) != frag_now
|
|
|
|
|
|| S_GET_VALUE (frchain_now->frch_cfi_data->last_address)
|
|
|
|
|
!= frag_now_fix ())
|
2003-06-12 07:16:58 +08:00
|
|
|
|
cfi_add_advance_loc (symbol_temp_new_now ());
|
|
|
|
|
|
|
|
|
|
tail = &head;
|
|
|
|
|
do
|
|
|
|
|
{
|
2009-09-11 23:27:38 +08:00
|
|
|
|
e = (struct cfi_escape_data *) xmalloc (sizeof (*e));
|
2003-06-12 07:16:58 +08:00
|
|
|
|
do_parse_cons_expression (&e->exp, 1);
|
|
|
|
|
*tail = e;
|
|
|
|
|
tail = &e->next;
|
|
|
|
|
}
|
|
|
|
|
while (*input_line_pointer++ == ',');
|
|
|
|
|
*tail = NULL;
|
|
|
|
|
|
|
|
|
|
insn = alloc_cfi_insn_data ();
|
|
|
|
|
insn->insn = CFI_escape;
|
|
|
|
|
insn->u.esc = head;
|
2005-09-28 22:51:02 +08:00
|
|
|
|
|
|
|
|
|
--input_line_pointer;
|
|
|
|
|
demand_empty_rest_of_line ();
|
2003-06-12 07:16:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2006-11-03 15:29:37 +08:00
|
|
|
|
static void
|
|
|
|
|
dot_cfi_personality (int ignored ATTRIBUTE_UNUSED)
|
|
|
|
|
{
|
|
|
|
|
struct fde_entry *fde;
|
|
|
|
|
offsetT encoding;
|
|
|
|
|
|
|
|
|
|
if (frchain_now->frch_cfi_data == NULL)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("CFI instruction used without previous .cfi_startproc"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fde = frchain_now->frch_cfi_data->cur_fde_data;
|
2008-09-25 07:21:04 +08:00
|
|
|
|
encoding = cfi_parse_const ();
|
2006-11-03 15:29:37 +08:00
|
|
|
|
if (encoding == DW_EH_PE_omit)
|
|
|
|
|
{
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
fde->per_encoding = encoding;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((encoding & 0xff) != encoding
|
|
|
|
|
|| ((encoding & 0x70) != 0
|
2008-09-08 06:54:54 +08:00
|
|
|
|
#if CFI_DIFF_EXPR_OK || defined tc_cfi_emit_pcrel_expr
|
2006-11-03 15:29:37 +08:00
|
|
|
|
&& (encoding & 0x70) != DW_EH_PE_pcrel
|
|
|
|
|
#endif
|
|
|
|
|
)
|
|
|
|
|
/* leb128 can be handled, but does something actually need it? */
|
|
|
|
|
|| (encoding & 7) == DW_EH_PE_uleb128
|
|
|
|
|
|| (encoding & 7) > DW_EH_PE_udata8)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("invalid or unsupported encoding in .cfi_personality"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*input_line_pointer++ != ',')
|
|
|
|
|
{
|
|
|
|
|
as_bad (_(".cfi_personality requires encoding and symbol arguments"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
expression_and_evaluate (&fde->personality);
|
|
|
|
|
switch (fde->personality.X_op)
|
|
|
|
|
{
|
|
|
|
|
case O_symbol:
|
|
|
|
|
break;
|
|
|
|
|
case O_constant:
|
|
|
|
|
if ((encoding & 0x70) == DW_EH_PE_pcrel)
|
|
|
|
|
encoding = DW_EH_PE_omit;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
encoding = DW_EH_PE_omit;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fde->per_encoding = encoding;
|
|
|
|
|
|
|
|
|
|
if (encoding == DW_EH_PE_omit)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("wrong second argument to .cfi_personality"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
dot_cfi_lsda (int ignored ATTRIBUTE_UNUSED)
|
|
|
|
|
{
|
|
|
|
|
struct fde_entry *fde;
|
|
|
|
|
offsetT encoding;
|
|
|
|
|
|
|
|
|
|
if (frchain_now->frch_cfi_data == NULL)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("CFI instruction used without previous .cfi_startproc"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fde = frchain_now->frch_cfi_data->cur_fde_data;
|
2008-09-25 07:21:04 +08:00
|
|
|
|
encoding = cfi_parse_const ();
|
2006-11-03 15:29:37 +08:00
|
|
|
|
if (encoding == DW_EH_PE_omit)
|
|
|
|
|
{
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
fde->lsda_encoding = encoding;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((encoding & 0xff) != encoding
|
|
|
|
|
|| ((encoding & 0x70) != 0
|
2008-09-08 06:54:54 +08:00
|
|
|
|
#if CFI_DIFF_EXPR_OK || defined tc_cfi_emit_pcrel_expr
|
2006-11-03 15:29:37 +08:00
|
|
|
|
&& (encoding & 0x70) != DW_EH_PE_pcrel
|
|
|
|
|
#endif
|
|
|
|
|
)
|
|
|
|
|
/* leb128 can be handled, but does something actually need it? */
|
|
|
|
|
|| (encoding & 7) == DW_EH_PE_uleb128
|
|
|
|
|
|| (encoding & 7) > DW_EH_PE_udata8)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("invalid or unsupported encoding in .cfi_lsda"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*input_line_pointer++ != ',')
|
|
|
|
|
{
|
|
|
|
|
as_bad (_(".cfi_lsda requires encoding and symbol arguments"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fde->lsda_encoding = encoding;
|
|
|
|
|
|
|
|
|
|
expression_and_evaluate (&fde->lsda);
|
|
|
|
|
switch (fde->lsda.X_op)
|
|
|
|
|
{
|
|
|
|
|
case O_symbol:
|
|
|
|
|
break;
|
|
|
|
|
case O_constant:
|
|
|
|
|
if ((encoding & 0x70) == DW_EH_PE_pcrel)
|
|
|
|
|
encoding = DW_EH_PE_omit;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
encoding = DW_EH_PE_omit;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fde->lsda_encoding = encoding;
|
|
|
|
|
|
|
|
|
|
if (encoding == DW_EH_PE_omit)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("wrong second argument to .cfi_lsda"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
}
|
|
|
|
|
|
2008-09-25 07:21:04 +08:00
|
|
|
|
static void
|
|
|
|
|
dot_cfi_val_encoded_addr (int ignored ATTRIBUTE_UNUSED)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_insn_data *insn_ptr;
|
|
|
|
|
offsetT encoding;
|
|
|
|
|
|
|
|
|
|
if (frchain_now->frch_cfi_data == NULL)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("CFI instruction used without previous .cfi_startproc"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If the last address was not at the current PC, advance to current. */
|
|
|
|
|
if (symbol_get_frag (frchain_now->frch_cfi_data->last_address) != frag_now
|
|
|
|
|
|| S_GET_VALUE (frchain_now->frch_cfi_data->last_address)
|
|
|
|
|
!= frag_now_fix ())
|
|
|
|
|
cfi_add_advance_loc (symbol_temp_new_now ());
|
|
|
|
|
|
|
|
|
|
insn_ptr = alloc_cfi_insn_data ();
|
|
|
|
|
insn_ptr->insn = CFI_val_encoded_addr;
|
|
|
|
|
|
|
|
|
|
insn_ptr->u.ea.reg = cfi_parse_reg ();
|
|
|
|
|
|
|
|
|
|
cfi_parse_separator ();
|
|
|
|
|
encoding = cfi_parse_const ();
|
|
|
|
|
if ((encoding & 0xff) != encoding
|
|
|
|
|
|| ((encoding & 0x70) != 0
|
|
|
|
|
#if CFI_DIFF_EXPR_OK || defined tc_cfi_emit_pcrel_expr
|
|
|
|
|
&& (encoding & 0x70) != DW_EH_PE_pcrel
|
|
|
|
|
#endif
|
|
|
|
|
)
|
|
|
|
|
/* leb128 can be handled, but does something actually need it? */
|
|
|
|
|
|| (encoding & 7) == DW_EH_PE_uleb128
|
|
|
|
|
|| (encoding & 7) > DW_EH_PE_udata8)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("invalid or unsupported encoding in .cfi_lsda"));
|
|
|
|
|
encoding = DW_EH_PE_omit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cfi_parse_separator ();
|
|
|
|
|
expression_and_evaluate (&insn_ptr->u.ea.exp);
|
|
|
|
|
switch (insn_ptr->u.ea.exp.X_op)
|
|
|
|
|
{
|
|
|
|
|
case O_symbol:
|
|
|
|
|
break;
|
|
|
|
|
case O_constant:
|
|
|
|
|
if ((encoding & 0x70) != DW_EH_PE_pcrel)
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
encoding = DW_EH_PE_omit;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
insn_ptr->u.ea.encoding = encoding;
|
|
|
|
|
if (encoding == DW_EH_PE_omit)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("wrong third argument to .cfi_val_encoded_addr"));
|
|
|
|
|
ignore_rest_of_line ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-20 15:58:07 +08:00
|
|
|
|
static void
|
2003-05-28 00:52:49 +08:00
|
|
|
|
dot_cfi_startproc (int ignored ATTRIBUTE_UNUSED)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
int simple = 0;
|
2003-05-20 22:31:44 +08:00
|
|
|
|
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
if (frchain_now->frch_cfi_data != NULL)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
|
|
|
|
as_bad (_("previous CFI entry not closed (missing .cfi_endproc)"));
|
2005-09-28 22:51:02 +08:00
|
|
|
|
ignore_rest_of_line ();
|
2003-05-20 15:58:07 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cfi_new_fde (symbol_temp_new_now ());
|
2003-05-20 22:31:44 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (is_name_beginner (*input_line_pointer))
|
|
|
|
|
{
|
|
|
|
|
char *name, c;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
name = input_line_pointer;
|
|
|
|
|
c = get_symbol_end ();
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
if (strcmp (name, "simple") == 0)
|
|
|
|
|
{
|
|
|
|
|
simple = 1;
|
|
|
|
|
*input_line_pointer = c;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
input_line_pointer = name;
|
|
|
|
|
}
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
frchain_now->frch_cfi_data->cur_cfa_offset = 0;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
if (!simple)
|
2003-05-20 22:31:44 +08:00
|
|
|
|
tc_cfi_frame_initial_instructions ();
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static void
|
|
|
|
|
dot_cfi_endproc (int ignored ATTRIBUTE_UNUSED)
|
|
|
|
|
{
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
if (frchain_now->frch_cfi_data == NULL)
|
2003-05-28 00:52:49 +08:00
|
|
|
|
{
|
|
|
|
|
as_bad (_(".cfi_endproc without corresponding .cfi_startproc"));
|
2005-09-28 22:51:02 +08:00
|
|
|
|
ignore_rest_of_line ();
|
2003-05-28 00:52:49 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cfi_end_fde (symbol_temp_new_now ());
|
2005-09-28 22:51:02 +08:00
|
|
|
|
|
|
|
|
|
demand_empty_rest_of_line ();
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
2003-05-20 22:31:44 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
/* Emit a single byte into the current segment. */
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static inline void
|
|
|
|
|
out_one (int byte)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
FRAG_APPEND_1_CHAR (byte);
|
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Emit a two-byte word into the current segment. */
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static inline void
|
|
|
|
|
out_two (int data)
|
|
|
|
|
{
|
|
|
|
|
md_number_to_chars (frag_more (2), data, 2);
|
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Emit a four byte word into the current segment. */
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static inline void
|
|
|
|
|
out_four (int data)
|
|
|
|
|
{
|
|
|
|
|
md_number_to_chars (frag_more (4), data, 4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Emit an unsigned "little-endian base 128" number. */
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static void
|
|
|
|
|
out_uleb128 (addressT value)
|
|
|
|
|
{
|
|
|
|
|
output_leb128 (frag_more (sizeof_leb128 (value, 0)), value, 0);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Emit an unsigned "little-endian base 128" number. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
out_sleb128 (offsetT value)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
output_leb128 (frag_more (sizeof_leb128 (value, 1)), value, 1);
|
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static void
|
|
|
|
|
output_cfi_insn (struct cfi_insn_data *insn)
|
|
|
|
|
{
|
|
|
|
|
offsetT offset;
|
|
|
|
|
unsigned int regno;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
switch (insn->insn)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case DW_CFA_advance_loc:
|
|
|
|
|
{
|
|
|
|
|
symbolS *from = insn->u.ll.lab1;
|
|
|
|
|
symbolS *to = insn->u.ll.lab2;
|
|
|
|
|
|
|
|
|
|
if (symbol_get_frag (to) == symbol_get_frag (from))
|
|
|
|
|
{
|
|
|
|
|
addressT delta = S_GET_VALUE (to) - S_GET_VALUE (from);
|
|
|
|
|
addressT scaled = delta / DWARF2_LINE_MIN_INSN_LENGTH;
|
|
|
|
|
|
|
|
|
|
if (scaled <= 0x3F)
|
|
|
|
|
out_one (DW_CFA_advance_loc + scaled);
|
2008-11-29 05:28:28 +08:00
|
|
|
|
else if (scaled <= 0xFF)
|
2003-05-28 00:52:49 +08:00
|
|
|
|
{
|
2006-11-03 15:29:37 +08:00
|
|
|
|
out_one (DW_CFA_advance_loc1);
|
2008-11-29 05:28:28 +08:00
|
|
|
|
out_one (scaled);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
2008-11-29 05:28:28 +08:00
|
|
|
|
else if (scaled <= 0xFFFF)
|
2003-05-28 00:52:49 +08:00
|
|
|
|
{
|
2006-11-03 15:29:37 +08:00
|
|
|
|
out_one (DW_CFA_advance_loc2);
|
2008-11-29 05:28:28 +08:00
|
|
|
|
out_two (scaled);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2006-11-03 15:29:37 +08:00
|
|
|
|
out_one (DW_CFA_advance_loc4);
|
2008-11-29 05:28:28 +08:00
|
|
|
|
out_four (scaled);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
expressionS exp;
|
|
|
|
|
|
|
|
|
|
exp.X_op = O_subtract;
|
|
|
|
|
exp.X_add_symbol = to;
|
|
|
|
|
exp.X_op_symbol = from;
|
|
|
|
|
exp.X_add_number = 0;
|
|
|
|
|
|
|
|
|
|
/* The code in ehopt.c expects that one byte of the encoding
|
|
|
|
|
is already allocated to the frag. This comes from the way
|
|
|
|
|
that it scans the .eh_frame section looking first for the
|
|
|
|
|
.byte DW_CFA_advance_loc4. */
|
2009-06-09 23:12:45 +08:00
|
|
|
|
*frag_more (1) = DW_CFA_advance_loc4;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
frag_var (rs_cfa, 4, 0, DWARF2_LINE_MIN_INSN_LENGTH << 3,
|
|
|
|
|
make_expr_symbol (&exp), frag_now_fix () - 1,
|
|
|
|
|
(char *) frag_now);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_CFA_def_cfa:
|
|
|
|
|
offset = insn->u.ri.offset;
|
|
|
|
|
if (offset < 0)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
out_one (DW_CFA_def_cfa_sf);
|
|
|
|
|
out_uleb128 (insn->u.ri.reg);
|
2004-12-16 16:53:43 +08:00
|
|
|
|
out_sleb128 (offset / DWARF2_CIE_DATA_ALIGNMENT);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
out_one (DW_CFA_def_cfa);
|
|
|
|
|
out_uleb128 (insn->u.ri.reg);
|
|
|
|
|
out_uleb128 (offset);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case DW_CFA_def_cfa_register:
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
case DW_CFA_undefined:
|
|
|
|
|
case DW_CFA_same_value:
|
|
|
|
|
out_one (insn->insn);
|
|
|
|
|
out_uleb128 (insn->u.r);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case DW_CFA_def_cfa_offset:
|
|
|
|
|
offset = insn->u.i;
|
|
|
|
|
if (offset < 0)
|
|
|
|
|
{
|
|
|
|
|
out_one (DW_CFA_def_cfa_offset_sf);
|
2004-12-16 16:53:43 +08:00
|
|
|
|
out_sleb128 (offset / DWARF2_CIE_DATA_ALIGNMENT);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
out_one (DW_CFA_def_cfa_offset);
|
|
|
|
|
out_uleb128 (offset);
|
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
case DW_CFA_restore:
|
|
|
|
|
regno = insn->u.r;
|
|
|
|
|
if (regno <= 0x3F)
|
|
|
|
|
{
|
|
|
|
|
out_one (DW_CFA_restore + regno);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
out_one (DW_CFA_restore_extended);
|
|
|
|
|
out_uleb128 (regno);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case DW_CFA_offset:
|
|
|
|
|
regno = insn->u.ri.reg;
|
|
|
|
|
offset = insn->u.ri.offset / DWARF2_CIE_DATA_ALIGNMENT;
|
|
|
|
|
if (offset < 0)
|
|
|
|
|
{
|
2003-06-05 14:53:40 +08:00
|
|
|
|
out_one (DW_CFA_offset_extended_sf);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
out_uleb128 (regno);
|
|
|
|
|
out_sleb128 (offset);
|
|
|
|
|
}
|
|
|
|
|
else if (regno <= 0x3F)
|
|
|
|
|
{
|
|
|
|
|
out_one (DW_CFA_offset + regno);
|
|
|
|
|
out_uleb128 (offset);
|
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
out_one (DW_CFA_offset_extended);
|
|
|
|
|
out_uleb128 (regno);
|
|
|
|
|
out_uleb128 (offset);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
case DW_CFA_register:
|
|
|
|
|
out_one (DW_CFA_register);
|
|
|
|
|
out_uleb128 (insn->u.rr.reg1);
|
|
|
|
|
out_uleb128 (insn->u.rr.reg2);
|
2003-05-20 22:31:44 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
case DW_CFA_remember_state:
|
|
|
|
|
case DW_CFA_restore_state:
|
|
|
|
|
out_one (insn->insn);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2003-08-30 04:20:18 +08:00
|
|
|
|
case DW_CFA_GNU_window_save:
|
|
|
|
|
out_one (DW_CFA_GNU_window_save);
|
|
|
|
|
break;
|
|
|
|
|
|
2003-06-12 07:16:58 +08:00
|
|
|
|
case CFI_escape:
|
|
|
|
|
{
|
|
|
|
|
struct cfi_escape_data *e;
|
|
|
|
|
for (e = insn->u.esc; e ; e = e->next)
|
|
|
|
|
emit_expr (&e->exp, 1);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2008-09-25 07:21:04 +08:00
|
|
|
|
case CFI_val_encoded_addr:
|
|
|
|
|
{
|
|
|
|
|
unsigned encoding = insn->u.ea.encoding;
|
|
|
|
|
offsetT encoding_size;
|
|
|
|
|
|
|
|
|
|
if (encoding == DW_EH_PE_omit)
|
|
|
|
|
break;
|
|
|
|
|
out_one (DW_CFA_val_expression);
|
|
|
|
|
out_uleb128 (insn->u.ea.reg);
|
|
|
|
|
|
|
|
|
|
switch (encoding & 0x7)
|
|
|
|
|
{
|
|
|
|
|
case DW_EH_PE_absptr:
|
|
|
|
|
encoding_size = DWARF2_ADDR_SIZE (stdoutput);
|
|
|
|
|
break;
|
|
|
|
|
case DW_EH_PE_udata2:
|
|
|
|
|
encoding_size = 2;
|
|
|
|
|
break;
|
|
|
|
|
case DW_EH_PE_udata4:
|
|
|
|
|
encoding_size = 4;
|
|
|
|
|
break;
|
|
|
|
|
case DW_EH_PE_udata8:
|
|
|
|
|
encoding_size = 8;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If the user has requested absolute encoding,
|
|
|
|
|
then use the smaller DW_OP_addr encoding. */
|
|
|
|
|
if (insn->u.ea.encoding == DW_EH_PE_absptr)
|
|
|
|
|
{
|
|
|
|
|
out_uleb128 (1 + encoding_size);
|
|
|
|
|
out_one (DW_OP_addr);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
out_uleb128 (1 + 1 + encoding_size);
|
|
|
|
|
out_one (DW_OP_GNU_encoded_addr);
|
|
|
|
|
out_one (encoding);
|
|
|
|
|
|
|
|
|
|
if ((encoding & 0x70) == DW_EH_PE_pcrel)
|
|
|
|
|
{
|
|
|
|
|
#if CFI_DIFF_EXPR_OK
|
|
|
|
|
insn->u.ea.exp.X_op = O_subtract;
|
|
|
|
|
insn->u.ea.exp.X_op_symbol = symbol_temp_new_now ();
|
|
|
|
|
#elif defined (tc_cfi_emit_pcrel_expr)
|
2008-09-30 12:44:29 +08:00
|
|
|
|
tc_cfi_emit_pcrel_expr (&insn->u.ea.exp, encoding_size);
|
2008-09-25 07:21:04 +08:00
|
|
|
|
break;
|
|
|
|
|
#else
|
|
|
|
|
abort ();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
emit_expr (&insn->u.ea.exp, encoding_size);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2003-05-20 15:58:07 +08:00
|
|
|
|
default:
|
2003-05-28 00:52:49 +08:00
|
|
|
|
abort ();
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-03 15:29:37 +08:00
|
|
|
|
static offsetT
|
|
|
|
|
encoding_size (unsigned char encoding)
|
|
|
|
|
{
|
|
|
|
|
if (encoding == DW_EH_PE_omit)
|
|
|
|
|
return 0;
|
|
|
|
|
switch (encoding & 0x7)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
return bfd_get_arch_size (stdoutput) == 64 ? 8 : 4;
|
|
|
|
|
case DW_EH_PE_udata2:
|
|
|
|
|
return 2;
|
|
|
|
|
case DW_EH_PE_udata4:
|
|
|
|
|
return 4;
|
|
|
|
|
case DW_EH_PE_udata8:
|
|
|
|
|
return 8;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-20 15:58:07 +08:00
|
|
|
|
static void
|
2003-05-28 00:52:49 +08:00
|
|
|
|
output_cie (struct cie_entry *cie)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
symbolS *after_size_address, *end_address;
|
2003-05-20 19:35:45 +08:00
|
|
|
|
expressionS exp;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
struct cfi_insn_data *i;
|
2006-11-03 15:29:37 +08:00
|
|
|
|
offsetT augmentation_size;
|
2008-08-22 03:49:22 +08:00
|
|
|
|
int enc;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
cie->start_address = symbol_temp_new_now ();
|
|
|
|
|
after_size_address = symbol_temp_make ();
|
|
|
|
|
end_address = symbol_temp_make ();
|
|
|
|
|
|
|
|
|
|
exp.X_op = O_subtract;
|
|
|
|
|
exp.X_add_symbol = end_address;
|
|
|
|
|
exp.X_op_symbol = after_size_address;
|
|
|
|
|
exp.X_add_number = 0;
|
|
|
|
|
|
2004-10-07 23:18:11 +08:00
|
|
|
|
emit_expr (&exp, 4); /* Length. */
|
2003-05-28 00:52:49 +08:00
|
|
|
|
symbol_set_value_now (after_size_address);
|
2004-10-07 23:18:11 +08:00
|
|
|
|
out_four (0); /* CIE id. */
|
|
|
|
|
out_one (DW_CIE_VERSION); /* Version. */
|
|
|
|
|
out_one ('z'); /* Augmentation. */
|
2006-11-03 15:29:37 +08:00
|
|
|
|
if (cie->per_encoding != DW_EH_PE_omit)
|
|
|
|
|
out_one ('P');
|
|
|
|
|
if (cie->lsda_encoding != DW_EH_PE_omit)
|
|
|
|
|
out_one ('L');
|
2003-05-28 00:52:49 +08:00
|
|
|
|
out_one ('R');
|
2006-02-28 07:07:06 +08:00
|
|
|
|
if (cie->signal_frame)
|
|
|
|
|
out_one ('S');
|
2003-05-28 00:52:49 +08:00
|
|
|
|
out_one (0);
|
2004-10-07 23:18:11 +08:00
|
|
|
|
out_uleb128 (DWARF2_LINE_MIN_INSN_LENGTH); /* Code alignment. */
|
|
|
|
|
out_sleb128 (DWARF2_CIE_DATA_ALIGNMENT); /* Data alignment. */
|
2004-05-13 22:41:18 +08:00
|
|
|
|
if (DW_CIE_VERSION == 1) /* Return column. */
|
|
|
|
|
out_one (cie->return_column);
|
|
|
|
|
else
|
|
|
|
|
out_uleb128 (cie->return_column);
|
2006-11-03 15:29:37 +08:00
|
|
|
|
augmentation_size = 1 + (cie->lsda_encoding != DW_EH_PE_omit);
|
|
|
|
|
if (cie->per_encoding != DW_EH_PE_omit)
|
|
|
|
|
augmentation_size += 1 + encoding_size (cie->per_encoding);
|
|
|
|
|
out_uleb128 (augmentation_size); /* Augmentation size. */
|
|
|
|
|
if (cie->per_encoding != DW_EH_PE_omit)
|
|
|
|
|
{
|
|
|
|
|
offsetT size = encoding_size (cie->per_encoding);
|
|
|
|
|
out_one (cie->per_encoding);
|
|
|
|
|
exp = cie->personality;
|
|
|
|
|
if ((cie->per_encoding & 0x70) == DW_EH_PE_pcrel)
|
|
|
|
|
{
|
2008-09-08 06:54:54 +08:00
|
|
|
|
#if CFI_DIFF_EXPR_OK
|
2006-11-03 15:29:37 +08:00
|
|
|
|
exp.X_op = O_subtract;
|
|
|
|
|
exp.X_op_symbol = symbol_temp_new_now ();
|
|
|
|
|
emit_expr (&exp, size);
|
|
|
|
|
#elif defined (tc_cfi_emit_pcrel_expr)
|
|
|
|
|
tc_cfi_emit_pcrel_expr (&exp, size);
|
|
|
|
|
#else
|
|
|
|
|
abort ();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
emit_expr (&exp, size);
|
|
|
|
|
}
|
|
|
|
|
if (cie->lsda_encoding != DW_EH_PE_omit)
|
|
|
|
|
out_one (cie->lsda_encoding);
|
2008-08-22 03:49:22 +08:00
|
|
|
|
|
|
|
|
|
switch (DWARF2_FDE_RELOC_SIZE)
|
|
|
|
|
{
|
|
|
|
|
case 2:
|
|
|
|
|
enc = DW_EH_PE_sdata2;
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
enc = DW_EH_PE_sdata4;
|
|
|
|
|
break;
|
|
|
|
|
case 8:
|
|
|
|
|
enc = DW_EH_PE_sdata8;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
2008-09-08 06:54:54 +08:00
|
|
|
|
#if CFI_DIFF_EXPR_OK || defined tc_cfi_emit_pcrel_expr
|
2008-08-22 03:49:22 +08:00
|
|
|
|
enc |= DW_EH_PE_pcrel;
|
2003-08-30 04:20:18 +08:00
|
|
|
|
#endif
|
2008-08-22 03:49:22 +08:00
|
|
|
|
out_one (enc);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
if (cie->first)
|
|
|
|
|
for (i = cie->first; i != cie->last; i = i->next)
|
|
|
|
|
output_cfi_insn (i);
|
|
|
|
|
|
2005-02-16 13:04:09 +08:00
|
|
|
|
frag_align (2, DW_CFA_nop, 0);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
symbol_set_value_now (end_address);
|
|
|
|
|
}
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
static void
|
|
|
|
|
output_fde (struct fde_entry *fde, struct cie_entry *cie,
|
2003-06-19 01:58:48 +08:00
|
|
|
|
struct cfi_insn_data *first, int align)
|
2003-05-28 00:52:49 +08:00
|
|
|
|
{
|
|
|
|
|
symbolS *after_size_address, *end_address;
|
|
|
|
|
expressionS exp;
|
2006-11-03 15:29:37 +08:00
|
|
|
|
offsetT augmentation_size;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
after_size_address = symbol_temp_make ();
|
|
|
|
|
end_address = symbol_temp_make ();
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
exp.X_op = O_subtract;
|
|
|
|
|
exp.X_add_symbol = end_address;
|
|
|
|
|
exp.X_op_symbol = after_size_address;
|
|
|
|
|
exp.X_add_number = 0;
|
2004-10-07 23:18:11 +08:00
|
|
|
|
emit_expr (&exp, 4); /* Length. */
|
2003-05-28 00:52:49 +08:00
|
|
|
|
symbol_set_value_now (after_size_address);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
exp.X_add_symbol = after_size_address;
|
|
|
|
|
exp.X_op_symbol = cie->start_address;
|
2004-10-07 23:18:11 +08:00
|
|
|
|
emit_expr (&exp, 4); /* CIE offset. */
|
2003-08-30 04:20:18 +08:00
|
|
|
|
|
2008-09-08 06:54:54 +08:00
|
|
|
|
#if CFI_DIFF_EXPR_OK
|
2003-05-28 00:52:49 +08:00
|
|
|
|
exp.X_add_symbol = fde->start_address;
|
|
|
|
|
exp.X_op_symbol = symbol_temp_new_now ();
|
2008-08-22 03:49:22 +08:00
|
|
|
|
emit_expr (&exp, DWARF2_FDE_RELOC_SIZE); /* Code offset. */
|
2003-08-30 04:20:18 +08:00
|
|
|
|
#else
|
|
|
|
|
exp.X_op = O_symbol;
|
|
|
|
|
exp.X_add_symbol = fde->start_address;
|
|
|
|
|
exp.X_op_symbol = NULL;
|
|
|
|
|
#ifdef tc_cfi_emit_pcrel_expr
|
2008-08-22 03:49:22 +08:00
|
|
|
|
tc_cfi_emit_pcrel_expr (&exp, DWARF2_FDE_RELOC_SIZE); /* Code offset. */
|
2003-08-30 04:20:18 +08:00
|
|
|
|
#else
|
2008-08-22 03:49:22 +08:00
|
|
|
|
emit_expr (&exp, DWARF2_FDE_RELOC_SIZE); /* Code offset. */
|
2003-08-30 04:20:18 +08:00
|
|
|
|
#endif
|
|
|
|
|
exp.X_op = O_subtract;
|
|
|
|
|
#endif
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
exp.X_add_symbol = fde->end_address;
|
2004-10-07 23:18:11 +08:00
|
|
|
|
exp.X_op_symbol = fde->start_address; /* Code length. */
|
2008-08-22 03:49:22 +08:00
|
|
|
|
emit_expr (&exp, DWARF2_FDE_RELOC_SIZE);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2006-11-03 15:29:37 +08:00
|
|
|
|
augmentation_size = encoding_size (fde->lsda_encoding);
|
|
|
|
|
out_uleb128 (augmentation_size); /* Augmentation size. */
|
|
|
|
|
|
|
|
|
|
if (fde->lsda_encoding != DW_EH_PE_omit)
|
|
|
|
|
{
|
|
|
|
|
exp = fde->lsda;
|
|
|
|
|
if ((fde->lsda_encoding & 0x70) == DW_EH_PE_pcrel)
|
|
|
|
|
{
|
2008-09-08 06:54:54 +08:00
|
|
|
|
#if CFI_DIFF_EXPR_OK
|
2006-11-03 15:29:37 +08:00
|
|
|
|
exp.X_op = O_subtract;
|
|
|
|
|
exp.X_op_symbol = symbol_temp_new_now ();
|
|
|
|
|
emit_expr (&exp, augmentation_size);
|
|
|
|
|
#elif defined (tc_cfi_emit_pcrel_expr)
|
|
|
|
|
tc_cfi_emit_pcrel_expr (&exp, augmentation_size);
|
|
|
|
|
#else
|
|
|
|
|
abort ();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
emit_expr (&exp, augmentation_size);
|
|
|
|
|
}
|
2003-05-20 22:31:44 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
for (; first; first = first->next)
|
|
|
|
|
output_cfi_insn (first);
|
2003-05-20 22:31:44 +08:00
|
|
|
|
|
2005-02-16 13:04:09 +08:00
|
|
|
|
frag_align (align, DW_CFA_nop, 0);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
symbol_set_value_now (end_address);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct cie_entry *
|
|
|
|
|
select_cie_for_fde (struct fde_entry *fde, struct cfi_insn_data **pfirst)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_insn_data *i, *j;
|
|
|
|
|
struct cie_entry *cie;
|
|
|
|
|
|
|
|
|
|
for (cie = cie_root; cie; cie = cie->next)
|
2003-05-20 22:31:44 +08:00
|
|
|
|
{
|
2006-02-28 07:07:06 +08:00
|
|
|
|
if (cie->return_column != fde->return_column
|
2006-11-03 15:29:37 +08:00
|
|
|
|
|| cie->signal_frame != fde->signal_frame
|
|
|
|
|
|| cie->per_encoding != fde->per_encoding
|
|
|
|
|
|| cie->lsda_encoding != fde->lsda_encoding)
|
2003-05-28 00:52:49 +08:00
|
|
|
|
continue;
|
2006-11-03 15:29:37 +08:00
|
|
|
|
if (cie->per_encoding != DW_EH_PE_omit)
|
|
|
|
|
{
|
|
|
|
|
if (cie->personality.X_op != fde->personality.X_op
|
|
|
|
|
|| cie->personality.X_add_number
|
|
|
|
|
!= fde->personality.X_add_number)
|
|
|
|
|
continue;
|
|
|
|
|
switch (cie->personality.X_op)
|
|
|
|
|
{
|
|
|
|
|
case O_constant:
|
|
|
|
|
if (cie->personality.X_unsigned != fde->personality.X_unsigned)
|
|
|
|
|
continue;
|
|
|
|
|
break;
|
|
|
|
|
case O_symbol:
|
|
|
|
|
if (cie->personality.X_add_symbol
|
|
|
|
|
!= fde->personality.X_add_symbol)
|
|
|
|
|
continue;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-05-28 00:52:49 +08:00
|
|
|
|
for (i = cie->first, j = fde->data;
|
|
|
|
|
i != cie->last && j != NULL;
|
|
|
|
|
i = i->next, j = j->next)
|
2003-05-20 22:31:44 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
if (i->insn != j->insn)
|
|
|
|
|
goto fail;
|
|
|
|
|
switch (i->insn)
|
|
|
|
|
{
|
|
|
|
|
case DW_CFA_advance_loc:
|
2004-10-07 23:18:11 +08:00
|
|
|
|
case DW_CFA_remember_state:
|
|
|
|
|
/* We reached the first advance/remember in the FDE,
|
|
|
|
|
but did not reach the end of the CIE list. */
|
2003-05-28 00:52:49 +08:00
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
case DW_CFA_offset:
|
|
|
|
|
case DW_CFA_def_cfa:
|
|
|
|
|
if (i->u.ri.reg != j->u.ri.reg)
|
|
|
|
|
goto fail;
|
|
|
|
|
if (i->u.ri.offset != j->u.ri.offset)
|
|
|
|
|
goto fail;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_CFA_register:
|
|
|
|
|
if (i->u.rr.reg1 != j->u.rr.reg1)
|
|
|
|
|
goto fail;
|
|
|
|
|
if (i->u.rr.reg2 != j->u.rr.reg2)
|
|
|
|
|
goto fail;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_CFA_def_cfa_register:
|
2003-06-05 Michal Ludvig <mludvig@suse.cz>
* dw2gencfi.c (cfi_add_CFA_insn, cfi_add_CFA_insn_reg)
(cfi_add_CFA_insn_reg_reg, cfi_add_CFA_insn_reg_offset): New.
(cfi_add_CFA_offset, cfi_add_CFA_def_cfa)
(cfi_add_CFA_register, cfi_add_CFA_def_cfa_register)
(cfi_add_CFA_def_cfa_offset): Use cfi_add_CFA_insn_*().
(cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New.
(cfi_pseudo_table): New directives .cfi_return_column,
.cfi_restore, .cfi_undefined, .cfi_same_value,
.cfi_remember_state, .cfi_restore_state, .cfi_nop.
(dot_cfi, output_cfi_insn): Handle new directives.
* dw2gencfi.h (cfi_add_CFA_restore, cfi_add_CFA_undefined)
(cfi_add_CFA_same_value, cfi_add_CFA_remember_state)
(cfi_add_CFA_restore_state, cfi_add_CFA_nop): New prototypes.
2003-06-05 17:23:47 +08:00
|
|
|
|
case DW_CFA_restore:
|
|
|
|
|
case DW_CFA_undefined:
|
|
|
|
|
case DW_CFA_same_value:
|
2003-05-28 00:52:49 +08:00
|
|
|
|
if (i->u.r != j->u.r)
|
|
|
|
|
goto fail;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case DW_CFA_def_cfa_offset:
|
|
|
|
|
if (i->u.i != j->u.i)
|
|
|
|
|
goto fail;
|
|
|
|
|
break;
|
|
|
|
|
|
2003-06-12 07:16:58 +08:00
|
|
|
|
case CFI_escape:
|
2008-09-25 07:21:04 +08:00
|
|
|
|
case CFI_val_encoded_addr:
|
2003-06-12 07:16:58 +08:00
|
|
|
|
/* Don't bother matching these for now. */
|
|
|
|
|
goto fail;
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
2003-05-20 22:31:44 +08:00
|
|
|
|
}
|
2003-05-28 00:52:49 +08:00
|
|
|
|
|
|
|
|
|
/* Success if we reached the end of the CIE list, and we've either
|
2004-10-07 23:18:11 +08:00
|
|
|
|
run out of FDE entries or we've encountered an advance,
|
|
|
|
|
remember, or escape. */
|
2004-09-09 21:32:46 +08:00
|
|
|
|
if (i == cie->last
|
|
|
|
|
&& (!j
|
|
|
|
|
|| j->insn == DW_CFA_advance_loc
|
2004-10-07 23:18:11 +08:00
|
|
|
|
|| j->insn == DW_CFA_remember_state
|
2008-09-25 07:21:04 +08:00
|
|
|
|
|| j->insn == CFI_escape
|
|
|
|
|
|| j->insn == CFI_val_encoded_addr))
|
2003-05-20 22:31:44 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
*pfirst = j;
|
|
|
|
|
return cie;
|
2003-05-20 22:31:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
fail:;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-11 23:27:38 +08:00
|
|
|
|
cie = (struct cie_entry *) xmalloc (sizeof (struct cie_entry));
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cie->next = cie_root;
|
|
|
|
|
cie_root = cie;
|
|
|
|
|
cie->return_column = fde->return_column;
|
2006-02-28 07:07:06 +08:00
|
|
|
|
cie->signal_frame = fde->signal_frame;
|
2006-11-03 15:29:37 +08:00
|
|
|
|
cie->per_encoding = fde->per_encoding;
|
|
|
|
|
cie->lsda_encoding = fde->lsda_encoding;
|
|
|
|
|
cie->personality = fde->personality;
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cie->first = fde->data;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
for (i = cie->first; i ; i = i->next)
|
2004-09-09 21:32:46 +08:00
|
|
|
|
if (i->insn == DW_CFA_advance_loc
|
2004-10-07 23:18:11 +08:00
|
|
|
|
|| i->insn == DW_CFA_remember_state
|
2008-09-25 07:21:04 +08:00
|
|
|
|
|| i->insn == CFI_escape
|
|
|
|
|
|| i->insn == CFI_val_encoded_addr)
|
2003-05-28 00:52:49 +08:00
|
|
|
|
break;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cie->last = i;
|
|
|
|
|
*pfirst = i;
|
|
|
|
|
|
|
|
|
|
output_cie (cie);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
return cie;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cfi_finish (void)
|
2003-05-20 15:58:07 +08:00
|
|
|
|
{
|
2003-05-28 00:52:49 +08:00
|
|
|
|
segT cfi_seg;
|
|
|
|
|
struct fde_entry *fde;
|
2003-06-01 03:36:45 +08:00
|
|
|
|
int save_flag_traditional_format;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
if (all_fde_data == 0)
|
|
|
|
|
return;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
/* Open .eh_frame section. */
|
|
|
|
|
cfi_seg = subseg_new (".eh_frame", 0);
|
|
|
|
|
bfd_set_section_flags (stdoutput, cfi_seg,
|
2008-08-22 03:49:22 +08:00
|
|
|
|
SEC_ALLOC | SEC_LOAD | SEC_DATA
|
|
|
|
|
| DWARF2_EH_FRAME_READ_ONLY);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
subseg_set (cfi_seg, 0);
|
2003-06-19 01:58:48 +08:00
|
|
|
|
record_alignment (cfi_seg, EH_FRAME_ALIGNMENT);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
2008-10-10 01:31:43 +08:00
|
|
|
|
#ifdef md_fix_up_eh_frame
|
|
|
|
|
md_fix_up_eh_frame (cfi_seg);
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-06-01 03:36:45 +08:00
|
|
|
|
/* Make sure check_eh_frame doesn't do anything with our output. */
|
|
|
|
|
save_flag_traditional_format = flag_traditional_format;
|
|
|
|
|
flag_traditional_format = 1;
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
for (fde = all_fde_data; fde ; fde = fde->next)
|
|
|
|
|
{
|
|
|
|
|
struct cfi_insn_data *first;
|
|
|
|
|
struct cie_entry *cie;
|
|
|
|
|
|
* subsegs.h (struct frchain): Add frch_cfi_data field.
* dw2gencfi.c: Include subsegs.h.
(cur_fde_data, last_address, cur_cfa_offset, cfa_save_stack): Removed.
(struct frch_cfi_data): New type.
(unused_cfi_data): New variable.
(alloc_fde_entry): Move cur_fde_data, last_address, cur_cfa_offset
and cfa_save_stack static vars into a structure pointed from
each frchain.
(alloc_cfi_insn_data, cfi_new_fde, cfi_end_fde, cfi_set_return_column,
cfi_add_advance_loc, cfi_add_CFA_def_cfa, cfi_add_CFA_def_cfa_offset,
cfi_add_CFA_remember_state, cfi_add_CFA_restore_state, dot_cfi,
dot_cfi_escape, dot_cfi_startproc, dot_cfi_endproc, cfi_finish):
Likewise.
* gas/cfi/cfi-common-5.d: New test.
* gas/cfi/cfi-common-5.s: New.
* gas/cfi/cfi.exp: Add cfi-common-5 test.
2006-11-03 15:27:39 +08:00
|
|
|
|
if (fde->end_address == NULL)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("open CFI at the end of file; missing .cfi_endproc directive"));
|
|
|
|
|
fde->end_address = fde->start_address;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
|
cie = select_cie_for_fde (fde, &first);
|
2004-03-07 16:51:21 +08:00
|
|
|
|
output_fde (fde, cie, first, fde->next == NULL ? EH_FRAME_ALIGNMENT : 2);
|
2003-05-28 00:52:49 +08:00
|
|
|
|
}
|
2003-06-01 03:36:45 +08:00
|
|
|
|
|
|
|
|
|
flag_traditional_format = save_flag_traditional_format;
|
2003-05-20 15:58:07 +08:00
|
|
|
|
}
|
2007-09-26 15:02:07 +08:00
|
|
|
|
|
|
|
|
|
#else /* TARGET_USE_CFIPOP */
|
|
|
|
|
void
|
|
|
|
|
cfi_finish (void)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
#endif /* TARGET_USE_CFIPOP */
|