2016-11-10 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / gcc-rich-location.c
blobb8787b40fe4bbbbc6e0244b80e787afc4af3045d
1 /* Implementation of gcc_rich_location class
2 Copyright (C) 2014-2016 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "rtl.h"
25 #include "hash-set.h"
26 #include "machmode.h"
27 #include "vec.h"
28 #include "double-int.h"
29 #include "input.h"
30 #include "alias.h"
31 #include "symtab.h"
32 #include "wide-int.h"
33 #include "inchash.h"
34 #include "tree-core.h"
35 #include "tree.h"
36 #include "diagnostic-core.h"
37 #include "gcc-rich-location.h"
38 #include "print-tree.h"
39 #include "pretty-print.h"
40 #include "intl.h"
41 #include "cpplib.h"
42 #include "diagnostic.h"
44 /* Add a range to the rich_location, covering expression EXPR. */
46 void
47 gcc_rich_location::add_expr (tree expr)
49 gcc_assert (expr);
51 if (CAN_HAVE_RANGE_P (expr))
52 add_range (EXPR_LOCATION (expr), false);
55 /* If T is an expression, add a range for it to the rich_location. */
57 void
58 gcc_rich_location::maybe_add_expr (tree t)
60 if (EXPR_P (t))
61 add_expr (t);
64 /* Add a fixit hint suggesting replacing the range at MISSPELLED_TOKEN_LOC
65 with the identifier HINT_ID. */
67 void
68 gcc_rich_location::add_fixit_misspelled_id (location_t misspelled_token_loc,
69 tree hint_id)
71 gcc_assert (TREE_CODE (hint_id) == IDENTIFIER_NODE);
73 add_fixit_replace (misspelled_token_loc, IDENTIFIER_POINTER (hint_id));