ruby: added sequencer stats to track what requests are waiting on
[gem5.git] / src / mem / ruby / libruby.hh
1
2 #ifndef LIBRUBY_H
3 #define LIBRUBY_H
4
5 #include <stdint.h>
6 #include <ostream>
7
8 typedef void* RubyPortHandle;
9 enum RubyRequestType {
10 RubyRequestType_NULL,
11 RubyRequestType_IFETCH,
12 RubyRequestType_LD,
13 RubyRequestType_ST,
14 RubyRequestType_Locked_Read,
15 RubyRequestType_Locked_Write,
16 RubyRequestType_RMW_Read,
17 RubyRequestType_RMW_Write,
18 RubyRequestType_NUM
19 };
20
21 enum RubyAccessMode {
22 RubyAccessMode_User,
23 RubyAccessMode_Supervisor,
24 RubyAccessMode_Device
25 };
26
27 struct RubyRequest {
28 uint64_t paddr;
29 uint8_t* data;
30 int len;
31 uint64_t pc;
32 RubyRequestType type;
33 RubyAccessMode access_mode;
34 unsigned proc_id;
35
36 RubyRequest() {}
37 RubyRequest(uint64_t _paddr, uint8_t* _data, int _len, uint64_t _pc, RubyRequestType _type, RubyAccessMode _access_mode, unsigned _proc_id = 100)
38 : paddr(_paddr), data(_data), len(_len), pc(_pc), type(_type), access_mode(_access_mode), proc_id(_proc_id)
39 {}
40 };
41
42 /**
43 * Initialize the system. cfg_file is a Ruby-lang configuration script
44 */
45 void libruby_init(const char* cfg_file);
46
47 /**
48 * Tear down a configured system. Must be invoked after a call to libruby_init.
49 */
50 void libruby_destroy();
51
52 /**
53 * Print the last error encountered by ruby. Currently unimplemented.
54 */
55 const char* libruby_last_error();
56
57 /**
58 * Retrieve a handle to a RubyPort object, identified by name in the
59 * configuration. You also pass in the callback function you want
60 * this port to use when a request completes. Only one handle to a
61 * port is allowed at a time.
62 */
63 RubyPortHandle libruby_get_port(const char* name, void (*hit_callback)(int64_t access_id));
64
65 /**
66 * Retrieve a handle to a RubyPort object, identified by name in the
67 * configuration.
68 */
69 RubyPortHandle libruby_get_port_by_name(const char* name);
70
71
72 /**
73 * libruby_issue_request error return codes
74 */
75 #define LIBRUBY_BUFFER_FULL -2
76 #define LIBRUBY_ALIASED_REQUEST -3
77
78 /**
79 * issue_request returns a unique access_id to identify the ruby
80 * transaction. This access_id is later returned to the caller via
81 * hit_callback (passed to libruby_get_port)
82 */
83 int64_t libruby_issue_request(RubyPortHandle p, struct RubyRequest request);
84
85 /**
86 * writes data directly into Ruby's data array. Note that this
87 * ignores caches, and should be considered incoherent after
88 * simulation starts.
89 */
90 void libruby_write_ram(uint64_t paddr, uint8_t * data, int len);
91
92 /**
93 * reads data directory from Ruby's data array. Note that this
94 * ignores caches, and should be considered incoherent after
95 * simulation starts
96 */
97 void libruby_read_ram(uint64_t paddr, uint8_t * data, int len);
98
99 /**
100 * tick the system n cycles. Eventually, will return the number of
101 * cycles until the next event, but for now it always returns 0
102 */
103 int libruby_tick(int n);
104
105 /**
106 * self explainitory
107 */
108 void libruby_print_config(std::ostream & out);
109
110 /**
111 * self explainitory
112 */
113 void libruby_print_stats(std::ostream & out);
114
115 /**
116 * does not return until done
117 */
118 void libruby_playback_trace(char * trace_filename);
119
120 /*
121 * enables the tracer and opens the trace file
122 */
123 void libruby_start_tracing(char * record_filename);
124
125 /*
126 * closes the trace file
127 */
128 void libruby_stop_tracing();
129
130 /**
131 * get time
132 */
133 uint64_t libruby_get_time();
134 #endif