Merge zizzer:/bk/newmem
[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 <asm/types.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
43 void m5_ivlb(uint64_t interval);
44 void m5_ivle(uint64_t interval);
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 void m5_anbegin(uint64_t s);
57 void m5_anwait(uint64_t s, uint64_t w);
58
59 #endif // __M5OP_H__