pseudo_inst.hh (8734:79592b2b1d55) pseudo_inst.hh (8784:05fb20d7064b)
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;

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

40
41/**
42 * @todo these externs are only here for a hack in fullCPU::takeOver...
43 */
44extern bool doStatisticsInsts;
45extern bool doCheckpointInsts;
46extern bool doQuiesce;
47
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;

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

40
41/**
42 * @todo these externs are only here for a hack in fullCPU::takeOver...
43 */
44extern bool doStatisticsInsts;
45extern bool doCheckpointInsts;
46extern bool doQuiesce;
47
48#if FULL_SYSTEM
49
50void arm(ThreadContext *tc);
51void quiesce(ThreadContext *tc);
52void quiesceSkip(ThreadContext *tc);
53void quiesceNs(ThreadContext *tc, uint64_t ns);
54void quiesceCycles(ThreadContext *tc, uint64_t cycles);
55uint64_t quiesceTime(ThreadContext *tc);
56uint64_t readfile(ThreadContext *tc, Addr vaddr, uint64_t len,
57 uint64_t offset);
48void arm(ThreadContext *tc);
49void quiesce(ThreadContext *tc);
50void quiesceSkip(ThreadContext *tc);
51void quiesceNs(ThreadContext *tc, uint64_t ns);
52void quiesceCycles(ThreadContext *tc, uint64_t cycles);
53uint64_t quiesceTime(ThreadContext *tc);
54uint64_t readfile(ThreadContext *tc, Addr vaddr, uint64_t len,
55 uint64_t offset);
58uint64_t writefile(ThreadContext *tc, Addr vaddr, uint64_t len,
59 uint64_t offset, Addr filenameAddr);
60void loadsymbol(ThreadContext *xc);
61void addsymbol(ThreadContext *tc, Addr addr, Addr symbolAddr);
62uint64_t initParam(ThreadContext *xc);
56void loadsymbol(ThreadContext *xc);
57void addsymbol(ThreadContext *tc, Addr addr, Addr symbolAddr);
58uint64_t initParam(ThreadContext *xc);
63
64#else
65
66static inline void
67panicFsOnlyPseudoInst(const char *name)
68{
69 panic("Pseudo inst \"%s\" is only available in Full System mode.");
70}
71
72static inline void
73arm(ThreadContext *tc)
74{
75 panicFsOnlyPseudoInst("arm");
76}
77static inline void
78quiesce(ThreadContext *tc)
79{
80 panicFsOnlyPseudoInst("quiesce");
81}
82static inline void
83quiesceSkip(ThreadContext *tc)
84{
85 panicFsOnlyPseudoInst("quiesceSkip");
86}
87static inline void
88quiesceNs(ThreadContext *tc, uint64_t ns)
89{
90 panicFsOnlyPseudoInst("quiesceNs");
91}
92static inline void
93quiesceCycles(ThreadContext *tc, uint64_t cycles)
94{
95 panicFsOnlyPseudoInst("quiesceCycles");
96}
97static inline uint64_t
98quiesceTime(ThreadContext *tc)
99{
100 panicFsOnlyPseudoInst("quiesceTime");
101 return 0;
102}
103static inline uint64_t
104readfile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset)
105{
106 panicFsOnlyPseudoInst("readFile");
107 return 0;
108}
109static inline void
110loadsymbol(ThreadContext *xc)
111{
112 panicFsOnlyPseudoInst("loadSymbol");
113}
114static inline void
115addsymbol(ThreadContext *tc, Addr addr, Addr symbolAddr)
116{
117 panicFsOnlyPseudoInst("addSymbol");
118}
119static inline uint64_t
120initParam(ThreadContext *tc)
121{
122 panicFsOnlyPseudoInst("initParam");
123 return 0;
124}
125
126#endif
127
128uint64_t rpns(ThreadContext *tc);
129void wakeCPU(ThreadContext *tc, uint64_t cpuid);
130void m5exit(ThreadContext *tc, Tick delay);
131void resetstats(ThreadContext *tc, Tick delay, Tick period);
132void dumpstats(ThreadContext *tc, Tick delay, Tick period);
133void dumpresetstats(ThreadContext *tc, Tick delay, Tick period);
134void m5checkpoint(ThreadContext *tc, Tick delay, Tick period);
135void debugbreak(ThreadContext *tc);
136void switchcpu(ThreadContext *tc);
137void workbegin(ThreadContext *tc, uint64_t workid, uint64_t threadid);
138void workend(ThreadContext *tc, uint64_t workid, uint64_t threadid);
139
140} // namespace PseudoInst
141
142#endif // __SIM_PSEUDO_INST_HH__
59uint64_t rpns(ThreadContext *tc);
60void wakeCPU(ThreadContext *tc, uint64_t cpuid);
61void m5exit(ThreadContext *tc, Tick delay);
62void resetstats(ThreadContext *tc, Tick delay, Tick period);
63void dumpstats(ThreadContext *tc, Tick delay, Tick period);
64void dumpresetstats(ThreadContext *tc, Tick delay, Tick period);
65void m5checkpoint(ThreadContext *tc, Tick delay, Tick period);
66void debugbreak(ThreadContext *tc);
67void switchcpu(ThreadContext *tc);
68void workbegin(ThreadContext *tc, uint64_t workid, uint64_t threadid);
69void workend(ThreadContext *tc, uint64_t workid, uint64_t threadid);
70
71} // namespace PseudoInst
72
73#endif // __SIM_PSEUDO_INST_HH__