forked from xcore/tool_axe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Chanend.cpp
298 lines (274 loc) · 5.88 KB
/
Chanend.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
// Copyright (c) 2011, Richard Osborne, All rights reserved
// This software is freely distributable under a derivative of the
// University of Illinois/NCSA Open Source License posted in
// LICENSE.txt and at <http://github.xcore.com/>
#include "Chanend.h"
#include "Core.h"
#include <algorithm>
bool Chanend::canAcceptToken()
{
return !buf.full();
}
bool Chanend::canAcceptTokens(unsigned tokens)
{
return buf.remaining() >= tokens;
}
void Chanend::receiveDataToken(ticks_t time, uint8_t value)
{
buf.push_back(Token(value));
update(time);
}
void Chanend::receiveDataTokens(ticks_t time, uint8_t *values, unsigned num)
{
for (unsigned i = 0; i < num; i++) {
buf.push_back(Token(values[i]));
}
update(time);
}
void Chanend::receiveCtrlToken(ticks_t time, uint8_t value)
{
switch (value) {
case CT_END:
buf.push_back(Token(value, true));
release(time);
break;
case CT_PAUSE:
release(time);
break;
default:
buf.push_back(Token(value, true));
break;
}
update(time);
}
void Chanend::notifyDestClaimed(ticks_t time)
{
if (pausedOut) {
pausedOut->time = time;
pausedOut->schedule();
pausedOut = 0;
}
}
// TODO can this be merged with the above function.
void Chanend::notifyDestCanAcceptTokens(ticks_t time, unsigned tokens)
{
if (pausedOut) {
pausedOut->time = time;
pausedOut->schedule();
pausedOut = 0;
}
}
bool Chanend::openRoute()
{
if (inPacket)
return true;
dest = getOwner().getParent().getChanendDest(destID);
if (!dest) {
// TODO if dest in unset should give a link error exception.
junkPacket = true;
} else if (!dest->claim(this, junkPacket)) {
return false;
}
inPacket = true;
return true;
}
bool Chanend::setData(Thread &thread, uint32_t value, ticks_t time)
{
updateOwner(thread);
if (inPacket)
return false;
ResourceID id(value);
if (id.type() != RES_TYPE_CHANEND &&
id.type() != RES_TYPE_CONFIG)
return false;
destID = value;
return true;
}
Resource::ResOpResult Chanend::
outt(Thread &thread, uint8_t value, ticks_t time)
{
updateOwner(thread);
if (!openRoute()) {
pausedOut = &thread;
return DESCHEDULE;
}
if (junkPacket)
return CONTINUE;
if (!dest->canAcceptToken()) {
pausedOut = &thread;
return DESCHEDULE;
}
dest->receiveDataToken(time, value);
return CONTINUE;
}
Resource::ResOpResult Chanend::
out(Thread &thread, uint32_t value, ticks_t time)
{
updateOwner(thread);
if (!openRoute()) {
pausedOut = &thread;
return DESCHEDULE;
}
if (junkPacket)
return CONTINUE;
if (!dest->canAcceptTokens(4)) {
pausedOut = &thread;
return DESCHEDULE;
}
// Channels are big endian
uint8_t tokens[4] = {
value >> 24,
value >> 16,
value >> 8,
value
};
dest->receiveDataTokens(time, tokens, 4);
return CONTINUE;
}
Resource::ResOpResult Chanend::
outct(Thread &thread, uint8_t value, ticks_t time)
{
updateOwner(thread);
if (!openRoute()) {
pausedOut = &thread;
return DESCHEDULE;
}
if (junkPacket) {
if (value == CT_END || value == CT_PAUSE) {
inPacket = false;
junkPacket = false;
}
return CONTINUE;
}
if (!dest->canAcceptToken()) {
pausedOut = &thread;
return DESCHEDULE;
}
dest->receiveCtrlToken(time, value);
if (value == CT_END || value == CT_PAUSE) {
inPacket = false;
dest = 0;
}
return CONTINUE;
}
bool Chanend::
testct(Thread &thread, ticks_t time, bool &isCt)
{
updateOwner(thread);
if (buf.empty()) {
setPausedIn(thread, false);
return false;
}
isCt = buf.front().isControl();
return true;
}
bool Chanend::
testwct(Thread &thread, ticks_t time, unsigned &position)
{
updateOwner(thread);
position = 0;
unsigned numTokens = std::min(buf.size(), 4U);
for (unsigned i = 0; i < numTokens; i++) {
if (buf[i].isControl()) {
position = i + 1;
return true;
}
}
if (buf.size() < 4) {
setPausedIn(thread, true);
return false;
}
return true;
}
uint8_t Chanend::poptoken(ticks_t time)
{
assert(!buf.empty() && "poptoken on empty buf");
uint8_t value = buf.front().getValue();
buf.pop_front();
if (getSource()) {
getSource()->notifyDestCanAcceptTokens(time, buf.remaining());
}
return value;
}
void Chanend::setPausedIn(Thread &t, bool wordInput)
{
pausedIn = &t;
waitForWord = wordInput;
}
Resource::ResOpResult Chanend::
intoken(Thread &thread, ticks_t time, uint32_t &val)
{
bool isCt;
if (!testct(thread, time, isCt)) {
return DESCHEDULE;
}
if (isCt)
return ILLEGAL;
val = poptoken(time);
return CONTINUE;
}
Resource::ResOpResult Chanend::
inct(Thread &thread, ticks_t time, uint32_t &val)
{
bool isCt;
if (!testct(thread, time, isCt)) {
return DESCHEDULE;
}
if (!isCt)
return ILLEGAL;
val = poptoken(time);
return CONTINUE;
}
Resource::ResOpResult Chanend::
chkct(Thread &thread, ticks_t time, uint32_t value)
{
bool isCt;
if (!testct(thread, time, isCt)) {
return DESCHEDULE;
}
if (!isCt || buf.front().getValue() != value)
return ILLEGAL;
(void)poptoken(time);
return CONTINUE;
}
Resource::ResOpResult Chanend::
in(Thread &thread, ticks_t time, uint32_t &value)
{
unsigned Position;
if (!testwct(thread, time, Position))
return DESCHEDULE;
if (Position != 0)
return ILLEGAL;
value = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
buf.pop_front(4);
if (getSource()) {
getSource()->notifyDestCanAcceptTokens(time, buf.remaining());
}
return CONTINUE;
}
void Chanend::update(ticks_t time)
{
assert(!buf.empty());
if (eventsPermitted()) {
event(time);
return;
}
if (!pausedIn)
return;
if (waitForWord && buf.size() < 4)
return;
pausedIn->time = time;
pausedIn->schedule();
pausedIn = 0;
}
void Chanend::run(ticks_t time)
{
assert(0 && "Shouldn't get here");
}
bool Chanend::seeEventEnable(ticks_t time)
{
if (buf.empty())
return false;
event(time);
return true;
}