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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [binutils-2.20.1/] [binutils-2.20.1-or32-1.0rc1/] [gold/] [cref.h] - Diff between revs 205 and 521

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

Rev 205 Rev 521
// cref.h -- cross reference reports for gold   -*- C++ -*-
// cref.h -- cross reference reports for gold   -*- C++ -*-
 
 
// Copyright 2008 Free Software Foundation, Inc.
// Copyright 2008 Free Software Foundation, Inc.
// Written by Ian Lance Taylor <iant@google.com>.
// Written by Ian Lance Taylor <iant@google.com>.
 
 
// This file is part of gold.
// This file is part of gold.
 
 
// This program is free software; you can redistribute it and/or modify
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
// (at your option) any later version.
 
 
// This program is distributed in the hope that it will be useful,
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// GNU General Public License 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 this program; if not, write to the Free Software
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
// MA 02110-1301, USA.
// MA 02110-1301, USA.
 
 
#ifndef GOLD_CREF_H
#ifndef GOLD_CREF_H
#define GOLD_CREF_H
#define GOLD_CREF_H
 
 
namespace gold
namespace gold
{
{
 
 
class Object;
class Object;
class Archive;
class Archive;
class Cref_inputs;
class Cref_inputs;
 
 
// This class collects data for cross reference and other reporting.
// This class collects data for cross reference and other reporting.
 
 
class Cref
class Cref
{
{
 public:
 public:
  Cref()
  Cref()
    : inputs_(NULL)
    : inputs_(NULL)
  { }
  { }
 
 
  // Record an input object file.  This is called for each object file
  // Record an input object file.  This is called for each object file
  // in the order in which it is processed.
  // in the order in which it is processed.
  void
  void
  add_object(Object*);
  add_object(Object*);
 
 
  // Start recording an input archive.  This is called for each
  // Start recording an input archive.  This is called for each
  // archive in the order in which it appears on the command line.  A
  // archive in the order in which it appears on the command line.  A
  // call to add_archive_start precedes calls to add_object for each
  // call to add_archive_start precedes calls to add_object for each
  // object included from the archive.
  // object included from the archive.
  void
  void
  add_archive_start(Archive*);
  add_archive_start(Archive*);
 
 
  // Finish recording an input archive.  This is called after
  // Finish recording an input archive.  This is called after
  // add_object has been called for each object included from the
  // add_object has been called for each object included from the
  // archive.
  // archive.
  void
  void
  add_archive_stop(Archive*);
  add_archive_stop(Archive*);
 
 
  // Print symbol counts.
  // Print symbol counts.
  void
  void
  print_symbol_counts(const Symbol_table*) const;
  print_symbol_counts(const Symbol_table*) const;
 
 
 private:
 private:
  void
  void
  need_inputs();
  need_inputs();
 
 
  Cref_inputs* inputs_;
  Cref_inputs* inputs_;
};
};
 
 
} // End namespace gold.
} // End namespace gold.
 
 
#endif // !defined(GOLD_CREF_H)
#endif // !defined(GOLD_CREF_H)
 
 

powered by: WebSVN 2.1.0

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