OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [gcc/] [tree-diagnostic.c] - Diff between revs 684 and 783

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 684 Rev 783
/* Language-independent diagnostic subroutines for the GNU Compiler
/* Language-independent diagnostic subroutines for the GNU Compiler
   Collection that are only for use in the compilers proper and not
   Collection that are only for use in the compilers proper and not
   the driver or other programs.
   the driver or other programs.
   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
   2009, 2010 Free Software Foundation, Inc.
   2009, 2010 Free Software Foundation, Inc.
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify it under
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
Software Foundation; either version 3, or (at your option) any later
version.
version.
 
 
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
<http://www.gnu.org/licenses/>.  */
 
 
#include "config.h"
#include "config.h"
#include "system.h"
#include "system.h"
#include "coretypes.h"
#include "coretypes.h"
#include "tree.h"
#include "tree.h"
#include "diagnostic.h"
#include "diagnostic.h"
#include "tree-diagnostic.h"
#include "tree-diagnostic.h"
#include "langhooks.h"
#include "langhooks.h"
#include "langhooks-def.h"
#include "langhooks-def.h"
#include "vec.h"
#include "vec.h"
 
 
/* Prints out, if necessary, the name of the current function
/* Prints out, if necessary, the name of the current function
   that caused an error.  Called from all error and warning functions.  */
   that caused an error.  Called from all error and warning functions.  */
void
void
diagnostic_report_current_function (diagnostic_context *context,
diagnostic_report_current_function (diagnostic_context *context,
                                    diagnostic_info *diagnostic)
                                    diagnostic_info *diagnostic)
{
{
  diagnostic_report_current_module (context, diagnostic->location);
  diagnostic_report_current_module (context, diagnostic->location);
  lang_hooks.print_error_function (context, input_filename, diagnostic);
  lang_hooks.print_error_function (context, input_filename, diagnostic);
}
}
 
 
void
void
default_tree_diagnostic_starter (diagnostic_context *context,
default_tree_diagnostic_starter (diagnostic_context *context,
                                 diagnostic_info *diagnostic)
                                 diagnostic_info *diagnostic)
{
{
  diagnostic_report_current_function (context, diagnostic);
  diagnostic_report_current_function (context, diagnostic);
  pp_set_prefix (context->printer, diagnostic_build_prefix (context,
  pp_set_prefix (context->printer, diagnostic_build_prefix (context,
                                                            diagnostic));
                                                            diagnostic));
}
}
 
 
/* This is a pair made of a location and the line map it originated
/* This is a pair made of a location and the line map it originated
   from.  It's used in the maybe_unwind_expanded_macro_loc function
   from.  It's used in the maybe_unwind_expanded_macro_loc function
   below.  */
   below.  */
typedef struct
typedef struct
{
{
  const struct line_map *map;
  const struct line_map *map;
  source_location where;
  source_location where;
} loc_map_pair;
} loc_map_pair;
 
 
DEF_VEC_O (loc_map_pair);
DEF_VEC_O (loc_map_pair);
DEF_VEC_ALLOC_O (loc_map_pair, heap);
DEF_VEC_ALLOC_O (loc_map_pair, heap);
 
 
/* Unwind the different macro expansions that lead to the token which
/* Unwind the different macro expansions that lead to the token which
   location is WHERE and emit diagnostics showing the resulting
   location is WHERE and emit diagnostics showing the resulting
   unwound macro expansion trace.  Let's look at an example to see how
   unwound macro expansion trace.  Let's look at an example to see how
   the trace looks like.  Suppose we have this piece of code,
   the trace looks like.  Suppose we have this piece of code,
   artificially annotated with the line numbers to increase
   artificially annotated with the line numbers to increase
   legibility:
   legibility:
 
 
    $ cat -n test.c
    $ cat -n test.c
      1    #define OPERATE(OPRD1, OPRT, OPRD2) \
      1    #define OPERATE(OPRD1, OPRT, OPRD2) \
      2      OPRD1 OPRT OPRD2;
      2      OPRD1 OPRT OPRD2;
      3
      3
      4    #define SHIFTL(A,B) \
      4    #define SHIFTL(A,B) \
      5      OPERATE (A,<<,B)
      5      OPERATE (A,<<,B)
      6
      6
      7    #define MULT(A) \
      7    #define MULT(A) \
      8      SHIFTL (A,1)
      8      SHIFTL (A,1)
      9
      9
     10    void
     10    void
     11    g ()
     11    g ()
     12    {
     12    {
     13      MULT (1.0);// 1.0 << 1; <-- so this is an error.
     13      MULT (1.0);// 1.0 << 1; <-- so this is an error.
     14    }
     14    }
 
 
   Here is the diagnostic that we want the compiler to generate:
   Here is the diagnostic that we want the compiler to generate:
 
 
    test.c: In function 'g':
    test.c: In function 'g':
    test.c:5:14: error: invalid operands to binary << (have 'double' and 'int')
    test.c:5:14: error: invalid operands to binary << (have 'double' and 'int')
    test.c:2:9: note: in expansion of macro 'OPERATE'
    test.c:2:9: note: in expansion of macro 'OPERATE'
    test.c:5:3: note: expanded from here
    test.c:5:3: note: expanded from here
    test.c:5:14: note: in expansion of macro 'SHIFTL'
    test.c:5:14: note: in expansion of macro 'SHIFTL'
    test.c:8:3: note: expanded from here
    test.c:8:3: note: expanded from here
    test.c:8:3: note: in expansion of macro 'MULT2'
    test.c:8:3: note: in expansion of macro 'MULT2'
    test.c:13:3: note: expanded from here
    test.c:13:3: note: expanded from here
 
 
   The part that goes from the third to the eighth line of this
   The part that goes from the third to the eighth line of this
   diagnostic (the lines containing the 'note:' string) is called the
   diagnostic (the lines containing the 'note:' string) is called the
   unwound macro expansion trace.  That's the part generated by this
   unwound macro expansion trace.  That's the part generated by this
   function.
   function.
 
 
   If FIRST_EXP_POINT_MAP is non-null, *FIRST_EXP_POINT_MAP is set to
   If FIRST_EXP_POINT_MAP is non-null, *FIRST_EXP_POINT_MAP is set to
   the map of the location in the source that first triggered the
   the map of the location in the source that first triggered the
   macro expansion.  This must be an ordinary map.  */
   macro expansion.  This must be an ordinary map.  */
 
 
static void
static void
maybe_unwind_expanded_macro_loc (diagnostic_context *context,
maybe_unwind_expanded_macro_loc (diagnostic_context *context,
                                 diagnostic_info *diagnostic,
                                 diagnostic_info *diagnostic,
                                 source_location where,
                                 source_location where,
                                 const struct line_map **first_exp_point_map)
                                 const struct line_map **first_exp_point_map)
{
{
  const struct line_map *map;
  const struct line_map *map;
  VEC(loc_map_pair,heap) *loc_vec = NULL;
  VEC(loc_map_pair,heap) *loc_vec = NULL;
  unsigned ix;
  unsigned ix;
  loc_map_pair loc, *iter;
  loc_map_pair loc, *iter;
 
 
  map = linemap_lookup (line_table, where);
  map = linemap_lookup (line_table, where);
  if (!linemap_macro_expansion_map_p (map))
  if (!linemap_macro_expansion_map_p (map))
    return;
    return;
 
 
  /* Let's unwind the macros that got expanded and led to the token
  /* Let's unwind the macros that got expanded and led to the token
     which location is WHERE.  We are going to store these macros into
     which location is WHERE.  We are going to store these macros into
     LOC_VEC, so that we can later walk it at our convenience to
     LOC_VEC, so that we can later walk it at our convenience to
     display a somewhat meaningful trace of the macro expansion
     display a somewhat meaningful trace of the macro expansion
     history to the user.  Note that the first macro of the trace
     history to the user.  Note that the first macro of the trace
     (which is OPERATE in the example above) is going to be stored at
     (which is OPERATE in the example above) is going to be stored at
     the beginning of LOC_VEC.  */
     the beginning of LOC_VEC.  */
 
 
  do
  do
    {
    {
      loc.where = where;
      loc.where = where;
      loc.map = map;
      loc.map = map;
 
 
      VEC_safe_push (loc_map_pair, heap, loc_vec, &loc);
      VEC_safe_push (loc_map_pair, heap, loc_vec, &loc);
 
 
      /* WHERE is the location of a token inside the expansion of a
      /* WHERE is the location of a token inside the expansion of a
         macro.  MAP is the map holding the locations of that macro
         macro.  MAP is the map holding the locations of that macro
         expansion.  Let's get the location of the token inside the
         expansion.  Let's get the location of the token inside the
         context that triggered the expansion of this macro.
         context that triggered the expansion of this macro.
         This is basically how we go "down" in the trace of macro
         This is basically how we go "down" in the trace of macro
         expansions that led to WHERE.  */
         expansions that led to WHERE.  */
      where = linemap_unwind_toward_expansion (line_table, where, &map);
      where = linemap_unwind_toward_expansion (line_table, where, &map);
    } while (linemap_macro_expansion_map_p (map));
    } while (linemap_macro_expansion_map_p (map));
 
 
  if (first_exp_point_map)
  if (first_exp_point_map)
    *first_exp_point_map = map;
    *first_exp_point_map = map;
 
 
  /* Walk LOC_VEC and print the macro expansion trace, unless the
  /* Walk LOC_VEC and print the macro expansion trace, unless the
     first macro which expansion triggered this trace was expanded
     first macro which expansion triggered this trace was expanded
     inside a system header.  */
     inside a system header.  */
  if (!LINEMAP_SYSP (map))
  if (!LINEMAP_SYSP (map))
    FOR_EACH_VEC_ELT (loc_map_pair, loc_vec, ix, iter)
    FOR_EACH_VEC_ELT (loc_map_pair, loc_vec, ix, iter)
      {
      {
        source_location resolved_def_loc = 0, resolved_exp_loc = 0;
        source_location resolved_def_loc = 0, resolved_exp_loc = 0;
        diagnostic_t saved_kind;
        diagnostic_t saved_kind;
        const char *saved_prefix;
        const char *saved_prefix;
        source_location saved_location;
        source_location saved_location;
 
 
        /* Okay, now here is what we want.  For each token resulting
        /* Okay, now here is what we want.  For each token resulting
           from macro expansion we want to show: 1/ where in the
           from macro expansion we want to show: 1/ where in the
           definition of the macro the token comes from; 2/ where the
           definition of the macro the token comes from; 2/ where the
           macro got expanded.  */
           macro got expanded.  */
 
 
        /* Resolve the location iter->where into the locus 1/ of the
        /* Resolve the location iter->where into the locus 1/ of the
           comment above.  */
           comment above.  */
        resolved_def_loc =
        resolved_def_loc =
          linemap_resolve_location (line_table, iter->where,
          linemap_resolve_location (line_table, iter->where,
                                    LRK_MACRO_DEFINITION_LOCATION, NULL);
                                    LRK_MACRO_DEFINITION_LOCATION, NULL);
 
 
        /* Resolve the location of the expansion point of the macro
        /* Resolve the location of the expansion point of the macro
           which expansion gave the token represented by def_loc.
           which expansion gave the token represented by def_loc.
           This is the locus 2/ of the earlier comment.  */
           This is the locus 2/ of the earlier comment.  */
        resolved_exp_loc =
        resolved_exp_loc =
          linemap_resolve_location (line_table,
          linemap_resolve_location (line_table,
                                    MACRO_MAP_EXPANSION_POINT_LOCATION (iter->map),
                                    MACRO_MAP_EXPANSION_POINT_LOCATION (iter->map),
                                    LRK_MACRO_DEFINITION_LOCATION, NULL);
                                    LRK_MACRO_DEFINITION_LOCATION, NULL);
 
 
        saved_kind = diagnostic->kind;
        saved_kind = diagnostic->kind;
        saved_prefix = context->printer->prefix;
        saved_prefix = context->printer->prefix;
        saved_location = diagnostic->location;
        saved_location = diagnostic->location;
 
 
        diagnostic->kind = DK_NOTE;
        diagnostic->kind = DK_NOTE;
        diagnostic->location = resolved_def_loc;
        diagnostic->location = resolved_def_loc;
        pp_base_set_prefix (context->printer,
        pp_base_set_prefix (context->printer,
                            diagnostic_build_prefix (context,
                            diagnostic_build_prefix (context,
                                                     diagnostic));
                                                     diagnostic));
        pp_newline (context->printer);
        pp_newline (context->printer);
        pp_printf (context->printer, "in expansion of macro '%s'",
        pp_printf (context->printer, "in expansion of macro '%s'",
                   linemap_map_get_macro_name (iter->map));
                   linemap_map_get_macro_name (iter->map));
        pp_destroy_prefix (context->printer);
        pp_destroy_prefix (context->printer);
 
 
        diagnostic->location = resolved_exp_loc;
        diagnostic->location = resolved_exp_loc;
        pp_base_set_prefix (context->printer,
        pp_base_set_prefix (context->printer,
                            diagnostic_build_prefix (context,
                            diagnostic_build_prefix (context,
                                                     diagnostic));
                                                     diagnostic));
        pp_newline (context->printer);
        pp_newline (context->printer);
        pp_printf (context->printer, "expanded from here");
        pp_printf (context->printer, "expanded from here");
        pp_destroy_prefix (context->printer);
        pp_destroy_prefix (context->printer);
 
 
        diagnostic->kind = saved_kind;
        diagnostic->kind = saved_kind;
        diagnostic->location = saved_location;
        diagnostic->location = saved_location;
        context->printer->prefix = saved_prefix;
        context->printer->prefix = saved_prefix;
      }
      }
 
 
  VEC_free (loc_map_pair, heap, loc_vec);
  VEC_free (loc_map_pair, heap, loc_vec);
}
}
 
 
/*  This is a diagnostic finalizer implementation that is aware of
/*  This is a diagnostic finalizer implementation that is aware of
    virtual locations produced by libcpp.
    virtual locations produced by libcpp.
 
 
    It has to be called by the diagnostic finalizer of front ends that
    It has to be called by the diagnostic finalizer of front ends that
    uses libcpp and wish to get diagnostics involving tokens resulting
    uses libcpp and wish to get diagnostics involving tokens resulting
    from macro expansion.
    from macro expansion.
 
 
    For a given location, if said location belongs to a token
    For a given location, if said location belongs to a token
    resulting from a macro expansion, this starter prints the context
    resulting from a macro expansion, this starter prints the context
    of the token.  E.g, for multiply nested macro expansion, it
    of the token.  E.g, for multiply nested macro expansion, it
    unwinds the nested macro expansions and prints them in a manner
    unwinds the nested macro expansions and prints them in a manner
    that is similar to what is done for function call stacks, or
    that is similar to what is done for function call stacks, or
    template instantiation contexts.  */
    template instantiation contexts.  */
void
void
virt_loc_aware_diagnostic_finalizer (diagnostic_context *context,
virt_loc_aware_diagnostic_finalizer (diagnostic_context *context,
                                     diagnostic_info *diagnostic)
                                     diagnostic_info *diagnostic)
{
{
  maybe_unwind_expanded_macro_loc (context, diagnostic,
  maybe_unwind_expanded_macro_loc (context, diagnostic,
                                   diagnostic->location,
                                   diagnostic->location,
                                   NULL);
                                   NULL);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.