summaryrefslogtreecommitdiffstats
path: root/zpu/sw/simulator/com/zylin/zpu/simulator/Simulator.java
blob: cf6cf41988bdf4dca81959ac52e2d09dc5ee2d62 (plain)
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
package com.zylin.zpu.simulator;

import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedList;
import java.util.List;

import com.zylin.zpu.simulator.FileTracer.Trace;
import com.zylin.zpu.simulator.exceptions.CPUException;
import com.zylin.zpu.simulator.exceptions.DebuggerBreakpointException;
import com.zylin.zpu.simulator.exceptions.EndSessionException;
import com.zylin.zpu.simulator.exceptions.GDBServerException;
import com.zylin.zpu.simulator.exceptions.HardwareWatchPointException;
import com.zylin.zpu.simulator.exceptions.IllegalInstructionException;
import com.zylin.zpu.simulator.exceptions.InterruptException;
import com.zylin.zpu.simulator.exceptions.MemoryAccessException;

public class Simulator implements ZPU, Machine, Sim 
{
	
    int minStack;

    /** 
	 * the feeble version of the CPU, e.g. only implements
	 * 11 instructions. 
     * 
     * For debugging purposes it is useful to enable/disable
     * each instruction
	 */
    boolean feeble[]=new boolean[256];
	    
	private long opcodeHistogram[]=new long[256];
	private long opcodeHistogramCycles[]=new long[256];
	private long opcodePairHistogram[]=new long[256*256];
	private long opcodePairHistogramCycles[]=new long[256*256];
	
	/** weee! constants are 32 bit by default, so we need to assign a 64 bit
	 * integer in this matter.
	 */
	private static final long INTMASK = Long.parseLong("ffffffff", 16);
	
    final static int PUSHPC=59;
	final static int OR=7;
	final static int NOT=9;
	final static int LOAD=8;
	final static int STORE=12;
	final static int POPPC=4;
	final static int FLIP=10;

	final static int ADD=5;
	final static int PUSHSP=2;
	final static int POPSP=13;
	final static int NOP=11;
	final static int AND=6;
	final static int ADDSP=16;

    final static int EMULATE=32;
	final static int LOADH=34;
	final static int STOREH=35;
	final static int LESSTHAN=36;
	final static int LESSTHANOREQUAL=37;
	final static int ULESSTHAN=38;
	final static int ULESSTHANOREQUAL=39;
    final static int SWAP=40;
    final static int MULT=41;
	final static int LSHIFTRIGHT=42;
	final static int ASHIFTLEFT=43;
    final static int ASHIFTRIGHT=44;
    final static int CALL=45;
    final static int EQ=46;
	final static int NEQ=47;
    final static int NEG=48;
    final static int SUB=49;
	final static int XOR=50;
    final static int LOADB=51;
    final static int STOREB=52;
    final static int DIV=53;
    final static int MOD=54;
    final static int EQBRANCH=55;
    final static int NEQBRANCH=56;
    final static int POPPCREL=57;
    final static int CONFIG=58;
    final static int SYSCALL=60;
    final static int PUSHSPADD=61;
    final static int MULT16X16=62;
    final static int CALLPCREL=63;
    final static int STORESP=64;
    final static int LOADSP=64+32;
        
	int[] memory;
	boolean[] validMemory;
	protected long cycles;
	protected int instructionCount;
	private int sp;
	private int pc;
	protected boolean breakNext;
	
	/* halting synchronization object */
	protected Object halt = new Object();
	
	private int IOSIZE=getIOSIZE();
	protected int getIOSIZE()
	{
		return 32768;
	}
	long prevCycles;
	private static final int VECTORSIZE = 0x20;
	private static final int VECTOR_RESET = 0;
	private static final int VECTOR_INTERRUPT = 1;
	private boolean hitVector;
	private static final int VECTORBASE = 0x0;
	private int nextVector;
	protected long lastTimer;
	protected boolean timer;
	private boolean powerdown;
    private boolean decodeMask;

    private static final int ZETA = 1;

    private static final int ABEL = 0;

    private int startStack;

    protected Host syscall;

	private long[] emulateOpcodeHistogram= new long[256];

	private long[] emulateOpcodeHistogramCycles=new long[256];

	private long emulateCycles;;

	public Simulator() throws CPUException
	{
	}
	
	
	public void run() throws CPUException
	{
		syscall.running();
		
		try
		{
            
			instructionLoop();
			
			
		}  catch (EndSessionException e)
		{
			/* done */
		} finally
		{
		}
		dumpInfo();
        
        System.err.println("Stack usage: " + (startStack-minStack));
	}

	private void dumpInfo() 
	{
		dumpOpcodeHistogram();
        
		//printMemoryHistorgram();
	}


    private void dumpOpcodeHistogram()
    {
        System.out.println("Opcode histogram");
        dumpHistogram(opcodeHistogram, opcodeHistogramCycles);
        System.out.println("Emulate histogram");
        dumpHistogram(emulateOpcodeHistogram, emulateOpcodeHistogramCycles);
        System.out.println("Pair histogram");
        dumpHistogram(opcodePairHistogram, opcodePairHistogramCycles);
        
        
        dumpGmon();
        
        System.out.println("Grouping of LOADSP/STORESP/IM");
        printRange(64, 96);
        printRange(96, 128);
        printRange(128, 256);
//      printRange(64, 65);
//        printRange(65, 66);
//        printRange(66, 64+32);
//        printRange(96, 97);
//        printRange(97, 98);
//        printRange(98, 96+32);
//        printRange(128, 129);
//        printRange(129, 130);
//        printRange(130, 131);
//        printRange(131, 132);
//        printRange(132, 133);
//        printRange(252, 253);
//        printRange(253, 254);
//        printRange(254, 255);
//        printRange(255, 256);
    }



//    #define	GMON_MAGIC	"gmon"	/* magic cookie */
//    #define GMON_VERSION	1	/* version number */
//
//    /*
//     * Raw header as it appears on file (without padding):
//     */
//    struct gmon_hdr
//    {
//        char cookie[4];
//        char version[4];    // a cyg_uint32, target-side endianness
//        char spare[3 * 4];
//    };
//
//    /* types of records in this file: */
//    typedef enum
//    {
//        GMON_TAG_TIME_HIST = 0, GMON_TAG_CG_ARC = 1, GMON_TAG_BB_COUNT = 2
//    }
//    GMON_Record_Tag;
//
//    /* The histogram tag is followed by this header, and then an array of       */
//    /* cyg_uint16's for the actual counts.                                      */
//
//    struct gmon_hist_hdr
//    {
//        /* host-side gprof adapts to sizeof(void*) and endianness.              */
//        /* It is assumed that the compiler does not insert padding around the   */
//        /* cyg_uint32's or the char arrays.                                     */
//        void*       low_pc;             /* base pc address of sample buffer     */
//        void*       high_pc;            /* max pc address of sampled buffer     */
//        cyg_uint32  hist_size;          /* size of sample buffer                */
//        cyg_uint32  prof_rate;          /* profiling clock rate                 */
//        char        dimen[15];			/* phys. dim., usually "seconds"        */
//        char        dimen_abbrev;		/* usually 's' for "seconds"            */
//    };
//
//    /* An arc tag is followed by a single arc record. self_pc corresponds to    */
//    /* the location of an mcount() call, at the start of a function. from_pc    */
//    /* corresponds to the return address, i.e. where the function was called    */
//    /* from. count is the number of calls.                                      */
//
//    struct gmon_cg_arc_record
//    {
//        void*       from_pc;            /* address within caller's body         */
//        void*       self_pc;        	/* address within callee's body         */
//        cyg_uint32  count;              /* number of arc traversals             */
//    };
//
//    /* In theory gprof can also process basic block counts, as per the          */
//    /* compiler's -fprofile-arcs flag. The compiler-generated basic block       */
//    /* structure should contain a table of addresses and a table of counts,     */
//    /* and the compiled code updates those counts. Current versions of the      */
//    /* compiler (~3.2.1) do not output the table of addresses, and without      */
//    /* that table gprof cannot process the counts. Possibly gprof should read   */
//    /* in the .bb and .bbg files generated for gcov processing, but that does   */
//    /* not happen at the moment.                                                */
//    /*                                                                          */
//    /* So for now gmon.out does not contain basic block counts and gprof        */
//    /* operations that depend on it, e.g. --annotated-source, won't work.       */
    
    /**
     * Write gmon.out file.
     **/
	private void dumpGmon()
	{
		if (memory==null)
			return;
		try
		{
		ByteArrayOutputStream b=new ByteArrayOutputStream();
		

//	    /*
//	     * Raw header as it appears on file (without padding):
//	     */
//	    struct gmon_hdr
//	    {
//	        char cookie[4];
//	        char version[4];    // a cyg_uint32, target-side endianness
//	        char spare[3 * 4];
//	    };
//	    #define	GMON_MAGIC	"gmon"	/* magic cookie */
//	    #define GMON_VERSION	1	/* version number */

//		   dump   binary memory gmon.out &profile_gmon_hdr ((char*)&profile_gmon_hdr + sizeof(struct gmon_hdr))
			b.write("gmon".getBytes());
			writeLong(b, 1); // version
			b.write(new byte[3*4]); // spare
			
//		    GMON_TAG_TIME_HIST = 0, GMON_TAG_CG_ARC = 1, GMON_TAG_BB_COUNT = 2

//			   append binary memory gmon.out &profile_tags[0] &profile_tags[1]
			b.write(new byte[]{0}); // GMON_TAG_TIME_HIST 


//			
//		    // The gprof documentation claims that this should be the size in
//		    // bytes. The implementation treats it as a count.
//		    profile_hist_hdr.hist_size  = (cyg_uint32) ((text_size + bucket_size - 1) / bucket_size);
//		    profile_hist_hdr.low_pc     = _start;
//		    profile_hist_hdr.high_pc    = (void*)((cyg_uint8*)_end - 1);
//		    // The prof_rate is the frequency in hz. The resolution argument is
//		    // an interval in microseconds.
//		    profile_hist_hdr.prof_rate  = 1000000 / resolution;
//		        
//		    // Now allocate a buffer for the histogram data.
//		    profile_hist_data = (cyg_uint16*) malloc(profile_hist_hdr.hist_size * sizeof(cyg_uint16));
//		    if ((cyg_uint16*)0 == profile_hist_data) {
//		        diag_printf("profile_on(): cannot allocate histogram buffer - ignored\n");
//		        return;
//		    }
//		    memset(profile_hist_data, 0, profile_hist_hdr.hist_size * sizeof(cyg_uint16));
			

			
//		    struct gmon_hist_hdr
//		    {
//		        /* host-side gprof adapts to sizeof(void*) and endianness.              */
//		        /* It is assumed that the compiler does not insert padding around the   */
//		        /* cyg_uint32's or the char arrays.                                     */
//		        void*       low_pc;             /* base pc address of sample buffer     */
//		        void*       high_pc;            /* max pc address of sampled buffer     */
//		        cyg_uint32  hist_size;          /* size of sample buffer                */
//		        cyg_uint32  prof_rate;          /* profiling clock rate                 */
//		        char        dimen[15];			/* phys. dim., usually "seconds"        */
//		        char        dimen_abbrev;		/* usually 's' for "seconds"            */
//		    };
			

			// maximum 65536 buckets.
			int length=memory.length*4;
			if (length > 60000)
			{
				length=60000;
			}
			int buckets[]=new int[length];
			for (long i=0; i<profile.length;i++)
			{
				buckets[(int)((i*(((long)buckets.length)-1))/(((long)profile.length)-1))]+=profile[(int)i];
			}
			
			
			
			//			   append binary memory gmon.out &profile_hist_hdr ((char*)&profile_hist_hdr + sizeof(struct gmon_hist_hdr))
			writeLong(b, 0); 					// low_pc
			writeLong(b, memory.length*4);		// high_pc
			writeLong(b, buckets.length);		// # of samples
			writeLong(b, 64000000); 			// 64MHz
			b.write("seconds".getBytes());
			b.write(new byte[15-"seconds".length()]);
			b.write("s".getBytes());
			
			
			
//			   append binary memory gmon.out profile_hist_data (profile_hist_data + profile_hist_hdr.hist_size)
			for (int i=0; i<buckets.length;i++)
			{
				int val;
				val=buckets[i];
				if (val>65535)
				{
					val=65535;
				}
				writeShort(b, val);
			}
			
			OutputStream o=new FileOutputStream("gmon.out");
			b.writeTo(o);
			o.flush();
			o.close();
			
		} catch (IOException e)
		{
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		

		
	}


	private void writeLong(ByteArrayOutputStream b, int i) throws IOException
	{
		int val=i;
		b.write(new byte[]{(byte)((val>>24)&0xff),
				(byte)((val>>16)&0xff),
				(byte)((val>>8)&0xff),
				(byte)((val>>0)&0xff)});
	}


	private void writeShort(ByteArrayOutputStream b, int i) throws IOException
	{
		int val=i;
		b.write(new byte[]{	(byte)((val>>8)&0xff),
				(byte)((val>>0)&0xff)});
	}


	private void dumpHistogram(long[] ms, long[] ms2)
	{
		List<OpcodeSample> l=new LinkedList();
        
        totalCycles = 0;
		for (int i=0; i<256; i++)
		{
			totalCycles+=opcodeHistogramCycles[i];
		}
		for (int i=0; i<ms.length; i++)
		{
			final int j=i;
			l.add(new OpcodeSample(j, ms2[j]));
		}
        Collections.sort(l, new Comparator()
        {

			public int compare(Object arg0, Object arg1)
			{
				OpcodeSample a=(OpcodeSample) arg0, b=(OpcodeSample) arg1;
				if (a.count<b.count)
				{
					return 1;
				} else if (a.count==b.count)
				{
					return 0;
				} else
				{
					return -1;
				}
			}
        });
        
        for (int i=0; i<ms.length; i++)
		{
        	if (totalCycles==0)
        		break;
			double d = ((double)l.get(i).count/((double)totalCycles));
			if (d<0.005)
				break;
			double cycPerIns = ((double)ms2[l.get(i).j]/((double)ms[l.get(i).j]));
			System.out.println("0x"+ Integer.toHexString(l.get(i).j) + " " + d + " " + l.get(i).count + " " + cycPerIns );
		}
	}


    private void printRange(int from, int to)
    {
        int totalLoadSP=0;
        for (int i=from; i<to; i++)
        {
            totalLoadSP+=opcodeHistogram[i];
        }
        
 		double d = ((double)totalLoadSP/((double)totalCycles));
         
        System.out.println(""+ from + " " + d + " " + totalLoadSP);
    }


//    private void printMemoryHistorgram()
//    {
//        Arrays.sort(profile, new Comparator()
//                {
//                    public int compare(Object o1, Object o2)
//                    {
//                        return (int)(((Profile)o2).counter-
//                                ((Profile)o1).counter);
//                    }
//                });
//        System.err.println("Profiling information");
//        for (int i=0; i<1000; i++)
//        {
//            if (profile[i].counter==0)
//            {
//                break;
//            }
//            System.err.println("0x"+Integer.toHexString(profile[i].address)+ " " + profile[i].counter);
//        }
//    }


	/**
	 * notify everybody that we are powering down
	 */
	public void shutdown()
	{
		powerdown=true;
		/* wake up */
		synchronized(halt)
		{
			halt.notify();
		}
	}


	/**
	 * This method can be invoked in two cases:
	 * 
	 * a) while the CPU is running on the simulator thread
	 * b) while the CPU is halted from other threads
	 */
	protected void resetHardwareInternal() throws CPUException
	{
		interrupt=false;
		timer=false;
		lastTimer=0;
		hitVector=false;
		instructionCount=0;
		for (int i=0; i<memory.length; i++)
        {
        	memory[i]=0;
        }
		
		setPcToVector(VECTOR_RESET); // starting address
        startStack=getStartStack();
        minStack=startStack;
		changeSp(startStack);
		
        intSp=0;

	}


	private void instructionLoop() throws EndSessionException, CPUException
	{
        /* wait for connection.... */
        for (;;)
        {
            try
            {

                /*
                 * execute an instruction.
                 * 
                 * If an exception happens while executing the instruction,
                 * invoke the approperiate exception vector.
                 * 
                 * If a second exception occurs while invoking the
                 * exception(i.e. before the first instruction of the vector
                 * is executed), invoke the reboot exception.
                 */
                executeInstruction();
            } catch (DebuggerBreakpointException e1)
            {
                suspend();
            } catch (InterruptException e1)
            {
                armVector(VECTOR_INTERRUPT);
            } catch (IllegalInstructionException e1)
            {
                suspend();
            } catch (MemoryAccessException e1)
            {
                suspend();
            } catch (CPUException e)
            {
                suspend();
            } catch (GDBServerException e)
            {
                suspend();
            }  catch (IOException e)
            {
                e.printStackTrace();
                suspend();
            } catch (RuntimeException e)
            {
                e.printStackTrace();
                suspend();
            } finally
            {
                checkCommit();
            } 
        }
	}


	private void armVector(int vector) 
	{
		// for now we always break as soon as we hit a vector
		if (vector!=VECTOR_INTERRUPT)
		{
		//	print(MINIMAL, "Vector " + vector + " armed at PC: " + formatHex(pc, "00000000"));
			suspend();
		}
		hitVector=true;
		nextVector=vector;
	}

	private void checkVector() throws CPUException
	{
		if (hitVector)
		{
			hitVector=false;
			invokeVector(nextVector);
		}
	}


	private void invokeVector(int vector) throws CPUException 
	{
		push(pc);
		setPcToVector(vector);
	}

	private void setPcToVector(int vector) throws MemoryAccessException
	{
		setPc(VECTORSIZE*vector+VECTORBASE);
	}

	private void executeInstruction() throws CPUException, EndSessionException, GDBServerException, IOException
	{
        for (;;)
        {
            checkHalt();
            
            /* jump to any armed vector */
            checkVector();

            checkInterrupts();
            
            tracer.instructionEvent();

            
            
            
            
            commit = false;
            savedSp=getSp();
            savedPc=pc;
            savedDecodeMask=decodeMask;
            touchedPc=false;
            
            instruction=cpuReadByte(pc);
            // electrons perish each time we attempt an instruction
            tick();
            
            if (((instruction&0x80)!=0))
            {
                int t=((instruction<<(32-7)))>>(32-7);
                
                if (decodeMask)
                {
                    int a;
                    a=(popIntStack()<<7)|(t&0x7f);
                    pushIntStack(a);
                } else
                {
                    pushIntStack(t);
                }
                decodeMask=true;
            } else
            {
                decodeMask = false;
                if (isAddSP(instruction))
                {
                    int offset=instruction - ADDSP;
                    int valAddr=sp+offset*4;
                    int a = popIntStack();
                    pushIntStack(cpuReadLong(valAddr) + a);
                } else if ((instruction >= LOADSP) && (instruction < LOADSP + 32))
                {
                    int addr;
                    addr = getSp();
                    int offset=(instruction - LOADSP)^0x10;
                    addr += 4 * offset;
                    pushIntStack(cpuReadLong(addr));
                } else if (isStoreSP(instruction))
                {
                    int addr;
                    addr = getSp();
                    int offset=(instruction - STORESP)^0x10;
                    addr += 4 * offset;

                    cpuWriteLong(addr, popIntStack());
                } else
                {
                    int addr;
                    int val;
                    switch (instruction)
                    {
                    case 0:
                        throw new DebuggerBreakpointException();
    
                    case PUSHPC:
                        pushIntStack(pc);
                        break;
                    case OR:
                        pushIntStack(popIntStack() | popIntStack());
                        break;
                    case NOT:
                        pushIntStack(popIntStack() ^ 0xffffffff);
                        break;
                    case LOAD:
                        pushIntStack(cpuReadLong(popIntStack()));
                        break;
                    case PUSHSPADD:
                        if (feeble[PUSHSPADD])
                        {
                            emulate();
                        } else
                        {
                            int a;
                            int b;
                            a=sp;
                            b=popIntStack()*4;
                            pushIntStack(a+b);
                        }
                        break;
                    case STORE:
                        addr = popIntOrExt();
                        val = popIntOrExt();
                        cpuWriteLong(addr, val);
                        break;
                    case POPPC:
                    {
                    	// NB!!!! does NOT flush internal stack
                    	int a;
                        if (intSp>0)
                        {
                        	a=popIntStack();
                        } else
                        {
                        	a=pop();
                        }
                        
                        if ((sp>=emulateSp)&&(emulateInProgress))
                        {
                        	emulateInProgress=false;
                        	/* we returned from an emulate instruction */
                        	emulateOpcodeHistogram[emulateOpcode]++;
                        	emulateOpcodeHistogramCycles[emulateOpcode]+=cycles-emulateCycles;
                        }
                        
                        setPc(a);
                        break;
                    }
                    case POPPCREL:
                        if (feeble[POPPCREL])
                        {
                            emulate();
                        } else
                        {
                        	setPc(popIntStack()+getPc());
                        }
                        break;
                    case FLIP:
                        pushIntStack(flip(popIntStack()));
                        break;
                    case ADD:
                        pushIntStack(popIntStack() + popIntStack());
                        break;
                    case SUB:
                        if (feeble[SUB])
                        {
                            emulate();
                        } else
                        {
                            int a=popIntStack();
                            int b=popIntStack();
                            pushIntStack(b-a);
                        }
                        break;
                    case PUSHSP:
                        pushIntStack(getSp());
                        break;
                    case POPSP:
                        changeSp(popIntStack());
                    	intSp=0;	// flush internal stack
                        break;
                    case NOP:
                        break;
                    case AND:
                        pushIntStack(popIntStack() & popIntStack());
                        break;
                    case XOR:
                        if (feeble[XOR])
                        {
                            emulate();
                        } else
                        {
                            pushIntStack(popIntStack() ^ popIntStack());
                        }
                        break;
                    case LOADB:
                        if (feeble[LOADB])
                        {
                            emulate();
                        } else
                        {
                            pushIntStack(cpuReadByte(popIntStack()));
                        }
                        break;
                    case STOREB:
                        if (feeble[STOREB])
                        {
                            emulate();
                        } else
                        {
                            addr = popIntStack();
                            val = popIntStack();
                            cpuWriteByte(addr, val);
                        }
                        break;
                    case LOADH:
                        if (feeble[LOADH])
                        {
                            emulate();
                        } else
                        {
                            pushIntStack(cpuReadWord(popIntStack()));
                        }
                        break;
                    case STOREH:
                        if (feeble[STOREH])
                        {
                            emulate();
                        } else
                        {
                            addr = popIntStack();
                            val = popIntStack();
                            cpuWriteWord(addr, val);
                        }
                        break;
                    case LESSTHAN:
                        if (feeble[LESSTHAN])
                        {
                            emulate();
                        } else
                        {
                            int a;
                            int b;
                            a = popIntStack();
                            b = popIntStack();
                            pushIntStack((a < b) ? 1 : 0);
                        }
                        break;
                    case LESSTHANOREQUAL:
                        if (feeble[LESSTHANOREQUAL])
                        {
                            emulate();
                        } else
                        {
                            int a;
                            int b;
                            a = popIntStack();
                            b = popIntStack();
                            pushIntStack((a <= b) ? 1 : 0);
                        }
                        break;
                    case ULESSTHAN:
                        if (feeble[ULESSTHAN])
                        {
                            emulate();
                        } else
                        {
                            long a;
                            long b;
                            a = ((long) popIntStack()) & INTMASK;
                            b = ((long) popIntStack()) & INTMASK;
                            pushIntStack((a < b) ? 1 : 0);
                        }
                        break;
                    case ULESSTHANOREQUAL:
                        if (feeble[ULESSTHANOREQUAL])
                        {
                            emulate();
                        } else
                        {
                            long a;
                            long b;
                            a = ((long) popIntStack()) & INTMASK;
                            b = ((long) popIntStack()) & INTMASK;
                            pushIntStack((a <= b) ? 1 : 0);
                        }
                        break;
    
                    case SWAP:
//                      if (feeble[SWAP])
//                      {
//                          emulate();
//                      } else
                      {
                          int swapVal=popIntStack();;
                          pushIntStack(((swapVal >>16)&0xffff)|(swapVal<<16));
                      }
                      break;
                    case MULT16X16:
//                      if (feeble[SWAP])
//                      {
//                          emulate();
//                      } else
                      {
                        int a=popIntStack();
                        int b=popIntStack();
                        pushIntStack((a&0xffff)*(b&0xffff));
                      }
                      break;
                    case EQBRANCH:
                        if (feeble[EQBRANCH])
                        {
                            emulate();
                        } else
                        {
                            int compare;
                            int target;
                            target = popIntStack() + pc;
                            compare = popIntStack();
                            if (compare == 0)
                            {
                                setPc(target);
                            } else
                            {
                                setPc(pc + 1);
                            }
                        }
                        break;
    
                    case NEQBRANCH:
                        if (feeble[NEQBRANCH])
                        {
                            emulate();
                        } else
                        {
                            int compare;
                            int target;
                            target = popIntStack() + pc;
                            compare = popIntStack();
                            if (compare != 0)
                            {
                                setPc(target);
                            } else
                            {
                                setPc(pc + 1);
                            }
                        }
                        break;
    
                    case MULT:
                        if (feeble[MULT])
                        {
                            emulate();
                        } else
                        {
                            pushIntStack(popIntStack() * popIntStack());
                        }
                        break;
                    case DIV:
                        if (feeble[DIV])
                        {
                            emulate();
                        } else
                        {
                            int a;
                            int b;
                            a = popIntStack();
                            b = popIntStack();
                            if (b == 0)
                            {
                                throw new CPUException();
                            }
                            pushIntStack(a / b);
                        }
                        break;
                    case MOD:
                        if (feeble[MOD])
                        {
                            emulate();
                        } else
                        {
                            int a;
                            int b;
                            a = popIntStack();
                            b = popIntStack();
                            if (b == 0)
                            {
                                throw new CPUException();
                            }
                            pushIntStack(a % b);
                        }
                        break;
    
                    case LSHIFTRIGHT:
                        if (feeble[LSHIFTRIGHT])
                        {
                            emulate();
                        } else
                        {
                            long shift;
                            long valX;
                            int t;
                            shift = ((long) popIntStack()) & INTMASK;
                            valX = ((long) popIntStack()) & INTMASK;
                            t = (int) (valX >> (shift & 0x3f));
                            pushIntStack(t);
                        }
                        break;
    
                    case ASHIFTLEFT:
                        if (feeble[ASHIFTLEFT])
                        {
                            emulate();
                        } else
                        {
                            long shift;
                            long valX;
                            shift = ((long) popIntStack()) & INTMASK;
                            valX = ((long) popIntStack()) & INTMASK;
                            int t = (int) (valX << (shift & 0x3f));
                            pushIntStack(t);
                        }
                        break;
    
                    case ASHIFTRIGHT:
                        if (feeble[ASHIFTRIGHT])
                        {
                            emulate();
                        } else
                        {
                            long shift;
                            int valX;
                            shift = ((long) popIntStack()) & INTMASK;
                            valX = popIntStack();
                            int t = valX >> (shift & 0x3f);
                            pushIntStack(t);
                        }
                        break;
    
                    case CALL:
                        if (feeble[CALL])
                        {
                            emulate();
                        } else
                        {
                        	intSp=0;	// flush internal stack
                            int address = pop();
                            push(pc + 1);
                            setPc(address);
                        }
                        break;
                    case CALLPCREL:
                        if (feeble[CALLPCREL])
                        {
                            emulate();
                        } else
                        {
                        	intSp=0;	// flush internal stack
                            int address = pop();
                            push(pc + 1);
                            setPc(address+pc);
                        }
                        break;
    
                    case EQ:
                        if (feeble[EQ])
                        {
                            emulate();
                        } else
                        {
                            pushIntStack((popIntStack() == popIntStack()) ? 1 : 0);
                        }
                        break;
    
                    case NEQ:
                        if (feeble[NEQ])
                        {
                            emulate();
                        } else
                        {
                            pushIntStack((popIntStack() != popIntStack()) ? 1 : 0);
                        }
                        break;
    
                    case NEG:
                        if (feeble[NEG])
                        {
                            emulate();
                        } else
                        {
                            pushIntStack(-popIntStack());
                        }
                        break;
    
                        
                        case CONFIG:
                        if (emulateConfig())
                        {
                            emulate();
                            cpu=ABEL;
                        } else
                        {
                            cpu = popIntStack();
                        }
                        switch (cpu)
                        {
                        case ABEL:
                            System.err.println("ZPU feeble instruction set");
                            for (int i = 0; i < feeble.length; i++)
                            {
                                feeble[i] = true;
                            }

                            setFeeble(); 
                            
                            break;
                        case ZETA:
                            System.err.println("ZPU full instruction set");
                            for (int i = 0; i < feeble.length; i++)
                            {
                                feeble[i] = false;
                            }
                            break;
                        default:
                            break;
                        }
                        break;
                        
                    case SYSCALL:
                        if (feeble[SYSCALL])
                        {
                            throw new IllegalInstructionException();
                        } else
                        {
                        	intSp=0;	// flush internal stack
                            syscall.syscall(this);
                        }
                        break;
                            
                    default:
                        throw new IllegalInstructionException();
                    }
                }
            }
            if (!touchedPc)
            {
                setPc(pc + 1);
            }
            committed();
            
            // one more instruction retired
            instructionCount++;
        }
	}


	protected void setFeeble()
	{
		feeble[NEQBRANCH] = false;
		feeble[EQ] = false;
		feeble[LOADB] = false;
		feeble[LESSTHAN] = false;
		feeble[ULESSTHAN] = false;
		feeble[STOREB] = false;
		feeble[MULT] = false;
		feeble[CALL] = true;
		feeble[POPPCREL] = true;
		feeble[LESSTHANOREQUAL] = true;
		feeble[ULESSTHANOREQUAL] = true;

		feeble[PUSHSPADD] = false;
		feeble[CALLPCREL] = false;
		feeble[SUB] = false;
	}


	private int popIntOrExt()
	{
		int a;
		if (intSp==0)
		{
			a=pop();
		} else
		{
			a=popIntStack();
		}
		return a;
	}

	int intSp;

	private int emulateSp;

	private int emulateOpcode;

	private boolean emulateInProgress;

	protected boolean timerPending;

	private boolean inInterrupt;
    private int popIntStack()
	{
//    	if (intSp<=0)
//    		throw new IllegalInstructionException();
    	intSp--;
    	return pop();
	}
    
    private void pushIntStack(int x)
	{
//    	if (intSp>=32)
//    		throw new IllegalInstructionException();
    	push(x);
    	intSp++;
	}



    private static boolean isAddSP(int instruction)
    {
        return (instruction >= ADDSP) && (instruction < ADDSP + 16);
    }


    private static boolean isStoreSP(int instruction)
    {
        return (instruction >= STORESP) && (instruction < STORESP + 32);
    }


    protected boolean emulateConfig()
    {
        return false;
    }


    private void checkCommit() throws CPUException
    {
        if (!commit)
        {
            decodeMask=savedDecodeMask;
            pc=savedPc;
            setSp(savedSp);
            committed();
        }
    }


    private void committed()
    {
        commit=true;
        tracer.commit();
    }


    private void emulate() throws CPUException
	{
    	// NB! Do NOT flush internal stack
//    	intSp=0;	// flush internal stack
        /* three total overhead to emulate instruction */
    	if (!emulateInProgress)
    	{
    		emulateInProgress=true;
	    	emulateSp = sp;
	    	emulateOpcode = getOpcode();
	    	emulateCycles = cycles;
    	}
		pushIntStack(pc+1);
		setPc((cpuReadByte(pc)-32)*VECTORSIZE+VECTORBASE);
	}



	private void checkInterrupts() throws InterruptException
	{
		if (!tracer.simInterrupt())
		{
			/* These flags are set *regardless* of interrupt state. */
			while (lastTimer+timerInterval<cycles)
			{
				if (timerInterval>0)
				{
					lastTimer+=timerInterval;
				} else
				{
					lastTimer=cycles;
				}
				timerPending=true;
			}
		}
		
		if (!interrupt)
			return;
		
        /* if we are in the middle of decoding an instruction, no interrupt */
        if (decodeMask)
        {
        	return;
        }
        if (tracer.simInterrupt())
        {
    		if (!tracer.onInterrupt())
    		{
    			inInterrupt=false;
    		}
    		if (inInterrupt)
    		{
    			return;
    		}
            /* Use trace information instead of trying to figure out when an interrupt happens. We don't try
             * to simulate anything more complicated than timer interrupts so we don't need to worry about source.
             */
            
    		if (tracer.onInterrupt()&&!inInterrupt)
    		{
    			if (!timer)
    			{
    				throw new IllegalInstructionException();
    			}
    			
    			inInterrupt=true;
    			timerPending=true;
    			throw new InterruptException();
    		}
            
        } else
        {
    		if (!timerPending)
    			inInterrupt=false;
    		
    		if (inInterrupt)
    		{
    			return;
    		}
            
    		if (timer&&timerPending)
    		{
    			inInterrupt=true;
    			throw new InterruptException();
    		}
        }
	}



	
	private void cpuWriteWord(int addr, int val) throws MemoryAccessException
	{
		if ((addr&0x1)!=0)
		{
			throw new MemoryAccessException();
		}
		for (int i=0; i<2; i++)
		{
			writeByte(addr+i, val>>(8*(1-i)));
		}
	}

	/**
     * @param i
     * @return
     * @throws MemoryAccessException
     */
	private int cpuReadWord(int addr) throws MemoryAccessException
	{
		if ((addr&0x1)!=0)
		{
			throw new MemoryAccessException();
		}
		return ((readByteInternal(addr+0)&0xff)<<8) | (readByteInternal(addr+1)&0xff);
	}

	private void cpuWriteByte(int addr, int val) throws MemoryAccessException
	{
		writeByte(addr, val);
	}


	protected boolean interrupt;
	protected long timerInterval;
    private boolean touchedPc;

	private boolean accessWatchPoint;

	private int accessWatchPointAddress;

	private int accessWatchPointLength;

    private boolean commit;

    private boolean savedDecodeMask;

    private int savedSp;

    private int savedPc;

    private long[] profile;

    private int cpu;

    private long sampledCycle;

    private Tracer tracer=new Tracer()
    {

        public void instructionEvent()
        {
            
        }

        public void commit()
        {
        }

        public void setSp(int sp)
        {
        }

		public void dumpTraceBack()
		{
			
		}

		public boolean onInterrupt()
		{
			return false;
		}

		public boolean simInterrupt()
		{
			return false;
		}
        
    };

    private int instruction;

	private long totalCycles;

	
	private String traceFileName;

	private int prevOpcode;

	private long prevCycles2;

	private int prevOpcode2;


	

	/**
	 * checks if the CPU should halt, and halts. Fn. returns when the
	 * CPU has resumed execution.
	 * @throws EndSessionException 
	 */
	private void checkHalt() throws EndSessionException
	{
		synchronized(halt)
		{
			if (powerdown)
			{
				throw new EndSessionException();
			}
			
			if (breakNext)
			{
				breakNext=false;
				
				halt.notify();
				try
				{
					syscall.halted();
					halt.wait();
					syscall.running();
				} catch (InterruptedException e)
				{
					e.printStackTrace();
				}
			}
			
			if (powerdown)
			{
				throw new EndSessionException();
			}
		}
	}

	private int flip(int i)
	{
		int t=0;
		for (int j=0; j<32; j++)
		{
			t|=((i>>j)&1)<<(31-j);
		}
		return t;
	}

	/** the CPU is writing a long during execution */
	public void cpuWriteLong(int addr, int val) throws MemoryAccessException
	{
		if (accessWatchPoint&&(addr==accessWatchPointAddress))
		{
			suspend();
		}
        if ((addr&0x3)!=0)
        {
            throw new MemoryAccessException();
        }
		if ((addr>=getIO())&&(addr<getIO()+IOSIZE))
		{
			ioWrite(addr, val);
		} else if ((addr>=0)&&(addr<=memory.length*4))
		{
			memory[addr/4]=val;
			validMemory[addr/4]=true;
		} else
        {
            throw new MemoryAccessException();
        }
	}

	public void writeByte(int addr, int val) throws MemoryAccessException
	{
		if ((addr>=0)&&(addr<memory.length*4))
		{
			memory[addr/4]=(memory[addr/4]&(~(0xff<<((3-addr&3)*8))))|((val&0xff)<<((3-addr&3)*8));
		} else 
		{
			throw new MemoryAccessException();
		}
	}

	protected void ioWrite(int addr, int val) throws MemoryAccessException
	{
        addr-=getIO();
		/* note, big endian! */
		switch (addr)
		{
			case 12:
                syscall.writeUART(val);
				break;
			case 20:
				interrupt=val!=0;
				break;
			case 28:
				timerInterval=val;
				break;
			case 32:
				timer=val!=0;
				break;
            case 0x24:
                syscall.writeUART(val);
                break;
            case 0x100:
                writeTimerSampleReg(val);
                break;
			default:
                break;
		}
		
	}




    protected void writeTimerSampleReg(int val)
    {
        if ((val&0x2)!=0)
        {
            sampledCycle=getSampleOffset(); // we need a fudge factor to make up for differences in when relative to the instruction the data is sampled.
        }
    }


	protected long getSampleOffset()
	{
		return cycles+2+0xd-(0x8e-0x74);
	}
	


    protected int ioRead(int addr) throws CPUException
	{
        addr-=getIO();
		/* note, big endian! */
		switch (addr)
		{
			case 20:
				return interrupt?1:0;
				
			case 32:
				return timer?1:0;
			
            case 0x24:
                return syscall.readUART();
                
                /* FIFO empty? bit 0, FIFO full bit 1(never the case) */
            case 0x28:
                return syscall.readFIFO();
                
            case 0x100:
            case 0x104:
            case 0x108:
            case 0x10c:
                
            case 0x110:
            case 0x114:
            case 0x118:
            case 0x11c:
            return readSampledTimer(addr, 0x100);
            
            case 0x200:
                return readMHz();
                
			default:
				throw new MemoryAccessException();
		}
	}




    protected int readMHz()
    {
        /* 90 MHz */
        return 100;
    }


    protected int readSampledTimer(int addr, int base)
    {
        int t=0;
        t=(int)((sampledCycle>>(((addr-base)/4)*32))&0xffffffff);
        return t;
    }



	private int cpuReadByte(int addr) throws MemoryAccessException
	{
		return readByteInternal(addr);
	}

	
	/** this is the CPU reading a long word during execution */
	public int cpuReadLong(int addr) throws CPUException
	{
		if (accessWatchPoint&&(addr==accessWatchPointAddress))
		{
			suspend();
		}
		if ((addr&0x3)!=0)
		{
			throw new MemoryAccessException();
		}
		if ((addr>=getIO())&&(addr<getIO()+IOSIZE))
		{
			return ioRead(addr);
		} else  if ((addr>=0)&&(addr<=memory.length*4))
		{
			return memory[addr/4];
		} else
        {
            throw new MemoryAccessException();
        }
	}

	/**
	 * Causes a cycle to pass.
	 * @throws MemoryAccessException 
	 */
	/** increase time and record how long we spent on this instruction */
    private void tick() throws MemoryAccessException
    {
        profile[pc]++;
        int opcode;
        opcode=readByte(pc);
        opcodeHistogram[prevOpcode]++;
        opcodeHistogramCycles[prevOpcode]+=cycles-prevCycles;
        int opcodePair=groupOpcode(prevOpcode2)*256+groupOpcode(prevOpcode);

        opcodePairHistogram[opcodePair]++;
        opcodePairHistogramCycles[opcodePair]+=cycles-prevCycles2;

        prevOpcode2=prevOpcode;
        prevOpcode=opcode;
        
        
        
        prevCycles2=prevCycles;
        prevCycles=cycles;
		cycles++;
    }

    private int groupOpcode(int instruction)
	{
        if (isAddSP(instruction))
        {
        	return ADDSP;
        } else if ((instruction >= LOADSP) && (instruction < LOADSP + 32))
        {
        	return LOADSP;
        } else if (isStoreSP(instruction))
        {
        	return STORESP;
        }

    	if ((instruction&0x80)!=0)
    		return 0x80;
    	return instruction;
	}


	public int readByte(int addr) throws MemoryAccessException
	{
		if ((addr>=0)&&(addr<memory.length*4))
		{
			return readByteInternal(addr);
		} else
		{
			throw new MemoryAccessException();
		}
	}

    
	protected int readByteInternal(int addr) throws MemoryAccessException
	{
		return (memory[addr/4]>>((3-addr&0x3)*8))&0xff;
	}

	private int pop() throws CPUException
	{
		int val;
		validMemory[getSp()/4]=false;
		val=cpuReadLong(getSp());
		setSp(getSp() + 4);
		return val;
	}

	private void push(int imm) throws CPUException
	{
		setSp(getSp() - 4);
		cpuWriteLong(getSp(), imm);
	}

    private  final class OpcodeSample
	{
		private final int j;

		int opcode;

		long count;

		private OpcodeSample(int j, long l)
		{
			this.j = j;
			opcode = j;
			count = l;
		}
	}


    

	private void initRam()
	{
		memory = (new int[getRAMSIZE()/4]);
		validMemory = new boolean[getRAMSIZE()/4];
		for (int i=0; i<validMemory.length; i++)
		{
			validMemory[i]=true;
		}
		
        profile = new long[getRAMSIZE()];
	}

	
	
	public void setPc(int pc) throws MemoryAccessException
	{
		if ((pc<VECTORBASE)||(pc>memory.length*4))
		{
			throw new MemoryAccessException();
		}
		this.pc = pc;
        touchedPc=true;
	}

	public int getPc()
	{
		return pc;
	}

	/** resume execution. This function returns when the CPU halts again. */
	public void cont()
	{
        for (;;)
        {
    		synchronized(halt)
    		{
    			halt.notify();
    			try
    			{
    				halt.wait();
    			} catch (InterruptedException e)
    			{
    				e.printStackTrace();
    			}
    		}
            if (syscall.doneContinue())
            {
                    break;
            }
        }
	}
	
    /** resume execution. This function returns when the CPU halts again. */
	public void step()
	{
		synchronized(halt)
		{
			suspend();
			cont();
		}
	}
	

	
	public int getReg(int regNum) throws CPUException
	{
		if ((regNum>=0)&&(regNum<32))
		{
           	return memory[regNum];
		} else if (regNum==32)
		{
			return getSp();
		} else if (regNum==33)
		{
			return pc;
		} else
		{
			throw new RuntimeException("Illegal getReg()");
		}
	}

	public int getREGNUM()
	{
		return 34;
	}

	public long getCycleCounter()
	{
		return cycles;
	}

	public void addWaitStates(int num)
	{
	}

	/** tells simulator to enter the suspended state */
	public void suspend()
	{
		synchronized(halt)
		{
		    breakNext=true;
		}
//		tracer.dumpTraceBack();
	}


    public long getPrevCycles()
    {
        return prevCycles;
    }

    public long getCycles()
    {
        return cycles;
    }


	public void enableAccessWatchPoint(int address, int length) throws CPUException 
	{
		if (accessWatchPoint)
		{
			throw new HardwareWatchPointException();
		}
		accessWatchPointAddress=address;
		accessWatchPointLength=length;
		accessWatchPoint=true;
	}
	public void disableAccessWatchPoint(int address, int length) throws CPUException 
	{
		if (!accessWatchPoint)
		{
			throw new HardwareWatchPointException();
		}
		if ((address!=accessWatchPointAddress)||(length!=accessWatchPointLength))
		{
			throw new HardwareWatchPointException();
		}
		
		accessWatchPoint=false;
	}

	/** POPSP changes the stack pointer */
    public void changeSp(int sp) throws CPUException 
    {
        setSp(sp);
        tracer.setSp(sp);
    }

    public void setSp(int sp) throws CPUException
    {
        if ((sp%4)!=0)
        {
            throw new IllegalInstructionException();
        }
        
        if (sp<minStack)
        {
            minStack=sp;
        }
        
        
        this.sp = sp;
    }


    public int getSp()
    {
        return sp;
    }
    public int getIntSp()
    {
        return (intSp+(INTSTACKSIZE-1))%INTSTACKSIZE;
    }


    

    protected int getIO()
    {
        return 0x80000000;
    }


    protected int getRAMSIZE()
    {
        return (2*1024*1024);
    }

    protected int getStartStack()
    {
        return memory.length*4-0x10000;
    }


    public void setTraceFile(String string)
    {
    	traceFileName=string;
    }


    public void setSyscall(Host syscall)
    {
        this.syscall=syscall;
    }


    public void loadImage(InputStream inputStream, int length) throws IOException, CPUException
    {
    	if (length==-1)
    		throw new IOException("File image length not known");
    	for (int i=0; i<length; i++)
    	{
		    int t=inputStream.read();
		    writeByte(0+i, t);
		} 
        
    }

    public int getArg(int num) throws CPUException
    {
        return cpuReadLong(getSp()+4+num*4);
    }


	public int getOpcode() throws MemoryAccessException
	{
		return readByte(pc);
	}

	static final int INTSTACKSIZE=32;

	public boolean checkMatch(Trace trace)
	{
		cycles=trace.cycle;
		if (!trace.undefinedIntSp)
		{
			if (trace.intSp!=((intSp+(INTSTACKSIZE-1))%INTSTACKSIZE))
				return false;
		}
		
		if ((getPc() != trace.pc) || (getSp() != trace.sp)
				|| (getOpcode() != trace.opcode))
		{
			return false;
		}
	    
		if (cpuReadLong(getSp()) == trace.stackA)
		{
			if (cpuReadLong(getSp() + 4) == trace.stackB)
			{
				return true;
			}
		}
		if ((!validMemory[getSp()/4])||cpuReadLong(getSp()) == trace.stackA)
		{
			if ((!validMemory[(getSp()+4)/4])||cpuReadLong(getSp() + 4) == trace.stackB)
			{
//				System.out.println("Undefined memory location mismatch");
				return true;
			}
		}
		if (!trace.undefinedIntSp)
		{
			if ((intSp<1)||cpuReadLong(getSp()) == trace.stackA)
			{
				if ((intSp<2)||cpuReadLong(getSp() + 4) == trace.stackB)
				{
					return true;
				}
			}
		}
	    return false;
	}


	public void sessionStarted()
	{
		if (traceFileName!=null)
		{
			tracer = new FileTracer(this, traceFileName);
		}

		/* Set the feeble flag to enable/disable instructions here */
		initRam();
		resetHardwareInternal();			


		
	}


	void printState(FileTracer fileTracer)
	{
		System.err.println("intSp: " + getIntSp());
		System.err.println(Integer.toHexString(getPc())+ " " +
		Integer.toHexString(getOpcode()) + " " +
		Integer.toHexString(getSp()) + " " + 
		Integer.toHexString(cpuReadLong(getSp())) + " " + 
		Integer.toHexString(cpuReadLong(getSp()+4)));
	}


	
	

}
OpenPOWER on IntegriCloud