| [10] | 1 | /* Generic stabs parsing for gas.
|
|---|
| 2 | Copyright 1989, 1990, 1991, 1993, 1995, 1996, 1997, 1998, 2000, 2001
|
|---|
| 3 | Free Software Foundation, Inc.
|
|---|
| 4 |
|
|---|
| 5 | This file is part of GAS, the GNU Assembler.
|
|---|
| 6 |
|
|---|
| 7 | GAS is free software; you can redistribute it and/or modify
|
|---|
| 8 | it under the terms of the GNU General Public License as
|
|---|
| 9 | published by the Free Software Foundation; either version 2,
|
|---|
| 10 | or (at your option) any later version.
|
|---|
| 11 |
|
|---|
| 12 | GAS is distributed in the hope that it will be useful, but
|
|---|
| 13 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
|---|
| 15 | the GNU General Public License for more details.
|
|---|
| 16 |
|
|---|
| 17 | You should have received a copy of the GNU General Public License
|
|---|
| 18 | along with GAS; see the file COPYING. If not, write to the Free
|
|---|
| 19 | Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
|---|
| 20 | 02111-1307, USA. */
|
|---|
| 21 |
|
|---|
| 22 | #include "as.h"
|
|---|
| 23 | #include "obstack.h"
|
|---|
| 24 | #include "subsegs.h"
|
|---|
| 25 | #include "ecoff.h"
|
|---|
| 26 |
|
|---|
| 27 | /* We need this, despite the apparent object format dependency, since
|
|---|
| 28 | it defines stab types, which all object formats can use now. */
|
|---|
| 29 |
|
|---|
| 30 | #include "aout/stab_gnu.h"
|
|---|
| 31 |
|
|---|
| 32 | /* Holds whether the assembler is generating stabs line debugging
|
|---|
| 33 | information or not. Potentially used by md_cleanup function. */
|
|---|
| 34 |
|
|---|
| 35 | int outputting_stabs_line_debug = 0;
|
|---|
| 36 |
|
|---|
| 37 | static void s_stab_generic PARAMS ((int, char *, char *));
|
|---|
| 38 | static void generate_asm_file PARAMS ((int, char *));
|
|---|
| 39 |
|
|---|
| 40 | /* Allow backends to override the names used for the stab sections. */
|
|---|
| 41 | #ifndef STAB_SECTION_NAME
|
|---|
| 42 | #define STAB_SECTION_NAME ".stab"
|
|---|
| 43 | #endif
|
|---|
| 44 |
|
|---|
| 45 | #ifndef STAB_STRING_SECTION_NAME
|
|---|
| 46 | #define STAB_STRING_SECTION_NAME ".stabstr"
|
|---|
| 47 | #endif
|
|---|
| 48 |
|
|---|
| 49 | /* Non-zero if we're in the middle of a .func function, in which case
|
|---|
| 50 | stabs_generate_asm_lineno emits function relative line number stabs.
|
|---|
| 51 | Otherwise it emits line number stabs with absolute addresses. Note that
|
|---|
| 52 | both cases only apply to assembler code assembled with -gstabs. */
|
|---|
| 53 | static int in_dot_func_p;
|
|---|
| 54 |
|
|---|
| 55 | /* Label at start of current function if in_dot_func_p != 0. */
|
|---|
| 56 | static const char *current_function_label;
|
|---|
| 57 |
|
|---|
| 58 | /*
|
|---|
| 59 | * Handle .stabX directives, which used to be open-coded.
|
|---|
| 60 | * So much creeping featurism overloaded the semantics that we decided
|
|---|
| 61 | * to put all .stabX thinking in one place. Here.
|
|---|
| 62 | *
|
|---|
| 63 | * We try to make any .stabX directive legal. Other people's AS will often
|
|---|
| 64 | * do assembly-time consistency checks: eg assigning meaning to n_type bits
|
|---|
| 65 | * and "protecting" you from setting them to certain values. (They also zero
|
|---|
| 66 | * certain bits before emitting symbols. Tut tut.)
|
|---|
| 67 | *
|
|---|
| 68 | * If an expression is not absolute we either gripe or use the relocation
|
|---|
| 69 | * information. Other people's assemblers silently forget information they
|
|---|
| 70 | * don't need and invent information they need that you didn't supply.
|
|---|
| 71 | */
|
|---|
| 72 |
|
|---|
| 73 | /*
|
|---|
| 74 | * Build a string dictionary entry for a .stabX symbol.
|
|---|
| 75 | * The symbol is added to the .<secname>str section.
|
|---|
| 76 | */
|
|---|
| 77 |
|
|---|
| 78 | #ifndef SEPARATE_STAB_SECTIONS
|
|---|
| 79 | #define SEPARATE_STAB_SECTIONS 0
|
|---|
| 80 | #endif
|
|---|
| 81 |
|
|---|
| 82 | unsigned int
|
|---|
| 83 | get_stab_string_offset (string, stabstr_secname)
|
|---|
| 84 | const char *string;
|
|---|
| 85 | const char *stabstr_secname;
|
|---|
| 86 | {
|
|---|
| 87 | unsigned int length;
|
|---|
| 88 | unsigned int retval;
|
|---|
| 89 | segT save_seg;
|
|---|
| 90 | subsegT save_subseg;
|
|---|
| 91 | segT seg;
|
|---|
| 92 | char *p;
|
|---|
| 93 |
|
|---|
| 94 | if (! SEPARATE_STAB_SECTIONS)
|
|---|
| 95 | abort ();
|
|---|
| 96 |
|
|---|
| 97 | length = strlen (string);
|
|---|
| 98 |
|
|---|
| 99 | save_seg = now_seg;
|
|---|
| 100 | save_subseg = now_subseg;
|
|---|
| 101 |
|
|---|
| 102 | /* Create the stab string section. */
|
|---|
| 103 | seg = subseg_new (stabstr_secname, 0);
|
|---|
| 104 |
|
|---|
| 105 | retval = seg_info (seg)->stabu.stab_string_size;
|
|---|
| 106 | if (retval <= 0)
|
|---|
| 107 | {
|
|---|
| 108 | /* Make sure the first string is empty. */
|
|---|
| 109 | p = frag_more (1);
|
|---|
| 110 | *p = 0;
|
|---|
| 111 | retval = seg_info (seg)->stabu.stab_string_size = 1;
|
|---|
| 112 | #ifdef BFD_ASSEMBLER
|
|---|
| 113 | bfd_set_section_flags (stdoutput, seg, SEC_READONLY | SEC_DEBUGGING);
|
|---|
| 114 | if (seg->name == stabstr_secname)
|
|---|
| 115 | seg->name = xstrdup (stabstr_secname);
|
|---|
| 116 | #endif
|
|---|
| 117 | }
|
|---|
| 118 |
|
|---|
| 119 | if (length > 0)
|
|---|
| 120 | { /* Ordinary case. */
|
|---|
| 121 | p = frag_more (length + 1);
|
|---|
| 122 | strcpy (p, string);
|
|---|
| 123 |
|
|---|
| 124 | seg_info (seg)->stabu.stab_string_size += length + 1;
|
|---|
| 125 | }
|
|---|
| 126 | else
|
|---|
| 127 | retval = 0;
|
|---|
| 128 |
|
|---|
| 129 | subseg_set (save_seg, save_subseg);
|
|---|
| 130 |
|
|---|
| 131 | return retval;
|
|---|
| 132 | }
|
|---|
| 133 |
|
|---|
| 134 | #ifdef AOUT_STABS
|
|---|
| 135 | #ifndef OBJ_PROCESS_STAB
|
|---|
| 136 | #define OBJ_PROCESS_STAB(SEG,W,S,T,O,D) aout_process_stab(W,S,T,O,D)
|
|---|
| 137 | #endif
|
|---|
| 138 |
|
|---|
| 139 | /* Here instead of obj-aout.c because other formats use it too. */
|
|---|
| 140 | void
|
|---|
| 141 | aout_process_stab (what, string, type, other, desc)
|
|---|
| 142 | int what;
|
|---|
| 143 | const char *string;
|
|---|
| 144 | int type, other, desc;
|
|---|
| 145 | {
|
|---|
| 146 | /* Put the stab information in the symbol table. */
|
|---|
| 147 | symbolS *symbol;
|
|---|
| 148 |
|
|---|
| 149 | /* Create the symbol now, but only insert it into the symbol chain
|
|---|
| 150 | after any symbols mentioned in the value expression get into the
|
|---|
| 151 | symbol chain. This is to avoid "continuation symbols" (where one
|
|---|
| 152 | ends in "\" and the debug info is continued in the next .stabs
|
|---|
| 153 | directive) from being separated by other random symbols. */
|
|---|
| 154 | symbol = symbol_create (string, undefined_section, 0,
|
|---|
| 155 | (struct frag *) NULL);
|
|---|
| 156 | if (what == 's' || what == 'n')
|
|---|
| 157 | {
|
|---|
| 158 | /* Pick up the value from the input line. */
|
|---|
| 159 | symbol_set_frag (symbol, &zero_address_frag);
|
|---|
| 160 | pseudo_set (symbol);
|
|---|
| 161 | }
|
|---|
| 162 | else
|
|---|
| 163 | {
|
|---|
| 164 | /* .stabd sets the name to NULL. Why? */
|
|---|
| 165 | S_SET_NAME (symbol, NULL);
|
|---|
| 166 | symbol_set_frag (symbol, frag_now);
|
|---|
| 167 | S_SET_VALUE (symbol, (valueT) frag_now_fix ());
|
|---|
| 168 | }
|
|---|
| 169 |
|
|---|
| 170 | symbol_append (symbol, symbol_lastP, &symbol_rootP, &symbol_lastP);
|
|---|
| 171 |
|
|---|
| 172 | S_SET_TYPE (symbol, type);
|
|---|
| 173 | S_SET_OTHER (symbol, other);
|
|---|
| 174 | S_SET_DESC (symbol, desc);
|
|---|
| 175 | }
|
|---|
| 176 | #endif
|
|---|
| 177 |
|
|---|
| 178 | /* This can handle different kinds of stabs (s,n,d) and different
|
|---|
| 179 | kinds of stab sections. */
|
|---|
| 180 |
|
|---|
| 181 | static void
|
|---|
| 182 | s_stab_generic (what, stab_secname, stabstr_secname)
|
|---|
| 183 | int what;
|
|---|
| 184 | char *stab_secname;
|
|---|
| 185 | char *stabstr_secname;
|
|---|
| 186 | {
|
|---|
| 187 | long longint;
|
|---|
| 188 | char *string, *saved_string_obstack_end;
|
|---|
| 189 | int type;
|
|---|
| 190 | int other;
|
|---|
| 191 | int desc;
|
|---|
| 192 |
|
|---|
| 193 | /* The general format is:
|
|---|
| 194 | .stabs "STRING",TYPE,OTHER,DESC,VALUE
|
|---|
| 195 | .stabn TYPE,OTHER,DESC,VALUE
|
|---|
| 196 | .stabd TYPE,OTHER,DESC
|
|---|
| 197 | At this point input_line_pointer points after the pseudo-op and
|
|---|
| 198 | any trailing whitespace. The argument what is one of 's', 'n' or
|
|---|
| 199 | 'd' indicating which type of .stab this is. */
|
|---|
| 200 |
|
|---|
| 201 | if (what != 's')
|
|---|
| 202 | {
|
|---|
| 203 | string = "";
|
|---|
| 204 | saved_string_obstack_end = 0;
|
|---|
| 205 | }
|
|---|
| 206 | else
|
|---|
| 207 | {
|
|---|
| 208 | int length;
|
|---|
| 209 |
|
|---|
| 210 | string = demand_copy_C_string (&length);
|
|---|
| 211 | /* FIXME: We should probably find some other temporary storage
|
|---|
| 212 | for string, rather than leaking memory if someone else
|
|---|
| 213 | happens to use the notes obstack. */
|
|---|
| 214 | saved_string_obstack_end = notes.next_free;
|
|---|
| 215 | SKIP_WHITESPACE ();
|
|---|
| 216 | if (*input_line_pointer == ',')
|
|---|
| 217 | input_line_pointer++;
|
|---|
| 218 | else
|
|---|
| 219 | {
|
|---|
| 220 | as_warn (_(".stabs: Missing comma"));
|
|---|
| 221 | ignore_rest_of_line ();
|
|---|
| 222 | return;
|
|---|
| 223 | }
|
|---|
| 224 | }
|
|---|
| 225 |
|
|---|
| 226 | if (get_absolute_expression_and_terminator (&longint) != ',')
|
|---|
| 227 | {
|
|---|
| 228 | as_warn (_(".stab%c: Missing comma"), what);
|
|---|
| 229 | ignore_rest_of_line ();
|
|---|
| 230 | return;
|
|---|
| 231 | }
|
|---|
| 232 | type = longint;
|
|---|
| 233 |
|
|---|
| 234 | if (get_absolute_expression_and_terminator (&longint) != ',')
|
|---|
| 235 | {
|
|---|
| 236 | as_warn (_(".stab%c: Missing comma"), what);
|
|---|
| 237 | ignore_rest_of_line ();
|
|---|
| 238 | return;
|
|---|
| 239 | }
|
|---|
| 240 | other = longint;
|
|---|
| 241 |
|
|---|
| 242 | desc = get_absolute_expression ();
|
|---|
| 243 | if (what == 's' || what == 'n')
|
|---|
| 244 | {
|
|---|
| 245 | if (*input_line_pointer != ',')
|
|---|
| 246 | {
|
|---|
| 247 | as_warn (_(".stab%c: Missing comma"), what);
|
|---|
| 248 | ignore_rest_of_line ();
|
|---|
| 249 | return;
|
|---|
| 250 | }
|
|---|
| 251 | input_line_pointer++;
|
|---|
| 252 | SKIP_WHITESPACE ();
|
|---|
| 253 | }
|
|---|
| 254 |
|
|---|
| 255 | #ifdef TC_PPC
|
|---|
| 256 | #ifdef OBJ_ELF
|
|---|
| 257 | /* Solaris on PowerPC has decided that .stabd can take 4 arguments, so if we were
|
|---|
| 258 | given 4 arguments, make it a .stabn */
|
|---|
| 259 | else if (what == 'd')
|
|---|
| 260 | {
|
|---|
| 261 | char *save_location = input_line_pointer;
|
|---|
| 262 |
|
|---|
| 263 | SKIP_WHITESPACE ();
|
|---|
| 264 | if (*input_line_pointer == ',')
|
|---|
| 265 | {
|
|---|
| 266 | input_line_pointer++;
|
|---|
| 267 | what = 'n';
|
|---|
| 268 | }
|
|---|
| 269 | else
|
|---|
| 270 | input_line_pointer = save_location;
|
|---|
| 271 | }
|
|---|
| 272 | #endif /* OBJ_ELF */
|
|---|
| 273 | #endif /* TC_PPC */
|
|---|
| 274 |
|
|---|
| 275 | #ifndef NO_LISTING
|
|---|
| 276 | if (listing)
|
|---|
| 277 | {
|
|---|
| |
|---|