1 /* Implementation of gcc_rich_location class
2 Copyright (C) 2014-2015 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
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
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/>. */
22 #include "coretypes.h"
28 #include "double-int.h"
34 #include "tree-core.h"
36 #include "diagnostic-core.h"
37 #include "gcc-rich-location.h"
38 #include "print-tree.h"
39 #include "pretty-print.h"
42 #include "diagnostic.h"
44 /* Extract any source range information from EXPR and write it
48 get_range_for_expr (tree expr
, location_range
*r
)
50 if (EXPR_HAS_RANGE (expr
))
52 source_range sr
= EXPR_LOCATION_RANGE (expr
);
54 /* Do we have meaningful data? */
55 if (sr
.m_start
&& sr
.m_finish
)
57 r
->m_start
= expand_location (sr
.m_start
);
58 r
->m_finish
= expand_location (sr
.m_finish
);
66 /* Add a range to the rich_location, covering expression EXPR. */
69 gcc_rich_location::add_expr (tree expr
)
74 r
.m_show_caret_p
= false;
75 if (get_range_for_expr (expr
, &r
))
79 /* If T is an expression, add a range for it to the rich_location. */
82 gcc_rich_location::maybe_add_expr (tree t
)