genattrtab.c (write_header): Include hash-set.h...
[gcc.git] / gcc / dwarf2cfi.c
1 /* Dwarf2 Call Frame Information helper routines.
2 Copyright (C) 1992-2015 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "version.h"
25 #include "flags.h"
26 #include "rtl.h"
27 #include "hash-set.h"
28 #include "machmode.h"
29 #include "vec.h"
30 #include "double-int.h"
31 #include "input.h"
32 #include "alias.h"
33 #include "symtab.h"
34 #include "wide-int.h"
35 #include "inchash.h"
36 #include "real.h"
37 #include "tree.h"
38 #include "stor-layout.h"
39 #include "hard-reg-set.h"
40 #include "input.h"
41 #include "function.h"
42 #include "cfgbuild.h"
43 #include "dwarf2.h"
44 #include "dwarf2out.h"
45 #include "dwarf2asm.h"
46 #include "ggc.h"
47 #include "hash-table.h"
48 #include "tm_p.h"
49 #include "target.h"
50 #include "common/common-target.h"
51 #include "tree-pass.h"
52
53 #include "except.h" /* expand_builtin_dwarf_sp_column */
54 #include "expr.h" /* init_return_column_size */
55 #include "regs.h" /* expand_builtin_init_dwarf_reg_sizes */
56 #include "output.h" /* asm_out_file */
57 #include "debug.h" /* dwarf2out_do_frame, dwarf2out_do_cfi_asm */
58
59
60 /* ??? Poison these here until it can be done generically. They've been
61 totally replaced in this file; make sure it stays that way. */
62 #undef DWARF2_UNWIND_INFO
63 #undef DWARF2_FRAME_INFO
64 #if (GCC_VERSION >= 3000)
65 #pragma GCC poison DWARF2_UNWIND_INFO DWARF2_FRAME_INFO
66 #endif
67
68 #ifndef INCOMING_RETURN_ADDR_RTX
69 #define INCOMING_RETURN_ADDR_RTX (gcc_unreachable (), NULL_RTX)
70 #endif
71
72 /* Maximum size (in bytes) of an artificially generated label. */
73 #define MAX_ARTIFICIAL_LABEL_BYTES 30
74 \f
75 /* A collected description of an entire row of the abstract CFI table. */
76 typedef struct GTY(()) dw_cfi_row_struct
77 {
78 /* The expression that computes the CFA, expressed in two different ways.
79 The CFA member for the simple cases, and the full CFI expression for
80 the complex cases. The later will be a DW_CFA_cfa_expression. */
81 dw_cfa_location cfa;
82 dw_cfi_ref cfa_cfi;
83
84 /* The expressions for any register column that is saved. */
85 cfi_vec reg_save;
86 } dw_cfi_row;
87
88 /* The caller's ORIG_REG is saved in SAVED_IN_REG. */
89 typedef struct GTY(()) reg_saved_in_data_struct {
90 rtx orig_reg;
91 rtx saved_in_reg;
92 } reg_saved_in_data;
93
94
95 /* Since we no longer have a proper CFG, we're going to create a facsimile
96 of one on the fly while processing the frame-related insns.
97
98 We create dw_trace_info structures for each extended basic block beginning
99 and ending at a "save point". Save points are labels, barriers, certain
100 notes, and of course the beginning and end of the function.
101
102 As we encounter control transfer insns, we propagate the "current"
103 row state across the edges to the starts of traces. When checking is
104 enabled, we validate that we propagate the same data from all sources.
105
106 All traces are members of the TRACE_INFO array, in the order in which
107 they appear in the instruction stream.
108
109 All save points are present in the TRACE_INDEX hash, mapping the insn
110 starting a trace to the dw_trace_info describing the trace. */
111
112 typedef struct
113 {
114 /* The insn that begins the trace. */
115 rtx_insn *head;
116
117 /* The row state at the beginning and end of the trace. */
118 dw_cfi_row *beg_row, *end_row;
119
120 /* Tracking for DW_CFA_GNU_args_size. The "true" sizes are those we find
121 while scanning insns. However, the args_size value is irrelevant at
122 any point except can_throw_internal_p insns. Therefore the "delay"
123 sizes the values that must actually be emitted for this trace. */
124 HOST_WIDE_INT beg_true_args_size, end_true_args_size;
125 HOST_WIDE_INT beg_delay_args_size, end_delay_args_size;
126
127 /* The first EH insn in the trace, where beg_delay_args_size must be set. */
128 rtx_insn *eh_head;
129
130 /* The following variables contain data used in interpreting frame related
131 expressions. These are not part of the "real" row state as defined by
132 Dwarf, but it seems like they need to be propagated into a trace in case
133 frame related expressions have been sunk. */
134 /* ??? This seems fragile. These variables are fragments of a larger
135 expression. If we do not keep the entire expression together, we risk
136 not being able to put it together properly. Consider forcing targets
137 to generate self-contained expressions and dropping all of the magic
138 interpretation code in this file. Or at least refusing to shrink wrap
139 any frame related insn that doesn't contain a complete expression. */
140
141 /* The register used for saving registers to the stack, and its offset
142 from the CFA. */
143 dw_cfa_location cfa_store;
144
145 /* A temporary register holding an integral value used in adjusting SP
146 or setting up the store_reg. The "offset" field holds the integer
147 value, not an offset. */
148 dw_cfa_location cfa_temp;
149
150 /* A set of registers saved in other registers. This is the inverse of
151 the row->reg_save info, if the entry is a DW_CFA_register. This is
152 implemented as a flat array because it normally contains zero or 1
153 entry, depending on the target. IA-64 is the big spender here, using
154 a maximum of 5 entries. */
155 vec<reg_saved_in_data> regs_saved_in_regs;
156
157 /* An identifier for this trace. Used only for debugging dumps. */
158 unsigned id;
159
160 /* True if this trace immediately follows NOTE_INSN_SWITCH_TEXT_SECTIONS. */
161 bool switch_sections;
162
163 /* True if we've seen different values incoming to beg_true_args_size. */
164 bool args_size_undefined;
165 } dw_trace_info;
166
167
168 typedef dw_trace_info *dw_trace_info_ref;
169
170
171 /* Hashtable helpers. */
172
173 struct trace_info_hasher : typed_noop_remove <dw_trace_info>
174 {
175 typedef dw_trace_info value_type;
176 typedef dw_trace_info compare_type;
177 static inline hashval_t hash (const value_type *);
178 static inline bool equal (const value_type *, const compare_type *);
179 };
180
181 inline hashval_t
182 trace_info_hasher::hash (const value_type *ti)
183 {
184 return INSN_UID (ti->head);
185 }
186
187 inline bool
188 trace_info_hasher::equal (const value_type *a, const compare_type *b)
189 {
190 return a->head == b->head;
191 }
192
193
194 /* The variables making up the pseudo-cfg, as described above. */
195 static vec<dw_trace_info> trace_info;
196 static vec<dw_trace_info_ref> trace_work_list;
197 static hash_table<trace_info_hasher> *trace_index;
198
199 /* A vector of call frame insns for the CIE. */
200 cfi_vec cie_cfi_vec;
201
202 /* The state of the first row of the FDE table, which includes the
203 state provided by the CIE. */
204 static GTY(()) dw_cfi_row *cie_cfi_row;
205
206 static GTY(()) reg_saved_in_data *cie_return_save;
207
208 static GTY(()) unsigned long dwarf2out_cfi_label_num;
209
210 /* The insn after which a new CFI note should be emitted. */
211 static rtx add_cfi_insn;
212
213 /* When non-null, add_cfi will add the CFI to this vector. */
214 static cfi_vec *add_cfi_vec;
215
216 /* The current instruction trace. */
217 static dw_trace_info *cur_trace;
218
219 /* The current, i.e. most recently generated, row of the CFI table. */
220 static dw_cfi_row *cur_row;
221
222 /* A copy of the current CFA, for use during the processing of a
223 single insn. */
224 static dw_cfa_location *cur_cfa;
225
226 /* We delay emitting a register save until either (a) we reach the end
227 of the prologue or (b) the register is clobbered. This clusters
228 register saves so that there are fewer pc advances. */
229
230 typedef struct {
231 rtx reg;
232 rtx saved_reg;
233 HOST_WIDE_INT cfa_offset;
234 } queued_reg_save;
235
236
237 static vec<queued_reg_save> queued_reg_saves;
238
239 /* True if any CFI directives were emitted at the current insn. */
240 static bool any_cfis_emitted;
241
242 /* Short-hand for commonly used register numbers. */
243 static unsigned dw_stack_pointer_regnum;
244 static unsigned dw_frame_pointer_regnum;
245 \f
246 /* Hook used by __throw. */
247
248 rtx
249 expand_builtin_dwarf_sp_column (void)
250 {
251 unsigned int dwarf_regnum = DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM);
252 return GEN_INT (DWARF2_FRAME_REG_OUT (dwarf_regnum, 1));
253 }
254
255 /* MEM is a memory reference for the register size table, each element of
256 which has mode MODE. Initialize column C as a return address column. */
257
258 static void
259 init_return_column_size (machine_mode mode, rtx mem, unsigned int c)
260 {
261 HOST_WIDE_INT offset = c * GET_MODE_SIZE (mode);
262 HOST_WIDE_INT size = GET_MODE_SIZE (Pmode);
263 emit_move_insn (adjust_address (mem, mode, offset),
264 gen_int_mode (size, mode));
265 }
266
267 /* Datastructure used by expand_builtin_init_dwarf_reg_sizes and
268 init_one_dwarf_reg_size to communicate on what has been done by the
269 latter. */
270
271 typedef struct
272 {
273 /* Whether the dwarf return column was initialized. */
274 bool wrote_return_column;
275
276 /* For each hard register REGNO, whether init_one_dwarf_reg_size
277 was given REGNO to process already. */
278 bool processed_regno [FIRST_PSEUDO_REGISTER];
279
280 } init_one_dwarf_reg_state;
281
282 /* Helper for expand_builtin_init_dwarf_reg_sizes. Generate code to
283 initialize the dwarf register size table entry corresponding to register
284 REGNO in REGMODE. TABLE is the table base address, SLOTMODE is the mode to
285 use for the size entry to initialize, and INIT_STATE is the communication
286 datastructure conveying what we're doing to our caller. */
287
288 static
289 void init_one_dwarf_reg_size (int regno, machine_mode regmode,
290 rtx table, machine_mode slotmode,
291 init_one_dwarf_reg_state *init_state)
292 {
293 const unsigned int dnum = DWARF_FRAME_REGNUM (regno);
294 const unsigned int rnum = DWARF2_FRAME_REG_OUT (dnum, 1);
295 const unsigned int dcol = DWARF_REG_TO_UNWIND_COLUMN (rnum);
296
297 const HOST_WIDE_INT slotoffset = dcol * GET_MODE_SIZE (slotmode);
298 const HOST_WIDE_INT regsize = GET_MODE_SIZE (regmode);
299
300 init_state->processed_regno[regno] = true;
301
302 if (rnum >= DWARF_FRAME_REGISTERS)
303 return;
304
305 if (dnum == DWARF_FRAME_RETURN_COLUMN)
306 {
307 if (regmode == VOIDmode)
308 return;
309 init_state->wrote_return_column = true;
310 }
311
312 if (slotoffset < 0)
313 return;
314
315 emit_move_insn (adjust_address (table, slotmode, slotoffset),
316 gen_int_mode (regsize, slotmode));
317 }
318
319 /* Generate code to initialize the dwarf register size table located
320 at the provided ADDRESS. */
321
322 void
323 expand_builtin_init_dwarf_reg_sizes (tree address)
324 {
325 unsigned int i;
326 machine_mode mode = TYPE_MODE (char_type_node);
327 rtx addr = expand_normal (address);
328 rtx mem = gen_rtx_MEM (BLKmode, addr);
329
330 init_one_dwarf_reg_state init_state;
331
332 memset ((char *)&init_state, 0, sizeof (init_state));
333
334 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
335 {
336 machine_mode save_mode;
337 rtx span;
338
339 /* No point in processing a register multiple times. This could happen
340 with register spans, e.g. when a reg is first processed as a piece of
341 a span, then as a register on its own later on. */
342
343 if (init_state.processed_regno[i])
344 continue;
345
346 save_mode = targetm.dwarf_frame_reg_mode (i);
347 span = targetm.dwarf_register_span (gen_rtx_REG (save_mode, i));
348
349 if (!span)
350 init_one_dwarf_reg_size (i, save_mode, mem, mode, &init_state);
351 else
352 {
353 for (int si = 0; si < XVECLEN (span, 0); si++)
354 {
355 rtx reg = XVECEXP (span, 0, si);
356
357 init_one_dwarf_reg_size
358 (REGNO (reg), GET_MODE (reg), mem, mode, &init_state);
359 }
360 }
361 }
362
363 if (!init_state.wrote_return_column)
364 init_return_column_size (mode, mem, DWARF_FRAME_RETURN_COLUMN);
365
366 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
367 init_return_column_size (mode, mem, DWARF_ALT_FRAME_RETURN_COLUMN);
368 #endif
369
370 targetm.init_dwarf_reg_sizes_extra (address);
371 }
372
373 \f
374 static dw_trace_info *
375 get_trace_info (rtx_insn *insn)
376 {
377 dw_trace_info dummy;
378 dummy.head = insn;
379 return trace_index->find_with_hash (&dummy, INSN_UID (insn));
380 }
381
382 static bool
383 save_point_p (rtx_insn *insn)
384 {
385 /* Labels, except those that are really jump tables. */
386 if (LABEL_P (insn))
387 return inside_basic_block_p (insn);
388
389 /* We split traces at the prologue/epilogue notes because those
390 are points at which the unwind info is usually stable. This
391 makes it easier to find spots with identical unwind info so
392 that we can use remember/restore_state opcodes. */
393 if (NOTE_P (insn))
394 switch (NOTE_KIND (insn))
395 {
396 case NOTE_INSN_PROLOGUE_END:
397 case NOTE_INSN_EPILOGUE_BEG:
398 return true;
399 }
400
401 return false;
402 }
403
404 /* Divide OFF by DWARF_CIE_DATA_ALIGNMENT, asserting no remainder. */
405
406 static inline HOST_WIDE_INT
407 div_data_align (HOST_WIDE_INT off)
408 {
409 HOST_WIDE_INT r = off / DWARF_CIE_DATA_ALIGNMENT;
410 gcc_assert (r * DWARF_CIE_DATA_ALIGNMENT == off);
411 return r;
412 }
413
414 /* Return true if we need a signed version of a given opcode
415 (e.g. DW_CFA_offset_extended_sf vs DW_CFA_offset_extended). */
416
417 static inline bool
418 need_data_align_sf_opcode (HOST_WIDE_INT off)
419 {
420 return DWARF_CIE_DATA_ALIGNMENT < 0 ? off > 0 : off < 0;
421 }
422
423 /* Return a pointer to a newly allocated Call Frame Instruction. */
424
425 static inline dw_cfi_ref
426 new_cfi (void)
427 {
428 dw_cfi_ref cfi = ggc_alloc<dw_cfi_node> ();
429
430 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
431 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
432
433 return cfi;
434 }
435
436 /* Return a newly allocated CFI row, with no defined data. */
437
438 static dw_cfi_row *
439 new_cfi_row (void)
440 {
441 dw_cfi_row *row = ggc_cleared_alloc<dw_cfi_row> ();
442
443 row->cfa.reg = INVALID_REGNUM;
444
445 return row;
446 }
447
448 /* Return a copy of an existing CFI row. */
449
450 static dw_cfi_row *
451 copy_cfi_row (dw_cfi_row *src)
452 {
453 dw_cfi_row *dst = ggc_alloc<dw_cfi_row> ();
454
455 *dst = *src;
456 dst->reg_save = vec_safe_copy (src->reg_save);
457
458 return dst;
459 }
460
461 /* Generate a new label for the CFI info to refer to. */
462
463 static char *
464 dwarf2out_cfi_label (void)
465 {
466 int num = dwarf2out_cfi_label_num++;
467 char label[20];
468
469 ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", num);
470
471 return xstrdup (label);
472 }
473
474 /* Add CFI either to the current insn stream or to a vector, or both. */
475
476 static void
477 add_cfi (dw_cfi_ref cfi)
478 {
479 any_cfis_emitted = true;
480
481 if (add_cfi_insn != NULL)
482 {
483 add_cfi_insn = emit_note_after (NOTE_INSN_CFI, add_cfi_insn);
484 NOTE_CFI (add_cfi_insn) = cfi;
485 }
486
487 if (add_cfi_vec != NULL)
488 vec_safe_push (*add_cfi_vec, cfi);
489 }
490
491 static void
492 add_cfi_args_size (HOST_WIDE_INT size)
493 {
494 dw_cfi_ref cfi = new_cfi ();
495
496 /* While we can occasionally have args_size < 0 internally, this state
497 should not persist at a point we actually need an opcode. */
498 gcc_assert (size >= 0);
499
500 cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
501 cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
502
503 add_cfi (cfi);
504 }
505
506 static void
507 add_cfi_restore (unsigned reg)
508 {
509 dw_cfi_ref cfi = new_cfi ();
510
511 cfi->dw_cfi_opc = (reg & ~0x3f ? DW_CFA_restore_extended : DW_CFA_restore);
512 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
513
514 add_cfi (cfi);
515 }
516
517 /* Perform ROW->REG_SAVE[COLUMN] = CFI. CFI may be null, indicating
518 that the register column is no longer saved. */
519
520 static void
521 update_row_reg_save (dw_cfi_row *row, unsigned column, dw_cfi_ref cfi)
522 {
523 if (vec_safe_length (row->reg_save) <= column)
524 vec_safe_grow_cleared (row->reg_save, column + 1);
525 (*row->reg_save)[column] = cfi;
526 }
527
528 /* This function fills in aa dw_cfa_location structure from a dwarf location
529 descriptor sequence. */
530
531 static void
532 get_cfa_from_loc_descr (dw_cfa_location *cfa, struct dw_loc_descr_node *loc)
533 {
534 struct dw_loc_descr_node *ptr;
535 cfa->offset = 0;
536 cfa->base_offset = 0;
537 cfa->indirect = 0;
538 cfa->reg = -1;
539
540 for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
541 {
542 enum dwarf_location_atom op = ptr->dw_loc_opc;
543
544 switch (op)
545 {
546 case DW_OP_reg0:
547 case DW_OP_reg1:
548 case DW_OP_reg2:
549 case DW_OP_reg3:
550 case DW_OP_reg4:
551 case DW_OP_reg5:
552 case DW_OP_reg6:
553 case DW_OP_reg7:
554 case DW_OP_reg8:
555 case DW_OP_reg9:
556 case DW_OP_reg10:
557 case DW_OP_reg11:
558 case DW_OP_reg12:
559 case DW_OP_reg13:
560 case DW_OP_reg14:
561 case DW_OP_reg15:
562 case DW_OP_reg16:
563 case DW_OP_reg17:
564 case DW_OP_reg18:
565 case DW_OP_reg19:
566 case DW_OP_reg20:
567 case DW_OP_reg21:
568 case DW_OP_reg22:
569 case DW_OP_reg23:
570 case DW_OP_reg24:
571 case DW_OP_reg25:
572 case DW_OP_reg26:
573 case DW_OP_reg27:
574 case DW_OP_reg28:
575 case DW_OP_reg29:
576 case DW_OP_reg30:
577 case DW_OP_reg31:
578 cfa->reg = op - DW_OP_reg0;
579 break;
580 case DW_OP_regx:
581 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
582 break;
583 case DW_OP_breg0:
584 case DW_OP_breg1:
585 case DW_OP_breg2:
586 case DW_OP_breg3:
587 case DW_OP_breg4:
588 case DW_OP_breg5:
589 case DW_OP_breg6:
590 case DW_OP_breg7:
591 case DW_OP_breg8:
592 case DW_OP_breg9:
593 case DW_OP_breg10:
594 case DW_OP_breg11:
595 case DW_OP_breg12:
596 case DW_OP_breg13:
597 case DW_OP_breg14:
598 case DW_OP_breg15:
599 case DW_OP_breg16:
600 case DW_OP_breg17:
601 case DW_OP_breg18:
602 case DW_OP_breg19:
603 case DW_OP_breg20:
604 case DW_OP_breg21:
605 case DW_OP_breg22:
606 case DW_OP_breg23:
607 case DW_OP_breg24:
608 case DW_OP_breg25:
609 case DW_OP_breg26:
610 case DW_OP_breg27:
611 case DW_OP_breg28:
612 case DW_OP_breg29:
613 case DW_OP_breg30:
614 case DW_OP_breg31:
615 cfa->reg = op - DW_OP_breg0;
616 cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
617 break;
618 case DW_OP_bregx:
619 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
620 cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
621 break;
622 case DW_OP_deref:
623 cfa->indirect = 1;
624 break;
625 case DW_OP_plus_uconst:
626 cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
627 break;
628 default:
629 gcc_unreachable ();
630 }
631 }
632 }
633
634 /* Find the previous value for the CFA, iteratively. CFI is the opcode
635 to interpret, *LOC will be updated as necessary, *REMEMBER is used for
636 one level of remember/restore state processing. */
637
638 void
639 lookup_cfa_1 (dw_cfi_ref cfi, dw_cfa_location *loc, dw_cfa_location *remember)
640 {
641 switch (cfi->dw_cfi_opc)
642 {
643 case DW_CFA_def_cfa_offset:
644 case DW_CFA_def_cfa_offset_sf:
645 loc->offset = cfi->dw_cfi_oprnd1.dw_cfi_offset;
646 break;
647 case DW_CFA_def_cfa_register:
648 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
649 break;
650 case DW_CFA_def_cfa:
651 case DW_CFA_def_cfa_sf:
652 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
653 loc->offset = cfi->dw_cfi_oprnd2.dw_cfi_offset;
654 break;
655 case DW_CFA_def_cfa_expression:
656 get_cfa_from_loc_descr (loc, cfi->dw_cfi_oprnd1.dw_cfi_loc);
657 break;
658
659 case DW_CFA_remember_state:
660 gcc_assert (!remember->in_use);
661 *remember = *loc;
662 remember->in_use = 1;
663 break;
664 case DW_CFA_restore_state:
665 gcc_assert (remember->in_use);
666 *loc = *remember;
667 remember->in_use = 0;
668 break;
669
670 default:
671 break;
672 }
673 }
674
675 /* Determine if two dw_cfa_location structures define the same data. */
676
677 bool
678 cfa_equal_p (const dw_cfa_location *loc1, const dw_cfa_location *loc2)
679 {
680 return (loc1->reg == loc2->reg
681 && loc1->offset == loc2->offset
682 && loc1->indirect == loc2->indirect
683 && (loc1->indirect == 0
684 || loc1->base_offset == loc2->base_offset));
685 }
686
687 /* Determine if two CFI operands are identical. */
688
689 static bool
690 cfi_oprnd_equal_p (enum dw_cfi_oprnd_type t, dw_cfi_oprnd *a, dw_cfi_oprnd *b)
691 {
692 switch (t)
693 {
694 case dw_cfi_oprnd_unused:
695 return true;
696 case dw_cfi_oprnd_reg_num:
697 return a->dw_cfi_reg_num == b->dw_cfi_reg_num;
698 case dw_cfi_oprnd_offset:
699 return a->dw_cfi_offset == b->dw_cfi_offset;
700 case dw_cfi_oprnd_addr:
701 return (a->dw_cfi_addr == b->dw_cfi_addr
702 || strcmp (a->dw_cfi_addr, b->dw_cfi_addr) == 0);
703 case dw_cfi_oprnd_loc:
704 return loc_descr_equal_p (a->dw_cfi_loc, b->dw_cfi_loc);
705 }
706 gcc_unreachable ();
707 }
708
709 /* Determine if two CFI entries are identical. */
710
711 static bool
712 cfi_equal_p (dw_cfi_ref a, dw_cfi_ref b)
713 {
714 enum dwarf_call_frame_info opc;
715
716 /* Make things easier for our callers, including missing operands. */
717 if (a == b)
718 return true;
719 if (a == NULL || b == NULL)
720 return false;
721
722 /* Obviously, the opcodes must match. */
723 opc = a->dw_cfi_opc;
724 if (opc != b->dw_cfi_opc)
725 return false;
726
727 /* Compare the two operands, re-using the type of the operands as
728 already exposed elsewhere. */
729 return (cfi_oprnd_equal_p (dw_cfi_oprnd1_desc (opc),
730 &a->dw_cfi_oprnd1, &b->dw_cfi_oprnd1)
731 && cfi_oprnd_equal_p (dw_cfi_oprnd2_desc (opc),
732 &a->dw_cfi_oprnd2, &b->dw_cfi_oprnd2));
733 }
734
735 /* Determine if two CFI_ROW structures are identical. */
736
737 static bool
738 cfi_row_equal_p (dw_cfi_row *a, dw_cfi_row *b)
739 {
740 size_t i, n_a, n_b, n_max;
741
742 if (a->cfa_cfi)
743 {
744 if (!cfi_equal_p (a->cfa_cfi, b->cfa_cfi))
745 return false;
746 }
747 else if (!cfa_equal_p (&a->cfa, &b->cfa))
748 return false;
749
750 n_a = vec_safe_length (a->reg_save);
751 n_b = vec_safe_length (b->reg_save);
752 n_max = MAX (n_a, n_b);
753
754 for (i = 0; i < n_max; ++i)
755 {
756 dw_cfi_ref r_a = NULL, r_b = NULL;
757
758 if (i < n_a)
759 r_a = (*a->reg_save)[i];
760 if (i < n_b)
761 r_b = (*b->reg_save)[i];
762
763 if (!cfi_equal_p (r_a, r_b))
764 return false;
765 }
766
767 return true;
768 }
769
770 /* The CFA is now calculated from NEW_CFA. Consider OLD_CFA in determining
771 what opcode to emit. Returns the CFI opcode to effect the change, or
772 NULL if NEW_CFA == OLD_CFA. */
773
774 static dw_cfi_ref
775 def_cfa_0 (dw_cfa_location *old_cfa, dw_cfa_location *new_cfa)
776 {
777 dw_cfi_ref cfi;
778
779 /* If nothing changed, no need to issue any call frame instructions. */
780 if (cfa_equal_p (old_cfa, new_cfa))
781 return NULL;
782
783 cfi = new_cfi ();
784
785 if (new_cfa->reg == old_cfa->reg && !new_cfa->indirect && !old_cfa->indirect)
786 {
787 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction, indicating
788 the CFA register did not change but the offset did. The data
789 factoring for DW_CFA_def_cfa_offset_sf happens in output_cfi, or
790 in the assembler via the .cfi_def_cfa_offset directive. */
791 if (new_cfa->offset < 0)
792 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset_sf;
793 else
794 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
795 cfi->dw_cfi_oprnd1.dw_cfi_offset = new_cfa->offset;
796 }
797 else if (new_cfa->offset == old_cfa->offset
798 && old_cfa->reg != INVALID_REGNUM
799 && !new_cfa->indirect
800 && !old_cfa->indirect)
801 {
802 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
803 indicating the CFA register has changed to <register> but the
804 offset has not changed. */
805 cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
806 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = new_cfa->reg;
807 }
808 else if (new_cfa->indirect == 0)
809 {
810 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
811 indicating the CFA register has changed to <register> with
812 the specified offset. The data factoring for DW_CFA_def_cfa_sf
813 happens in output_cfi, or in the assembler via the .cfi_def_cfa
814 directive. */
815 if (new_cfa->offset < 0)
816 cfi->dw_cfi_opc = DW_CFA_def_cfa_sf;
817 else
818 cfi->dw_cfi_opc = DW_CFA_def_cfa;
819 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = new_cfa->reg;
820 cfi->dw_cfi_oprnd2.dw_cfi_offset = new_cfa->offset;
821 }
822 else
823 {
824 /* Construct a DW_CFA_def_cfa_expression instruction to
825 calculate the CFA using a full location expression since no
826 register-offset pair is available. */
827 struct dw_loc_descr_node *loc_list;
828
829 cfi->dw_cfi_opc = DW_CFA_def_cfa_expression;
830 loc_list = build_cfa_loc (new_cfa, 0);
831 cfi->dw_cfi_oprnd1.dw_cfi_loc = loc_list;
832 }
833
834 return cfi;
835 }
836
837 /* Similarly, but take OLD_CFA from CUR_ROW, and update it after the fact. */
838
839 static void
840 def_cfa_1 (dw_cfa_location *new_cfa)
841 {
842 dw_cfi_ref cfi;
843
844 if (cur_trace->cfa_store.reg == new_cfa->reg && new_cfa->indirect == 0)
845 cur_trace->cfa_store.offset = new_cfa->offset;
846
847 cfi = def_cfa_0 (&cur_row->cfa, new_cfa);
848 if (cfi)
849 {
850 cur_row->cfa = *new_cfa;
851 cur_row->cfa_cfi = (cfi->dw_cfi_opc == DW_CFA_def_cfa_expression
852 ? cfi : NULL);
853
854 add_cfi (cfi);
855 }
856 }
857
858 /* Add the CFI for saving a register. REG is the CFA column number.
859 If SREG is -1, the register is saved at OFFSET from the CFA;
860 otherwise it is saved in SREG. */
861
862 static void
863 reg_save (unsigned int reg, unsigned int sreg, HOST_WIDE_INT offset)
864 {
865 dw_fde_ref fde = cfun ? cfun->fde : NULL;
866 dw_cfi_ref cfi = new_cfi ();
867
868 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
869
870 /* When stack is aligned, store REG using DW_CFA_expression with FP. */
871 if (fde
872 && fde->stack_realign
873 && sreg == INVALID_REGNUM)
874 {
875 cfi->dw_cfi_opc = DW_CFA_expression;
876 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
877 cfi->dw_cfi_oprnd2.dw_cfi_loc
878 = build_cfa_aligned_loc (&cur_row->cfa, offset,
879 fde->stack_realignment);
880 }
881 else if (sreg == INVALID_REGNUM)
882 {
883 if (need_data_align_sf_opcode (offset))
884 cfi->dw_cfi_opc = DW_CFA_offset_extended_sf;
885 else if (reg & ~0x3f)
886 cfi->dw_cfi_opc = DW_CFA_offset_extended;
887 else
888 cfi->dw_cfi_opc = DW_CFA_offset;
889 cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
890 }
891 else if (sreg == reg)
892 {
893 /* While we could emit something like DW_CFA_same_value or
894 DW_CFA_restore, we never expect to see something like that
895 in a prologue. This is more likely to be a bug. A backend
896 can always bypass this by using REG_CFA_RESTORE directly. */
897 gcc_unreachable ();
898 }
899 else
900 {
901 cfi->dw_cfi_opc = DW_CFA_register;
902 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
903 }
904
905 add_cfi (cfi);
906 update_row_reg_save (cur_row, reg, cfi);
907 }
908
909 /* A subroutine of scan_trace. Check INSN for a REG_ARGS_SIZE note
910 and adjust data structures to match. */
911
912 static void
913 notice_args_size (rtx insn)
914 {
915 HOST_WIDE_INT args_size, delta;
916 rtx note;
917
918 note = find_reg_note (insn, REG_ARGS_SIZE, NULL);
919 if (note == NULL)
920 return;
921
922 args_size = INTVAL (XEXP (note, 0));
923 delta = args_size - cur_trace->end_true_args_size;
924 if (delta == 0)
925 return;
926
927 cur_trace->end_true_args_size = args_size;
928
929 /* If the CFA is computed off the stack pointer, then we must adjust
930 the computation of the CFA as well. */
931 if (cur_cfa->reg == dw_stack_pointer_regnum)
932 {
933 gcc_assert (!cur_cfa->indirect);
934
935 /* Convert a change in args_size (always a positive in the
936 direction of stack growth) to a change in stack pointer. */
937 #ifndef STACK_GROWS_DOWNWARD
938 delta = -delta;
939 #endif
940 cur_cfa->offset += delta;
941 }
942 }
943
944 /* A subroutine of scan_trace. INSN is can_throw_internal. Update the
945 data within the trace related to EH insns and args_size. */
946
947 static void
948 notice_eh_throw (rtx_insn *insn)
949 {
950 HOST_WIDE_INT args_size;
951
952 args_size = cur_trace->end_true_args_size;
953 if (cur_trace->eh_head == NULL)
954 {
955 cur_trace->eh_head = insn;
956 cur_trace->beg_delay_args_size = args_size;
957 cur_trace->end_delay_args_size = args_size;
958 }
959 else if (cur_trace->end_delay_args_size != args_size)
960 {
961 cur_trace->end_delay_args_size = args_size;
962
963 /* ??? If the CFA is the stack pointer, search backward for the last
964 CFI note and insert there. Given that the stack changed for the
965 args_size change, there *must* be such a note in between here and
966 the last eh insn. */
967 add_cfi_args_size (args_size);
968 }
969 }
970
971 /* Short-hand inline for the very common D_F_R (REGNO (x)) operation. */
972 /* ??? This ought to go into dwarf2out.h, except that dwarf2out.h is
973 used in places where rtl is prohibited. */
974
975 static inline unsigned
976 dwf_regno (const_rtx reg)
977 {
978 gcc_assert (REGNO (reg) < FIRST_PSEUDO_REGISTER);
979 return DWARF_FRAME_REGNUM (REGNO (reg));
980 }
981
982 /* Compare X and Y for equivalence. The inputs may be REGs or PC_RTX. */
983
984 static bool
985 compare_reg_or_pc (rtx x, rtx y)
986 {
987 if (REG_P (x) && REG_P (y))
988 return REGNO (x) == REGNO (y);
989 return x == y;
990 }
991
992 /* Record SRC as being saved in DEST. DEST may be null to delete an
993 existing entry. SRC may be a register or PC_RTX. */
994
995 static void
996 record_reg_saved_in_reg (rtx dest, rtx src)
997 {
998 reg_saved_in_data *elt;
999 size_t i;
1000
1001 FOR_EACH_VEC_ELT (cur_trace->regs_saved_in_regs, i, elt)
1002 if (compare_reg_or_pc (elt->orig_reg, src))
1003 {
1004 if (dest == NULL)
1005 cur_trace->regs_saved_in_regs.unordered_remove (i);
1006 else
1007 elt->saved_in_reg = dest;
1008 return;
1009 }
1010
1011 if (dest == NULL)
1012 return;
1013
1014 reg_saved_in_data e = {src, dest};
1015 cur_trace->regs_saved_in_regs.safe_push (e);
1016 }
1017
1018 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1019 SREG, or if SREG is NULL then it is saved at OFFSET to the CFA. */
1020
1021 static void
1022 queue_reg_save (rtx reg, rtx sreg, HOST_WIDE_INT offset)
1023 {
1024 queued_reg_save *q;
1025 queued_reg_save e = {reg, sreg, offset};
1026 size_t i;
1027
1028 /* Duplicates waste space, but it's also necessary to remove them
1029 for correctness, since the queue gets output in reverse order. */
1030 FOR_EACH_VEC_ELT (queued_reg_saves, i, q)
1031 if (compare_reg_or_pc (q->reg, reg))
1032 {
1033 *q = e;
1034 return;
1035 }
1036
1037 queued_reg_saves.safe_push (e);
1038 }
1039
1040 /* Output all the entries in QUEUED_REG_SAVES. */
1041
1042 static void
1043 dwarf2out_flush_queued_reg_saves (void)
1044 {
1045 queued_reg_save *q;
1046 size_t i;
1047
1048 FOR_EACH_VEC_ELT (queued_reg_saves, i, q)
1049 {
1050 unsigned int reg, sreg;
1051
1052 record_reg_saved_in_reg (q->saved_reg, q->reg);
1053
1054 if (q->reg == pc_rtx)
1055 reg = DWARF_FRAME_RETURN_COLUMN;
1056 else
1057 reg = dwf_regno (q->reg);
1058 if (q->saved_reg)
1059 sreg = dwf_regno (q->saved_reg);
1060 else
1061 sreg = INVALID_REGNUM;
1062 reg_save (reg, sreg, q->cfa_offset);
1063 }
1064
1065 queued_reg_saves.truncate (0);
1066 }
1067
1068 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1069 location for? Or, does it clobber a register which we've previously
1070 said that some other register is saved in, and for which we now
1071 have a new location for? */
1072
1073 static bool
1074 clobbers_queued_reg_save (const_rtx insn)
1075 {
1076 queued_reg_save *q;
1077 size_t iq;
1078
1079 FOR_EACH_VEC_ELT (queued_reg_saves, iq, q)
1080 {
1081 size_t ir;
1082 reg_saved_in_data *rir;
1083
1084 if (modified_in_p (q->reg, insn))
1085 return true;
1086
1087 FOR_EACH_VEC_ELT (cur_trace->regs_saved_in_regs, ir, rir)
1088 if (compare_reg_or_pc (q->reg, rir->orig_reg)
1089 && modified_in_p (rir->saved_in_reg, insn))
1090 return true;
1091 }
1092
1093 return false;
1094 }
1095
1096 /* What register, if any, is currently saved in REG? */
1097
1098 static rtx
1099 reg_saved_in (rtx reg)
1100 {
1101 unsigned int regn = REGNO (reg);
1102 queued_reg_save *q;
1103 reg_saved_in_data *rir;
1104 size_t i;
1105
1106 FOR_EACH_VEC_ELT (queued_reg_saves, i, q)
1107 if (q->saved_reg && regn == REGNO (q->saved_reg))
1108 return q->reg;
1109
1110 FOR_EACH_VEC_ELT (cur_trace->regs_saved_in_regs, i, rir)
1111 if (regn == REGNO (rir->saved_in_reg))
1112 return rir->orig_reg;
1113
1114 return NULL_RTX;
1115 }
1116
1117 /* A subroutine of dwarf2out_frame_debug, process a REG_DEF_CFA note. */
1118
1119 static void
1120 dwarf2out_frame_debug_def_cfa (rtx pat)
1121 {
1122 memset (cur_cfa, 0, sizeof (*cur_cfa));
1123
1124 if (GET_CODE (pat) == PLUS)
1125 {
1126 cur_cfa->offset = INTVAL (XEXP (pat, 1));
1127 pat = XEXP (pat, 0);
1128 }
1129 if (MEM_P (pat))
1130 {
1131 cur_cfa->indirect = 1;
1132 pat = XEXP (pat, 0);
1133 if (GET_CODE (pat) == PLUS)
1134 {
1135 cur_cfa->base_offset = INTVAL (XEXP (pat, 1));
1136 pat = XEXP (pat, 0);
1137 }
1138 }
1139 /* ??? If this fails, we could be calling into the _loc functions to
1140 define a full expression. So far no port does that. */
1141 gcc_assert (REG_P (pat));
1142 cur_cfa->reg = dwf_regno (pat);
1143 }
1144
1145 /* A subroutine of dwarf2out_frame_debug, process a REG_ADJUST_CFA note. */
1146
1147 static void
1148 dwarf2out_frame_debug_adjust_cfa (rtx pat)
1149 {
1150 rtx src, dest;
1151
1152 gcc_assert (GET_CODE (pat) == SET);
1153 dest = XEXP (pat, 0);
1154 src = XEXP (pat, 1);
1155
1156 switch (GET_CODE (src))
1157 {
1158 case PLUS:
1159 gcc_assert (dwf_regno (XEXP (src, 0)) == cur_cfa->reg);
1160 cur_cfa->offset -= INTVAL (XEXP (src, 1));
1161 break;
1162
1163 case REG:
1164 break;
1165
1166 default:
1167 gcc_unreachable ();
1168 }
1169
1170 cur_cfa->reg = dwf_regno (dest);
1171 gcc_assert (cur_cfa->indirect == 0);
1172 }
1173
1174 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_OFFSET note. */
1175
1176 static void
1177 dwarf2out_frame_debug_cfa_offset (rtx set)
1178 {
1179 HOST_WIDE_INT offset;
1180 rtx src, addr, span;
1181 unsigned int sregno;
1182
1183 src = XEXP (set, 1);
1184 addr = XEXP (set, 0);
1185 gcc_assert (MEM_P (addr));
1186 addr = XEXP (addr, 0);
1187
1188 /* As documented, only consider extremely simple addresses. */
1189 switch (GET_CODE (addr))
1190 {
1191 case REG:
1192 gcc_assert (dwf_regno (addr) == cur_cfa->reg);
1193 offset = -cur_cfa->offset;
1194 break;
1195 case PLUS:
1196 gcc_assert (dwf_regno (XEXP (addr, 0)) == cur_cfa->reg);
1197 offset = INTVAL (XEXP (addr, 1)) - cur_cfa->offset;
1198 break;
1199 default:
1200 gcc_unreachable ();
1201 }
1202
1203 if (src == pc_rtx)
1204 {
1205 span = NULL;
1206 sregno = DWARF_FRAME_RETURN_COLUMN;
1207 }
1208 else
1209 {
1210 span = targetm.dwarf_register_span (src);
1211 sregno = dwf_regno (src);
1212 }
1213
1214 /* ??? We'd like to use queue_reg_save, but we need to come up with
1215 a different flushing heuristic for epilogues. */
1216 if (!span)
1217 reg_save (sregno, INVALID_REGNUM, offset);
1218 else
1219 {
1220 /* We have a PARALLEL describing where the contents of SRC live.
1221 Adjust the offset for each piece of the PARALLEL. */
1222 HOST_WIDE_INT span_offset = offset;
1223
1224 gcc_assert (GET_CODE (span) == PARALLEL);
1225
1226 const int par_len = XVECLEN (span, 0);
1227 for (int par_index = 0; par_index < par_len; par_index++)
1228 {
1229 rtx elem = XVECEXP (span, 0, par_index);
1230 sregno = dwf_regno (src);
1231 reg_save (sregno, INVALID_REGNUM, span_offset);
1232 span_offset += GET_MODE_SIZE (GET_MODE (elem));
1233 }
1234 }
1235 }
1236
1237 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_REGISTER note. */
1238
1239 static void
1240 dwarf2out_frame_debug_cfa_register (rtx set)
1241 {
1242 rtx src, dest;
1243 unsigned sregno, dregno;
1244
1245 src = XEXP (set, 1);
1246 dest = XEXP (set, 0);
1247
1248 record_reg_saved_in_reg (dest, src);
1249 if (src == pc_rtx)
1250 sregno = DWARF_FRAME_RETURN_COLUMN;
1251 else
1252 sregno = dwf_regno (src);
1253
1254 dregno = dwf_regno (dest);
1255
1256 /* ??? We'd like to use queue_reg_save, but we need to come up with
1257 a different flushing heuristic for epilogues. */
1258 reg_save (sregno, dregno, 0);
1259 }
1260
1261 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_EXPRESSION note. */
1262
1263 static void
1264 dwarf2out_frame_debug_cfa_expression (rtx set)
1265 {
1266 rtx src, dest, span;
1267 dw_cfi_ref cfi = new_cfi ();
1268 unsigned regno;
1269
1270 dest = SET_DEST (set);
1271 src = SET_SRC (set);
1272
1273 gcc_assert (REG_P (src));
1274 gcc_assert (MEM_P (dest));
1275
1276 span = targetm.dwarf_register_span (src);
1277 gcc_assert (!span);
1278
1279 regno = dwf_regno (src);
1280
1281 cfi->dw_cfi_opc = DW_CFA_expression;
1282 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = regno;
1283 cfi->dw_cfi_oprnd2.dw_cfi_loc
1284 = mem_loc_descriptor (XEXP (dest, 0), get_address_mode (dest),
1285 GET_MODE (dest), VAR_INIT_STATUS_INITIALIZED);
1286
1287 /* ??? We'd like to use queue_reg_save, were the interface different,
1288 and, as above, we could manage flushing for epilogues. */
1289 add_cfi (cfi);
1290 update_row_reg_save (cur_row, regno, cfi);
1291 }
1292
1293 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_RESTORE note. */
1294
1295 static void
1296 dwarf2out_frame_debug_cfa_restore (rtx reg)
1297 {
1298 gcc_assert (REG_P (reg));
1299
1300 rtx span = targetm.dwarf_register_span (reg);
1301 if (!span)
1302 {
1303 unsigned int regno = dwf_regno (reg);
1304 add_cfi_restore (regno);
1305 update_row_reg_save (cur_row, regno, NULL);
1306 }
1307 else
1308 {
1309 /* We have a PARALLEL describing where the contents of REG live.
1310 Restore the register for each piece of the PARALLEL. */
1311 gcc_assert (GET_CODE (span) == PARALLEL);
1312
1313 const int par_len = XVECLEN (span, 0);
1314 for (int par_index = 0; par_index < par_len; par_index++)
1315 {
1316 reg = XVECEXP (span, 0, par_index);
1317 gcc_assert (REG_P (reg));
1318 unsigned int regno = dwf_regno (reg);
1319 add_cfi_restore (regno);
1320 update_row_reg_save (cur_row, regno, NULL);
1321 }
1322 }
1323 }
1324
1325 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_WINDOW_SAVE.
1326 ??? Perhaps we should note in the CIE where windows are saved (instead of
1327 assuming 0(cfa)) and what registers are in the window. */
1328
1329 static void
1330 dwarf2out_frame_debug_cfa_window_save (void)
1331 {
1332 dw_cfi_ref cfi = new_cfi ();
1333
1334 cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
1335 add_cfi (cfi);
1336 }
1337
1338 /* Record call frame debugging information for an expression EXPR,
1339 which either sets SP or FP (adjusting how we calculate the frame
1340 address) or saves a register to the stack or another register.
1341 LABEL indicates the address of EXPR.
1342
1343 This function encodes a state machine mapping rtxes to actions on
1344 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1345 users need not read the source code.
1346
1347 The High-Level Picture
1348
1349 Changes in the register we use to calculate the CFA: Currently we
1350 assume that if you copy the CFA register into another register, we
1351 should take the other one as the new CFA register; this seems to
1352 work pretty well. If it's wrong for some target, it's simple
1353 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1354
1355 Changes in the register we use for saving registers to the stack:
1356 This is usually SP, but not always. Again, we deduce that if you
1357 copy SP into another register (and SP is not the CFA register),
1358 then the new register is the one we will be using for register
1359 saves. This also seems to work.
1360
1361 Register saves: There's not much guesswork about this one; if
1362 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1363 register save, and the register used to calculate the destination
1364 had better be the one we think we're using for this purpose.
1365 It's also assumed that a copy from a call-saved register to another
1366 register is saving that register if RTX_FRAME_RELATED_P is set on
1367 that instruction. If the copy is from a call-saved register to
1368 the *same* register, that means that the register is now the same
1369 value as in the caller.
1370
1371 Except: If the register being saved is the CFA register, and the
1372 offset is nonzero, we are saving the CFA, so we assume we have to
1373 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
1374 the intent is to save the value of SP from the previous frame.
1375
1376 In addition, if a register has previously been saved to a different
1377 register,
1378
1379 Invariants / Summaries of Rules
1380
1381 cfa current rule for calculating the CFA. It usually
1382 consists of a register and an offset. This is
1383 actually stored in *cur_cfa, but abbreviated
1384 for the purposes of this documentation.
1385 cfa_store register used by prologue code to save things to the stack
1386 cfa_store.offset is the offset from the value of
1387 cfa_store.reg to the actual CFA
1388 cfa_temp register holding an integral value. cfa_temp.offset
1389 stores the value, which will be used to adjust the
1390 stack pointer. cfa_temp is also used like cfa_store,
1391 to track stores to the stack via fp or a temp reg.
1392
1393 Rules 1- 4: Setting a register's value to cfa.reg or an expression
1394 with cfa.reg as the first operand changes the cfa.reg and its
1395 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
1396 cfa_temp.offset.
1397
1398 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
1399 expression yielding a constant. This sets cfa_temp.reg
1400 and cfa_temp.offset.
1401
1402 Rule 5: Create a new register cfa_store used to save items to the
1403 stack.
1404
1405 Rules 10-14: Save a register to the stack. Define offset as the
1406 difference of the original location and cfa_store's
1407 location (or cfa_temp's location if cfa_temp is used).
1408
1409 Rules 16-20: If AND operation happens on sp in prologue, we assume
1410 stack is realigned. We will use a group of DW_OP_XXX
1411 expressions to represent the location of the stored
1412 register instead of CFA+offset.
1413
1414 The Rules
1415
1416 "{a,b}" indicates a choice of a xor b.
1417 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1418
1419 Rule 1:
1420 (set <reg1> <reg2>:cfa.reg)
1421 effects: cfa.reg = <reg1>
1422 cfa.offset unchanged
1423 cfa_temp.reg = <reg1>
1424 cfa_temp.offset = cfa.offset
1425
1426 Rule 2:
1427 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
1428 {<const_int>,<reg>:cfa_temp.reg}))
1429 effects: cfa.reg = sp if fp used
1430 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1431 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1432 if cfa_store.reg==sp
1433
1434 Rule 3:
1435 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1436 effects: cfa.reg = fp
1437 cfa_offset += +/- <const_int>
1438
1439 Rule 4:
1440 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1441 constraints: <reg1> != fp
1442 <reg1> != sp
1443 effects: cfa.reg = <reg1>
1444 cfa_temp.reg = <reg1>
1445 cfa_temp.offset = cfa.offset
1446
1447 Rule 5:
1448 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1449 constraints: <reg1> != fp
1450 <reg1> != sp
1451 effects: cfa_store.reg = <reg1>
1452 cfa_store.offset = cfa.offset - cfa_temp.offset
1453
1454 Rule 6:
1455 (set <reg> <const_int>)
1456 effects: cfa_temp.reg = <reg>
1457 cfa_temp.offset = <const_int>
1458
1459 Rule 7:
1460 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1461 effects: cfa_temp.reg = <reg1>
1462 cfa_temp.offset |= <const_int>
1463
1464 Rule 8:
1465 (set <reg> (high <exp>))
1466 effects: none
1467
1468 Rule 9:
1469 (set <reg> (lo_sum <exp> <const_int>))
1470 effects: cfa_temp.reg = <reg>
1471 cfa_temp.offset = <const_int>
1472
1473 Rule 10:
1474 (set (mem ({pre,post}_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1475 effects: cfa_store.offset -= <const_int>
1476 cfa.offset = cfa_store.offset if cfa.reg == sp
1477 cfa.reg = sp
1478 cfa.base_offset = -cfa_store.offset
1479
1480 Rule 11:
1481 (set (mem ({pre_inc,pre_dec,post_dec} sp:cfa_store.reg)) <reg>)
1482 effects: cfa_store.offset += -/+ mode_size(mem)
1483 cfa.offset = cfa_store.offset if cfa.reg == sp
1484 cfa.reg = sp
1485 cfa.base_offset = -cfa_store.offset
1486
1487 Rule 12:
1488 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
1489
1490 <reg2>)
1491 effects: cfa.reg = <reg1>
1492 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1493
1494 Rule 13:
1495 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1496 effects: cfa.reg = <reg1>
1497 cfa.base_offset = -{cfa_store,cfa_temp}.offset
1498
1499 Rule 14:
1500 (set (mem (post_inc <reg1>:cfa_temp <const_int>)) <reg2>)
1501 effects: cfa.reg = <reg1>
1502 cfa.base_offset = -cfa_temp.offset
1503 cfa_temp.offset -= mode_size(mem)
1504
1505 Rule 15:
1506 (set <reg> {unspec, unspec_volatile})
1507 effects: target-dependent
1508
1509 Rule 16:
1510 (set sp (and: sp <const_int>))
1511 constraints: cfa_store.reg == sp
1512 effects: cfun->fde.stack_realign = 1
1513 cfa_store.offset = 0
1514 fde->drap_reg = cfa.reg if cfa.reg != sp and cfa.reg != fp
1515
1516 Rule 17:
1517 (set (mem ({pre_inc, pre_dec} sp)) (mem (plus (cfa.reg) (const_int))))
1518 effects: cfa_store.offset += -/+ mode_size(mem)
1519
1520 Rule 18:
1521 (set (mem ({pre_inc, pre_dec} sp)) fp)
1522 constraints: fde->stack_realign == 1
1523 effects: cfa_store.offset = 0
1524 cfa.reg != HARD_FRAME_POINTER_REGNUM
1525
1526 Rule 19:
1527 (set (mem ({pre_inc, pre_dec} sp)) cfa.reg)
1528 constraints: fde->stack_realign == 1
1529 && cfa.offset == 0
1530 && cfa.indirect == 0
1531 && cfa.reg != HARD_FRAME_POINTER_REGNUM
1532 effects: Use DW_CFA_def_cfa_expression to define cfa
1533 cfa.reg == fde->drap_reg */
1534
1535 static void
1536 dwarf2out_frame_debug_expr (rtx expr)
1537 {
1538 rtx src, dest, span;
1539 HOST_WIDE_INT offset;
1540 dw_fde_ref fde;
1541
1542 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1543 the PARALLEL independently. The first element is always processed if
1544 it is a SET. This is for backward compatibility. Other elements
1545 are processed only if they are SETs and the RTX_FRAME_RELATED_P
1546 flag is set in them. */
1547 if (GET_CODE (expr) == PARALLEL || GET_CODE (expr) == SEQUENCE)
1548 {
1549 int par_index;
1550 int limit = XVECLEN (expr, 0);
1551 rtx elem;
1552
1553 /* PARALLELs have strict read-modify-write semantics, so we
1554 ought to evaluate every rvalue before changing any lvalue.
1555 It's cumbersome to do that in general, but there's an
1556 easy approximation that is enough for all current users:
1557 handle register saves before register assignments. */
1558 if (GET_CODE (expr) == PARALLEL)
1559 for (par_index = 0; par_index < limit; par_index++)
1560 {
1561 elem = XVECEXP (expr, 0, par_index);
1562 if (GET_CODE (elem) == SET
1563 && MEM_P (SET_DEST (elem))
1564 && (RTX_FRAME_RELATED_P (elem) || par_index == 0))
1565 dwarf2out_frame_debug_expr (elem);
1566 }
1567
1568 for (par_index = 0; par_index < limit; par_index++)
1569 {
1570 elem = XVECEXP (expr, 0, par_index);
1571 if (GET_CODE (elem) == SET
1572 && (!MEM_P (SET_DEST (elem)) || GET_CODE (expr) == SEQUENCE)
1573 && (RTX_FRAME_RELATED_P (elem) || par_index == 0))
1574 dwarf2out_frame_debug_expr (elem);
1575 }
1576 return;
1577 }
1578
1579 gcc_assert (GET_CODE (expr) == SET);
1580
1581 src = SET_SRC (expr);
1582 dest = SET_DEST (expr);
1583
1584 if (REG_P (src))
1585 {
1586 rtx rsi = reg_saved_in (src);
1587 if (rsi)
1588 src = rsi;
1589 }
1590
1591 fde = cfun->fde;
1592
1593 switch (GET_CODE (dest))
1594 {
1595 case REG:
1596 switch (GET_CODE (src))
1597 {
1598 /* Setting FP from SP. */
1599 case REG:
1600 if (cur_cfa->reg == dwf_regno (src))
1601 {
1602 /* Rule 1 */
1603 /* Update the CFA rule wrt SP or FP. Make sure src is
1604 relative to the current CFA register.
1605
1606 We used to require that dest be either SP or FP, but the
1607 ARM copies SP to a temporary register, and from there to
1608 FP. So we just rely on the backends to only set
1609 RTX_FRAME_RELATED_P on appropriate insns. */
1610 cur_cfa->reg = dwf_regno (dest);
1611 cur_trace->cfa_temp.reg = cur_cfa->reg;
1612 cur_trace->cfa_temp.offset = cur_cfa->offset;
1613 }
1614 else
1615 {
1616 /* Saving a register in a register. */
1617 gcc_assert (!fixed_regs [REGNO (dest)]
1618 /* For the SPARC and its register window. */
1619 || (dwf_regno (src) == DWARF_FRAME_RETURN_COLUMN));
1620
1621 /* After stack is aligned, we can only save SP in FP
1622 if drap register is used. In this case, we have
1623 to restore stack pointer with the CFA value and we
1624 don't generate this DWARF information. */
1625 if (fde
1626 && fde->stack_realign
1627 && REGNO (src) == STACK_POINTER_REGNUM)
1628 gcc_assert (REGNO (dest) == HARD_FRAME_POINTER_REGNUM
1629 && fde->drap_reg != INVALID_REGNUM
1630 && cur_cfa->reg != dwf_regno (src));
1631 else
1632 queue_reg_save (src, dest, 0);
1633 }
1634 break;
1635
1636 case PLUS:
1637 case MINUS:
1638 case LO_SUM:
1639 if (dest == stack_pointer_rtx)
1640 {
1641 /* Rule 2 */
1642 /* Adjusting SP. */
1643 switch (GET_CODE (XEXP (src, 1)))
1644 {
1645 case CONST_INT:
1646 offset = INTVAL (XEXP (src, 1));
1647 break;
1648 case REG:
1649 gcc_assert (dwf_regno (XEXP (src, 1))
1650 == cur_trace->cfa_temp.reg);
1651 offset = cur_trace->cfa_temp.offset;
1652 break;
1653 default:
1654 gcc_unreachable ();
1655 }
1656
1657 if (XEXP (src, 0) == hard_frame_pointer_rtx)
1658 {
1659 /* Restoring SP from FP in the epilogue. */
1660 gcc_assert (cur_cfa->reg == dw_frame_pointer_regnum);
1661 cur_cfa->reg = dw_stack_pointer_regnum;
1662 }
1663 else if (GET_CODE (src) == LO_SUM)
1664 /* Assume we've set the source reg of the LO_SUM from sp. */
1665 ;
1666 else
1667 gcc_assert (XEXP (src, 0) == stack_pointer_rtx);
1668
1669 if (GET_CODE (src) != MINUS)
1670 offset = -offset;
1671 if (cur_cfa->reg == dw_stack_pointer_regnum)
1672 cur_cfa->offset += offset;
1673 if (cur_trace->cfa_store.reg == dw_stack_pointer_regnum)
1674 cur_trace->cfa_store.offset += offset;
1675 }
1676 else if (dest == hard_frame_pointer_rtx)
1677 {
1678 /* Rule 3 */
1679 /* Either setting the FP from an offset of the SP,
1680 or adjusting the FP */
1681 gcc_assert (frame_pointer_needed);
1682
1683 gcc_assert (REG_P (XEXP (src, 0))
1684 && dwf_regno (XEXP (src, 0)) == cur_cfa->reg
1685 && CONST_INT_P (XEXP (src, 1)));
1686 offset = INTVAL (XEXP (src, 1));
1687 if (GET_CODE (src) != MINUS)
1688 offset = -offset;
1689 cur_cfa->offset += offset;
1690 cur_cfa->reg = dw_frame_pointer_regnum;
1691 }
1692 else
1693 {
1694 gcc_assert (GET_CODE (src) != MINUS);
1695
1696 /* Rule 4 */
1697 if (REG_P (XEXP (src, 0))
1698 && dwf_regno (XEXP (src, 0)) == cur_cfa->reg
1699 && CONST_INT_P (XEXP (src, 1)))
1700 {
1701 /* Setting a temporary CFA register that will be copied
1702 into the FP later on. */
1703 offset = - INTVAL (XEXP (src, 1));
1704 cur_cfa->offset += offset;
1705 cur_cfa->reg = dwf_regno (dest);
1706 /* Or used to save regs to the stack. */
1707 cur_trace->cfa_temp.reg = cur_cfa->reg;
1708 cur_trace->cfa_temp.offset = cur_cfa->offset;
1709 }
1710
1711 /* Rule 5 */
1712 else if (REG_P (XEXP (src, 0))
1713 && dwf_regno (XEXP (src, 0)) == cur_trace->cfa_temp.reg
1714 && XEXP (src, 1) == stack_pointer_rtx)
1715 {
1716 /* Setting a scratch register that we will use instead
1717 of SP for saving registers to the stack. */
1718 gcc_assert (cur_cfa->reg == dw_stack_pointer_regnum);
1719 cur_trace->cfa_store.reg = dwf_regno (dest);
1720 cur_trace->cfa_store.offset
1721 = cur_cfa->offset - cur_trace->cfa_temp.offset;
1722 }
1723
1724 /* Rule 9 */
1725 else if (GET_CODE (src) == LO_SUM
1726 && CONST_INT_P (XEXP (src, 1)))
1727 {
1728 cur_trace->cfa_temp.reg = dwf_regno (dest);
1729 cur_trace->cfa_temp.offset = INTVAL (XEXP (src, 1));
1730 }
1731 else
1732 gcc_unreachable ();
1733 }
1734 break;
1735
1736 /* Rule 6 */
1737 case CONST_INT:
1738 cur_trace->cfa_temp.reg = dwf_regno (dest);
1739 cur_trace->cfa_temp.offset = INTVAL (src);
1740 break;
1741
1742 /* Rule 7 */
1743 case IOR:
1744 gcc_assert (REG_P (XEXP (src, 0))
1745 && dwf_regno (XEXP (src, 0)) == cur_trace->cfa_temp.reg
1746 && CONST_INT_P (XEXP (src, 1)));
1747
1748 cur_trace->cfa_temp.reg = dwf_regno (dest);
1749 cur_trace->cfa_temp.offset |= INTVAL (XEXP (src, 1));
1750 break;
1751
1752 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
1753 which will fill in all of the bits. */
1754 /* Rule 8 */
1755 case HIGH:
1756 break;
1757
1758 /* Rule 15 */
1759 case UNSPEC:
1760 case UNSPEC_VOLATILE:
1761 /* All unspecs should be represented by REG_CFA_* notes. */
1762 gcc_unreachable ();
1763 return;
1764
1765 /* Rule 16 */
1766 case AND:
1767 /* If this AND operation happens on stack pointer in prologue,
1768 we assume the stack is realigned and we extract the
1769 alignment. */
1770 if (fde && XEXP (src, 0) == stack_pointer_rtx)
1771 {
1772 /* We interpret reg_save differently with stack_realign set.
1773 Thus we must flush whatever we have queued first. */
1774 dwarf2out_flush_queued_reg_saves ();
1775
1776 gcc_assert (cur_trace->cfa_store.reg
1777 == dwf_regno (XEXP (src, 0)));
1778 fde->stack_realign = 1;
1779 fde->stack_realignment = INTVAL (XEXP (src, 1));
1780 cur_trace->cfa_store.offset = 0;
1781
1782 if (cur_cfa->reg != dw_stack_pointer_regnum
1783 && cur_cfa->reg != dw_frame_pointer_regnum)
1784 fde->drap_reg = cur_cfa->reg;
1785 }
1786 return;
1787
1788 default:
1789 gcc_unreachable ();
1790 }
1791 break;
1792
1793 case MEM:
1794
1795 /* Saving a register to the stack. Make sure dest is relative to the
1796 CFA register. */
1797 switch (GET_CODE (XEXP (dest, 0)))
1798 {
1799 /* Rule 10 */
1800 /* With a push. */
1801 case PRE_MODIFY:
1802 case POST_MODIFY:
1803 /* We can't handle variable size modifications. */
1804 gcc_assert (GET_CODE (XEXP (XEXP (XEXP (dest, 0), 1), 1))
1805 == CONST_INT);
1806 offset = -INTVAL (XEXP (XEXP (XEXP (dest, 0), 1), 1));
1807
1808 gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
1809 && cur_trace->cfa_store.reg == dw_stack_pointer_regnum);
1810
1811 cur_trace->cfa_store.offset += offset;
1812 if (cur_cfa->reg == dw_stack_pointer_regnum)
1813 cur_cfa->offset = cur_trace->cfa_store.offset;
1814
1815 if (GET_CODE (XEXP (dest, 0)) == POST_MODIFY)
1816 offset -= cur_trace->cfa_store.offset;
1817 else
1818 offset = -cur_trace->cfa_store.offset;
1819 break;
1820
1821 /* Rule 11 */
1822 case PRE_INC:
1823 case PRE_DEC:
1824 case POST_DEC:
1825 offset = GET_MODE_SIZE (GET_MODE (dest));
1826 if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
1827 offset = -offset;
1828
1829 gcc_assert ((REGNO (XEXP (XEXP (dest, 0), 0))
1830 == STACK_POINTER_REGNUM)
1831 && cur_trace->cfa_store.reg == dw_stack_pointer_regnum);
1832
1833 cur_trace->cfa_store.offset += offset;
1834
1835 /* Rule 18: If stack is aligned, we will use FP as a
1836 reference to represent the address of the stored
1837 regiser. */
1838 if (fde
1839 && fde->stack_realign
1840 && REG_P (src)
1841 && REGNO (src) == HARD_FRAME_POINTER_REGNUM)
1842 {
1843 gcc_assert (cur_cfa->reg != dw_frame_pointer_regnum);
1844 cur_trace->cfa_store.offset = 0;
1845 }
1846
1847 if (cur_cfa->reg == dw_stack_pointer_regnum)
1848 cur_cfa->offset = cur_trace->cfa_store.offset;
1849
1850 if (GET_CODE (XEXP (dest, 0)) == POST_DEC)
1851 offset += -cur_trace->cfa_store.offset;
1852 else
1853 offset = -cur_trace->cfa_store.offset;
1854 break;
1855
1856 /* Rule 12 */
1857 /* With an offset. */
1858 case PLUS:
1859 case MINUS:
1860 case LO_SUM:
1861 {
1862 unsigned int regno;
1863
1864 gcc_assert (CONST_INT_P (XEXP (XEXP (dest, 0), 1))
1865 && REG_P (XEXP (XEXP (dest, 0), 0)));
1866 offset = INTVAL (XEXP (XEXP (dest, 0), 1));
1867 if (GET_CODE (XEXP (dest, 0)) == MINUS)
1868 offset = -offset;
1869
1870 regno = dwf_regno (XEXP (XEXP (dest, 0), 0));
1871
1872 if (cur_cfa->reg == regno)
1873 offset -= cur_cfa->offset;
1874 else if (cur_trace->cfa_store.reg == regno)
1875 offset -= cur_trace->cfa_store.offset;
1876 else
1877 {
1878 gcc_assert (cur_trace->cfa_temp.reg == regno);
1879 offset -= cur_trace->cfa_temp.offset;
1880 }
1881 }
1882 break;
1883
1884 /* Rule 13 */
1885 /* Without an offset. */
1886 case REG:
1887 {
1888 unsigned int regno = dwf_regno (XEXP (dest, 0));
1889
1890 if (cur_cfa->reg == regno)
1891 offset = -cur_cfa->offset;
1892 else if (cur_trace->cfa_store.reg == regno)
1893 offset = -cur_trace->cfa_store.offset;
1894 else
1895 {
1896 gcc_assert (cur_trace->cfa_temp.reg == regno);
1897 offset = -cur_trace->cfa_temp.offset;
1898 }
1899 }
1900 break;
1901
1902 /* Rule 14 */
1903 case POST_INC:
1904 gcc_assert (cur_trace->cfa_temp.reg
1905 == dwf_regno (XEXP (XEXP (dest, 0), 0)));
1906 offset = -cur_trace->cfa_temp.offset;
1907 cur_trace->cfa_temp.offset -= GET_MODE_SIZE (GET_MODE (dest));
1908 break;
1909
1910 default:
1911 gcc_unreachable ();
1912 }
1913
1914 /* Rule 17 */
1915 /* If the source operand of this MEM operation is a memory,
1916 we only care how much stack grew. */
1917 if (MEM_P (src))
1918 break;
1919
1920 if (REG_P (src)
1921 && REGNO (src) != STACK_POINTER_REGNUM
1922 && REGNO (src) != HARD_FRAME_POINTER_REGNUM
1923 && dwf_regno (src) == cur_cfa->reg)
1924 {
1925 /* We're storing the current CFA reg into the stack. */
1926
1927 if (cur_cfa->offset == 0)
1928 {
1929 /* Rule 19 */
1930 /* If stack is aligned, putting CFA reg into stack means
1931 we can no longer use reg + offset to represent CFA.
1932 Here we use DW_CFA_def_cfa_expression instead. The
1933 result of this expression equals to the original CFA
1934 value. */
1935 if (fde
1936 && fde->stack_realign
1937 && cur_cfa->indirect == 0
1938 && cur_cfa->reg != dw_frame_pointer_regnum)
1939 {
1940 gcc_assert (fde->drap_reg == cur_cfa->reg);
1941
1942 cur_cfa->indirect = 1;
1943 cur_cfa->reg = dw_frame_pointer_regnum;
1944 cur_cfa->base_offset = offset;
1945 cur_cfa->offset = 0;
1946
1947 fde->drap_reg_saved = 1;
1948 break;
1949 }
1950
1951 /* If the source register is exactly the CFA, assume
1952 we're saving SP like any other register; this happens
1953 on the ARM. */
1954 queue_reg_save (stack_pointer_rtx, NULL_RTX, offset);
1955 break;
1956 }
1957 else
1958 {
1959 /* Otherwise, we'll need to look in the stack to
1960 calculate the CFA. */
1961 rtx x = XEXP (dest, 0);
1962
1963 if (!REG_P (x))
1964 x = XEXP (x, 0);
1965 gcc_assert (REG_P (x));
1966
1967 cur_cfa->reg = dwf_regno (x);
1968 cur_cfa->base_offset = offset;
1969 cur_cfa->indirect = 1;
1970 break;
1971 }
1972 }
1973
1974 if (REG_P (src))
1975 span = targetm.dwarf_register_span (src);
1976 else
1977 span = NULL;
1978
1979 if (!span)
1980 queue_reg_save (src, NULL_RTX, offset);
1981 else
1982 {
1983 /* We have a PARALLEL describing where the contents of SRC live.
1984 Queue register saves for each piece of the PARALLEL. */
1985 HOST_WIDE_INT span_offset = offset;
1986
1987 gcc_assert (GET_CODE (span) == PARALLEL);
1988
1989 const int par_len = XVECLEN (span, 0);
1990 for (int par_index = 0; par_index < par_len; par_index++)
1991 {
1992 rtx elem = XVECEXP (span, 0, par_index);
1993 queue_reg_save (elem, NULL_RTX, span_offset);
1994 span_offset += GET_MODE_SIZE (GET_MODE (elem));
1995 }
1996 }
1997 break;
1998
1999 default:
2000 gcc_unreachable ();
2001 }
2002 }
2003
2004 /* Record call frame debugging information for INSN, which either sets
2005 SP or FP (adjusting how we calculate the frame address) or saves a
2006 register to the stack. */
2007
2008 static void
2009 dwarf2out_frame_debug (rtx_insn *insn)
2010 {
2011 rtx note, n, pat;
2012 bool handled_one = false;
2013
2014 for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
2015 switch (REG_NOTE_KIND (note))
2016 {
2017 case REG_FRAME_RELATED_EXPR:
2018 pat = XEXP (note, 0);
2019 goto do_frame_expr;
2020
2021 case REG_CFA_DEF_CFA:
2022 dwarf2out_frame_debug_def_cfa (XEXP (note, 0));
2023 handled_one = true;
2024 break;
2025
2026 case REG_CFA_ADJUST_CFA:
2027 n = XEXP (note, 0);
2028 if (n == NULL)
2029 {
2030 n = PATTERN (insn);
2031 if (GET_CODE (n) == PARALLEL)
2032 n = XVECEXP (n, 0, 0);
2033 }
2034 dwarf2out_frame_debug_adjust_cfa (n);
2035 handled_one = true;
2036 break;
2037
2038 case REG_CFA_OFFSET:
2039 n = XEXP (note, 0);
2040 if (n == NULL)
2041 n = single_set (insn);
2042 dwarf2out_frame_debug_cfa_offset (n);
2043 handled_one = true;
2044 break;
2045
2046 case REG_CFA_REGISTER:
2047 n = XEXP (note, 0);
2048 if (n == NULL)
2049 {
2050 n = PATTERN (insn);
2051 if (GET_CODE (n) == PARALLEL)
2052 n = XVECEXP (n, 0, 0);
2053 }
2054 dwarf2out_frame_debug_cfa_register (n);
2055 handled_one = true;
2056 break;
2057
2058 case REG_CFA_EXPRESSION:
2059 n = XEXP (note, 0);
2060 if (n == NULL)
2061 n = single_set (insn);
2062 dwarf2out_frame_debug_cfa_expression (n);
2063 handled_one = true;
2064 break;
2065
2066 case REG_CFA_RESTORE:
2067 n = XEXP (note, 0);
2068 if (n == NULL)
2069 {
2070 n = PATTERN (insn);
2071 if (GET_CODE (n) == PARALLEL)
2072 n = XVECEXP (n, 0, 0);
2073 n = XEXP (n, 0);
2074 }
2075 dwarf2out_frame_debug_cfa_restore (n);
2076 handled_one = true;
2077 break;
2078
2079 case REG_CFA_SET_VDRAP:
2080 n = XEXP (note, 0);
2081 if (REG_P (n))
2082 {
2083 dw_fde_ref fde = cfun->fde;
2084 if (fde)
2085 {
2086 gcc_assert (fde->vdrap_reg == INVALID_REGNUM);
2087 if (REG_P (n))
2088 fde->vdrap_reg = dwf_regno (n);
2089 }
2090 }
2091 handled_one = true;
2092 break;
2093
2094 case REG_CFA_WINDOW_SAVE:
2095 dwarf2out_frame_debug_cfa_window_save ();
2096 handled_one = true;
2097 break;
2098
2099 case REG_CFA_FLUSH_QUEUE:
2100 /* The actual flush happens elsewhere. */
2101 handled_one = true;
2102 break;
2103
2104 default:
2105 break;
2106 }
2107
2108 if (!handled_one)
2109 {
2110 pat = PATTERN (insn);
2111 do_frame_expr:
2112 dwarf2out_frame_debug_expr (pat);
2113
2114 /* Check again. A parallel can save and update the same register.
2115 We could probably check just once, here, but this is safer than
2116 removing the check at the start of the function. */
2117 if (clobbers_queued_reg_save (pat))
2118 dwarf2out_flush_queued_reg_saves ();
2119 }
2120 }
2121
2122 /* Emit CFI info to change the state from OLD_ROW to NEW_ROW. */
2123
2124 static void
2125 change_cfi_row (dw_cfi_row *old_row, dw_cfi_row *new_row)
2126 {
2127 size_t i, n_old, n_new, n_max;
2128 dw_cfi_ref cfi;
2129
2130 if (new_row->cfa_cfi && !cfi_equal_p (old_row->cfa_cfi, new_row->cfa_cfi))
2131 add_cfi (new_row->cfa_cfi);
2132 else
2133 {
2134 cfi = def_cfa_0 (&old_row->cfa, &new_row->cfa);
2135 if (cfi)
2136 add_cfi (cfi);
2137 }
2138
2139 n_old = vec_safe_length (old_row->reg_save);
2140 n_new = vec_safe_length (new_row->reg_save);
2141 n_max = MAX (n_old, n_new);
2142
2143 for (i = 0; i < n_max; ++i)
2144 {
2145 dw_cfi_ref r_old = NULL, r_new = NULL;
2146
2147 if (i < n_old)
2148 r_old = (*old_row->reg_save)[i];
2149 if (i < n_new)
2150 r_new = (*new_row->reg_save)[i];
2151
2152 if (r_old == r_new)
2153 ;
2154 else if (r_new == NULL)
2155 add_cfi_restore (i);
2156 else if (!cfi_equal_p (r_old, r_new))
2157 add_cfi (r_new);
2158 }
2159 }
2160
2161 /* Examine CFI and return true if a cfi label and set_loc is needed
2162 beforehand. Even when generating CFI assembler instructions, we
2163 still have to add the cfi to the list so that lookup_cfa_1 works
2164 later on. When -g2 and above we even need to force emitting of
2165 CFI labels and add to list a DW_CFA_set_loc for convert_cfa_to_fb_loc_list
2166 purposes. If we're generating DWARF3 output we use DW_OP_call_frame_cfa
2167 and so don't use convert_cfa_to_fb_loc_list. */
2168
2169 static bool
2170 cfi_label_required_p (dw_cfi_ref cfi)
2171 {
2172 if (!dwarf2out_do_cfi_asm ())
2173 return true;
2174
2175 if (dwarf_version == 2
2176 && debug_info_level > DINFO_LEVEL_TERSE
2177 && (write_symbols == DWARF2_DEBUG
2178 || write_symbols == VMS_AND_DWARF2_DEBUG))
2179 {
2180 switch (cfi->dw_cfi_opc)
2181 {
2182 case DW_CFA_def_cfa_offset:
2183 case DW_CFA_def_cfa_offset_sf:
2184 case DW_CFA_def_cfa_register:
2185 case DW_CFA_def_cfa:
2186 case DW_CFA_def_cfa_sf:
2187 case DW_CFA_def_cfa_expression:
2188 case DW_CFA_restore_state:
2189 return true;
2190 default:
2191 return false;
2192 }
2193 }
2194 return false;
2195 }
2196
2197 /* Walk the function, looking for NOTE_INSN_CFI notes. Add the CFIs to the
2198 function's FDE, adding CFI labels and set_loc/advance_loc opcodes as
2199 necessary. */
2200 static void
2201 add_cfis_to_fde (void)
2202 {
2203 dw_fde_ref fde = cfun->fde;
2204 rtx_insn *insn, *next;
2205 /* We always start with a function_begin label. */
2206 bool first = false;
2207
2208 for (insn = get_insns (); insn; insn = next)
2209 {
2210 next = NEXT_INSN (insn);
2211
2212 if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_SWITCH_TEXT_SECTIONS)
2213 {
2214 fde->dw_fde_switch_cfi_index = vec_safe_length (fde->dw_fde_cfi);
2215 /* Don't attempt to advance_loc4 between labels
2216 in different sections. */
2217 first = true;
2218 }
2219
2220 if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_CFI)
2221 {
2222 bool required = cfi_label_required_p (NOTE_CFI (insn));
2223 while (next)
2224 if (NOTE_P (next) && NOTE_KIND (next) == NOTE_INSN_CFI)
2225 {
2226 required |= cfi_label_required_p (NOTE_CFI (next));
2227 next = NEXT_INSN (next);
2228 }
2229 else if (active_insn_p (next)
2230 || (NOTE_P (next) && (NOTE_KIND (next)
2231 == NOTE_INSN_SWITCH_TEXT_SECTIONS)))
2232 break;
2233 else
2234 next = NEXT_INSN (next);
2235 if (required)
2236 {
2237 int num = dwarf2out_cfi_label_num;
2238 const char *label = dwarf2out_cfi_label ();
2239 dw_cfi_ref xcfi;
2240 rtx tmp;
2241
2242 /* Set the location counter to the new label. */
2243 xcfi = new_cfi ();
2244 xcfi->dw_cfi_opc = (first ? DW_CFA_set_loc
2245 : DW_CFA_advance_loc4);
2246 xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
2247 vec_safe_push (fde->dw_fde_cfi, xcfi);
2248
2249 tmp = emit_note_before (NOTE_INSN_CFI_LABEL, insn);
2250 NOTE_LABEL_NUMBER (tmp) = num;
2251 }
2252
2253 do
2254 {
2255 if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_CFI)
2256 vec_safe_push (fde->dw_fde_cfi, NOTE_CFI (insn));
2257 insn = NEXT_INSN (insn);
2258 }
2259 while (insn != next);
2260 first = false;
2261 }
2262 }
2263 }
2264
2265 /* If LABEL is the start of a trace, then initialize the state of that
2266 trace from CUR_TRACE and CUR_ROW. */
2267
2268 static void
2269 maybe_record_trace_start (rtx_insn *start, rtx_insn *origin)
2270 {
2271 dw_trace_info *ti;
2272 HOST_WIDE_INT args_size;
2273
2274 ti = get_trace_info (start);
2275 gcc_assert (ti != NULL);
2276
2277 if (dump_file)
2278 {
2279 fprintf (dump_file, " saw edge from trace %u to %u (via %s %d)\n",
2280 cur_trace->id, ti->id,
2281 (origin ? rtx_name[(int) GET_CODE (origin)] : "fallthru"),
2282 (origin ? INSN_UID (origin) : 0));
2283 }
2284
2285 args_size = cur_trace->end_true_args_size;
2286 if (ti->beg_row == NULL)
2287 {
2288 /* This is the first time we've encountered this trace. Propagate
2289 state across the edge and push the trace onto the work list. */
2290 ti->beg_row = copy_cfi_row (cur_row);
2291 ti->beg_true_args_size = args_size;
2292
2293 ti->cfa_store = cur_trace->cfa_store;
2294 ti->cfa_temp = cur_trace->cfa_temp;
2295 ti->regs_saved_in_regs = cur_trace->regs_saved_in_regs.copy ();
2296
2297 trace_work_list.safe_push (ti);
2298
2299 if (dump_file)
2300 fprintf (dump_file, "\tpush trace %u to worklist\n", ti->id);
2301 }
2302 else
2303 {
2304
2305 /* We ought to have the same state incoming to a given trace no
2306 matter how we arrive at the trace. Anything else means we've
2307 got some kind of optimization error. */
2308 gcc_checking_assert (cfi_row_equal_p (cur_row, ti->beg_row));
2309
2310 /* The args_size is allowed to conflict if it isn't actually used. */
2311 if (ti->beg_true_args_size != args_size)
2312 ti->args_size_undefined = true;
2313 }
2314 }
2315
2316 /* Similarly, but handle the args_size and CFA reset across EH
2317 and non-local goto edges. */
2318
2319 static void
2320 maybe_record_trace_start_abnormal (rtx_insn *start, rtx_insn *origin)
2321 {
2322 HOST_WIDE_INT save_args_size, delta;
2323 dw_cfa_location save_cfa;
2324
2325 save_args_size = cur_trace->end_true_args_size;
2326 if (save_args_size == 0)
2327 {
2328 maybe_record_trace_start (start, origin);
2329 return;
2330 }
2331
2332 delta = -save_args_size;
2333 cur_trace->end_true_args_size = 0;
2334
2335 save_cfa = cur_row->cfa;
2336 if (cur_row->cfa.reg == dw_stack_pointer_regnum)
2337 {
2338 /* Convert a change in args_size (always a positive in the
2339 direction of stack growth) to a change in stack pointer. */
2340 #ifndef STACK_GROWS_DOWNWARD
2341 delta = -delta;
2342 #endif
2343 cur_row->cfa.offset += delta;
2344 }
2345
2346 maybe_record_trace_start (start, origin);
2347
2348 cur_trace->end_true_args_size = save_args_size;
2349 cur_row->cfa = save_cfa;
2350 }
2351
2352 /* Propagate CUR_TRACE state to the destinations implied by INSN. */
2353 /* ??? Sadly, this is in large part a duplicate of make_edges. */
2354
2355 static void
2356 create_trace_edges (rtx_insn *insn)
2357 {
2358 rtx tmp;
2359 int i, n;
2360
2361 if (JUMP_P (insn))
2362 {
2363 rtx_jump_table_data *table;
2364
2365 if (find_reg_note (insn, REG_NON_LOCAL_GOTO, NULL_RTX))
2366 return;
2367
2368 if (tablejump_p (insn, NULL, &table))
2369 {
2370 rtvec vec = table->get_labels ();
2371
2372 n = GET_NUM_ELEM (vec);
2373 for (i = 0; i < n; ++i)
2374 {
2375 rtx_insn *lab = as_a <rtx_insn *> (XEXP (RTVEC_ELT (vec, i), 0));
2376 maybe_record_trace_start (lab, insn);
2377 }
2378 }
2379 else if (computed_jump_p (insn))
2380 {
2381 for (rtx_insn_list *lab = forced_labels; lab; lab = lab->next ())
2382 maybe_record_trace_start (lab->insn (), insn);
2383 }
2384 else if (returnjump_p (insn))
2385 ;
2386 else if ((tmp = extract_asm_operands (PATTERN (insn))) != NULL)
2387 {
2388 n = ASM_OPERANDS_LABEL_LENGTH (tmp);
2389 for (i = 0; i < n; ++i)
2390 {
2391 rtx_insn *lab =
2392 as_a <rtx_insn *> (XEXP (ASM_OPERANDS_LABEL (tmp, i), 0));
2393 maybe_record_trace_start (lab, insn);
2394 }
2395 }
2396 else
2397 {
2398 rtx_insn *lab = JUMP_LABEL_AS_INSN (insn);
2399 gcc_assert (lab != NULL);
2400 maybe_record_trace_start (lab, insn);
2401 }
2402 }
2403 else if (CALL_P (insn))
2404 {
2405 /* Sibling calls don't have edges inside this function. */
2406 if (SIBLING_CALL_P (insn))
2407 return;
2408
2409 /* Process non-local goto edges. */
2410 if (can_nonlocal_goto (insn))
2411 for (rtx_insn_list *lab = nonlocal_goto_handler_labels;
2412 lab;
2413 lab = lab->next ())
2414 maybe_record_trace_start_abnormal (lab->insn (), insn);
2415 }
2416 else if (rtx_sequence *seq = dyn_cast <rtx_sequence *> (PATTERN (insn)))
2417 {
2418 int i, n = seq->len ();
2419 for (i = 0; i < n; ++i)
2420 create_trace_edges (seq->insn (i));
2421 return;
2422 }
2423
2424 /* Process EH edges. */
2425 if (CALL_P (insn) || cfun->can_throw_non_call_exceptions)
2426 {
2427 eh_landing_pad lp = get_eh_landing_pad_from_rtx (insn);
2428 if (lp)
2429 maybe_record_trace_start_abnormal (lp->landing_pad, insn);
2430 }
2431 }
2432
2433 /* A subroutine of scan_trace. Do what needs to be done "after" INSN. */
2434
2435 static void
2436 scan_insn_after (rtx_insn *insn)
2437 {
2438 if (RTX_FRAME_RELATED_P (insn))
2439 dwarf2out_frame_debug (insn);
2440 notice_args_size (insn);
2441 }
2442
2443 /* Scan the trace beginning at INSN and create the CFI notes for the
2444 instructions therein. */
2445
2446 static void
2447 scan_trace (dw_trace_info *trace)
2448 {
2449 rtx_insn *prev, *insn = trace->head;
2450 dw_cfa_location this_cfa;
2451
2452 if (dump_file)
2453 fprintf (dump_file, "Processing trace %u : start at %s %d\n",
2454 trace->id, rtx_name[(int) GET_CODE (insn)],
2455 INSN_UID (insn));
2456
2457 trace->end_row = copy_cfi_row (trace->beg_row);
2458 trace->end_true_args_size = trace->beg_true_args_size;
2459
2460 cur_trace = trace;
2461 cur_row = trace->end_row;
2462
2463 this_cfa = cur_row->cfa;
2464 cur_cfa = &this_cfa;
2465
2466 for (prev = insn, insn = NEXT_INSN (insn);
2467 insn;
2468 prev = insn, insn = NEXT_INSN (insn))
2469 {
2470 rtx_insn *control;
2471
2472 /* Do everything that happens "before" the insn. */
2473 add_cfi_insn = prev;
2474
2475 /* Notice the end of a trace. */
2476 if (BARRIER_P (insn))
2477 {
2478 /* Don't bother saving the unneeded queued registers at all. */
2479 queued_reg_saves.truncate (0);
2480 break;
2481 }
2482 if (save_point_p (insn))
2483 {
2484 /* Propagate across fallthru edges. */
2485 dwarf2out_flush_queued_reg_saves ();
2486 maybe_record_trace_start (insn, NULL);
2487 break;
2488 }
2489
2490 if (DEBUG_INSN_P (insn) || !inside_basic_block_p (insn))
2491 continue;
2492
2493 /* Handle all changes to the row state. Sequences require special
2494 handling for the positioning of the notes. */
2495 if (rtx_sequence *pat = dyn_cast <rtx_sequence *> (PATTERN (insn)))
2496 {
2497 rtx_insn *elt;
2498 int i, n = pat->len ();
2499
2500 control = pat->insn (0);
2501 if (can_throw_internal (control))
2502 notice_eh_throw (control);
2503 dwarf2out_flush_queued_reg_saves ();
2504
2505 if (JUMP_P (control) && INSN_ANNULLED_BRANCH_P (control))
2506 {
2507 /* ??? Hopefully multiple delay slots are not annulled. */
2508 gcc_assert (n == 2);
2509 gcc_assert (!RTX_FRAME_RELATED_P (control));
2510 gcc_assert (!find_reg_note (control, REG_ARGS_SIZE, NULL));
2511
2512 elt = pat->insn (1);
2513
2514 if (INSN_FROM_TARGET_P (elt))
2515 {
2516 HOST_WIDE_INT restore_args_size;
2517 cfi_vec save_row_reg_save;
2518
2519 /* If ELT is an instruction from target of an annulled
2520 branch, the effects are for the target only and so
2521 the args_size and CFA along the current path
2522 shouldn't change. */
2523 add_cfi_insn = NULL;
2524 restore_args_size = cur_trace->end_true_args_size;
2525 cur_cfa = &cur_row->cfa;
2526 save_row_reg_save = vec_safe_copy (cur_row->reg_save);
2527
2528 scan_insn_after (elt);
2529
2530 /* ??? Should we instead save the entire row state? */
2531 gcc_assert (!queued_reg_saves.length ());
2532
2533 create_trace_edges (control);
2534
2535 cur_trace->end_true_args_size = restore_args_size;
2536 cur_row->cfa = this_cfa;
2537 cur_row->reg_save = save_row_reg_save;
2538 cur_cfa = &this_cfa;
2539 }
2540 else
2541 {
2542 /* If ELT is a annulled branch-taken instruction (i.e.
2543 executed only when branch is not taken), the args_size
2544 and CFA should not change through the jump. */
2545 create_trace_edges (control);
2546
2547 /* Update and continue with the trace. */
2548 add_cfi_insn = insn;
2549 scan_insn_after (elt);
2550 def_cfa_1 (&this_cfa);
2551 }
2552 continue;
2553 }
2554
2555 /* The insns in the delay slot should all be considered to happen
2556 "before" a call insn. Consider a call with a stack pointer
2557 adjustment in the delay slot. The backtrace from the callee
2558 should include the sp adjustment. Unfortunately, that leaves
2559 us with an unavoidable unwinding error exactly at the call insn
2560 itself. For jump insns we'd prefer to avoid this error by
2561 placing the notes after the sequence. */
2562 if (JUMP_P (control))
2563 add_cfi_insn = insn;
2564
2565 for (i = 1; i < n; ++i)
2566 {
2567 elt = pat->insn (i);
2568 scan_insn_after (elt);
2569 }
2570
2571 /* Make sure any register saves are visible at the jump target. */
2572 dwarf2out_flush_queued_reg_saves ();
2573 any_cfis_emitted = false;
2574
2575 /* However, if there is some adjustment on the call itself, e.g.
2576 a call_pop, that action should be considered to happen after
2577 the call returns. */
2578 add_cfi_insn = insn;
2579 scan_insn_after (control);
2580 }
2581 else
2582 {
2583 /* Flush data before calls and jumps, and of course if necessary. */
2584 if (can_throw_internal (insn))
2585 {
2586 notice_eh_throw (insn);
2587 dwarf2out_flush_queued_reg_saves ();
2588 }
2589 else if (!NONJUMP_INSN_P (insn)
2590 || clobbers_queued_reg_save (insn)
2591 || find_reg_note (insn, REG_CFA_FLUSH_QUEUE, NULL))
2592 dwarf2out_flush_queued_reg_saves ();
2593 any_cfis_emitted = false;
2594
2595 add_cfi_insn = insn;
2596 scan_insn_after (insn);
2597 control = insn;
2598 }
2599
2600 /* Between frame-related-p and args_size we might have otherwise
2601 emitted two cfa adjustments. Do it now. */
2602 def_cfa_1 (&this_cfa);
2603
2604 /* Minimize the number of advances by emitting the entire queue
2605 once anything is emitted. */
2606 if (any_cfis_emitted
2607 || find_reg_note (insn, REG_CFA_FLUSH_QUEUE, NULL))
2608 dwarf2out_flush_queued_reg_saves ();
2609
2610 /* Note that a test for control_flow_insn_p does exactly the
2611 same tests as are done to actually create the edges. So
2612 always call the routine and let it not create edges for
2613 non-control-flow insns. */
2614 create_trace_edges (control);
2615 }
2616
2617 add_cfi_insn = NULL;
2618 cur_row = NULL;
2619 cur_trace = NULL;
2620 cur_cfa = NULL;
2621 }
2622
2623 /* Scan the function and create the initial set of CFI notes. */
2624
2625 static void
2626 create_cfi_notes (void)
2627 {
2628 dw_trace_info *ti;
2629
2630 gcc_checking_assert (!queued_reg_saves.exists ());
2631 gcc_checking_assert (!trace_work_list.exists ());
2632
2633 /* Always begin at the entry trace. */
2634 ti = &trace_info[0];
2635 scan_trace (ti);
2636
2637 while (!trace_work_list.is_empty ())
2638 {
2639 ti = trace_work_list.pop ();
2640 scan_trace (ti);
2641 }
2642
2643 queued_reg_saves.release ();
2644 trace_work_list.release ();
2645 }
2646
2647 /* Return the insn before the first NOTE_INSN_CFI after START. */
2648
2649 static rtx_insn *
2650 before_next_cfi_note (rtx_insn *start)
2651 {
2652 rtx_insn *prev = start;
2653 while (start)
2654 {
2655 if (NOTE_P (start) && NOTE_KIND (start) == NOTE_INSN_CFI)
2656 return prev;
2657 prev = start;
2658 start = NEXT_INSN (start);
2659 }
2660 gcc_unreachable ();
2661 }
2662
2663 /* Insert CFI notes between traces to properly change state between them. */
2664
2665 static void
2666 connect_traces (void)
2667 {
2668 unsigned i, n = trace_info.length ();
2669 dw_trace_info *prev_ti, *ti;
2670
2671 /* ??? Ideally, we should have both queued and processed every trace.
2672 However the current representation of constant pools on various targets
2673 is indistinguishable from unreachable code. Assume for the moment that
2674 we can simply skip over such traces. */
2675 /* ??? Consider creating a DATA_INSN rtx code to indicate that
2676 these are not "real" instructions, and should not be considered.
2677 This could be generically useful for tablejump data as well. */
2678 /* Remove all unprocessed traces from the list. */
2679 for (i = n - 1; i > 0; --i)
2680 {
2681 ti = &trace_info[i];
2682 if (ti->beg_row == NULL)
2683 {
2684 trace_info.ordered_remove (i);
2685 n -= 1;
2686 }
2687 else
2688 gcc_assert (ti->end_row != NULL);
2689 }
2690
2691 /* Work from the end back to the beginning. This lets us easily insert
2692 remember/restore_state notes in the correct order wrt other notes. */
2693 prev_ti = &trace_info[n - 1];
2694 for (i = n - 1; i > 0; --i)
2695 {
2696 dw_cfi_row *old_row;
2697
2698 ti = prev_ti;
2699 prev_ti = &trace_info[i - 1];
2700
2701 add_cfi_insn = ti->head;
2702
2703 /* In dwarf2out_switch_text_section, we'll begin a new FDE
2704 for the portion of the function in the alternate text
2705 section. The row state at the very beginning of that
2706 new FDE will be exactly the row state from the CIE. */
2707 if (ti->switch_sections)
2708 old_row = cie_cfi_row;
2709 else
2710 {
2711 old_row = prev_ti->end_row;
2712 /* If there's no change from the previous end state, fine. */
2713 if (cfi_row_equal_p (old_row, ti->beg_row))
2714 ;
2715 /* Otherwise check for the common case of sharing state with
2716 the beginning of an epilogue, but not the end. Insert
2717 remember/restore opcodes in that case. */
2718 else if (cfi_row_equal_p (prev_ti->beg_row, ti->beg_row))
2719 {
2720 dw_cfi_ref cfi;
2721
2722 /* Note that if we blindly insert the remember at the
2723 start of the trace, we can wind up increasing the
2724 size of the unwind info due to extra advance opcodes.
2725 Instead, put the remember immediately before the next
2726 state change. We know there must be one, because the
2727 state at the beginning and head of the trace differ. */
2728 add_cfi_insn = before_next_cfi_note (prev_ti->head);
2729 cfi = new_cfi ();
2730 cfi->dw_cfi_opc = DW_CFA_remember_state;
2731 add_cfi (cfi);
2732
2733 add_cfi_insn = ti->head;
2734 cfi = new_cfi ();
2735 cfi->dw_cfi_opc = DW_CFA_restore_state;
2736 add_cfi (cfi);
2737
2738 old_row = prev_ti->beg_row;
2739 }
2740 /* Otherwise, we'll simply change state from the previous end. */
2741 }
2742
2743 change_cfi_row (old_row, ti->beg_row);
2744
2745 if (dump_file && add_cfi_insn != ti->head)
2746 {
2747 rtx_insn *note;
2748
2749 fprintf (dump_file, "Fixup between trace %u and %u:\n",
2750 prev_ti->id, ti->id);
2751
2752 note = ti->head;
2753 do
2754 {
2755 note = NEXT_INSN (note);
2756 gcc_assert (NOTE_P (note) && NOTE_KIND (note) == NOTE_INSN_CFI);
2757 output_cfi_directive (dump_file, NOTE_CFI (note));
2758 }
2759 while (note != add_cfi_insn);
2760 }
2761 }
2762
2763 /* Connect args_size between traces that have can_throw_internal insns. */
2764 if (cfun->eh->lp_array)
2765 {
2766 HOST_WIDE_INT prev_args_size = 0;
2767
2768 for (i = 0; i < n; ++i)
2769 {
2770 ti = &trace_info[i];
2771
2772 if (ti->switch_sections)
2773 prev_args_size = 0;
2774 if (ti->eh_head == NULL)
2775 continue;
2776 gcc_assert (!ti->args_size_undefined);
2777
2778 if (ti->beg_delay_args_size != prev_args_size)
2779 {
2780 /* ??? Search back to previous CFI note. */
2781 add_cfi_insn = PREV_INSN (ti->eh_head);
2782 add_cfi_args_size (ti->beg_delay_args_size);
2783 }
2784
2785 prev_args_size = ti->end_delay_args_size;
2786 }
2787 }
2788 }
2789
2790 /* Set up the pseudo-cfg of instruction traces, as described at the
2791 block comment at the top of the file. */
2792
2793 static void
2794 create_pseudo_cfg (void)
2795 {
2796 bool saw_barrier, switch_sections;
2797 dw_trace_info ti;
2798 rtx_insn *insn;
2799 unsigned i;
2800
2801 /* The first trace begins at the start of the function,
2802 and begins with the CIE row state. */
2803 trace_info.create (16);
2804 memset (&ti, 0, sizeof (ti));
2805 ti.head = get_insns ();
2806 ti.beg_row = cie_cfi_row;
2807 ti.cfa_store = cie_cfi_row->cfa;
2808 ti.cfa_temp.reg = INVALID_REGNUM;
2809 trace_info.quick_push (ti);
2810
2811 if (cie_return_save)
2812 ti.regs_saved_in_regs.safe_push (*cie_return_save);
2813
2814 /* Walk all the insns, collecting start of trace locations. */
2815 saw_barrier = false;
2816 switch_sections = false;
2817 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2818 {
2819 if (BARRIER_P (insn))
2820 saw_barrier = true;
2821 else if (NOTE_P (insn)
2822 && NOTE_KIND (insn) == NOTE_INSN_SWITCH_TEXT_SECTIONS)
2823 {
2824 /* We should have just seen a barrier. */
2825 gcc_assert (saw_barrier);
2826 switch_sections = true;
2827 }
2828 /* Watch out for save_point notes between basic blocks.
2829 In particular, a note after a barrier. Do not record these,
2830 delaying trace creation until the label. */
2831 else if (save_point_p (insn)
2832 && (LABEL_P (insn) || !saw_barrier))
2833 {
2834 memset (&ti, 0, sizeof (ti));
2835 ti.head = insn;
2836 ti.switch_sections = switch_sections;
2837 ti.id = trace_info.length ();
2838 trace_info.safe_push (ti);
2839
2840 saw_barrier = false;
2841 switch_sections = false;
2842 }
2843 }
2844
2845 /* Create the trace index after we've finished building trace_info,
2846 avoiding stale pointer problems due to reallocation. */
2847 trace_index
2848 = new hash_table<trace_info_hasher> (trace_info.length ());
2849 dw_trace_info *tp;
2850 FOR_EACH_VEC_ELT (trace_info, i, tp)
2851 {
2852 dw_trace_info **slot;
2853
2854 if (dump_file)
2855 fprintf (dump_file, "Creating trace %u : start at %s %d%s\n", tp->id,
2856 rtx_name[(int) GET_CODE (tp->head)], INSN_UID (tp->head),
2857 tp->switch_sections ? " (section switch)" : "");
2858
2859 slot = trace_index->find_slot_with_hash (tp, INSN_UID (tp->head), INSERT);
2860 gcc_assert (*slot == NULL);
2861 *slot = tp;
2862 }
2863 }
2864
2865 /* Record the initial position of the return address. RTL is
2866 INCOMING_RETURN_ADDR_RTX. */
2867
2868 static void
2869 initial_return_save (rtx rtl)
2870 {
2871 unsigned int reg = INVALID_REGNUM;
2872 HOST_WIDE_INT offset = 0;
2873
2874 switch (GET_CODE (rtl))
2875 {
2876 case REG:
2877 /* RA is in a register. */
2878 reg = dwf_regno (rtl);
2879 break;
2880
2881 case MEM:
2882 /* RA is on the stack. */
2883 rtl = XEXP (rtl, 0);
2884 switch (GET_CODE (rtl))
2885 {
2886 case REG:
2887 gcc_assert (REGNO (rtl) == STACK_POINTER_REGNUM);
2888 offset = 0;
2889 break;
2890
2891 case PLUS:
2892 gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
2893 offset = INTVAL (XEXP (rtl, 1));
2894 break;
2895
2896 case MINUS:
2897 gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
2898 offset = -INTVAL (XEXP (rtl, 1));
2899 break;
2900
2901 default:
2902 gcc_unreachable ();
2903 }
2904
2905 break;
2906
2907 case PLUS:
2908 /* The return address is at some offset from any value we can
2909 actually load. For instance, on the SPARC it is in %i7+8. Just
2910 ignore the offset for now; it doesn't matter for unwinding frames. */
2911 gcc_assert (CONST_INT_P (XEXP (rtl, 1)));
2912 initial_return_save (XEXP (rtl, 0));
2913 return;
2914
2915 default:
2916 gcc_unreachable ();
2917 }
2918
2919 if (reg != DWARF_FRAME_RETURN_COLUMN)
2920 {
2921 if (reg != INVALID_REGNUM)
2922 record_reg_saved_in_reg (rtl, pc_rtx);
2923 reg_save (DWARF_FRAME_RETURN_COLUMN, reg, offset - cur_row->cfa.offset);
2924 }
2925 }
2926
2927 static void
2928 create_cie_data (void)
2929 {
2930 dw_cfa_location loc;
2931 dw_trace_info cie_trace;
2932
2933 dw_stack_pointer_regnum = DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM);
2934 dw_frame_pointer_regnum = DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM);
2935
2936 memset (&cie_trace, 0, sizeof (cie_trace));
2937 cur_trace = &cie_trace;
2938
2939 add_cfi_vec = &cie_cfi_vec;
2940 cie_cfi_row = cur_row = new_cfi_row ();
2941
2942 /* On entry, the Canonical Frame Address is at SP. */
2943 memset (&loc, 0, sizeof (loc));
2944 loc.reg = dw_stack_pointer_regnum;
2945 loc.offset = INCOMING_FRAME_SP_OFFSET;
2946 def_cfa_1 (&loc);
2947
2948 if (targetm.debug_unwind_info () == UI_DWARF2
2949 || targetm_common.except_unwind_info (&global_options) == UI_DWARF2)
2950 {
2951 initial_return_save (INCOMING_RETURN_ADDR_RTX);
2952
2953 /* For a few targets, we have the return address incoming into a
2954 register, but choose a different return column. This will result
2955 in a DW_CFA_register for the return, and an entry in
2956 regs_saved_in_regs to match. If the target later stores that
2957 return address register to the stack, we want to be able to emit
2958 the DW_CFA_offset against the return column, not the intermediate
2959 save register. Save the contents of regs_saved_in_regs so that
2960 we can re-initialize it at the start of each function. */
2961 switch (cie_trace.regs_saved_in_regs.length ())
2962 {
2963 case 0:
2964 break;
2965 case 1:
2966 cie_return_save = ggc_alloc<reg_saved_in_data> ();
2967 *cie_return_save = cie_trace.regs_saved_in_regs[0];
2968 cie_trace.regs_saved_in_regs.release ();
2969 break;
2970 default:
2971 gcc_unreachable ();
2972 }
2973 }
2974
2975 add_cfi_vec = NULL;
2976 cur_row = NULL;
2977 cur_trace = NULL;
2978 }
2979
2980 /* Annotate the function with NOTE_INSN_CFI notes to record the CFI
2981 state at each location within the function. These notes will be
2982 emitted during pass_final. */
2983
2984 static unsigned int
2985 execute_dwarf2_frame (void)
2986 {
2987 /* The first time we're called, compute the incoming frame state. */
2988 if (cie_cfi_vec == NULL)
2989 create_cie_data ();
2990
2991 dwarf2out_alloc_current_fde ();
2992
2993 create_pseudo_cfg ();
2994
2995 /* Do the work. */
2996 create_cfi_notes ();
2997 connect_traces ();
2998 add_cfis_to_fde ();
2999
3000 /* Free all the data we allocated. */
3001 {
3002 size_t i;
3003 dw_trace_info *ti;
3004
3005 FOR_EACH_VEC_ELT (trace_info, i, ti)
3006 ti->regs_saved_in_regs.release ();
3007 }
3008 trace_info.release ();
3009
3010 delete trace_index;
3011 trace_index = NULL;
3012
3013 return 0;
3014 }
3015 \f
3016 /* Convert a DWARF call frame info. operation to its string name */
3017
3018 static const char *
3019 dwarf_cfi_name (unsigned int cfi_opc)
3020 {
3021 const char *name = get_DW_CFA_name (cfi_opc);
3022
3023 if (name != NULL)
3024 return name;
3025
3026 return "DW_CFA_<unknown>";
3027 }
3028
3029 /* This routine will generate the correct assembly data for a location
3030 description based on a cfi entry with a complex address. */
3031
3032 static void
3033 output_cfa_loc (dw_cfi_ref cfi, int for_eh)
3034 {
3035 dw_loc_descr_ref loc;
3036 unsigned long size;
3037
3038 if (cfi->dw_cfi_opc == DW_CFA_expression)
3039 {
3040 unsigned r =
3041 DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3042 dw2_asm_output_data (1, r, NULL);
3043 loc = cfi->dw_cfi_oprnd2.dw_cfi_loc;
3044 }
3045 else
3046 loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
3047
3048 /* Output the size of the block. */
3049 size = size_of_locs (loc);
3050 dw2_asm_output_data_uleb128 (size, NULL);
3051
3052 /* Now output the operations themselves. */
3053 output_loc_sequence (loc, for_eh);
3054 }
3055
3056 /* Similar, but used for .cfi_escape. */
3057
3058 static void
3059 output_cfa_loc_raw (dw_cfi_ref cfi)
3060 {
3061 dw_loc_descr_ref loc;
3062 unsigned long size;
3063
3064 if (cfi->dw_cfi_opc == DW_CFA_expression)
3065 {
3066 unsigned r =
3067 DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3068 fprintf (asm_out_file, "%#x,", r);
3069 loc = cfi->dw_cfi_oprnd2.dw_cfi_loc;
3070 }
3071 else
3072 loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
3073
3074 /* Output the size of the block. */
3075 size = size_of_locs (loc);
3076 dw2_asm_output_data_uleb128_raw (size);
3077 fputc (',', asm_out_file);
3078
3079 /* Now output the operations themselves. */
3080 output_loc_sequence_raw (loc);
3081 }
3082
3083 /* Output a Call Frame Information opcode and its operand(s). */
3084
3085 void
3086 output_cfi (dw_cfi_ref cfi, dw_fde_ref fde, int for_eh)
3087 {
3088 unsigned long r;
3089 HOST_WIDE_INT off;
3090
3091 if (cfi->dw_cfi_opc == DW_CFA_advance_loc)
3092 dw2_asm_output_data (1, (cfi->dw_cfi_opc
3093 | (cfi->dw_cfi_oprnd1.dw_cfi_offset & 0x3f)),
3094 "DW_CFA_advance_loc " HOST_WIDE_INT_PRINT_HEX,
3095 ((unsigned HOST_WIDE_INT)
3096 cfi->dw_cfi_oprnd1.dw_cfi_offset));
3097 else if (cfi->dw_cfi_opc == DW_CFA_offset)
3098 {
3099 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3100 dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
3101 "DW_CFA_offset, column %#lx", r);
3102 off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3103 dw2_asm_output_data_uleb128 (off, NULL);
3104 }
3105 else if (cfi->dw_cfi_opc == DW_CFA_restore)
3106 {
3107 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3108 dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
3109 "DW_CFA_restore, column %#lx", r);
3110 }
3111 else
3112 {
3113 dw2_asm_output_data (1, cfi->dw_cfi_opc,
3114 "%s", dwarf_cfi_name (cfi->dw_cfi_opc));
3115
3116 switch (cfi->dw_cfi_opc)
3117 {
3118 case DW_CFA_set_loc:
3119 if (for_eh)
3120 dw2_asm_output_encoded_addr_rtx (
3121 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
3122 gen_rtx_SYMBOL_REF (Pmode, cfi->dw_cfi_oprnd1.dw_cfi_addr),
3123 false, NULL);
3124 else
3125 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
3126 cfi->dw_cfi_oprnd1.dw_cfi_addr, NULL);
3127 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3128 break;
3129
3130 case DW_CFA_advance_loc1:
3131 dw2_asm_output_delta (1, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3132 fde->dw_fde_current_label, NULL);
3133 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3134 break;
3135
3136 case DW_CFA_advance_loc2:
3137 dw2_asm_output_delta (2, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3138 fde->dw_fde_current_label, NULL);
3139 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3140 break;
3141
3142 case DW_CFA_advance_loc4:
3143 dw2_asm_output_delta (4, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3144 fde->dw_fde_current_label, NULL);
3145 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3146 break;
3147
3148 case DW_CFA_MIPS_advance_loc8:
3149 dw2_asm_output_delta (8, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3150 fde->dw_fde_current_label, NULL);
3151 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3152 break;
3153
3154 case DW_CFA_offset_extended:
3155 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3156 dw2_asm_output_data_uleb128 (r, NULL);
3157 off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3158 dw2_asm_output_data_uleb128 (off, NULL);
3159 break;
3160
3161 case DW_CFA_def_cfa:
3162 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3163 dw2_asm_output_data_uleb128 (r, NULL);
3164 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
3165 break;
3166
3167 case DW_CFA_offset_extended_sf:
3168 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3169 dw2_asm_output_data_uleb128 (r, NULL);
3170 off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3171 dw2_asm_output_data_sleb128 (off, NULL);
3172 break;
3173
3174 case DW_CFA_def_cfa_sf:
3175 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3176 dw2_asm_output_data_uleb128 (r, NULL);
3177 off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3178 dw2_asm_output_data_sleb128 (off, NULL);
3179 break;
3180
3181 case DW_CFA_restore_extended:
3182 case DW_CFA_undefined:
3183 case DW_CFA_same_value:
3184 case DW_CFA_def_cfa_register:
3185 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3186 dw2_asm_output_data_uleb128 (r, NULL);
3187 break;
3188
3189 case DW_CFA_register:
3190 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3191 dw2_asm_output_data_uleb128 (r, NULL);
3192 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, for_eh);
3193 dw2_asm_output_data_uleb128 (r, NULL);
3194 break;
3195
3196 case DW_CFA_def_cfa_offset:
3197 case DW_CFA_GNU_args_size:
3198 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
3199 break;
3200
3201 case DW_CFA_def_cfa_offset_sf:
3202 off = div_data_align (cfi->dw_cfi_oprnd1.dw_cfi_offset);
3203 dw2_asm_output_data_sleb128 (off, NULL);
3204 break;
3205
3206 case DW_CFA_GNU_window_save:
3207 break;
3208
3209 case DW_CFA_def_cfa_expression:
3210 case DW_CFA_expression:
3211 output_cfa_loc (cfi, for_eh);
3212 break;
3213
3214 case DW_CFA_GNU_negative_offset_extended:
3215 /* Obsoleted by DW_CFA_offset_extended_sf. */
3216 gcc_unreachable ();
3217
3218 default:
3219 break;
3220 }
3221 }
3222 }
3223
3224 /* Similar, but do it via assembler directives instead. */
3225
3226 void
3227 output_cfi_directive (FILE *f, dw_cfi_ref cfi)
3228 {
3229 unsigned long r, r2;
3230
3231 switch (cfi->dw_cfi_opc)
3232 {
3233 case DW_CFA_advance_loc:
3234 case DW_CFA_advance_loc1:
3235 case DW_CFA_advance_loc2:
3236 case DW_CFA_advance_loc4:
3237 case DW_CFA_MIPS_advance_loc8:
3238 case DW_CFA_set_loc:
3239 /* Should only be created in a code path not followed when emitting
3240 via directives. The assembler is going to take care of this for
3241 us. But this routines is also used for debugging dumps, so
3242 print something. */
3243 gcc_assert (f != asm_out_file);
3244 fprintf (f, "\t.cfi_advance_loc\n");
3245 break;
3246
3247 case DW_CFA_offset:
3248 case DW_CFA_offset_extended:
3249 case DW_CFA_offset_extended_sf:
3250 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3251 fprintf (f, "\t.cfi_offset %lu, "HOST_WIDE_INT_PRINT_DEC"\n",
3252 r, cfi->dw_cfi_oprnd2.dw_cfi_offset);
3253 break;
3254
3255 case DW_CFA_restore:
3256 case DW_CFA_restore_extended:
3257 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3258 fprintf (f, "\t.cfi_restore %lu\n", r);
3259 break;
3260
3261 case DW_CFA_undefined:
3262 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3263 fprintf (f, "\t.cfi_undefined %lu\n", r);
3264 break;
3265
3266 case DW_CFA_same_value:
3267 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3268 fprintf (f, "\t.cfi_same_value %lu\n", r);
3269 break;
3270
3271 case DW_CFA_def_cfa:
3272 case DW_CFA_def_cfa_sf:
3273 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3274 fprintf (f, "\t.cfi_def_cfa %lu, "HOST_WIDE_INT_PRINT_DEC"\n",
3275 r, cfi->dw_cfi_oprnd2.dw_cfi_offset);
3276 break;
3277
3278 case DW_CFA_def_cfa_register:
3279 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3280 fprintf (f, "\t.cfi_def_cfa_register %lu\n", r);
3281 break;
3282
3283 case DW_CFA_register:
3284 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3285 r2 = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, 1);
3286 fprintf (f, "\t.cfi_register %lu, %lu\n", r, r2);
3287 break;
3288
3289 case DW_CFA_def_cfa_offset:
3290 case DW_CFA_def_cfa_offset_sf:
3291 fprintf (f, "\t.cfi_def_cfa_offset "
3292 HOST_WIDE_INT_PRINT_DEC"\n",
3293 cfi->dw_cfi_oprnd1.dw_cfi_offset);
3294 break;
3295
3296 case DW_CFA_remember_state:
3297 fprintf (f, "\t.cfi_remember_state\n");
3298 break;
3299 case DW_CFA_restore_state:
3300 fprintf (f, "\t.cfi_restore_state\n");
3301 break;
3302
3303 case DW_CFA_GNU_args_size:
3304 if (f == asm_out_file)
3305 {
3306 fprintf (f, "\t.cfi_escape %#x,", DW_CFA_GNU_args_size);
3307 dw2_asm_output_data_uleb128_raw (cfi->dw_cfi_oprnd1.dw_cfi_offset);
3308 if (flag_debug_asm)
3309 fprintf (f, "\t%s args_size "HOST_WIDE_INT_PRINT_DEC,
3310 ASM_COMMENT_START, cfi->dw_cfi_oprnd1.dw_cfi_offset);
3311 fputc ('\n', f);
3312 }
3313 else
3314 {
3315 fprintf (f, "\t.cfi_GNU_args_size "HOST_WIDE_INT_PRINT_DEC "\n",
3316 cfi->dw_cfi_oprnd1.dw_cfi_offset);
3317 }
3318 break;
3319
3320 case DW_CFA_GNU_window_save:
3321 fprintf (f, "\t.cfi_window_save\n");
3322 break;
3323
3324 case DW_CFA_def_cfa_expression:
3325 if (f != asm_out_file)
3326 {
3327 fprintf (f, "\t.cfi_def_cfa_expression ...\n");
3328 break;
3329 }
3330 /* FALLTHRU */
3331 case DW_CFA_expression:
3332 if (f != asm_out_file)
3333 {
3334 fprintf (f, "\t.cfi_cfa_expression ...\n");
3335 break;
3336 }
3337 fprintf (f, "\t.cfi_escape %#x,", cfi->dw_cfi_opc);
3338 output_cfa_loc_raw (cfi);
3339 fputc ('\n', f);
3340 break;
3341
3342 default:
3343 gcc_unreachable ();
3344 }
3345 }
3346
3347 void
3348 dwarf2out_emit_cfi (dw_cfi_ref cfi)
3349 {
3350 if (dwarf2out_do_cfi_asm ())
3351 output_cfi_directive (asm_out_file, cfi);
3352 }
3353
3354 static void
3355 dump_cfi_row (FILE *f, dw_cfi_row *row)
3356 {
3357 dw_cfi_ref cfi;
3358 unsigned i;
3359
3360 cfi = row->cfa_cfi;
3361 if (!cfi)
3362 {
3363 dw_cfa_location dummy;
3364 memset (&dummy, 0, sizeof (dummy));
3365 dummy.reg = INVALID_REGNUM;
3366 cfi = def_cfa_0 (&dummy, &row->cfa);
3367 }
3368 output_cfi_directive (f, cfi);
3369
3370 FOR_EACH_VEC_SAFE_ELT (row->reg_save, i, cfi)
3371 if (cfi)
3372 output_cfi_directive (f, cfi);
3373 }
3374
3375 void debug_cfi_row (dw_cfi_row *row);
3376
3377 void
3378 debug_cfi_row (dw_cfi_row *row)
3379 {
3380 dump_cfi_row (stderr, row);
3381 }
3382 \f
3383
3384 /* Save the result of dwarf2out_do_frame across PCH.
3385 This variable is tri-state, with 0 unset, >0 true, <0 false. */
3386 static GTY(()) signed char saved_do_cfi_asm = 0;
3387
3388 /* Decide whether we want to emit frame unwind information for the current
3389 translation unit. */
3390
3391 bool
3392 dwarf2out_do_frame (void)
3393 {
3394 /* We want to emit correct CFA location expressions or lists, so we
3395 have to return true if we're going to output debug info, even if
3396 we're not going to output frame or unwind info. */
3397 if (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
3398 return true;
3399
3400 if (saved_do_cfi_asm > 0)
3401 return true;
3402
3403 if (targetm.debug_unwind_info () == UI_DWARF2)
3404 return true;
3405
3406 if ((flag_unwind_tables || flag_exceptions)
3407 && targetm_common.except_unwind_info (&global_options) == UI_DWARF2)
3408 return true;
3409
3410 return false;
3411 }
3412
3413 /* Decide whether to emit frame unwind via assembler directives. */
3414
3415 bool
3416 dwarf2out_do_cfi_asm (void)
3417 {
3418 int enc;
3419
3420 if (saved_do_cfi_asm != 0)
3421 return saved_do_cfi_asm > 0;
3422
3423 /* Assume failure for a moment. */
3424 saved_do_cfi_asm = -1;
3425
3426 if (!flag_dwarf2_cfi_asm || !dwarf2out_do_frame ())
3427 return false;
3428 if (!HAVE_GAS_CFI_PERSONALITY_DIRECTIVE)
3429 return false;
3430
3431 /* Make sure the personality encoding is one the assembler can support.
3432 In particular, aligned addresses can't be handled. */
3433 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,/*global=*/1);
3434 if ((enc & 0x70) != 0 && (enc & 0x70) != DW_EH_PE_pcrel)
3435 return false;
3436 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,/*global=*/0);
3437 if ((enc & 0x70) != 0 && (enc & 0x70) != DW_EH_PE_pcrel)
3438 return false;
3439
3440 /* If we can't get the assembler to emit only .debug_frame, and we don't need
3441 dwarf2 unwind info for exceptions, then emit .debug_frame by hand. */
3442 if (!HAVE_GAS_CFI_SECTIONS_DIRECTIVE
3443 && !flag_unwind_tables && !flag_exceptions
3444 && targetm_common.except_unwind_info (&global_options) != UI_DWARF2)
3445 return false;
3446
3447 /* Success! */
3448 saved_do_cfi_asm = 1;
3449 return true;
3450 }
3451
3452 namespace {
3453
3454 const pass_data pass_data_dwarf2_frame =
3455 {
3456 RTL_PASS, /* type */
3457 "dwarf2", /* name */
3458 OPTGROUP_NONE, /* optinfo_flags */
3459 TV_FINAL, /* tv_id */
3460 0, /* properties_required */
3461 0, /* properties_provided */
3462 0, /* properties_destroyed */
3463 0, /* todo_flags_start */
3464 0, /* todo_flags_finish */
3465 };
3466
3467 class pass_dwarf2_frame : public rtl_opt_pass
3468 {
3469 public:
3470 pass_dwarf2_frame (gcc::context *ctxt)
3471 : rtl_opt_pass (pass_data_dwarf2_frame, ctxt)
3472 {}
3473
3474 /* opt_pass methods: */
3475 virtual bool gate (function *);
3476 virtual unsigned int execute (function *) { return execute_dwarf2_frame (); }
3477
3478 }; // class pass_dwarf2_frame
3479
3480 bool
3481 pass_dwarf2_frame::gate (function *)
3482 {
3483 #ifndef HAVE_prologue
3484 /* Targets which still implement the prologue in assembler text
3485 cannot use the generic dwarf2 unwinding. */
3486 return false;
3487 #endif
3488
3489 /* ??? What to do for UI_TARGET unwinding? They might be able to benefit
3490 from the optimized shrink-wrapping annotations that we will compute.
3491 For now, only produce the CFI notes for dwarf2. */
3492 return dwarf2out_do_frame ();
3493 }
3494
3495 } // anon namespace
3496
3497 rtl_opt_pass *
3498 make_pass_dwarf2_frame (gcc::context *ctxt)
3499 {
3500 return new pass_dwarf2_frame (ctxt);
3501 }
3502
3503 #include "gt-dwarf2cfi.h"