xref: /netbsd-src/external/gpl3/binutils/dist/gprofng/src/DataSpace.h (revision cb63e24e8d6aae7ddac1859a9015f48b1d8bd90e)
1*cb63e24eSchristos /* Copyright (C) 2021-2024 Free Software Foundation, Inc.
24f645668Schristos    Contributed by Oracle.
34f645668Schristos 
44f645668Schristos    This file is part of GNU Binutils.
54f645668Schristos 
64f645668Schristos    This program is free software; you can redistribute it and/or modify
74f645668Schristos    it under the terms of the GNU General Public License as published by
84f645668Schristos    the Free Software Foundation; either version 3, or (at your option)
94f645668Schristos    any later version.
104f645668Schristos 
114f645668Schristos    This program is distributed in the hope that it will be useful,
124f645668Schristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
134f645668Schristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
144f645668Schristos    GNU General Public License for more details.
154f645668Schristos 
164f645668Schristos    You should have received a copy of the GNU General Public License
174f645668Schristos    along with this program; if not, write to the Free Software
184f645668Schristos    Foundation, 51 Franklin Street - Fifth Floor, Boston,
194f645668Schristos    MA 02110-1301, USA.  */
204f645668Schristos 
214f645668Schristos #ifndef _DATASPACE_H
224f645668Schristos #define _DATASPACE_H
234f645668Schristos 
244f645668Schristos #include <stdio.h>
254f645668Schristos 
264f645668Schristos #include "dbe_structs.h"
274f645668Schristos #include "vec.h"
284f645668Schristos #include "Exp_Layout.h"
294f645668Schristos #include "Hist_data.h"
304f645668Schristos #include "Histable.h"
314f645668Schristos #include "Metric.h"
324f645668Schristos 
334f645668Schristos class DbeView;
344f645668Schristos class DataView;
354f645668Schristos 
364f645668Schristos class DataSpace
374f645668Schristos {
384f645668Schristos public:
394f645668Schristos   DataSpace (DbeView *_dbev, int picked = 0);
404f645668Schristos   ~DataSpace ();
414f645668Schristos   void reset ();
424f645668Schristos   Hist_data *compute_metrics (MetricList *, Histable::Type,
434f645668Schristos 			      Hist_data::Mode, Histable*);
444f645668Schristos   Hist_data *get_layout_data (Hist_data *sorted_data, Vector<int> *marks,
454f645668Schristos 			      int threshold);
464f645668Schristos 
474f645668Schristos   static char *status_str ();
484f645668Schristos 
494f645668Schristos private:
504f645668Schristos   Histable *get_hist_obj (Histable::Type, DataView*, long);
514f645668Schristos 
524f645668Schristos   DbeView *dbev;
534f645668Schristos };
544f645668Schristos 
554f645668Schristos #endif /* _DATASPACE_H */
56