This source file includes following definitions.
- doAppendCycleAPUDataRMW
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 word24 doAppendCycleAPUDataRMW (cpu_state_t * cpup, word36 * data, uint nWords) {
19 DCDstruct * i = & cpu.currentInstruction;
20 DBGAPP ("doAppendCycleAPUDataRMW(Entry) thisCycle=APU_DATA_RMW\r\n");
21 DBGAPP ("doAppendCycleAPUDataRMW(Entry) lastCycle=%s\r\n", str_pct (cpu.apu.lastCycle));
22 DBGAPP ("doAppendCycleAPUDataRMW(Entry) CA %06o\r\n", cpu.TPR.CA);
23 DBGAPP ("doAppendCycleAPUDataRMW(Entry) n=%2u\r\n", nWords);
24 DBGAPP ("doAppendCycleAPUDataRMW(Entry) PPR.PRR=%o PPR.PSR=%05o\r\n", cpu.PPR.PRR, cpu.PPR.PSR);
25 DBGAPP ("doAppendCycleAPUDataRMW(Entry) TPR.TRR=%o TPR.TSR=%05o\r\n", cpu.TPR.TRR, cpu.TPR.TSR);
26
27 if (i->b29) {
28 DBGAPP ("doAppendCycleAPUDataRMW(Entry) isb29 PRNO %o\r\n", GET_PRN (IWB_IRODD));
29 }
30
31 bool nomatch = true;
32 if (cpu.tweaks.enable_wam) {
33
34
35
36
37
38 nomatch = ((i->opcode == 0232 || i->opcode == 0254 ||
39 i->opcode == 0154 || i->opcode == 0173) && i->opcodeX ) ||
40 ((i->opcode == 0557 || i->opcode == 0257) && ! i->opcodeX);
41 }
42
43 processor_cycle_type lastCycle = cpu.apu.lastCycle;
44 cpu.apu.lastCycle = APU_DATA_RMW;
45
46 DBGAPP ("doAppendCycleAPUDataRMW(Entry) XSF %o\r\n", cpu.cu.XSF);
47
48 PNL (L68_ (cpu.apu.state = 0;))
49
50 cpu.RSDWH_R1 = 0;
51
52 cpu.acvFaults = 0;
53
54
55 #define FMSG(x)
56 FMSG (char * acvFaultsMsg = "<unknown>";)
57
58 word24 finalAddress = (word24) -1;
59
60
61
62
63
64
65
66
67
68
69
70
71 PNL (cpu.APUMemAddr = cpu.TPR.CA;)
72
73 DBGAPP ("doAppendCycleAPUDataRMW(A)\r\n");
74
75
76 if (nomatch || ! fetch_sdw_from_sdwam (cpup, cpu.TPR.TSR)) {
77
78 DBGAPP ("doAppendCycleAPUDataRMW(A):SDW for segment %05o not in SDWAM\r\n", cpu.TPR.TSR);
79
80 DBGAPP ("doAppendCycleAPUDataRMW(A):DSBR.U=%o\r\n", cpu.DSBR.U);
81
82 if (cpu.DSBR.U == 0) {
83 fetch_dsptw (cpup, cpu.TPR.TSR);
84
85 if (! cpu.PTW0.DF)
86 doFault (FAULT_DF0 + cpu.PTW0.FC, fst_zero, "doAppendCycleAPUDataRMW(A): PTW0.F == 0");
87
88 if (! cpu.PTW0.U)
89 modify_dsptw (cpup, cpu.TPR.TSR);
90
91 fetch_psdw (cpup, cpu.TPR.TSR);
92 } else
93 fetch_nsdw (cpup, cpu.TPR.TSR);
94
95 if (cpu.SDW0.DF == 0) {
96 DBGAPP ("doAppendCycleAPUDataRMW(A): SDW0.F == 0! " "Initiating directed fault\r\n");
97
98 doFault (FAULT_DF0 + cpu.SDW0.FC, fst_zero, "SDW0.F == 0");
99 }
100
101 load_sdwam (cpup, cpu.TPR.TSR, nomatch);
102 }
103 DBGAPP ("doAppendCycleAPUDataRMW(A) R1 %o R2 %o R3 %o E %o\r\n", cpu.SDW->R1, cpu.SDW->R2, cpu.SDW->R3, cpu.SDW->E);
104
105
106 cpu.RSDWH_R1 = cpu.SDW->R1;
107
108
109
110
111
112
113
114
115
116
117
118 DBGAPP ("doAppendCycleAPUDataRMW(B)\r\n");
119
120
121
122
123 if (! (cpu.SDW->R1 <= cpu.SDW->R2 && cpu.SDW->R2 <= cpu.SDW->R3)) {
124
125 cpu.acvFaults |= ACV0;
126 PNL (L68_ (cpu.apu.state |= apu_FLT;))
127 FMSG (acvFaultsMsg = "acvFaults(B) C(SDW.R1) <= C(SDW.R2) <= " "C(SDW .R3)";)
128 }
129
130
131
132
133
134
135
136 if (lastCycle == RTCD_OPERAND_FETCH)
137 sim_warn ("%s: lastCycle == RTCD_OPERAND_FETCH opcode %0#o\r\n", __func__, i->opcode);
138
139
140
141
142
143
144
145
146
147
148 DBGAPP ("doAppendCycleAPUDataRMW(B):!STR-OP\r\n");
149
150
151
152 if (cpu.TPR.TRR > cpu.SDW->R2) {
153 DBGAPP ("ACV3\r\n");
154 DBGAPP ("doAppendCycleAPUDataRMW(B) ACV3\r\n");
155
156 cpu.acvFaults |= ACV3;
157 PNL (L68_ (cpu.apu.state |= apu_FLT;))
158 FMSG (acvFaultsMsg = "acvFaults(B) C(TPR.TRR) > C(SDW .R2)";)
159 }
160
161 if (cpu.SDW->R == 0) {
162
163 cpu.TPR.TRR = cpu.PPR.PRR;
164
165
166 if (cpu.PPR.PSR != cpu.TPR.TSR) {
167 DBGAPP ("ACV4\r\n");
168 DBGAPP ("doAppendCycleAPUDataRMW(B) ACV4\r\n");
169
170 cpu.acvFaults |= ACV4;
171 PNL (L68_ (cpu.apu.state |= apu_FLT;))
172 FMSG (acvFaultsMsg = "acvFaults(B) C(PPR.PSR) = C(TPR.TSR)";)
173
174
175 }
176 }
177
178
179
180
181 DBGAPP ("doAppendCycleAPUDataRMW(B):STR-OP\r\n");
182
183
184 if (cpu.TPR.TSR == cpu.PPR.PSR)
185 cpu.TPR.TRR = cpu.PPR.PRR;
186
187
188 if (cpu.TPR.TRR > cpu.SDW->R1) {
189 DBGAPP ("ACV5 TRR %o R1 %o\r\n", cpu.TPR.TRR, cpu.SDW->R1);
190
191 cpu.acvFaults |= ACV5;
192 PNL (L68_ (cpu.apu.state |= apu_FLT;))
193 FMSG (acvFaultsMsg = "acvFaults(B) C(TPR.TRR) > C(SDW .R1)";)
194 }
195
196 if (! cpu.SDW->W) {
197
198 cpu.TPR.TRR = cpu.PPR.PRR;
199
200 DBGAPP ("ACV6\r\n");
201
202 cpu.acvFaults |= ACV6;
203 PNL (L68_ (cpu.apu.state |= apu_FLT;))
204 FMSG (acvFaultsMsg = "acvFaults(B) ACV6 = W-OFF";)
205 }
206
207 goto G;
208
209
210
211
212
213
214
215 G:;
216
217 DBGAPP ("doAppendCycleAPUDataRMW(G)\r\n");
218
219
220 if (((cpu.TPR.CA >> 4) & 037777) > cpu.SDW->BOUND) {
221 DBGAPP ("ACV15\r\n");
222 DBGAPP ("doAppendCycleAPUDataRMW(G) ACV15\r\n");
223 cpu.acvFaults |= ACV15;
224 PNL (L68_ (cpu.apu.state |= apu_FLT;))
225 FMSG (acvFaultsMsg = "acvFaults(G) C(TPR.CA)0,13 > SDW.BOUND";)
226 DBGAPP ("acvFaults(G) C(TPR.CA)0,13 > SDW.BOUND\r\n" " CA %06o CA>>4 & 037777 %06o SDW->BOUND %06o",
227 cpu.TPR.CA, ((cpu.TPR.CA >> 4) & 037777), cpu.SDW->BOUND);
228 }
229
230 if (cpu.acvFaults) {
231 DBGAPP ("doAppendCycleAPUDataRMW(G) acvFaults\r\n");
232 PNL (L68_ (cpu.apu.state |= apu_FLT;))
233
234 doFault (FAULT_ACV, (_fault_subtype) {.fault_acv_subtype=cpu.acvFaults}, "ACV fault");
235 }
236
237
238 if (cpu.SDW->U)
239 goto H;
240
241
242
243
244 DBGAPP ("doAppendCycleAPUDataRMW(G) CA %06o\r\n", cpu.TPR.CA);
245 if (nomatch || ! fetch_ptw_from_ptwam (cpup, cpu.SDW->POINTER, cpu.TPR.CA)) {
246 fetch_ptw (cpup, cpu.SDW, cpu.TPR.CA);
247 if (! cpu.PTW0.DF) {
248
249 doFault (FAULT_DF0 + cpu.PTW0.FC, (_fault_subtype) {.bits=0}, "PTW0.F == 0");
250 }
251 loadPTWAM (cpup, cpu.SDW->POINTER, cpu.TPR.CA, nomatch);
252 }
253
254
255
256
257
258
259 if (i->opcodeX && ((i->opcode & 0770)== 0200 || (i->opcode & 0770) == 0220 || \
260 (i->opcode & 0770)== 020 || (i->opcode & 0770) == 0300)) {
261 do_ptw2 (cpup, cpu.SDW, cpu.TPR.CA);
262 }
263 goto I;
264
265
266
267
268
269
270
271 H:;
272 DBGAPP ("doAppendCycleAPUDataRMW(H): FANP\r\n");
273
274 PNL (L68_ (cpu.apu.state |= apu_FANP;))
275
276
277
278
279
280
281
282
283
284 set_apu_status (cpup, apuStatus_FANP);
285
286 DBGAPP ("doAppendCycleAPUDataRMW(H): SDW->ADDR=%08o CA=%06o\r\n", cpu.SDW->ADDR, cpu.TPR.CA);
287
288 finalAddress = (cpu.SDW->ADDR & 077777760) + cpu.TPR.CA;
289 finalAddress &= 0xffffff;
290 PNL (cpu.APUMemAddr = finalAddress;)
291
292 DBGAPP ("doAppendCycleAPUDataRMW(H:FANP): (%05o:%06o) finalAddress=%08o\r\n", cpu.TPR.TSR, cpu.TPR.CA, finalAddress);
293
294 goto HI;
295
296 I:;
297
298
299
300 DBGAPP ("doAppendCycleAPUDataRMW(I): FAP\r\n");
301 if (cpu.PTW->M == 0)
302 modify_ptw (cpup, cpu.SDW, cpu.TPR.CA);
303
304
305 set_apu_status (cpup, apuStatus_FAP);
306 PNL (L68_ (cpu.apu.state |= apu_FAP;))
307
308 word24 y2 = cpu.TPR.CA % 1024;
309
310
311
312 finalAddress = (((word24)cpu.PTW->ADDR & 0777760) << 6) + y2;
313 finalAddress &= 0xffffff;
314 PNL (cpu.APUMemAddr = finalAddress;)
315
316 L68_ (
317 if (cpu.MR_cache.emr && cpu.MR_cache.ihr)
318 add_l68_APU_history (cpup, APUH_FAP);
319 )
320
321 DBGAPP ("doAppendCycleAPUDataRMW(H:FAP): (%05o:%06o) finalAddress=%08o\r\n", cpu.TPR.TSR, cpu.TPR.CA, finalAddress);
322
323 goto HI;
324
325 HI:
326 DBGAPP ("doAppendCycleAPUDataRMW(HI)\r\n");
327
328
329 cpu.cu.XSF = 1;
330 sim_debug (DBG_TRACEEXT, & cpu_dev, "loading of cpu.TPR.TSR sets XSF to 1\r\n");
331
332 if (nWords == 1) {
333 core_read_lock (cpup, finalAddress, data, "APU_DATA_RMW");
334 } else {
335 sim_warn("doAppendCycleAPUDataRMW: RMW nWords %d != 1\r\n", nWords);
336 core_readN (cpup, finalAddress, data, nWords, "APU_DATA_RMW");
337 }
338
339
340
341 PNL (cpu.APUDataBusOffset = cpu.TPR.CA;)
342 PNL (cpu.APUDataBusAddr = finalAddress;)
343
344 PNL (L68_ (cpu.apu.state |= apu_FA;))
345
346 DBGAPP ("doAppendCycleAPUDataRMW (Exit) PRR %o PSR %05o P %o IC %06o\r\n", cpu.PPR.PRR, cpu.PPR.PSR, cpu.PPR.P, cpu.PPR.IC);
347 DBGAPP ("doAppendCycleAPUDataRMW (Exit) TRR %o TSR %05o TBR %02o CA %06o\r\n", cpu.TPR.TRR, cpu.TPR.TSR, cpu.TPR.TBR, cpu.TPR.CA);
348
349 return finalAddress;
350 }