includes.isa (2713:c424d724dc4c) includes.isa (2944:10dcffb2904f)
1// Copyright (c) 2006 The Regents of The University of Michigan
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met: redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer;
8// redistributions in binary form must reproduce the above copyright

--- 22 unchanged lines hidden (view full) ---

31////////////////////////////////////////////////////////////////////
32//
33// Output include file directives.
34//
35
36output header {{
37#include <sstream>
38#include <iostream>
1// Copyright (c) 2006 The Regents of The University of Michigan
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met: redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer;
8// redistributions in binary form must reproduce the above copyright

--- 22 unchanged lines hidden (view full) ---

31////////////////////////////////////////////////////////////////////
32//
33// Output include file directives.
34//
35
36output header {{
37#include <sstream>
38#include <iostream>
39#include <iomanip>
40
41#include "cpu/static_inst.hh"
42#include "arch/sparc/faults.hh"
43#include "mem/request.hh" // some constructors use MemReq flags
44#include "arch/sparc/isa_traits.hh"
45#include "arch/sparc/regfile.hh"
46}};
47
48output decoder {{
49#include "base/cprintf.hh"
50#include "base/loader/symtab.hh"
51#include "cpu/thread_context.hh" // for Jump::branchTarget()
52
39
40#include "cpu/static_inst.hh"
41#include "arch/sparc/faults.hh"
42#include "mem/request.hh" // some constructors use MemReq flags
43#include "arch/sparc/isa_traits.hh"
44#include "arch/sparc/regfile.hh"
45}};
46
47output decoder {{
48#include "base/cprintf.hh"
49#include "base/loader/symtab.hh"
50#include "cpu/thread_context.hh" // for Jump::branchTarget()
51
53#include <math.h>
54#if defined(linux)
55#include <fenv.h>
56#endif
57
58using namespace SparcISA;
59}};
60
61output exec {{
52#if defined(linux)
53#include <fenv.h>
54#endif
55
56using namespace SparcISA;
57}};
58
59output exec {{
62#include <math.h>
63#if defined(linux)
64#include <fenv.h>
65#endif
66
60#if defined(linux)
61#include <fenv.h>
62#endif
63
67#ifdef FULL_SYSTEM
68//#include "sim/pseudo_inst.hh"
69#endif
70#include "cpu/base.hh"
71#include "cpu/exetrace.hh"
72#include "sim/sim_exit.hh"
73
74using namespace SparcISA;
75}};
76
64#include "cpu/base.hh"
65#include "cpu/exetrace.hh"
66#include "sim/sim_exit.hh"
67
68using namespace SparcISA;
69}};
70