includes.isa (3998:593cc702b366) includes.isa (4008:ccad3906006a)
1// Copyright (c) 2006-2007 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

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

48}};
49
50output decoder {{
51#include "base/cprintf.hh"
52#include "base/loader/symtab.hh"
53#include "cpu/thread_context.hh" // for Jump::branchTarget()
54#include "mem/packet.hh"
55
1// Copyright (c) 2006-2007 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

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

48}};
49
50output decoder {{
51#include "base/cprintf.hh"
52#include "base/loader/symtab.hh"
53#include "cpu/thread_context.hh" // for Jump::branchTarget()
54#include "mem/packet.hh"
55
56#if defined(linux)
56#if defined(linux) || defined(__APPLE__)
57#include <fenv.h>
58#endif
59#include <algorithm>
60
61using namespace SparcISA;
62}};
63
64output exec {{
57#include <fenv.h>
58#endif
59#include <algorithm>
60
61using namespace SparcISA;
62}};
63
64output exec {{
65#if defined(linux)
65#if defined(linux) || defined(__APPLE__)
66#include <fenv.h>
67#endif
66#include <fenv.h>
67#endif
68
69#if defined(__sun) || defined (__OpenBSD__)
70#include <ieeefp.h>
71#endif
72
68#include <limits>
69
70#include <cmath>
71#include "arch/sparc/asi.hh"
72#include "cpu/base.hh"
73#include "cpu/exetrace.hh"
74#include "sim/sim_exit.hh"
75#include "mem/packet.hh"
76#include "mem/packet_access.hh"
77
78using namespace SparcISA;
79using namespace std;
80}};
81
73#include <limits>
74
75#include <cmath>
76#include "arch/sparc/asi.hh"
77#include "cpu/base.hh"
78#include "cpu/exetrace.hh"
79#include "sim/sim_exit.hh"
80#include "mem/packet.hh"
81#include "mem/packet_access.hh"
82
83using namespace SparcISA;
84using namespace std;
85}};
86