includes: fix up code after sorting
This commit is contained in:
parent
39a055645f
commit
bbb1392c08
13 changed files with 26 additions and 11 deletions
|
@ -71,14 +71,13 @@ using std::isnan;
|
|||
|
||||
output exec {{
|
||||
#include <cmath>
|
||||
|
||||
#include "arch/power/faults.hh"
|
||||
#include "arch/power/isa_traits.hh"
|
||||
#include "arch/power/utility.hh"
|
||||
#if defined(linux)
|
||||
#include <fenv.h>
|
||||
#endif
|
||||
|
||||
#include "arch/power/faults.hh"
|
||||
#include "arch/power/isa_traits.hh"
|
||||
#include "arch/power/utility.hh"
|
||||
#include "base/condcodes.hh"
|
||||
#include "cpu/base.hh"
|
||||
#include "cpu/exetrace.hh"
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#ifdef __SUNPRO_CC
|
||||
#include <cmath>
|
||||
#include <math.h>
|
||||
#endif
|
||||
#include <cmath>
|
||||
#include <functional>
|
||||
|
|
|
@ -31,6 +31,8 @@
|
|||
#ifndef __BASE_STATS_MYSQL_HH__
|
||||
#define __BASE_STATS_MYSQL_HH__
|
||||
|
||||
#include <cstdio>
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
|
@ -40,7 +42,8 @@
|
|||
namespace MySQL { class Connection; }
|
||||
namespace Stats {
|
||||
|
||||
class DistInfo;
|
||||
class DistData;
|
||||
class DistParams;
|
||||
class MySqlRun;
|
||||
|
||||
struct SetupStat
|
||||
|
@ -70,9 +73,9 @@ class InsertData
|
|||
{
|
||||
private:
|
||||
char *query;
|
||||
size_type size;
|
||||
std::size_t size;
|
||||
bool first;
|
||||
static const size_type maxsize = 1024*1024;
|
||||
static const std::size_t maxsize = 1024*1024;
|
||||
|
||||
public:
|
||||
MySqlRun *run;
|
||||
|
|
|
@ -33,12 +33,12 @@
|
|||
#endif
|
||||
|
||||
#if defined(__sun)
|
||||
#include <cmath>
|
||||
#include <math.h>
|
||||
#endif
|
||||
|
||||
#include <cassert>
|
||||
#ifdef __SUNPRO_CC
|
||||
#include <cmath>
|
||||
#include <math.h>
|
||||
#endif
|
||||
#include <cmath>
|
||||
#include <fstream>
|
||||
|
|
|
@ -37,7 +37,6 @@ class Info;
|
|||
class ScalarInfo;
|
||||
class VectorInfo;
|
||||
class DistInfo;
|
||||
class DistInfo;
|
||||
class VectorDistInfo;
|
||||
class Vector2dInfo;
|
||||
class FormulaInfo;
|
||||
|
|
|
@ -44,6 +44,8 @@
|
|||
#ifndef __CPU_O3_COMMIT_HH__
|
||||
#define __CPU_O3_COMMIT_HH__
|
||||
|
||||
#include <queue>
|
||||
|
||||
#include "base/statistics.hh"
|
||||
#include "cpu/exetrace.hh"
|
||||
#include "cpu/inst_seq.hh"
|
||||
|
|
|
@ -55,6 +55,7 @@
|
|||
#include "cpu/exetrace.hh"
|
||||
#include "cpu/timebuf.hh"
|
||||
#include "params/DerivO3CPU.hh"
|
||||
#include "sim/faults.hh"
|
||||
|
||||
#if USE_CHECKER
|
||||
#include "cpu/checker/cpu.hh"
|
||||
|
|
|
@ -28,8 +28,12 @@
|
|||
* Authors: Kevin Lim
|
||||
*/
|
||||
|
||||
#include "arch/types.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "config/full_system.hh"
|
||||
#include "config/the_isa.hh"
|
||||
#include "cpu/o3/decode.hh"
|
||||
#include "cpu/inst_seq.hh"
|
||||
#include "params/DerivO3CPU.hh"
|
||||
|
||||
using namespace std;
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
#define __CPU_O3_IEW_HH__
|
||||
|
||||
#include <queue>
|
||||
#include <set>
|
||||
|
||||
#include "base/statistics.hh"
|
||||
#include "config/full_system.hh"
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
|
||||
#include <queue>
|
||||
|
||||
#include "arch/utility.hh"
|
||||
#include "config/the_isa.hh"
|
||||
#include "cpu/o3/fu_pool.hh"
|
||||
#include "cpu/o3/iew.hh"
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
#include "config/full_system.hh"
|
||||
#include "config/the_isa.hh"
|
||||
#include "cpu/inst_seq.hh"
|
||||
#include "cpu/timebuf.hh"
|
||||
#include "mem/packet.hh"
|
||||
#include "mem/port.hh"
|
||||
|
||||
|
|
|
@ -36,6 +36,8 @@
|
|||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include "arch/registers.hh"
|
||||
#include "base/types.hh"
|
||||
#include "config/the_isa.hh"
|
||||
|
||||
/**
|
||||
|
|
|
@ -36,6 +36,8 @@
|
|||
#ifndef __SMT_HH__
|
||||
#define __SMT_HH__
|
||||
|
||||
#include "base/types.hh"
|
||||
|
||||
#ifndef SMT_MAX_THREADS
|
||||
/** The number of TPUs in any processor. */
|
||||
#define SMT_MAX_THREADS 4
|
||||
|
|
Loading…
Reference in a new issue