testers: move testers to a new directory
[gem5.git] / util / m5 / m5op.h
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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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 * Ali Saidi
30 */
31
32 #ifndef __M5OP_H__
33 #define __M5OP_H__
34
35 #include <stdint.h>
36
37 void arm(uint64_t address);
38 void quiesce(void);
39 void quiesceNs(uint64_t ns);
40 void quiesceCycle(uint64_t cycles);
41 uint64_t quiesceTime(void);
42 uint64_t rpns();
43 void wakeCPU(uint64_t cpuid);
44
45 void m5_exit(uint64_t ns_delay);
46 uint64_t m5_initparam(void);
47 void m5_checkpoint(uint64_t ns_delay, uint64_t ns_period);
48 void m5_reset_stats(uint64_t ns_delay, uint64_t ns_period);
49 void m5_dump_stats(uint64_t ns_delay, uint64_t ns_period);
50 void m5_dumpreset_stats(uint64_t ns_delay, uint64_t ns_period);
51 uint64_t m5_readfile(void *buffer, uint64_t len, uint64_t offset);
52 void m5_debugbreak(void);
53 void m5_switchcpu(void);
54 void m5_addsymbol(uint64_t addr, char *symbol);
55 void m5_panic(void);
56
57 // These operations are for critical path annotation
58 void m5a_bsm(char *sm, const void *id, int flags);
59 void m5a_esm(char *sm);
60 void m5a_begin(int flags, char *st);
61 void m5a_end(void);
62 void m5a_q(const void *id, char *q, int count);
63 void m5a_dq(const void *id, char *q, int count);
64 void m5a_wf(const void *id, char *q, char *sm, int count);
65 void m5a_we(const void *id, char *q, char *sm, int count);
66 void m5a_ws(const void *id, char *q, char *sm);
67 void m5a_sq(const void *id, char *q, int count, int flags);
68 void m5a_aq(const void *id, char *q, int count);
69 void m5a_pq(const void *id, char *q, int count);
70 void m5a_l(char *lsm, const void *id, char *sm);
71 void m5a_identify(uint64_t id);
72 uint64_t m5a_getid(void);
73
74 #define M5_AN_FL_NONE 0x0
75 #define M5_AN_FL_BAD 0x2
76 #define M5_AN_FL_LINK 0x10
77 #define M5_AN_FL_RESET 0x20
78
79 #endif // __M5OP_H__