input.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* Declarations for variables relating to reading the source file.
  2. Used by parsers, lexical analyzers, and error message routines.
  3. Copyright (C) 1993-2019 Free Software Foundation, Inc.
  4. This file is part of GCC.
  5. GCC is free software; you can redistribute it and/or modify it under
  6. the terms of the GNU General Public License as published by the Free
  7. Software Foundation; either version 3, or (at your option) any later
  8. version.
  9. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  12. for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GCC; see the file COPYING3. If not see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifndef GCC_INPUT_H
  17. #define GCC_INPUT_H
  18. #include "line-map.h"
  19. extern GTY(()) struct line_maps *line_table;
  20. extern GTY(()) struct line_maps *saved_line_table;
  21. /* A value which will never be used to represent a real location. */
  22. #define UNKNOWN_LOCATION ((location_t) 0)
  23. /* The location for declarations in "<built-in>" */
  24. #define BUILTINS_LOCATION ((location_t) 1)
  25. /* line-map.c reserves RESERVED_LOCATION_COUNT to the user. Ensure
  26. both UNKNOWN_LOCATION and BUILTINS_LOCATION fit into that. */
  27. STATIC_ASSERT (BUILTINS_LOCATION < RESERVED_LOCATION_COUNT);
  28. extern bool is_location_from_builtin_token (location_t);
  29. extern expanded_location expand_location (location_t);
  30. /* A class capturing the bounds of a buffer, to allow for run-time
  31. bounds-checking in a checked build. */
  32. class char_span
  33. {
  34. public:
  35. char_span (const char *ptr, size_t n_elts) : m_ptr (ptr), m_n_elts (n_elts) {}
  36. /* Test for a non-NULL pointer. */
  37. operator bool() const { return m_ptr; }
  38. /* Get length, not including any 0-terminator (which may not be,
  39. in fact, present). */
  40. size_t length () const { return m_n_elts; }
  41. const char *get_buffer () const { return m_ptr; }
  42. char operator[] (int idx) const
  43. {
  44. gcc_assert (idx >= 0);
  45. gcc_assert ((size_t)idx < m_n_elts);
  46. return m_ptr[idx];
  47. }
  48. char_span subspan (int offset, int n_elts) const
  49. {
  50. gcc_assert (offset >= 0);
  51. gcc_assert (offset < (int)m_n_elts);
  52. gcc_assert (n_elts >= 0);
  53. gcc_assert (offset + n_elts <= (int)m_n_elts);
  54. return char_span (m_ptr + offset, n_elts);
  55. }
  56. char *xstrdup () const
  57. {
  58. return ::xstrndup (m_ptr, m_n_elts);
  59. }
  60. private:
  61. const char *m_ptr;
  62. size_t m_n_elts;
  63. };
  64. extern char_span location_get_source_line (const char *file_path, int line);
  65. extern bool location_missing_trailing_newline (const char *file_path);
  66. extern expanded_location
  67. expand_location_to_spelling_point (location_t,
  68. enum location_aspect aspect
  69. = LOCATION_ASPECT_CARET);
  70. extern location_t expansion_point_location_if_in_system_header (location_t);
  71. extern location_t expansion_point_location (location_t);
  72. extern location_t input_location;
  73. #define LOCATION_FILE(LOC) ((expand_location (LOC)).file)
  74. #define LOCATION_LINE(LOC) ((expand_location (LOC)).line)
  75. #define LOCATION_COLUMN(LOC)((expand_location (LOC)).column)
  76. #define LOCATION_LOCUS(LOC) \
  77. ((IS_ADHOC_LOC (LOC)) ? get_location_from_adhoc_loc (line_table, LOC) \
  78. : (LOC))
  79. #define LOCATION_BLOCK(LOC) \
  80. ((tree) ((IS_ADHOC_LOC (LOC)) ? get_data_from_adhoc_loc (line_table, (LOC)) \
  81. : NULL))
  82. #define RESERVED_LOCATION_P(LOC) \
  83. (LOCATION_LOCUS (LOC) < RESERVED_LOCATION_COUNT)
  84. /* Return a positive value if LOCATION is the locus of a token that is
  85. located in a system header, O otherwise. It returns 1 if LOCATION
  86. is the locus of a token that is located in a system header, and 2
  87. if LOCATION is the locus of a token located in a C system header
  88. that therefore needs to be extern "C" protected in C++.
  89. Note that this function returns 1 if LOCATION belongs to a token
  90. that is part of a macro replacement-list defined in a system
  91. header, but expanded in a non-system file. */
  92. static inline int
  93. in_system_header_at (location_t loc)
  94. {
  95. return linemap_location_in_system_header_p (line_table, loc);
  96. }
  97. /* Return true if LOCATION is the locus of a token that
  98. comes from a macro expansion, false otherwise. */
  99. static inline bool
  100. from_macro_expansion_at (location_t loc)
  101. {
  102. return linemap_location_from_macro_expansion_p (line_table, loc);
  103. }
  104. /* Return true if LOCATION is the locus of a token that comes from
  105. a macro definition, false otherwise. This differs from from_macro_expansion_at
  106. in its treatment of macro arguments, for which this returns false. */
  107. static inline bool
  108. from_macro_definition_at (location_t loc)
  109. {
  110. return linemap_location_from_macro_definition_p (line_table, loc);
  111. }
  112. static inline location_t
  113. get_pure_location (location_t loc)
  114. {
  115. return get_pure_location (line_table, loc);
  116. }
  117. /* Get the start of any range encoded within location LOC. */
  118. static inline location_t
  119. get_start (location_t loc)
  120. {
  121. return get_range_from_loc (line_table, loc).m_start;
  122. }
  123. /* Get the endpoint of any range encoded within location LOC. */
  124. static inline location_t
  125. get_finish (location_t loc)
  126. {
  127. return get_range_from_loc (line_table, loc).m_finish;
  128. }
  129. extern location_t make_location (location_t caret,
  130. location_t start, location_t finish);
  131. extern location_t make_location (location_t caret, source_range src_range);
  132. void dump_line_table_statistics (void);
  133. void dump_location_info (FILE *stream);
  134. void diagnostics_file_cache_fini (void);
  135. void diagnostics_file_cache_forcibly_evict_file (const char *file_path);
  136. struct GTY(()) string_concat
  137. {
  138. string_concat (int num, location_t *locs);
  139. int m_num;
  140. location_t * GTY ((atomic)) m_locs;
  141. };
  142. struct location_hash : int_hash <location_t, UNKNOWN_LOCATION> { };
  143. class GTY(()) string_concat_db
  144. {
  145. public:
  146. string_concat_db ();
  147. void record_string_concatenation (int num, location_t *locs);
  148. bool get_string_concatenation (location_t loc,
  149. int *out_num,
  150. location_t **out_locs);
  151. private:
  152. static location_t get_key_loc (location_t loc);
  153. /* For the fields to be private, we must grant access to the
  154. generated code in gtype-desc.c. */
  155. friend void ::gt_ggc_mx_string_concat_db (void *x_p);
  156. friend void ::gt_pch_nx_string_concat_db (void *x_p);
  157. friend void ::gt_pch_p_16string_concat_db (void *this_obj, void *x_p,
  158. gt_pointer_operator op,
  159. void *cookie);
  160. hash_map <location_hash, string_concat *> *m_table;
  161. };
  162. #endif