srcpos.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. /**
  32. * Open a source file.
  33. *
  34. * If the source file is a relative pathname, then it is searched for in the
  35. * current directory (the directory of the last source file read) and after
  36. * that in the search path.
  37. *
  38. * We work through the search path in order from the first path specified to
  39. * the last.
  40. *
  41. * If the file is not found, then this function does not return, but calls
  42. * die().
  43. *
  44. * @param fname Filename to search
  45. * @param fullnamep If non-NULL, it is set to the allocated filename of the
  46. * file that was opened. The caller is then responsible
  47. * for freeing the pointer.
  48. * @return pointer to opened FILE
  49. */
  50. FILE *srcfile_relative_open(const char *fname, char **fullnamep);
  51. void srcfile_push(const char *fname);
  52. int srcfile_pop(void);
  53. /**
  54. * Add a new directory to the search path for input files
  55. *
  56. * The new path is added at the end of the list.
  57. *
  58. * @param dirname Directory to add
  59. */
  60. void srcfile_add_search_path(const char *dirname);
  61. struct srcpos {
  62. int first_line;
  63. int first_column;
  64. int last_line;
  65. int last_column;
  66. struct srcfile_state *file;
  67. };
  68. #define YYLTYPE struct srcpos
  69. #define YYLLOC_DEFAULT(Current, Rhs, N) \
  70. do { \
  71. if (N) { \
  72. (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
  73. (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
  74. (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
  75. (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
  76. (Current).file = YYRHSLOC(Rhs, N).file; \
  77. } else { \
  78. (Current).first_line = (Current).last_line = \
  79. YYRHSLOC(Rhs, 0).last_line; \
  80. (Current).first_column = (Current).last_column = \
  81. YYRHSLOC(Rhs, 0).last_column; \
  82. (Current).file = YYRHSLOC (Rhs, 0).file; \
  83. } \
  84. } while (0)
  85. /*
  86. * Fictional source position used for IR nodes that are
  87. * created without otherwise knowing a true source position.
  88. * For example,constant definitions from the command line.
  89. */
  90. extern struct srcpos srcpos_empty;
  91. extern void srcpos_update(struct srcpos *pos, const char *text, int len);
  92. extern struct srcpos *srcpos_copy(struct srcpos *pos);
  93. extern char *srcpos_string(struct srcpos *pos);
  94. extern void srcpos_dump(struct srcpos *pos);
  95. extern void srcpos_verror(struct srcpos *pos, char const *, va_list va)
  96. __attribute__((format(printf, 2, 0)));
  97. extern void srcpos_error(struct srcpos *pos, char const *, ...)
  98. __attribute__((format(printf, 2, 3)));
  99. extern void srcpos_warn(struct srcpos *pos, char const *, ...)
  100. __attribute__((format(printf, 2, 3)));
  101. extern void srcpos_set_line(char *f, int l);
  102. #endif /* _SRCPOS_H_ */