OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1ksim/] [cpu/] [or32/] [insnset.c] - Blame information for rev 460

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 19 jeremybenn
/* insnset.c -- Instruction specific functions.
2
 
3
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
4
                 2000-2002 Marko Mlinar, markom@opencores.org
5
   Copyright (C) 2008 Embecosm Limited
6 100 julius
   Copyright (C) 2009 Jungsook yang, jungsook.yang@uci.edu
7 19 jeremybenn
 
8
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
9 100 julius
   Contributor Julius Baxter julius@orsoc.se
10
 
11 19 jeremybenn
   This file is part of OpenRISC 1000 Architectural Simulator.
12
 
13
   This program is free software; you can redistribute it and/or modify it
14
   under the terms of the GNU General Public License as published by the Free
15
   Software Foundation; either version 3 of the License, or (at your option)
16
   any later version.
17
 
18
   This program is distributed in the hope that it will be useful, but WITHOUT
19
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
21
   more details.
22
 
23
   You should have received a copy of the GNU General Public License along
24
   with this program.  If not, see <http://www.gnu.org/licenses/>. */
25
 
26
/* This program is commented throughout in a fashion suitable for processing
27
   with Doxygen. */
28
 
29
 
30
INSTRUCTION (l_add) {
31
  orreg_t temp1, temp2, temp3;
32
  int8_t temp4;
33
 
34
  temp2 = (orreg_t)PARAM2;
35
  temp3 = (orreg_t)PARAM1;
36
  temp1 = temp2 + temp3;
37 124 jeremybenn
  SET_PARAM0 (temp1);
38 112 jeremybenn
 
39
  /* Set overflow if two negative values gave a positive sum, or if two
40
     positive values gave a negative sum. Otherwise clear it */
41
  if ((((long int) temp2 <  0) &&
42
       ((long int) temp3 <  0) &&
43
       ((long int) temp1 >= 0)) ||
44
      (((long int) temp2 >= 0) &&
45
       ((long int) temp3 >= 0) &&
46
       ((long int) temp1 <  0)))
47
    {
48
      cpu_state.sprs[SPR_SR] |= SPR_SR_OV;
49
    }
50
  else
51
    {
52
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_OV;
53
    }
54
 
55
  /* Set the carry flag if (as unsigned values) the result is smaller than
56
     either operand (if it smaller than one, it will be smaller than both, so
57
     we need only test one). */
58 19 jeremybenn
  if ((uorreg_t) temp1 < (uorreg_t) temp2)
59 112 jeremybenn
    {
60
      cpu_state.sprs[SPR_SR] |= SPR_SR_CY;
61
    }
62 19 jeremybenn
  else
63 112 jeremybenn
    {
64
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_CY;
65
    }
66 19 jeremybenn
 
67 112 jeremybenn
  /* Trigger a range exception if the overflow flag is set and the SR[OVE] bit
68
     is set. */
69
  if (((cpu_state.sprs[SPR_SR] & SPR_SR_OVE) == SPR_SR_OVE) &&
70
      ((cpu_state.sprs[SPR_SR] & SPR_SR_OV)  == SPR_SR_OV))
71
    {
72
      except_handle (EXCEPT_RANGE, cpu_state.pc);
73
    }
74
 
75 19 jeremybenn
  temp4 = temp1;
76
  if (temp4 == temp1)
77
    or1k_mstats.byteadd++;
78
}
79
INSTRUCTION (l_addc) {
80
  orreg_t temp1, temp2, temp3;
81
  int8_t temp4;
82 114 jeremybenn
  int    carry_in = (cpu_state.sprs[SPR_SR] & SPR_SR_CY) == SPR_SR_CY;
83
 
84 19 jeremybenn
  temp2 = (orreg_t)PARAM2;
85
  temp3 = (orreg_t)PARAM1;
86
  temp1 = temp2 + temp3;
87 114 jeremybenn
 
88
  if(carry_in)
89
    {
90
      temp1++;                          /* Add in the carry bit */
91
    }
92
 
93 19 jeremybenn
  SET_PARAM0(temp1);
94 114 jeremybenn
 
95
  /* Set overflow if two negative values gave a positive sum, or if two
96
     positive values gave a negative sum. Otherwise clear it. There are no
97
     corner cases with the extra bit carried in (unlike the carry flag - see
98
     below). */
99
  if ((((long int) temp2 <  0) &&
100
       ((long int) temp3 <  0) &&
101
       ((long int) temp1 >= 0)) ||
102
      (((long int) temp2 >= 0) &&
103
       ((long int) temp3 >= 0) &&
104
       ((long int) temp1 <  0)))
105
    {
106
      cpu_state.sprs[SPR_SR] |= SPR_SR_OV;
107
    }
108 19 jeremybenn
  else
109 114 jeremybenn
    {
110
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_OV;
111
    }
112 19 jeremybenn
 
113 114 jeremybenn
  /* Set the carry flag if (as unsigned values) the result is smaller than
114
     either operand (if it smaller than one, it will be smaller than both, so
115
     we need only test one). If there is a carry in, the test should be less
116
     than or equal, to deal with the 0 + 0xffffffff + c = 0 case (which
117
     generates a carry). */
118
  if ((carry_in && ((uorreg_t) temp1 <= (uorreg_t) temp2)) ||
119
      ((uorreg_t) temp1 < (uorreg_t) temp2))
120
    {
121
      cpu_state.sprs[SPR_SR] |= SPR_SR_CY;
122
    }
123
  else
124
    {
125
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_CY;
126
    }
127
 
128
  /* Trigger a range exception if the overflow flag is set and the SR[OVE] bit
129
     is set. */
130
  if (((cpu_state.sprs[SPR_SR] & SPR_SR_OVE) == SPR_SR_OVE) &&
131
      ((cpu_state.sprs[SPR_SR] & SPR_SR_OV)  == SPR_SR_OV))
132
    {
133
      except_handle (EXCEPT_RANGE, cpu_state.pc);
134
    }
135
 
136 19 jeremybenn
  temp4 = temp1;
137
  if (temp4 == temp1)
138
    or1k_mstats.byteadd++;
139
}
140
INSTRUCTION (l_sw) {
141
  int old_cyc = 0;
142
  if (config.cpu.sbuf_len) old_cyc = runtime.sim.mem_cycles;
143
  set_mem32(PARAM0, PARAM1, &breakpoint);
144
  if (config.cpu.sbuf_len) {
145
    int t = runtime.sim.mem_cycles;
146
    runtime.sim.mem_cycles = old_cyc;
147
    sbuf_store (t - old_cyc);
148
  }
149
}
150
INSTRUCTION (l_sb) {
151
  int old_cyc = 0;
152
  if (config.cpu.sbuf_len) old_cyc = runtime.sim.mem_cycles;
153
  set_mem8(PARAM0, PARAM1, &breakpoint);
154
  if (config.cpu.sbuf_len) {
155
    int t = runtime.sim.mem_cycles;
156
    runtime.sim.mem_cycles = old_cyc;
157
    sbuf_store (t- old_cyc);
158
  }
159
}
160
INSTRUCTION (l_sh) {
161
  int old_cyc = 0;
162
  if (config.cpu.sbuf_len) old_cyc = runtime.sim.mem_cycles;
163
  set_mem16(PARAM0, PARAM1, &breakpoint);
164
  if (config.cpu.sbuf_len) {
165
    int t = runtime.sim.mem_cycles;
166
    runtime.sim.mem_cycles = old_cyc;
167
    sbuf_store (t - old_cyc);
168
  }
169
}
170 104 jeremybenn
INSTRUCTION (l_lws) {
171
  uint32_t val;
172
  if (config.cpu.sbuf_len) sbuf_load ();
173
  val = eval_mem32(PARAM1, &breakpoint);
174
  /* If eval operand produced exception don't set anything. JPB changed to
175
     trigger on breakpoint, as well as except_pending (seemed to be a bug). */
176
  if (!(except_pending || breakpoint))
177
    SET_PARAM0(val);
178
}
179 19 jeremybenn
INSTRUCTION (l_lwz) {
180
  uint32_t val;
181
  if (config.cpu.sbuf_len) sbuf_load ();
182
  val = eval_mem32(PARAM1, &breakpoint);
183
  /* If eval operand produced exception don't set anything. JPB changed to
184
     trigger on breakpoint, as well as except_pending (seemed to be a bug). */
185
  if (!(except_pending || breakpoint))
186
    SET_PARAM0(val);
187
}
188
INSTRUCTION (l_lbs) {
189
  int8_t val;
190
  if (config.cpu.sbuf_len) sbuf_load ();
191
  val = eval_mem8(PARAM1, &breakpoint);
192
  /* If eval operand produced exception don't set anything. JPB changed to
193
     trigger on breakpoint, as well as except_pending (seemed to be a bug). */
194
  if (!(except_pending || breakpoint))
195
    SET_PARAM0(val);
196
}
197
INSTRUCTION (l_lbz) {
198
  uint8_t val;
199
  if (config.cpu.sbuf_len) sbuf_load ();
200
  val = eval_mem8(PARAM1, &breakpoint);
201
  /* If eval operand produced exception don't set anything. JPB changed to
202
     trigger on breakpoint, as well as except_pending (seemed to be a bug). */
203
  if (!(except_pending || breakpoint))
204
    SET_PARAM0(val);
205
}
206
INSTRUCTION (l_lhs) {
207
  int16_t val;
208
  if (config.cpu.sbuf_len) sbuf_load ();
209
  val = eval_mem16(PARAM1, &breakpoint);
210
  /* If eval operand produced exception don't set anything. JPB changed to
211
     trigger on breakpoint, as well as except_pending (seemed to be a bug). */
212
  if (!(except_pending || breakpoint))
213
    SET_PARAM0(val);
214
}
215
INSTRUCTION (l_lhz) {
216
  uint16_t val;
217
  if (config.cpu.sbuf_len) sbuf_load ();
218
  val = eval_mem16(PARAM1, &breakpoint);
219
  /* If eval operand produced exception don't set anything. JPB changed to
220
     trigger on breakpoint, as well as except_pending (seemed to be a bug). */
221
  if (!(except_pending || breakpoint))
222
    SET_PARAM0(val);
223
}
224
INSTRUCTION (l_movhi) {
225
  SET_PARAM0(PARAM1 << 16);
226
}
227
INSTRUCTION (l_and) {
228
  uorreg_t temp1;
229
  temp1 = PARAM1 & PARAM2;
230
  SET_PARAM0(temp1);
231
}
232
INSTRUCTION (l_or) {
233
  uorreg_t temp1;
234
  temp1 = PARAM1 | PARAM2;
235
  SET_PARAM0(temp1);
236
}
237
INSTRUCTION (l_xor) {
238 127 jeremybenn
  /* The argument is now specified as unsigned, but historically OR1K has
239
     always treated the argument as signed (so l.xori rD,rA,-1 can be used in
240
     the absence of l.not). Use this as the default behavior. This is
241
     controlled from or32.c. */
242
  uorreg_t  temp1 = PARAM1 ^ PARAM2;
243 19 jeremybenn
  SET_PARAM0(temp1);
244
}
245
INSTRUCTION (l_sub) {
246 124 jeremybenn
  orreg_t temp1, temp2, temp3;
247
 
248
  temp3 = (orreg_t)PARAM2;
249
  temp2 = (orreg_t)PARAM1;
250
  temp1 = temp2 - temp3;
251
  SET_PARAM0 (temp1);
252
 
253
  /* Set overflow if a negative value minus a positive value gave a positive
254
     sum, or if a positive value minus a negative value gave a negative
255
     sum. Otherwise clear it */
256
  if ((((long int) temp2 <  0) &&
257
       ((long int) temp3 >= 0) &&
258
       ((long int) temp1 >= 0)) ||
259
      (((long int) temp2 >= 0) &&
260
       ((long int) temp3 <  0) &&
261
       ((long int) temp1 <  0)))
262
    {
263
      cpu_state.sprs[SPR_SR] |= SPR_SR_OV;
264
    }
265
  else
266
    {
267
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_OV;
268
    }
269
 
270
  /* Set the carry flag if (as unsigned values) the second operand is greater
271
     than the first. */
272
  if ((uorreg_t) temp3 > (uorreg_t) temp2)
273
    {
274
      cpu_state.sprs[SPR_SR] |= SPR_SR_CY;
275
    }
276
  else
277
    {
278
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_CY;
279
    }
280
 
281
  /* Trigger a range exception if the overflow flag is set and the SR[OVE] bit
282
     is set. */
283
  if (((cpu_state.sprs[SPR_SR] & SPR_SR_OVE) == SPR_SR_OVE) &&
284
      ((cpu_state.sprs[SPR_SR] & SPR_SR_OV)  == SPR_SR_OV))
285
    {
286
      except_handle (EXCEPT_RANGE, cpu_state.pc);
287
    }
288 19 jeremybenn
}
289
/*int mcount = 0;*/
290
INSTRUCTION (l_mul) {
291 118 jeremybenn
  orreg_t   temp0, temp1, temp2;
292
  LONGEST   ltemp0, ltemp1, ltemp2;
293
  ULONGEST  ultemp0, ultemp1, ultemp2;
294
 
295
  /* Args in 32-bit */
296
  temp2 = (orreg_t) PARAM2;
297
  temp1 = (orreg_t) PARAM1;
298
 
299
  /* Compute initially in 64-bit */
300
  ltemp1 = (LONGEST) temp1;
301
  ltemp2 = (LONGEST) temp2;
302
  ltemp0 = ltemp1 * ltemp2;
303
 
304
  temp0  = (orreg_t) (ltemp0  & 0xffffffffLL);
305
  SET_PARAM0 (temp0);
306
 
307
  /* We have 2's complement overflow, if the result is less than the smallest
308
     possible 32-bit negative number, or greater than the largest possible
309
     32-bit positive number. */
310
  if ((ltemp0 < (LONGEST) INT32_MIN) || (ltemp0 > (LONGEST) INT32_MAX))
311
    {
312
      cpu_state.sprs[SPR_SR] |= SPR_SR_OV;
313
    }
314
  else
315
    {
316
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_OV;
317
    }
318
 
319
  /* We have 1's complement overflow, if, as an unsigned operation, the result
320
     is greater than the largest possible 32-bit unsigned number. This is
321
     probably quicker than unpicking the bits of the signed result. */
322
  ultemp1 = (ULONGEST) temp1 & 0xffffffffULL;
323
  ultemp2 = (ULONGEST) temp2 & 0xffffffffULL;
324
  ultemp0 = ultemp1 * ultemp2;
325
 
326
  if (ultemp0 > (ULONGEST) UINT32_MAX)
327
    {
328
      cpu_state.sprs[SPR_SR] |= SPR_SR_CY;
329
    }
330
  else
331
    {
332
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_CY;
333
    }
334
 
335
  /* Trigger a range exception if the overflow flag is set and the SR[OVE] bit
336
     is set. */
337
  if (((cpu_state.sprs[SPR_SR] & SPR_SR_OVE) == SPR_SR_OVE) &&
338
      ((cpu_state.sprs[SPR_SR] & SPR_SR_OV)  == SPR_SR_OV))
339
    {
340
      except_handle (EXCEPT_RANGE, cpu_state.pc);
341
    }
342 19 jeremybenn
}
343 118 jeremybenn
INSTRUCTION (l_mulu) {
344
  uorreg_t   temp0, temp1, temp2;
345
  ULONGEST  ultemp0, ultemp1, ultemp2;
346
 
347
  /* Args in 32-bit */
348
  temp2 = (uorreg_t) PARAM2;
349
  temp1 = (uorreg_t) PARAM1;
350
 
351
  /* Compute initially in 64-bit */
352
  ultemp1 = (ULONGEST) temp1 & 0xffffffffULL;
353
  ultemp2 = (ULONGEST) temp2 & 0xffffffffULL;
354
  ultemp0 = ultemp1 * ultemp2;
355
 
356
  temp0  = (uorreg_t) (ultemp0  & 0xffffffffULL);
357
  SET_PARAM0 (temp0);
358
 
359
  /* We never have 2's complement overflow */
360
  cpu_state.sprs[SPR_SR] &= ~SPR_SR_OV;
361
 
362
  /* We have 1's complement overflow, if the result is greater than the
363
     largest possible 32-bit unsigned number. */
364
  if (ultemp0 > (ULONGEST) UINT32_MAX)
365
    {
366
      cpu_state.sprs[SPR_SR] |= SPR_SR_CY;
367
    }
368
  else
369
    {
370
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_CY;
371
    }
372
}
373 19 jeremybenn
INSTRUCTION (l_div) {
374 118 jeremybenn
  orreg_t  temp3, temp2, temp1;
375 19 jeremybenn
 
376 118 jeremybenn
  temp3 = (orreg_t) PARAM2;
377
  temp2 = (orreg_t) PARAM1;
378
 
379
 /* Check for divide by zero (sets carry) */
380
  if (0 == temp3)
381
    {
382
      cpu_state.sprs[SPR_SR] |= SPR_SR_CY;
383
    }
384
  else
385
    {
386
      temp1 = temp2 / temp3;
387
      SET_PARAM0(temp1);
388
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_CY;
389
    }
390
 
391
  cpu_state.sprs[SPR_SR] &= ~SPR_SR_OV; /* Never set */
392
 
393
  /* Trigger a range exception if the overflow flag is set and the SR[OVE] bit
394
     is set. */
395
  if (((cpu_state.sprs[SPR_SR] & SPR_SR_OVE) == SPR_SR_OVE) &&
396
      ((cpu_state.sprs[SPR_SR] & SPR_SR_CY)  == SPR_SR_CY))
397
    {
398
      except_handle (EXCEPT_RANGE, cpu_state.pc);
399
    }
400 19 jeremybenn
}
401
INSTRUCTION (l_divu) {
402
  uorreg_t temp3, temp2, temp1;
403
 
404 118 jeremybenn
  temp3 = (uorreg_t) PARAM2;
405
  temp2 = (uorreg_t) PARAM1;
406
 
407
 /* Check for divide by zero (sets carry) */
408
  if (0 == temp3)
409
    {
410
      cpu_state.sprs[SPR_SR] |= SPR_SR_CY;
411
    }
412
  else
413
    {
414
      temp1 = temp2 / temp3;
415
      SET_PARAM0(temp1);
416
      cpu_state.sprs[SPR_SR] &= ~SPR_SR_CY;
417
    }
418
 
419
  cpu_state.sprs[SPR_SR] &= ~SPR_SR_OV; /* Never set */
420
 
421
  /* Trigger a range exception if the overflow flag is set and the SR[OVE] bit
422
     is set. */
423
  if (((cpu_state.sprs[SPR_SR] & SPR_SR_OVE) == SPR_SR_OVE) &&
424
      ((cpu_state.sprs[SPR_SR] & SPR_SR_CY)  == SPR_SR_CY))
425
    {
426
      except_handle (EXCEPT_RANGE, cpu_state.pc);
427
    }
428 19 jeremybenn
}
429
INSTRUCTION (l_sll) {
430
  uorreg_t temp1;
431
 
432
  temp1 = PARAM1 << PARAM2;
433
  SET_PARAM0(temp1);
434
  /* runtime.sim.cycles += 2; */
435
}
436
INSTRUCTION (l_sra) {
437
  orreg_t temp1;
438
 
439
  temp1 = (orreg_t)PARAM1 >> PARAM2;
440
  SET_PARAM0(temp1);
441
  /* runtime.sim.cycles += 2; */
442
}
443
INSTRUCTION (l_srl) {
444
  uorreg_t temp1;
445
  temp1 = PARAM1 >> PARAM2;
446
  SET_PARAM0(temp1);
447
  /* runtime.sim.cycles += 2; */
448
}
449 122 jeremybenn
INSTRUCTION (l_ror) {
450
  uorreg_t temp1;
451
  temp1  = PARAM1 >> (PARAM2 & 0x1f);
452
  temp1 |= PARAM1 << (32 - (PARAM2 & 0x1f));
453
  SET_PARAM0(temp1);
454
}
455 19 jeremybenn
INSTRUCTION (l_bf) {
456
  if (config.bpb.enabled) {
457
    int fwd = (PARAM0 >= cpu_state.pc) ? 1 : 0;
458
    or1k_mstats.bf[cpu_state.sprs[SPR_SR] & SPR_SR_F ? 1 : 0][fwd]++;
459
    bpb_update(current->insn_addr, cpu_state.sprs[SPR_SR] & SPR_SR_F ? 1 : 0);
460
  }
461
  if(cpu_state.sprs[SPR_SR] & SPR_SR_F) {
462
    cpu_state.pc_delay = cpu_state.pc + (orreg_t)PARAM0 * 4;
463
    btic_update(pcnext);
464
    next_delay_insn = 1;
465
  } else {
466
    btic_update(cpu_state.pc);
467
  }
468
}
469
INSTRUCTION (l_bnf) {
470
  if (config.bpb.enabled) {
471
    int fwd = (PARAM0 >= cpu_state.pc) ? 1 : 0;
472
    or1k_mstats.bnf[cpu_state.sprs[SPR_SR] & SPR_SR_F ? 0 : 1][fwd]++;
473
    bpb_update(current->insn_addr, cpu_state.sprs[SPR_SR] & SPR_SR_F ? 0 : 1);
474
  }
475
  if (!(cpu_state.sprs[SPR_SR] & SPR_SR_F)) {
476
    cpu_state.pc_delay = cpu_state.pc + (orreg_t)PARAM0 * 4;
477
    btic_update(pcnext);
478
    next_delay_insn = 1;
479
  } else {
480
    btic_update(cpu_state.pc);
481
  }
482
}
483
INSTRUCTION (l_j) {
484
  cpu_state.pc_delay = cpu_state.pc + (orreg_t)PARAM0 * 4;
485
  next_delay_insn = 1;
486
}
487
INSTRUCTION (l_jal) {
488
  cpu_state.pc_delay = cpu_state.pc + (orreg_t)PARAM0 * 4;
489
 
490
  setsim_reg(LINK_REGNO, cpu_state.pc + 8);
491
  next_delay_insn = 1;
492
  if (config.sim.profile) {
493
    struct label_entry *tmp;
494
    if (verify_memoryarea(cpu_state.pc_delay) && (tmp = get_label (cpu_state.pc_delay)))
495
      fprintf (runtime.sim.fprof, "+%08llX %"PRIxADDR" %"PRIxADDR" %s\n",
496
               runtime.sim.cycles, cpu_state.pc + 8, cpu_state.pc_delay,
497
               tmp->name);
498
    else
499
      fprintf (runtime.sim.fprof, "+%08llX %"PRIxADDR" %"PRIxADDR" @%"PRIxADDR"\n",
500
               runtime.sim.cycles, cpu_state.pc + 8, cpu_state.pc_delay,
501
               cpu_state.pc_delay);
502
  }
503
}
504
INSTRUCTION (l_jalr) {
505 121 jeremybenn
  /* Badly aligned destination or use of link register triggers an exception */
506
  uorreg_t  temp1 = PARAM0;
507
 
508
  if (REG_PARAM0 == LINK_REGNO)
509
    {
510
      except_handle (EXCEPT_ILLEGAL, cpu_state.pc);
511
    }
512
  else if ((temp1 & 0x3) != 0)
513
    {
514
      except_handle (EXCEPT_ALIGN, cpu_state.pc);
515
    }
516
  else
517
    {
518
      cpu_state.pc_delay = temp1;
519
      setsim_reg(LINK_REGNO, cpu_state.pc + 8);
520
      next_delay_insn = 1;
521
    }
522 19 jeremybenn
}
523
INSTRUCTION (l_jr) {
524 121 jeremybenn
  /* Badly aligned destination triggers an exception */
525
  uorreg_t  temp1 = PARAM0;
526
 
527
  if ((temp1 & 0x3) != 0)
528
    {
529
      except_handle (EXCEPT_ALIGN, cpu_state.pc);
530
    }
531
  else
532
    {
533
      cpu_state.pc_delay = temp1;
534
      next_delay_insn = 1;
535
 
536
      if (config.sim.profile)
537
        {
538
          fprintf (runtime.sim.fprof, "-%08llX %"PRIxADDR"\n",
539
                   runtime.sim.cycles, cpu_state.pc_delay);
540
        }
541
    }
542 19 jeremybenn
}
543
INSTRUCTION (l_rfe) {
544
  pcnext = cpu_state.sprs[SPR_EPCR_BASE];
545
  mtspr(SPR_SR, cpu_state.sprs[SPR_ESR_BASE]);
546
}
547
INSTRUCTION (l_nop) {
548
  uint32_t k = PARAM0;
549
  switch (k) {
550
    case NOP_NOP:
551
      break;
552
    case NOP_EXIT:
553 220 jeremybenn
      PRINTFQ("exit(%"PRIdREG")\n", evalsim_reg (3));
554
      PRINTFQ("@reset : cycles %lld, insn #%lld\n",
555 19 jeremybenn
              runtime.sim.reset_cycles, runtime.cpu.reset_instructions);
556 220 jeremybenn
      PRINTFQ("@exit  : cycles %lld, insn #%lld\n", runtime.sim.cycles,
557 19 jeremybenn
              runtime.cpu.instructions);
558 220 jeremybenn
      PRINTFQ(" diff  : cycles %lld, insn #%lld\n",
559 19 jeremybenn
              runtime.sim.cycles - runtime.sim.reset_cycles,
560
              runtime.cpu.instructions - runtime.cpu.reset_instructions);
561 143 jeremybenn
      if (config.sim.is_library)
562
        {
563
          runtime.cpu.halted = 1;
564
          set_stall_state (1);
565
        }
566 19 jeremybenn
      else
567 143 jeremybenn
        {
568
          sim_done();
569
        }
570 19 jeremybenn
      break;
571
    case NOP_CNT_RESET:
572
      PRINTF("****************** counters reset ******************\n");
573
      PRINTF("cycles %lld, insn #%lld\n", runtime.sim.cycles, runtime.cpu.instructions);
574
      PRINTF("****************** counters reset ******************\n");
575
      runtime.sim.reset_cycles = runtime.sim.cycles;
576
      runtime.cpu.reset_instructions = runtime.cpu.instructions;
577
      break;
578
    case NOP_PUTC:              /*JPB */
579
      printf( "%c", (char)(evalsim_reg( 3 ) & 0xff));
580
      fflush( stdout );
581
      break;
582 82 jeremybenn
    case NOP_GET_TICKS:
583
      cpu_state.reg[11] = runtime.sim.cycles & 0xffffffff;
584
      cpu_state.reg[12] = runtime.sim.cycles >> 32;
585
      break;
586
    case NOP_GET_PS:
587
      cpu_state.reg[11] = config.sim.clkcycle_ps;
588
      break;
589 460 jeremybenn
    case NOP_TRACE_ON:
590
      runtime.sim.hush = 0;
591
      break;
592
    case NOP_TRACE_OFF:
593
      runtime.sim.hush = 1;
594
      break;
595 19 jeremybenn
    case NOP_REPORT:
596
      PRINTF("report(0x%"PRIxREG");\n", evalsim_reg(3));
597
    default:
598
      if (k >= NOP_REPORT_FIRST && k <= NOP_REPORT_LAST)
599
      PRINTF("report %" PRIdREG " (0x%"PRIxREG");\n", k - NOP_REPORT_FIRST,
600
             evalsim_reg(3));
601
      break;
602
  }
603
}
604
INSTRUCTION (l_sfeq) {
605
  if(PARAM0 == PARAM1)
606
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
607
  else
608
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
609
}
610
INSTRUCTION (l_sfne) {
611
  if(PARAM0 != PARAM1)
612
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
613
  else
614
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
615
}
616
INSTRUCTION (l_sfgts) {
617
  if((orreg_t)PARAM0 > (orreg_t)PARAM1)
618
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
619
  else
620
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
621
}
622
INSTRUCTION (l_sfges) {
623
  if((orreg_t)PARAM0 >= (orreg_t)PARAM1)
624
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
625
  else
626
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
627
}
628
INSTRUCTION (l_sflts) {
629
  if((orreg_t)PARAM0 < (orreg_t)PARAM1)
630
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
631
  else
632
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
633
}
634
INSTRUCTION (l_sfles) {
635
  if((orreg_t)PARAM0 <= (orreg_t)PARAM1)
636
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
637
  else
638
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
639
}
640
INSTRUCTION (l_sfgtu) {
641
  if(PARAM0 > PARAM1)
642
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
643
  else
644
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
645
}
646
INSTRUCTION (l_sfgeu) {
647
  if(PARAM0 >= PARAM1)
648
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
649
  else
650
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
651
}
652
INSTRUCTION (l_sfltu) {
653
  if(PARAM0 < PARAM1)
654
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
655
  else
656
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
657
}
658
INSTRUCTION (l_sfleu) {
659
  if(PARAM0 <= PARAM1)
660
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
661
  else
662
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
663
}
664
INSTRUCTION (l_extbs) {
665
  int8_t x;
666
  x = PARAM1;
667
  SET_PARAM0((orreg_t)x);
668
}
669
INSTRUCTION (l_extbz) {
670
  uint8_t x;
671
  x = PARAM1;
672
  SET_PARAM0((uorreg_t)x);
673
}
674
INSTRUCTION (l_exths) {
675
  int16_t x;
676
  x = PARAM1;
677
  SET_PARAM0((orreg_t)x);
678
}
679
INSTRUCTION (l_exthz) {
680
  uint16_t x;
681
  x = PARAM1;
682
  SET_PARAM0((uorreg_t)x);
683
}
684
INSTRUCTION (l_extws) {
685
  int32_t x;
686
  x = PARAM1;
687
  SET_PARAM0((orreg_t)x);
688
}
689
INSTRUCTION (l_extwz) {
690
  uint32_t x;
691
  x = PARAM1;
692
  SET_PARAM0((uorreg_t)x);
693
}
694
INSTRUCTION (l_mtspr) {
695 123 jeremybenn
  uint16_t regno = PARAM0 | PARAM2;
696 19 jeremybenn
  uorreg_t value = PARAM1;
697
 
698
  if (cpu_state.sprs[SPR_SR] & SPR_SR_SM)
699
    mtspr(regno, value);
700
  else {
701
    PRINTF("WARNING: trying to write SPR while SR[SUPV] is cleared.\n");
702
    sim_done();
703
  }
704
}
705
INSTRUCTION (l_mfspr) {
706 123 jeremybenn
  uint16_t regno = PARAM1 | PARAM2;
707 19 jeremybenn
  uorreg_t value = mfspr(regno);
708
 
709
  if (cpu_state.sprs[SPR_SR] & SPR_SR_SM)
710
    SET_PARAM0(value);
711
  else {
712
    SET_PARAM0(0);
713
    PRINTF("WARNING: trying to read SPR while SR[SUPV] is cleared.\n");
714
    sim_done();
715
  }
716
}
717
INSTRUCTION (l_sys) {
718
  except_handle(EXCEPT_SYSCALL, cpu_state.sprs[SPR_EEAR_BASE]);
719
}
720
INSTRUCTION (l_trap) {
721
  /* TODO: some SR related code here! */
722
  except_handle(EXCEPT_TRAP, cpu_state.sprs[SPR_EEAR_BASE]);
723
}
724
INSTRUCTION (l_mac) {
725
  uorreg_t lo, hi;
726
  LONGEST l;
727 116 jeremybenn
  orreg_t x, y, t;
728 19 jeremybenn
 
729
  lo = cpu_state.sprs[SPR_MACLO];
730
  hi = cpu_state.sprs[SPR_MACHI];
731
  x = PARAM0;
732
  y = PARAM1;
733
/*   PRINTF ("[%"PRIxREG",%"PRIxREG"]\t", x, y); */
734 116 jeremybenn
 
735
  /* Compute the temporary as (signed) 32-bits, then sign-extend to 64 when
736
     adding in. */
737 19 jeremybenn
  l = (ULONGEST)lo | ((LONGEST)hi << 32);
738 116 jeremybenn
  t = x * y;
739
  l += (LONGEST) t;
740 19 jeremybenn
 
741
  /* This implementation is very fast - it needs only one cycle for mac.  */
742
  lo = ((ULONGEST)l) & 0xFFFFFFFF;
743
  hi = ((LONGEST)l) >> 32;
744
  cpu_state.sprs[SPR_MACLO] = lo;
745
  cpu_state.sprs[SPR_MACHI] = hi;
746
/*   PRINTF ("(%"PRIxREG",%"PRIxREG"\n", hi, lo); */
747
}
748
INSTRUCTION (l_msb) {
749
  uorreg_t lo, hi;
750
  LONGEST l;
751
  orreg_t x, y;
752
 
753
  lo = cpu_state.sprs[SPR_MACLO];
754
  hi = cpu_state.sprs[SPR_MACHI];
755
  x = PARAM0;
756
  y = PARAM1;
757
 
758
/*   PRINTF ("[%"PRIxREG",%"PRIxREG"]\t", x, y); */
759
 
760
  l = (ULONGEST)lo | ((LONGEST)hi << 32);
761
  l -= x * y;
762
 
763
  /* This implementation is very fast - it needs only one cycle for msb.  */
764
  lo = ((ULONGEST)l) & 0xFFFFFFFF;
765
  hi = ((LONGEST)l) >> 32;
766
  cpu_state.sprs[SPR_MACLO] = lo;
767
  cpu_state.sprs[SPR_MACHI] = hi;
768
/*   PRINTF ("(%"PRIxREG",%"PRIxREG")\n", hi, lo); */
769
}
770
INSTRUCTION (l_macrc) {
771 116 jeremybenn
  orreg_t lo;
772 19 jeremybenn
  /* No need for synchronization here -- all MAC instructions are 1 cycle long.  */
773
  lo =  cpu_state.sprs[SPR_MACLO];
774
  //PRINTF ("<%08x>\n", (unsigned long)l);
775 116 jeremybenn
  SET_PARAM0(lo);
776 19 jeremybenn
  cpu_state.sprs[SPR_MACLO] = 0;
777
  cpu_state.sprs[SPR_MACHI] = 0;
778
}
779
INSTRUCTION (l_cmov) {
780
  SET_PARAM0(cpu_state.sprs[SPR_SR] & SPR_SR_F ? PARAM1 : PARAM2);
781
}
782
INSTRUCTION (l_ff1) {
783
  SET_PARAM0(ffs(PARAM1));
784
}
785 115 jeremybenn
INSTRUCTION (l_fl1) {
786
  orreg_t t = (orreg_t)PARAM1;
787
 
788
  /* Reverse the word and use ffs */
789
  t = (((t & 0xaaaaaaaa) >> 1) | ((t & 0x55555555) << 1));
790
  t = (((t & 0xcccccccc) >> 2) | ((t & 0x33333333) << 2));
791
  t = (((t & 0xf0f0f0f0) >> 4) | ((t & 0x0f0f0f0f) << 4));
792
  t = (((t & 0xff00ff00) >> 8) | ((t & 0x00ff00ff) << 8));
793
  t = ffs ((t >> 16) | (t << 16));
794
 
795
  SET_PARAM0 (0 == t ? t : 33 - t);
796
}
797 19 jeremybenn
/******* Floating point instructions *******/
798 226 julius
/* Do calculation, and update FPCSR as required */
799 19 jeremybenn
/* Single precision */
800
INSTRUCTION (lf_add_s) {
801 233 julius
  if (config.cpu.hardfloat) {
802
  float_set_rm();
803
  SET_PARAM0(float32_add((unsigned int)PARAM1,(unsigned int)PARAM2));
804
  float_set_flags();
805 100 julius
  } else l_invalid();
806 19 jeremybenn
}
807
INSTRUCTION (lf_div_s) {
808 100 julius
  if (config.cpu.hardfloat) {
809 233 julius
  float_set_rm();
810
  SET_PARAM0(float32_div((unsigned int)PARAM1,(unsigned int)PARAM2));
811
  float_set_flags();
812 100 julius
  } else l_invalid();
813 19 jeremybenn
}
814
INSTRUCTION (lf_ftoi_s) {
815 100 julius
  if (config.cpu.hardfloat) {
816 233 julius
  float_set_rm();
817
  SET_PARAM0(float32_to_int32((unsigned int)PARAM1));
818
  float_set_flags();
819 100 julius
  } else l_invalid();
820 19 jeremybenn
}
821
INSTRUCTION (lf_itof_s) {
822 100 julius
  if (config.cpu.hardfloat) {
823 233 julius
  float_set_rm();
824
  SET_PARAM0(int32_to_float32((unsigned int)PARAM1));
825
  float_set_flags();
826 100 julius
  } else l_invalid();
827 19 jeremybenn
}
828
INSTRUCTION (lf_madd_s) {
829 100 julius
  if (config.cpu.hardfloat) {
830 233 julius
  float_set_rm();
831
  SET_PARAM0(float32_add((unsigned int)PARAM0, float32_mul((unsigned int)PARAM1,(unsigned int)PARAM2)));
832
  // Note: this ignores flags from the multiply!
833
  float_set_flags();
834 100 julius
  } else l_invalid();
835 19 jeremybenn
}
836
INSTRUCTION (lf_mul_s) {
837 100 julius
  if (config.cpu.hardfloat) {
838 233 julius
  float_set_rm();
839
  SET_PARAM0(float32_mul((unsigned int)PARAM1,(unsigned int)PARAM2));
840
  float_set_flags();
841 100 julius
  } else l_invalid();
842 19 jeremybenn
}
843
INSTRUCTION (lf_rem_s) {
844 100 julius
  if (config.cpu.hardfloat) {
845 233 julius
  float_set_rm();
846
  SET_PARAM0(float32_rem((unsigned int)PARAM1,(unsigned int)PARAM2));
847
  float_set_flags();
848 100 julius
  } else l_invalid();
849 19 jeremybenn
}
850
INSTRUCTION (lf_sfeq_s) {
851 100 julius
  if (config.cpu.hardfloat) {
852 233 julius
  float_set_rm();
853
  if(float32_eq((unsigned int)PARAM0, (unsigned int)PARAM1))
854 19 jeremybenn
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
855
  else
856
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
857 233 julius
  float_set_flags();
858 100 julius
  } else l_invalid();
859 19 jeremybenn
}
860
INSTRUCTION (lf_sfge_s) {
861 100 julius
  if (config.cpu.hardfloat) {
862 233 julius
  float_set_rm();
863
  if((!float32_lt((unsigned int)PARAM0, (unsigned int)PARAM1) &
864
      !float32_is_nan( (unsigned int)PARAM0) &
865
      !float32_is_nan( (unsigned int)PARAM1) ) )
866 226 julius
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
867 19 jeremybenn
  else
868
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
869 233 julius
  float_set_flags();
870 100 julius
  } else l_invalid();
871 19 jeremybenn
}
872
INSTRUCTION (lf_sfgt_s) {
873 100 julius
  if (config.cpu.hardfloat) {
874 233 julius
  float_set_rm();
875
  if((!float32_le((unsigned int)PARAM0, (unsigned int)PARAM1)  &
876
      !float32_is_nan( (unsigned int)PARAM0) &
877
      !float32_is_nan( (unsigned int)PARAM1) ) )
878 19 jeremybenn
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
879
  else
880
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
881 233 julius
  float_set_flags();
882 100 julius
  } else l_invalid();
883 19 jeremybenn
}
884
INSTRUCTION (lf_sfle_s) {
885 100 julius
  if (config.cpu.hardfloat) {
886 233 julius
  float_set_rm();
887
  if((float32_le((unsigned int)PARAM0, (unsigned int)PARAM1) &
888
      !float32_is_nan( (unsigned int)PARAM0) &
889
      !float32_is_nan( (unsigned int)PARAM1) ) )
890 19 jeremybenn
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
891
  else
892
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
893 233 julius
  float_set_flags();
894 100 julius
  } else l_invalid();
895 19 jeremybenn
}
896
INSTRUCTION (lf_sflt_s) {
897 100 julius
  if (config.cpu.hardfloat) {
898 233 julius
  float_set_rm();
899
  if(( float32_lt((unsigned int)PARAM0, (unsigned int)PARAM1) &
900
       !float32_is_nan( (unsigned int)PARAM0) &
901
       !float32_is_nan( (unsigned int)PARAM1) ) )
902 19 jeremybenn
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
903
  else
904
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
905 233 julius
  float_set_flags();
906 100 julius
  } else l_invalid();
907 19 jeremybenn
}
908
INSTRUCTION (lf_sfne_s) {
909 100 julius
  if (config.cpu.hardfloat) {
910 233 julius
  float_set_rm();
911
  if(!float32_eq((unsigned int)PARAM0, (unsigned int)PARAM1))
912 19 jeremybenn
    cpu_state.sprs[SPR_SR] |= SPR_SR_F;
913
  else
914
    cpu_state.sprs[SPR_SR] &= ~SPR_SR_F;
915 233 julius
  float_set_flags();
916 100 julius
  } else l_invalid();
917 19 jeremybenn
}
918
INSTRUCTION (lf_sub_s) {
919 100 julius
  if (config.cpu.hardfloat) {
920 233 julius
  float_set_rm();
921
  SET_PARAM0(float32_sub((unsigned int)PARAM1,(unsigned int)PARAM2));
922
  float_set_flags();
923 100 julius
  } else l_invalid();
924 19 jeremybenn
}
925
 
926
/******* Custom instructions *******/
927
INSTRUCTION (l_cust1) {
928
  /*int destr = current->insn >> 21;
929
    int src1r = current->insn >> 15;
930
    int src2r = current->insn >> 9;*/
931
}
932
INSTRUCTION (l_cust2) {
933
}
934
INSTRUCTION (l_cust3) {
935
}
936
INSTRUCTION (l_cust4) {
937
}
938 100 julius
INSTRUCTION (lf_cust1) {
939
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.