pseudo_inst.hh (8142:e08035e1a1f6) pseudo_inst.hh (8543:9678812ccb62)
1/*
2 * Copyright (c) 2003-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 */
30
1/*
2 * Copyright (c) 2003-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 */
30
31#ifndef __SIM_PSEUDO_INST_HH__
32#define __SIM_PSEUDO_INST_HH__
33
31class ThreadContext;
32
33//We need the "Tick" and "Addr" data types from here
34#include "base/types.hh"
35
36namespace PseudoInst {
37
38/**

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

63void dumpresetstats(ThreadContext *tc, Tick delay, Tick period);
64void m5checkpoint(ThreadContext *tc, Tick delay, Tick period);
65void debugbreak(ThreadContext *tc);
66void switchcpu(ThreadContext *tc);
67void workbegin(ThreadContext *tc, uint64_t workid, uint64_t threadid);
68void workend(ThreadContext *tc, uint64_t workid, uint64_t threadid);
69
70} // namespace PseudoInst
34class ThreadContext;
35
36//We need the "Tick" and "Addr" data types from here
37#include "base/types.hh"
38
39namespace PseudoInst {
40
41/**

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

66void dumpresetstats(ThreadContext *tc, Tick delay, Tick period);
67void m5checkpoint(ThreadContext *tc, Tick delay, Tick period);
68void debugbreak(ThreadContext *tc);
69void switchcpu(ThreadContext *tc);
70void workbegin(ThreadContext *tc, uint64_t workid, uint64_t threadid);
71void workend(ThreadContext *tc, uint64_t workid, uint64_t threadid);
72
73} // namespace PseudoInst
74
75#endif // __SIM_PSEUDO_INST_HH__