srcpos.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright 2007 Jon Loeliger, Freescale Semiconductor, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  17. * USA
  18. */
  19. #ifndef _SRCPOS_H_
  20. #define _SRCPOS_H_
  21. #include <stdio.h>
  22. struct srcfile_state {
  23. FILE *f;
  24. char *name;
  25. char *dir;
  26. int lineno, colno;
  27. struct srcfile_state *prev;
  28. };
  29. extern FILE *depfile; /* = NULL */
  30. extern struct srcfile_state *current_srcfile; /* = NULL */
  31. FILE *srcfile_relative_open(const char *fname, char **fullnamep);
  32. void srcfile_push(const char *fname);
  33. int srcfile_pop(void);
  34. struct srcpos {
  35. int first_line;
  36. int first_column;
  37. int last_line;
  38. int last_column;
  39. struct srcfile_state *file;
  40. };
  41. #define YYLTYPE struct srcpos
  42. #define YYLLOC_DEFAULT(Current, Rhs, N) \
  43. do { \
  44. if (N) { \
  45. (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
  46. (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
  47. (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
  48. (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
  49. (Current).file = YYRHSLOC(Rhs, N).file; \
  50. } else { \
  51. (Current).first_line = (Current).last_line = \
  52. YYRHSLOC(Rhs, 0).last_line; \
  53. (Current).first_column = (Current).last_column = \
  54. YYRHSLOC(Rhs, 0).last_column; \
  55. (Current).file = YYRHSLOC (Rhs, 0).file; \
  56. } \
  57. } while (0)
  58. /*
  59. * Fictional source position used for IR nodes that are
  60. * created without otherwise knowing a true source position.
  61. * For example,constant definitions from the command line.
  62. */
  63. extern struct srcpos srcpos_empty;
  64. extern void srcpos_update(struct srcpos *pos, const char *text, int len);
  65. extern struct srcpos *srcpos_copy(struct srcpos *pos);
  66. extern char *srcpos_string(struct srcpos *pos);
  67. extern void srcpos_dump(struct srcpos *pos);
  68. extern void srcpos_verror(struct srcpos *pos, char const *, va_list va)
  69. __attribute__((format(printf, 2, 0)));
  70. extern void srcpos_error(struct srcpos *pos, char const *, ...)
  71. __attribute__((format(printf, 2, 3)));
  72. extern void srcpos_warn(struct srcpos *pos, char const *, ...)
  73. __attribute__((format(printf, 2, 3)));
  74. #endif /* _SRCPOS_H_ */