symbols.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* symbols.h -
  2. Copyright (C) 1987 Free Software Foundation, Inc.
  3. This file is part of GAS, the GNU Assembler.
  4. GAS is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 1, or (at your option)
  7. any later version.
  8. GAS is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GAS; see the file COPYING. If not, write to
  14. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  15. extern struct obstack notes; /* eg FixS live here. */
  16. #define symbol_table_lookup(name) ((symbolS *)(symbol_find (name)))
  17. extern unsigned int local_bss_counter; /* Zeroed before a pass. */
  18. /* Only used by .lcomm directive. */
  19. extern symbolS * symbol_rootP; /* all the symbol nodes */
  20. extern symbolS * symbol_lastP; /* last struct symbol we made, or NULL */
  21. extern symbolS abs_symbol;
  22. symbolS * symbol_find();
  23. void symbol_begin();
  24. char * local_label_name();
  25. void local_colon();
  26. symbolS * symbol_new();
  27. void colon();
  28. void symbol_table_insert();
  29. symbolS * symbol_find_or_make();
  30. /* end: symbols.h */