1. 13 Nov, 2015 1 commit
    • Source range tracking in libcpp and C FE, with bit-packing optimization · ebedc9a3
      This patch combines:
        [PATCH 05/10] Add ranges to libcpp tokens (via ad-hoc data, unoptimized)
        [PATCH 06/10] Track expression ranges in C frontend
        [PATCH 07/10] Add plugin to recursively dump the source-ranges in a tree (v2)
        [PATCH 08/10] Wire things up so that libcpp users get token underlines
        [PATCH 09/10] Delay some resolution of ad-hoc locations, preserving ranges
        [PATCH 10/10] Compress short ranges into source_location
        [PATCH] libcpp: add examples to source_location description
      along with fixes for the nits identified during review.
      
      gcc/ChangeLog:
      	* Makefile.in (OBJS): Add gcc-rich-location.o.
      	* diagnostic.c (diagnostic_append_note): Pass line_table to
      	rich_location ctor.
      	(emit_diagnostic): Likewise.
      	(inform): Likewise.
      	(inform_n): Likewise.
      	(warning): Likewise.
      	(warning_at): Likewise.
      	(warning_n): Likewise.
      	(pedwarn): Likewise.
      	(permerror): Likewise.
      	(error): Likewise.
      	(error_n): Likewise.
      	(error_at): Likewise.
      	(sorry): Likewise.
      	(fatal_error): Likewise.
      	(internal_error): Likewise.
      	(internal_error_no_backtrace): Likewise.
      	(source_range::debug): Likewise.
      	* gcc-rich-location.c: New file.
      	* gcc-rich-location.h: New file.
      	* genmatch.c (fatal_at): Pass line_table to rich_location ctor.
      	(warning_at): Likewise.
      	* gimple.h (gimple_set_block): Use set_block function.
      	* input.c (dump_line_table_statistics): Dump stats on how many
      	ranges were optimized vs how many needed ad-hoc table.
      	(write_digit_row): Add "map" param; use its range_bits
      	to calculate the per-character offset.
      	(dump_location_info): Print the range and column bits for each
      	ordinary map.  Use the range bits to calculate the per-character
      	offset.  Pass the map as a new param to the various calls to
      	write_digit_row.  Eliminate uses of
      	ORDINARY_MAP_NUMBER_OF_COLUMN_BITS.
      	* print-tree.c (print_node): Print any source range information.
      	* rtl-error.c (diagnostic_for_asm): Likewise.
      	* toplev.c (general_init): Initialize line_table's
      	default_range_bits.
      	* tree-cfg.c (move_block_to_fn): Likewise.
      	(move_block_to_fn): Likewise.
      	* tree-inline.c (copy_phis_for_bb): Likewise.
      	* tree.c (tree_set_block): Likewise.
      	(get_pure_location): New function.
      	(set_source_range): New functions.
      	(set_block): New function.
      	(set_source_range): New functions.
      	* tree.h (CAN_HAVE_RANGE_P): New.
      	(EXPR_LOCATION_RANGE): New.
      	(EXPR_HAS_RANGE): New.
      	(get_expr_source_range): New inline function.
      	(DECL_LOCATION_RANGE): New.
      	(set_source_range): New decls.
      	(get_decl_source_range): New inline function.
      
      gcc/ada/ChangeLog:
      	* gcc-interface/trans.c (Sloc_to_locus): Add line_table param when
      	calling linemap_position_for_line_and_column.
      
      gcc/c-family/ChangeLog:
      	* c-common.c (c_fully_fold_internal): Capture existing souce_range,
      	and store it on the result.
      	* c-opts.c (c_common_init_options): Set
      	global_dc->colorize_source_p.
      
      gcc/c/ChangeLog:
      	* c-decl.c (warn_defaults_to): Pass line_table to
      	rich_location ctor.
      	* c-errors.c (pedwarn_c99): Likewise.
      	(pedwarn_c90): Likewise.
      	* c-parser.c (set_c_expr_source_range): New functions.
      	(c_token::get_range): New method.
      	(c_token::get_finish): New method.
      	(c_parser_expr_no_commas): Call set_c_expr_source_range on the ret
      	based on the range from the start of the LHS to the end of the
      	RHS.
      	(c_parser_conditional_expression): Likewise, based on the range
      	from the start of the cond.value to the end of exp2.value.
      	(c_parser_binary_expression): Call set_c_expr_source_range on
      	the stack values for TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR.
      	(c_parser_cast_expression): Call set_c_expr_source_range on ret
      	based on the cast_loc through to the end of the expr.
      	(c_parser_unary_expression): Likewise, based on the
      	op_loc through to the end of op.
      	(c_parser_sizeof_expression) Likewise, based on the start of the
      	sizeof token through to either the closing paren or the end of
      	expr.
      	(c_parser_postfix_expression): Likewise, using the token range,
      	or from the open paren through to the close paren for
      	parenthesized expressions.
      	(c_parser_postfix_expression_after_primary): Likewise, for
      	various kinds of expression.
      	* c-tree.h (struct c_expr): Add field "src_range".
      	(c_expr::get_start): New method.
      	(c_expr::get_finish): New method.
      	(set_c_expr_source_range): New decls.
      	* c-typeck.c (parser_build_unary_op): Call set_c_expr_source_range
      	on ret for prefix unary ops.
      	(parser_build_binary_op): Likewise, running from the start of
      	arg1.value through to the end of arg2.value.
      
      gcc/cp/ChangeLog:
      	* error.c (pedwarn_cxx98): Pass line_table to rich_location ctor.
      
      gcc/fortran/ChangeLog:
      	* error.c (gfc_warning): Pass line_table to rich_location ctor.
      	(gfc_warning_now_at): Likewise.
      	(gfc_warning_now): Likewise.
      	(gfc_error_now): Likewise.
      	(gfc_fatal_error): Likewise.
      	(gfc_error): Likewise.
      	(gfc_internal_error): Likewise.
      
      gcc/testsuite/ChangeLog:
      	* gcc.dg/diagnostic-token-ranges.c: New file.
      	* gcc.dg/diagnostic-tree-expr-ranges-2.c: New file.
      	* gcc.dg/plugin/diagnostic-test-expressions-1.c: New file.
      	* gcc.dg/plugin/diagnostic-test-show-trees-1.c: New file.
      	* gcc.dg/plugin/diagnostic_plugin_show_trees.c: New file.
      	* gcc.dg/plugin/diagnostic_plugin_test_show_locus.c (get_loc): Add
      	line_table param when calling
      	linemap_position_for_line_and_column.
      	(test_show_locus): Pass line_table to rich_location ctors.
      	(plugin_init): Remove setting of global_dc->colorize_source_p.
      	* gcc.dg/plugin/diagnostic_plugin_test_tree_expression_range.c:
      	New file.
      	* gcc.dg/plugin/plugin.exp (plugin_test_list): Add
      	diagnostic_plugin_test_tree_expression_range.c,
      	diagnostic-test-expressions-1.c, diagnostic_plugin_show_trees.c,
      	and diagnostic-test-show-trees-1.c.
      
      libcpp/ChangeLog:
      	* errors.c (cpp_diagnostic): Pass pfile->line_table to
      	rich_location ctor.
      	(cpp_diagnostic_with_line): Likewise.
      	* include/cpplib.h (struct cpp_token): Update comment for src_loc
      	to indicate that the range of the token is "baked into" the
      	source_location.
      	* include/line-map.h (source_location): Update the descriptive
      	comment to reflect the packing scheme for short ranges, adding
      	worked examples of location encoding.
      	(struct line_map_ordinary): Drop field "column_bits" in favor
      	of field "m_column_and_range_bits"; add field "m_range_bits".
      	(ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Delete.
      	(location_adhoc_data): Add source_range field.
      	(struct line_maps): Add fields "default_range_bits",
      	"num_optimized_ranges" and "num_unoptimized_ranges".
      	(get_combined_adhoc_loc): Add source_range param.
      	(get_range_from_loc): New declaration.
      	(pure_location_p): New prototype.
      	(COMBINE_LOCATION_DATA):  Add source_range param.
      	(SOURCE_LINE): Update for renaming of column_bits.
      	(SOURCE_COLUMN): Likewise.  Shift the column right by the map's
      	range_bits.
      	(LAST_SOURCE_LINE_LOCATION): Update for renaming of column_bits.
      	(linemap_position_for_line_and_column): Add line_maps * params.
      	(rich_location::rich_location): Likewise.
      	* lex.c (_cpp_lex_direct): Capture the range of the token, baking
      	it into token->src_loc via a call to COMBINE_LOCATION_DATA.
      	* line-map.c (LINE_MAP_MAX_COLUMN_NUMBER): Reduce from 1U << 17 to
      	1U << 12.
      	(location_adhoc_data_hash): Add the src_range into
      	the hash value.
      	(location_adhoc_data_eq): Require equality of the src_range
      	values.
      	(can_be_stored_compactly_p): New function.
      	(get_combined_adhoc_loc): Add src_range param, and store it,
      	via a bit-packing scheme for short ranges, otherwise within the
      	lookaside table.  Remove the requirement that data is non-NULL.
      	(get_range_from_adhoc_loc): New function.
      	(get_range_from_loc): New function.
      	(pure_location_p): New function.
      	(linemap_add): Ensure that start_location has zero for the
      	range_bits, unless we're past LINE_MAP_MAX_LOCATION_WITH_COLS.
      	Initialize range_bits to zero.  Assert that the start_location
      	is "pure".
      	(linemap_line_start): Assert that the
      	column_and_range_bits >= range_bits.
      	Update determinination of whether we need to start a new map
      	using the effective column bits, without the range bits.
      	Use the set's default_range_bits in new maps, apart from
      	those with column_bits == 0, which should also have 0 range_bits.
      	Increase the column bits for new maps by the range bits.
      	When adding lines to an existing map, use set->highest_line
      	directly rather than offsetting highest by SOURCE_COLUMN.
      	Add assertions to sanity-check the return value.
      	(linemap_position_for_column): Offset to_column by range_bits.
      	Update set->highest_location if necessary.
      	(linemap_position_for_line_and_column): Add line_maps * param.
      	Update the calculation to offset the column by range_bits, and
      	conditionalize it on being <= LINE_MAP_MAX_LOCATION_WITH_COLS.
      	Bound it by LINEMAPS_MACRO_LOWEST_LOCATION.  Update
      	set->highest_location if necessary.
      	(linemap_position_for_loc_and_offset): Handle ad-hoc locations;
      	pass "set" to linemap_position_for_line_and_column.
      	(linemap_macro_map_loc_unwind_toward_spelling): Add line_maps
      	param.  Handle ad-hoc locations.
      	(linemap_location_in_system_header_p): Pass on "set" to call to
      	linemap_macro_map_loc_unwind_toward_spelling.
      	(linemap_macro_loc_to_spelling_point): Retain ad-hoc locations.
      	Pass on "set" to call to
      	linemap_macro_map_loc_unwind_toward_spelling.
      	(linemap_resolve_location): Retain ad-hoc locations.  Pass on
      	"set" to call to linemap_macro_map_loc_unwind_toward_spelling.
      	(linemap_unwind_toward_expansion):  Pass on "set" to call to
      	linemap_macro_map_loc_unwind_toward_spelling.
      	(linemap_expand_location): Extract the data pointer before
      	extracting the location.
      	(rich_location::rich_location): Add line_maps param; use it to
      	extract the range from the source_location.
      	* location-example.txt: Regenerate, showing new representation.
      
      From-SVN: r230331
      David Malcolm committed
  2. 06 Nov, 2015 2 commits
    • Reimplement diagnostic_show_locus, introducing rich_location classes · 8a645150
      gcc/ChangeLog:
      	* diagnostic-color.c (color_dict): Eliminate "caret"; add "range1"
      	and "range2".
      	(parse_gcc_colors): Update comment to describe default GCC_COLORS.
      	* diagnostic-core.h (warning_at_rich_loc): New declaration.
      	(error_at_rich_loc): New declaration.
      	(permerror_at_rich_loc): New declaration.
      	(inform_at_rich_loc): New declaration.
      	* diagnostic-show-locus.c (adjust_line): Delete.
      	(struct point_state): New struct.
      	(class colorizer): New class.
      	(class layout_point): New class.
      	(class layout_range): New class.
      	(struct line_bounds): New.
      	(class layout): New class.
      	(colorizer::colorizer): New ctor.
      	(colorizer::~colorizer): New dtor.
      	(layout::layout): New ctor.
      	(layout::print_source_line): New method.
      	(layout::print_annotation_line): New method.
      	(layout::get_state_at_point): New method.
      	(layout::get_x_bound_for_row): New method.
      	(diagnostic_show_locus): Reimplement in terms of class layout.
      	(diagnostic_print_caret_line): Delete.
      	* diagnostic.c (diagnostic_initialize): Replace
      	MAX_LOCATIONS_PER_MESSAGE with rich_location::MAX_RANGES.
      	(diagnostic_set_info_translated): Convert param from location_t
      	to rich_location *.  Eliminate calls to set_location on the
      	message in favor of storing the rich_location ptr there.
      	(diagnostic_set_info): Convert param from location_t to
      	rich_location *.
      	(diagnostic_build_prefix): Break out array into...
      	(diagnostic_kind_color): New variable.
      	(diagnostic_get_color_for_kind): New function.
      	(diagnostic_report_diagnostic): Colorize the option_text
      	using the color for the severity.
      	(diagnostic_append_note): Update for change in signature of
      	diagnostic_set_info.
      	(diagnostic_append_note_at_rich_loc): New function.
      	(emit_diagnostic): Update for change in signature of
      	diagnostic_set_info.
      	(inform): Likewise.
      	(inform_at_rich_loc): New function.
      	(inform_n): Update for change in signature of diagnostic_set_info.
      	(warning): Likewise.
      	(warning_at): Likewise.
      	(warning_at_rich_loc): New function.
      	(warning_n): Update for change in signature of diagnostic_set_info.
      	(pedwarn): Likewise.
      	(permerror): Likewise.
      	(permerror_at_rich_loc): New function.
      	(error): Update for change in signature of diagnostic_set_info.
      	(error_n): Likewise.
      	(error_at): Likewise.
      	(error_at_rich_loc): New function.
      	(sorry): Update for change in signature of diagnostic_set_info.
      	(fatal_error): Likewise.
      	(internal_error): Likewise.
      	(internal_error_no_backtrace): Likewise.
      	(source_range::debug): New function.
      	* diagnostic.h (struct diagnostic_info): Eliminate field
      	"override_column".  Add field "richloc".
      	(struct diagnostic_context): Add field "colorize_source_p".
      	(diagnostic_override_column): Delete.
      	(diagnostic_set_info): Convert param from location_t to
      	rich_location *.
      	(diagnostic_set_info_translated): Likewise.
      	(diagnostic_append_note_at_rich_loc): New function.
      	(diagnostic_num_locations): New function.
      	(diagnostic_expand_location): Get the location from the
      	rich_location.
      	(diagnostic_print_caret_line): Delete.
      	(diagnostic_get_color_for_kind): New declaration.
      	* genmatch.c (linemap_client_expand_location_to_spelling_point): New.
      	(error_cb): Update for change in signature of "error" callback.
      	(fatal_at): Likewise.
      	(warning_at): Likewise.
      	* input.c (linemap_client_expand_location_to_spelling_point): New.
      	* pretty-print.c (text_info::set_range): New method.
      	(text_info::get_location): New method.
      	* pretty-print.h (MAX_LOCATIONS_PER_MESSAGE): Eliminate this macro.
      	(struct text_info): Eliminate "locations" array in favor of
      	"m_richloc", a rich_location *.
      	(textinfo::set_location): Add a "caret_p" param, and reimplement
      	in terms of a call to set_range.
      	(textinfo::get_location): Eliminate inline implementation in favor of
      	an out-of-line reimplementation.
      	(textinfo::set_range): New method.
      	* rtl-error.c (diagnostic_for_asm): Update for change in signature
      	of diagnostic_set_info.
      	* tree-diagnostic.c (default_tree_printer): Update for new
      	"caret_p" param for textinfo::set_location.
      	* tree-pretty-print.c (percent_K_format): Likewise.
      
      gcc/c-family/ChangeLog:
      	* c-common.c (c_cpp_error): Convert parameter from location_t to
      	rich_location *.  Eliminate the "column_override" parameter and
      	the call to diagnostic_override_column.
      	Update the "done_lexing" clause to set range 0
      	on the rich_location, rather than overwriting a location_t.
      	* c-common.h (c_cpp_error): Convert parameter from location_t to
      	rich_location *.  Eliminate the "column_override" parameter.
      
      gcc/c/ChangeLog:
      	* c-decl.c (warn_defaults_to): Update for change in signature
      	of diagnostic_set_info.
      	* c-errors.c (pedwarn_c99): Likewise.
      	(pedwarn_c90): Likewise.
      	* c-objc-common.c (c_tree_printer): Update for new "caret_p" param
      	for textinfo::set_location.
      
      gcc/cp/ChangeLog:
      	* error.c (cp_printer): Update for new "caret_p" param for
      	textinfo::set_location.
      	(pedwarn_cxx98): Update for change in signature of
      	diagnostic_set_info.
      
      gcc/fortran/ChangeLog:
      	* cpp.c (cb_cpp_error): Convert parameter from location_t to
      	rich_location *.  Eliminate the "column_override" parameter.
      	* error.c (gfc_warning): Update for change in signature of
      	diagnostic_set_info.
      	(gfc_format_decoder): Update handling of %C/%L for changes
      	to struct text_info.
      	(gfc_diagnostic_starter): Use richloc when determining whether to
      	print one locus or two.  When handling a location that will
      	involve a call to diagnostic_show_locus, only attempt to print the
      	locus for the primary location, and don't call into
      	diagnostic_print_caret_line.
      	(gfc_warning_now_at): Update for change in signature of
      	diagnostic_set_info.
      	(gfc_warning_now): Likewise.
      	(gfc_error_now): Likewise.
      	(gfc_fatal_error): Likewise.
      	(gfc_error): Likewise.
      	(gfc_internal_error): Likewise.
      
      gcc/testsuite/ChangeLog:
      	* gcc.dg/plugin/diagnostic-test-show-locus-bw.c: New file.
      	* gcc.dg/plugin/diagnostic-test-show-locus-color.c: New file.
      	* gcc.dg/plugin/diagnostic_plugin_test_show_locus.c: New file.
      	* gcc.dg/plugin/plugin.exp (plugin_test_list): Add the above.
      	* lib/gcc-dg.exp: Load multiline.exp.
      
      libcpp/ChangeLog:
      	* errors.c (cpp_diagnostic): Update for change in signature
      	of "error" callback.
      	(cpp_diagnostic_with_line): Likewise, calling override_column
      	on the rich_location.
      	* include/cpplib.h (struct cpp_callbacks): Within "error"
      	callback, convert param from source_location to rich_location *,
      	and drop column_override param.
      	* include/line-map.h (struct source_range): New struct.
      	(struct location_range): New struct.
      	(class rich_location): New class.
      	(linemap_client_expand_location_to_spelling_point): New declaration.
      	* line-map.c (rich_location::rich_location): New ctors.
      	(rich_location::lazily_expand_location): New method.
      	(rich_location::override_column): New method.
      	(rich_location::add_range): New methods.
      	(rich_location::set_range): New method.
      
      From-SVN: r229884
      David Malcolm committed
    • Add stats on adhoc table to dump_line_table_statistics · ee015909
      gcc/ChangeLog:
      	* input.c (dump_line_table_statistics): Dump stats on adhoc table.
      
      libcpp/ChangeLog:
      	* include/line-map.h (struct linemap_stats): Add fields
      	"adhoc_table_size" and "adhoc_table_entries_used".
      	* line-map.c (linemap_get_statistics): Populate above fields.
      
      From-SVN: r229873
      David Malcolm committed
  3. 04 Nov, 2015 1 commit
    • ENABLE_CHECKING refactoring: remove remaining occurrences · a6c764d0
      libcpp/
      
      	* config.in: Regenerate.
      	* configure: Regenerate.
      	* configure.ac: Remove ENABLE_CHECKING.
      
      gcc/
      
      	* cfganal.c (inverted_post_order_compute): Remove conditional
      	compilation, use flag_checking.
      	* config.in: Regenerate.
      	* configure: Regenerate.
      	* configure.ac: Remove ENABLE_CHECKING.
      	* genconditions.c: Do not #undef ENABLE_CHECKING.
      	* sese.h (bb_in_region): Comment out broken check.
      	* tree-ssa-loop-manip.c (rewrite_into_loop_closed_ssa_1): Remove
      	conditional compilation, use flag_checking.
      
      From-SVN: r229758
      Mikhail Maltsev committed
  4. 03 Nov, 2015 1 commit
  5. 02 Nov, 2015 1 commit
  6. 21 Oct, 2015 2 commits
    • [PATCH 2/9] ENABLE_CHECKING refactoring: libcpp · 22d66382
      [PATCH 2/9] ENABLE_CHECKING refactoring: libcpp
              * include/line-map.h: Use CHECKING_P instead of ENABLE_CHECKING.
              * init.c: Likewise.
              * macro.c (struct macro_arg_token_iter, set_arg_token,
              macro_arg_token_iter_init, macro_arg_token_iter_forward,
              macro_arg_token_iter_get_token, macro_arg_token_iter_get_location,
              alloc_expanded_arg_mem, _cpp_backup_tokens): Likewise.
      
      From-SVN: r229154
      Mikhail Maltsev committed
    • [PATCH 1/9] ENABLE_CHECKING refactoring · 7ec491c0
      gcc/
      	* config.in: Regenerate.
      	* configure: Regenerate.
      	* configure.ac (CHECKING_P): Define.
      	* system.h: Use CHECKING_P.
      
      libcpp/
      	* config.in: Regenerate.
      	* configure: Regenerate.
      	* configure.ac (CHECKING_P): Define.
      	* system.h (fancy_abort): Declare.
      	(abort): Define.
      	(gcc_assert): Define. Use CHECKING_P.
      
      From-SVN: r229149
      Mikhail Maltsev committed
  7. 13 Oct, 2015 1 commit
    • [PATCH 1/9] ENABLE_CHECKING refactoring · 179b8d05
      [PATCH 1/9] ENABLE_CHECKING refactoring
      gcc/ChangeLog:
      
      2015-10-05  Mikhail Maltsev  <maltsevm@gmail.com>
      
      	* common.opt: Add flag_checking.
      	* system.h (CHECKING_P): Define.
      
      libcpp/ChangeLog:
      
      2015-10-05  Mikhail Maltsev  <maltsevm@gmail.com>
      
      	* system.h (CHECKING_P, gcc_checking_assert): Define.
      
      From-SVN: r228787
      Mikhail Maltsev committed
  8. 08 Oct, 2015 1 commit
  9. 21 Sep, 2015 1 commit
    • Handle lines encoded into several maps in linemap_position_for_loc_and_offset · 87b470b3
      linemap_position_for_loc_and_offset() tries to generate a location_t
      encoding a column offset from the current location, for example, point
      to a certain character inside a string. This is trivial to do when the
      new location "fits within" the map of the original location. However,
      it may happen that the (long) line corresponding to the original
      location is encoded in several maps, thus the new location should
      actually be encoded in a subsequent map from the original location.
      This patch detects this case and adjusts the map correspondingly.
      
      (This shows that the line-map representation is quite wasteful in this
      case, because line-maps always start at column 0. That is, map[0]
      highest location may encode up to line 8 column 80, then
      map[1]->start_location starts encoding at line 8 column 0. Thus, there
      are two location_t values that point to the same source location.)
      
      libcpp/ChangeLog:
      
      2015-09-21  Manuel López-Ibáñez  <manu@gcc.gnu.org>
      
      	PR c/66415
      	* line-map.c (linemap_position_for_loc_and_offset): Handle the
      	case of long lines encoded in multiple maps.
      
      gcc/testsuite/ChangeLog:
      
      2015-09-21  Manuel López-Ibáñez  <manu@gcc.gnu.org>
      
      	PR c/66415
      	* gcc.dg/cpp/pr66415-1.c: Test column number.
      
      From-SVN: r227975
      Manuel López-Ibáñez committed
  10. 07 Sep, 2015 1 commit
  11. 07 Aug, 2015 1 commit
    • Makefile.def (libiconv): Define bootstrap=true. · bf5372e7
      2015-08-06  Yaakov Selkowitz  <yselkowi@redhat.com>
      
      	* Makefile.def (libiconv): Define bootstrap=true.
      	Mark pdf/html/info as missing.
      	(configure-gcc): Depend on all-libiconv.
      	(all-gcc): Ditto.
      	(configure-libcpp): Ditto.
      	(all-libcpp): Ditto.
      	(configure-intl): Ditto.
      	(all-intl): Ditto.
      	* Makefile.in: Regenerate.
      
      intl/
      	* configure: Reflects renaming of configure.in to configure.ac
      
      libcpp/
      	* configure: Regenerate.
      
      gcc/
      	* configure.ac: Define LIBICONV_DEP with in-tree libiconv.
      	* configure: Regenerate.
      
      From-SVN: r226712
      Yaakov Selkowitz committed
  12. 31 Jul, 2015 1 commit
  13. 24 Jul, 2015 1 commit
  14. 08 Jul, 2015 1 commit
    • Address -Wsign-compare diagnostics · d17f7d59
      ... which have been introduced in r223152, for example hundreds of:
      
          [...]/gcc/input.h:37:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
      
      	libcpp/
      	* include/line-map.h (RESERVED_LOCATION_COUNT): Change type to
      	source_location.
      
      From-SVN: r225558
      Thomas Schwinge committed
  15. 03 Jul, 2015 1 commit
  16. 02 Jul, 2015 2 commits
  17. 30 Jun, 2015 2 commits
    • Implement N4197 - Adding u8 character literals · fe95b036
      
      libcpp:
      
      2015-06-30  Edward Smith-Rowland  <3dw4rd@verizon.net>
      
      	Implement N4197 - Adding u8 character literals
      	* include/cpplib.h (UTF8CHAR, UTF8CHAR_USERDEF): New cpp tokens;
      	(struct cpp_options): Add utf8_char_literals.
      	* init.c (struct lang_flags): Add utf8_char_literals;
      	(struct lang_flags lang_defaults): Add column for utf8_char_literals.
      	* macro.c (stringify_arg()): Treat CPP_UTF8CHAR token; 
      	* expr.c (cpp_userdef_char_remove_type(), cpp_userdef_char_add_type()):
      	Treat CPP_UTF8CHAR_USERDEF, CPP_UTF8CHAR tokens;
      	(cpp_userdef_char_p()): Treat CPP_UTF8CHAR_USERDEF token;
      	(eval_token(), _cpp_parse_expr()): Treat CPP_UTF8CHAR token.
      	* lex.c (lex_string(), _cpp_lex_direct()): Include CPP_UTF8CHAR tokens.
      	* charset.c (converter_for_type(), cpp_interpret_charconst()):
      	Treat CPP_UTF8CHAR token.
      
      
      gcc/c-family:
      
      2015-06-30  Edward Smith-Rowland  <3dw4rd@verizon.net>
      
      	Implement N4197 - Adding u8 character literals
      	* c-family/c-ada-spec.c (print_ada_macros()): Treat CPP_UTF8CHAR
      	like CPP_CHAR.
      	* c-family/c-common.c (c_parse_error()): print CPP_UTF8CHAR
      	and CPP_UTF8CHAR_USERDEF tokens.
      	* c-family/c-lex.c (c_lex_with_flags()): Treat CPP_UTF8CHAR_USERDEF
      	and CPP_UTF8CHAR tokens; (lex_charconst()): Treat CPP_UTF8CHAR token.
      
      
      gcc/cp:
      
      2015-06-30  Edward Smith-Rowland  <3dw4rd@verizon.net>
      
      	Implement N4197 - Adding u8 character literals
      	* parser.c (cp_parser_primary_expression()): Treat CPP_UTF8CHAR
      	and CPP_UTF8CHAR_USERDEF tokens;
      	(cp_parser_parenthesized_expression_list()): Treat CPP_UTF8CHAR token.
      
      
      gcc/testsuite:
      
      2015-06-30  Edward Smith-Rowland  <3dw4rd@verizon.net>
      
      	Implement N4197 - Adding u8 character literals
      	* g++.dg/cpp1z/utf8.C: New.
      	* g++.dg/cpp1z/utf8-neg.C: New.
      	* g++.dg/cpp1z/udlit-utf8char.C: New.
      
      From-SVN: r225185
      Edward Smith-Rowland committed
    • lex.c (search_line_sse42): New main loop using asm flag outputs. · dc6bcf52
      	* lex.c (search_line_sse42) [__GCC_ASM_FLAG_OUTPUTS__]: New main
      	loop using asm flag outputs.
      
      From-SVN: r225160
      Uros Bizjak committed
  18. 08 Jun, 2015 1 commit
  19. 26 May, 2015 1 commit
    • line-map.c (LINE_MAP_MAX_COLUMN_NUMBER… · 815facd3
      line-map.c (LINE_MAP_MAX_COLUMN_NUMBER LINE_MAP_MAX_LOCATION_WITH_COLS,LINE_MAP_MAX_SOURCE_LOCATION): New constants.
      
      libcpp/ChangeLog:
      
      2015-05-26  Manuel López-Ibáñez  <manu@gcc.gnu.org>
      
      	* line-map.c (LINE_MAP_MAX_COLUMN_NUMBER
      	LINE_MAP_MAX_LOCATION_WITH_COLS,LINE_MAP_MAX_SOURCE_LOCATION):
      	New constants.
      	(linemap_line_start): Use them.
      	(linemap_position_for_column): Use them.
      
      From-SVN: r223705
      Manuel López-Ibáñez committed
  20. 20 May, 2015 1 commit
    • libcpp: Eliminate most of the non-const/reference-returning inline fns · c819ed29
      gcc/java/ChangeLog:
      	* jcf-parse.c (set_source_filename): Replace write through
      	ORDINARY_MAP_FILE_NAME with direct access to "to_file".
      
      libcpp/ChangeLog:
      	* include/line-map.h (MAP_START_LOCATION): Eliminate the non-const
      	variant, and tweak comment for the const variant.
      	(ORDINARY_MAP_STARTING_LINE_NUMBER): Drop the non-const variant.
      	(ORDINARY_MAP_INCLUDER_FILE_INDEX): Likewise.
      	(ORDINARY_MAP_IN_SYSTEM_HEADER_P): Likewise.
      	(SET_ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Delete.
      	(ORDINARY_MAP_FILE_NAME): Drop the non-const variant.
      	(MACRO_MAP_MACRO): Likewise.
      	(MACRO_MAP_NUM_MACRO_TOKENS): Likewise.
      	(MACRO_MAP_LOCATIONS): Likewise.
      	(MACRO_MAP_EXPANSION_POINT_LOCATION): Likewise.
      	* line-map.c (linemap_add): Replace writes through macros with
      	direct field accesses.
      	(linemap_enter_macro): Likewise.
      	(linemap_line_start): Likewise.
      
      From-SVN: r223435
      David Malcolm committed
  21. 19 May, 2015 1 commit
    • Replace line_map union with C++ class hierarchy · 0e50b624
      gcc/ChangeLog:
      	* diagnostic.c (diagnostic_report_current_module): Strengthen
      	local "new_map" from const line_map * to
      	const line_map_ordinary *.
      	* genmatch.c (error_cb): Likewise for local "map".
      	(output_line_directive): Likewise for local "map".
      	* input.c (expand_location_1): Likewise for local "map".
      	Pass NULL rather than &map to
      	linemap_unwind_to_first_non_reserved_loc, since the value is never
      	read from there, and the value written back not read from here.
      	(is_location_from_builtin_token): Strengthen local "map" from
      	const line_map * to const line_map_ordinary *.
      	(dump_location_info): Strengthen locals "map" from
      	line_map *, one to const line_map_ordinary *, the other
      	to const line_map_macro *.
      	* tree-diagnostic.c (loc_map_pair): Strengthen field "map" from
      	const line_map * to const line_map_macro *.
      	(maybe_unwind_expanded_macro_loc): Add a call to
      	linemap_check_macro when writing to the "map" field of the
      	loc_map_pair.
      	Introduce local const line_map_ordinary * "ord_map", using it in
      	place of "map" in the part of the function where we know we have
      	an ordinary map.  Strengthen local "m" from const line_map * to
      	const line_map_ordinary *.
      
      gcc/ada/ChangeLog:
      	* gcc-interface/trans.c (Sloc_to_locus1): Strenghthen local "map"
      	from line_map * to line_map_ordinary *.
      
      gcc/c-family/ChangeLog:
      	* c-common.h (fe_file_change): Strengthen param from
      	const line_map * to const line_map_ordinary *.
      	(pp_file_change): Likewise.
      	* c-lex.c (fe_file_change): Likewise.
      	(cb_define): Use linemap_check_ordinary when invoking
      	SOURCE_LINE.
      	(cb_undef): Likewise.
      	* c-opts.c (c_finish_options): Use linemap_check_ordinary when
      	invoking cb_file_change.
      	(c_finish_options): Likewise.
      	(push_command_line_include): Likewise.
      	(cb_file_change): Strengthen param "new_map" from
      	const line_map * to const line_map_ordinary *.
      	* c-ppoutput.c (cb_define): Likewise for local "map".
      	(pp_file_change): Likewise for param "map" and local "from".
      
      gcc/fortran/ChangeLog:
      	* cpp.c (maybe_print_line): Strengthen local "map" from
      	const line_map * to const line_map_ordinary *.
      	(cb_file_change): Likewise for param "map" and local "from".
      	(cb_line_change): Likewise for local "map".
      
      libcpp/ChangeLog:
      	* directives.c (do_line): Strengthen local "map" from
      	const line_map * to const line_map_ordinary *.
      	(do_linemarker): Likewise.
      	(_cpp_do_file_change): Assert that we're not dealing with
      	a macro map.  Introduce local "ord_map" via a call to
      	linemap_check_ordinary, guarded within the check for
      	non-NULL.  Use it for typesafety.
      	* files.c (cpp_make_system_header): Strengthen local "map" from
      	const line_map * to const line_map_ordinary *.
      	* include/cpplib.h (struct cpp_callbacks): Likewise for second
      	parameter of "file_change" callback.
      	* include/line-map.h (struct line_map): Convert from a struct
      	containing a union to a base class.
      	(struct line_map_ordinary): Convert to a subclass of line_map.
      	(struct line_map_macro): Likewise.
      	(linemap_check_ordinary): Strengthen return type from line_map *
      	to line_map_ordinary *, and add a const-variant.
      	(linemap_check_macro): New pair of functions.
      	(ORDINARY_MAP_STARTING_LINE_NUMBER): Strengthen param from
      	const line_map * to const line_map_ordinary *, eliminating call
      	to linemap_check_ordinary.  Likewise for the non-const variant.
      	(ORDINARY_MAP_INCLUDER_FILE_INDEX): Likewise.
      	(ORDINARY_MAP_IN_SYSTEM_HEADER_P): Likewise.
      	(ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Likewise.
      	(ORDINARY_MAP_FILE_NAME): Likewise.
      	(MACRO_MAP_MACRO): Strengthen param from const line_map * to
      	const line_map_macro *.  Likewise for the non-const variant.
      	(MACRO_MAP_NUM_MACRO_TOKENS): Likewise.
      	(MACRO_MAP_LOCATIONS): Likewise.
      	(MACRO_MAP_EXPANSION_POINT_LOCATION): Likewise.
      	(struct maps_info): Replace with...
      	(struct maps_info_ordinary):...this and...
      	(struct maps_info_macro): ...this.
      	(struct line_maps): Convert fields "info_ordinary" and
      	"info_macro" to the above new structs.
      	(LINEMAPS_MAP_INFO): Delete both functions.
      	(LINEMAPS_MAPS): Likewise.
      	(LINEMAPS_ALLOCATED): Rewrite both variants to avoid using
      	LINEMAPS_MAP_INFO.
      	(LINEMAPS_USED): Likewise.
      	(LINEMAPS_CACHE): Likewise.
      	(LINEMAPS_MAP_AT): Likewise.
      	(LINEMAPS_ORDINARY_MAPS): Strengthen return type from line_map *
      	to line_map_ordinary *.
      	(LINEMAPS_ORDINARY_MAP_AT): Likewise.
      	(LINEMAPS_LAST_ORDINARY_MAP): Likewise.
      	(LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP): Likewise.
      	(LINEMAPS_MACRO_MAPS): Strengthen return type from line_map * to
      	line_map_macro *.
      	(LINEMAPS_MACRO_MAP_AT): Likewise.
      	(LINEMAPS_LAST_MACRO_MAP): Likewise.
      	(LINEMAPS_LAST_ALLOCATED_MACRO_MAP): Likewise.
      	(linemap_map_get_macro_name): Strengthen param from
      	const line_map * to const line_map_macro *.
      	(SOURCE_LINE): Strengthen first param from const line_map * to
      	const line_map_ordinary *, removing call to
      	linemap_check_ordinary.
      	(SOURCE_COLUMN): Likewise.
      	(LAST_SOURCE_LINE_LOCATION): Likewise.
      	(LAST_SOURCE_LINE): Strengthen first param from const line_map *
      	to const line_map_ordinary *.
      	(LAST_SOURCE_COLUMN): Likewise.
      	(INCLUDED_FROM): Strengthen return type from line_map * to
      	line_map_ordinary *., and second param from const line_map *
      	to const line_map_ordinary *, removing call to
      	linemap_check_ordinary.
      	(MAIN_FILE_P): Strengthen param from const line_map * to
      	const line_map_ordinary *, removing call to
      	linemap_check_ordinary.
      	(linemap_position_for_line_and_column): Strengthen param from
      	const line_map * to const line_map_ordinary *.
      	(LINEMAP_FILE): Strengthen param from const line_map * to
      	const line_map_ordinary *, removing call to
      	linemap_check_ordinary.
      	(LINEMAP_LINE): Likewise.
      	(LINEMAP_SYSP): Likewise.
      	(linemap_resolve_location): Strengthen final param from
      	const line_map ** to const line_map_ordinary **.
      	* internal.h (CPP_INCREMENT_LINE): Likewise for local "map".
      	(linemap_enter_macro): Strengthen return type from
      	const line_map * to const line_map_macro *.
      	(linemap_add_macro_token): Likewise for first param.
      	* line-map.c (linemap_check_files_exited): Strengthen local "map"
      	from const line_map * to const line_map_ordinary *.
      	(new_linemap): Introduce local "map_size" and use it when
      	calculating how large the buffer should be.  Rewrite based
      	on change of info_macro and info_ordinary into distinct types.
      	(linemap_add): Strengthen locals "map" and "from" from line_map *
      	to line_map_ordinary *.
      	(linemap_enter_macro): Strengthen return type from
      	const line_map * to const line_map_macro *, and local "map" from
      	line_map * to line_map_macro *.
      	(linemap_add_macro_token): Strengthen param "map" from
      	const line_map * to const line_map_macro *.
      	(linemap_line_start): Strengthen local "map" from line_map * to
      	line_map_ordinary *.
      	(linemap_position_for_column): Likewise.
      	(linemap_position_for_line_and_column): Strengthen first param
      	from const line_map * to const line_map_ordinary *.
      	(linemap_position_for_loc_and_offset): Strengthen local "map" from
      	const line_map * to const line_map_ordinary *.
      	(linemap_ordinary_map_lookup): Likewise for return type and locals
      	"cached" and "result".
      	(linemap_macro_map_lookup): Strengthen return type and locals
      	"cached" and "result" from const line_map * to
      	const line_map_macro *.
      	(linemap_macro_map_loc_to_exp_point): Likewise for param "map".
      	(linemap_macro_map_loc_to_def_point): Likewise.
      	(linemap_macro_map_loc_unwind_toward_spelling): Likewise.
      	(linemap_get_expansion_line): Strengthen local "map" from
      	const line_map * to const line_map_ordinary *.
      	(linemap_get_expansion_filename): Likewise.
      	(linemap_map_get_macro_name): Strengthen param from
      	const line_map * to const line_map_macro *.
      	(linemap_location_in_system_header_p): Add call to
      	linemap_check_ordinary in region guarded by
      	!linemap_macro_expansion_map_p.  Introduce local "macro_map" via
      	linemap_check_macro in other region, using it in place of "map"
      	for typesafety.
      	(first_map_in_common_1): Add calls to linemap_check_macro.
      	(trace_include): Strengthen param "map" from const line_map * to
      	const line_map_ordinary *.
      	(linemap_macro_loc_to_spelling_point): Strengthen final param from
      	const line_map ** to const line_map_ordinary **.  Replace a
      	C-style cast with a const_cast, and add calls to
      	linemap_check_macro and linemap_check_ordinary.
      	(linemap_macro_loc_to_def_point): Likewise.
      	(linemap_macro_loc_to_exp_point): Likewise.
      	(linemap_resolve_location): Strengthen final param from
      	const line_map ** to const line_map_ordinary **.
      	(linemap_unwind_toward_expansion): Introduce local "macro_map" via
      	a checked cast and use it in place of *map.
      	(linemap_unwind_to_first_non_reserved_loc): Strengthen local
      	"map1" from const line_map * to const line_map_ordinary *.
      	(linemap_expand_location): Introduce local "ord_map" via a checked
      	cast and use it in place of map.
      	(linemap_dump): Make local "map" const.  Strengthen local
      	"includer_map" from line_map * to const line_map_ordinary *.
      	Introduce locals "ord_map" and "macro_map" via checked casts and
      	use them in place of "map" for typesafety.
      	(linemap_dump_location): Strengthen local "map" from
      	const line_map * to const line_map_ordinary *.
      	(linemap_get_file_highest_location): Update for elimination of
      	union.
      	(linemap_get_statistics): Strengthen local "cur_map" from
      	line_map * to const line_map_macro *.  Update uses of sizeof to
      	use the appropriate line_map subclasses.
      	* macro.c (_cpp_warn_if_unused_macro): Add call to
      	linemap_check_ordinary.
      	(builtin_macro): Strengthen local "map" from const line_map * to
      	const line_map_macro *.
      	(enter_macro_context): Likewise.
      	(replace_args): Likewise.
      	(tokens_buff_put_token_to): Likewise for param "map".
      	(tokens_buff_add_token): Likewise.
      
      From-SVN: r223365
      David Malcolm committed
  22. 13 May, 2015 4 commits
    • libcpp/input.c: Add a way to visualize the linemaps (-fdump-internal-locations) · ba4ad400
      gcc/ChangeLog:
      	* common.opt (fdump-internal-locations): New option.
      	* input.c: Include diagnostic-core.h.
      	(get_end_location): New function.
      	(write_digit): New function.
      	(write_digit_row): New function.
      	(dump_location_range): New function.
      	(dump_labelled_location_range): New function.
      	(dump_location_info): New function.
      	* input.h (dump_location_info): New prototype.
      	* toplev.c (compile_file): Handle flag_dump_locations.
      
      libcpp/ChangeLog:
      	* include/line-map.h (source_location): Add a reference to
      	location-example.txt to the descriptive comment.
      	* location-example.txt: New file.
      
      From-SVN: r223163
      David Malcolm committed
    • libcpp: Replace macro usage with C++ constructs · 0501dbd9
      libcpp/ChangeLog:
      	* include/line-map.h (MAX_SOURCE_LOCATION): Convert from a macro
      	to a const source_location.
      	(RESERVED_LOCATION_COUNT): Likewise.
      	(linemap_check_ordinary): Convert from a macro to a pair of inline
      	functions, for const/non-const arguments.
      	(MAP_START_LOCATION): Likewise.
      	(ORDINARY_MAP_STARTING_LINE_NUMBER): Likewise.
      	(ORDINARY_MAP_INCLUDER_FILE_INDEX): Likewise.
      	(ORDINARY_MAP_IN_SYSTEM_HEADER_P): Likewise.
      	(ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Convert from a macro to a
      	pair of inline functions, for const/non-const arguments, where the
      	latter is named...
      	(SET_ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): New function.
      	(ORDINARY_MAP_FILE_NAME): Convert from a macro to a pair of inline
      	functions, for const/non-const arguments.
      	(MACRO_MAP_MACRO): Likewise.
      	(MACRO_MAP_NUM_MACRO_TOKENS): Likewise.
      	(MACRO_MAP_LOCATIONS): Likewise.
      	(MACRO_MAP_EXPANSION_POINT_LOCATION): Likewise.
      	(LINEMAPS_MAP_INFO): Likewise.
      	(LINEMAPS_MAPS): Likewise.
      	(LINEMAPS_ALLOCATED): Likewise.
      	(LINEMAPS_USED): Likewise.
      	(LINEMAPS_CACHE): Likewise.
      	(LINEMAPS_ORDINARY_CACHE): Likewise.
      	(LINEMAPS_MACRO_CACHE): Likewise.
      	(LINEMAPS_MAP_AT): Convert from a macro to an inline function.
      	(LINEMAPS_LAST_MAP): Likewise.
      	(LINEMAPS_LAST_ALLOCATED_MAP): Likewise.
      	(LINEMAPS_ORDINARY_MAPS): Likewise.
      	(LINEMAPS_ORDINARY_MAP_AT): Likewise.
      	(LINEMAPS_ORDINARY_ALLOCATED): Likewise.
      	(LINEMAPS_ORDINARY_USED): Likewise.
      	(LINEMAPS_LAST_ORDINARY_MAP): Likewise.
      	(LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP): Likewise.
      	(LINEMAPS_MACRO_MAPS): Likewise.
      	(LINEMAPS_MACRO_MAP_AT): Likewise.
      	(LINEMAPS_MACRO_ALLOCATED): Likewise.
      	(LINEMAPS_MACRO_USED): Likewise.
      	(LINEMAPS_MACRO_LOWEST_LOCATION): Likewise.
      	(LINEMAPS_LAST_MACRO_MAP): Likewise.
      	(LINEMAPS_LAST_ALLOCATED_MACRO_MAP): Likewise.
      	(IS_ADHOC_LOC): Likewise.
      	(COMBINE_LOCATION_DATA): Likewise.
      	(SOURCE_LINE): Likewise.
      	(SOURCE_COLUMN): Likewise.
      	(LAST_SOURCE_LINE_LOCATION): Likewise.
      	(LAST_SOURCE_LINE): Likewise.
      	(LAST_SOURCE_COLUMN): Likewise.
      	(LAST_SOURCE_LINE_LOCATION)
      	(INCLUDED_FROM): Likewise.
      	(MAIN_FILE_P): Likewise.
      	(LINEMAP_FILE): Likewise.
      	(LINEMAP_LINE): Likewise.
      	(LINEMAP_SYSP): Likewise.
      	(linemap_location_before_p): Likewise.
      	* line-map.c (linemap_check_files_exited): Make local "map" const.
      	(linemap_add): Use SET_ORDINARY_MAP_NUMBER_OF_COLUMN_BITS.
      	(linemap_line_start): Likewise.
      
      From-SVN: r223152
      David Malcolm committed
    • libcpp: Bump to automake 1.11.6 · eb70f327
      2015-05-13  Michael Haubenwallner  <michael.haubenwallner@ssi-schaefer.com>
      
      	* aclocal.m4: Regenerated with automake-1.11.6.
      
      From-SVN: r223133
      Michael Haubenwallner committed
    • line-map.h: move linemap_assert and friends higher up within the file · 60c12095
      libcpp/ChangeLog:
      	* include/line-map.h (linemap_assert): Move up within the file to
      	before all of the map accessor macros.
      	(linemap_assert_fails): Likewise.
      	(linemap_check_ordinary): Likewise.
      	(linemap_macro_expansion_map_p): Likewise.
      
      From-SVN: r223121
      David Malcolm committed
  23. 12 May, 2015 1 commit
    • Implement -Wmisleading-indentation · c3388e62
      gcc/ChangeLog:
      	* doc/invoke.texi (Warning Options): Add -Wmisleading-indentation.
      	(-Wmisleading-indentation): New option.
      	* Makefile.in (C_COMMON_OBJS): Add c-family/c-indentation.o.
      
      gcc/c-family/ChangeLog:
      	* c-common.h (warn_for_misleading_indentation): New prototype.
      	* c-indentation.c: New file.
      	* c.opt (Wmisleading-indentation): New option.
      
      gcc/c/ChangeLog:
      	* c-parser.c (c_parser_if_body): Add param "if_loc", use it
      	to add a call to warn_for_misleading_indentation.
      	(c_parser_else_body): Likewise, adding param "else_loc".
      	(c_parser_if_statement): Check for misleading indentation.
      	(c_parser_while_statement): Likewise.
      	(c_parser_for_statement): Likewise.
      
      gcc/cp/ChangeLog:
      	* parser.c (cp_parser_selection_statement): Add location and
      	guard_kind arguments to calls to
      	cp_parser_implicitly_scoped_statement.
      	(cp_parser_iteration_statement): Likewise for calls to
      	cp_parser_already_scoped_statement.
      	(cp_parser_implicitly_scoped_statement): Add "guard_loc" and
      	"guard_kind" params; use them to warn for misleading
      	indentation.
      	(cp_parser_already_scoped_statement): Likewise.
      
      gcc/testsuite/ChangeLog:
      	* c-c++-common/Wmisleading-indentation.c: New testcase.
      	* c-c++-common/Wmisleading-indentation-2.c: New testcase.
      	* c-c++-common/Wmisleading-indentation-2.md: New file.
      
      libcpp/ChangeLog:
      	* directives.c (do_line): Set seen_line_directive on line_table.
      	(do_linemarker): Likewise.
      	* include/line-map.h (struct line_maps): Add new field
      	"seen_line_directive".
      
      From-SVN: r223098
      David Malcolm committed
  24. 09 May, 2015 1 commit
  25. 05 May, 2015 2 commits
    • Fix indentation issues seen by -Wmisleading-indentation · 21c0a521
      gcc/ChangeLog:
      	* auto-profile.c (afdo_find_equiv_class): Fix indentation so
      	that it reflects the block structure.
      	(afdo_propagate_edge): Likewise.
      	(afdo_calculate_branch_prob): Likewise.
      	(afdo_annotate_cfg): Likewise.
      	* cfgcleanup.c (equal_different_set_p): Likewise.
      	(try_crossjump_to_edge): Likewise.
      	* cgraph.c (cgraph_node::verify_node): Likewise.
      	* cgraphunit.c (expand_all_functions): Likewise.
      	* config/i386/i386.c (ix86_expand_copysign): Likewise.
      	(exact_dependency_1): Likewise.
      	* dwarf2asm.c (dw2_output_indirect_constants): Likewise.
      	* dwarf2out.c (tree_add_const_value_attribute_for_decl): Likewise.
      	* gensupport.c (process_define_subst): Likewise.
      	* lto-wrapper.c (merge_and_complain): Likewise.
      	* tree-if-conv.c (if_convertible_bb_p): Likewise.
      	* tree-ssa-loop-prefetch.c (find_or_create_group): Likewise.
      	* tree-ssa-tail-merge.c (gsi_advance_fw_nondebug_nonlocal): Likewise.
      	* tree-vect-data-refs.c (vect_grouped_load_supported): Likewise.
      	* tree-vect-loop.c (vectorizable_reduction): Likewise.
      	* tree-vect-slp.c (vect_transform_slp_perm_load): Likewise.
      	* tree-vect-stmts.c (vectorizable_shift): Likewise.
      	* tree-vrp.c (vrp_finalize): Likewise.
      	* tree.c (variably_modified_type_p): Likewise.
      
      gcc/cp/ChangeLog:
      	* parser.c (cp_parser_asm_definition): Only test for
              error_mark_node if "outputs" was just set.
      	(cp_parser_asm_definition): Likewise for "inputs".
      
      gcc/fortran/ChangeLog:
      	* expr.c (check_inquiry): Fix indentation so that it reflects the
      	block structure.
      	* interface.c (compare_parameter): Likewise.
      	* parse.c (parse_oacc_structured_block): Likewise.
      	* target-memory.c (expr_to_char): Likewise.
      	* trans-types.c (gfc_init_kinds): Likewise.
      
      libcpp/ChangeLog:
      	* pch.c (cpp_valid_state): Fix indentation so that it reflects the
      	block structure.
      
      From-SVN: r222823
      David Malcolm committed
    • libcpp: Improvements to comments in line-map.h/c · c87b25e6
      libcpp/ChangeLog:
      	* include/line-map.h: Fix comment at the top of the file.
      	(source_location): Rewrite and expand the comment for this
      	typedef, adding an ascii-art table to clarify how source_location
      	values are allocated.
      	* line-map.c: Fix comment at the top of the file.
      
      From-SVN: r222806
      David Malcolm committed
  26. 01 May, 2015 1 commit
  27. 30 Apr, 2015 1 commit
  28. 13 Apr, 2015 1 commit
  29. 12 Apr, 2015 1 commit
  30. 10 Apr, 2015 2 commits
  31. 09 Apr, 2015 1 commit