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