-
Notifications
You must be signed in to change notification settings - Fork 2
/
changes
11511 lines (7740 loc) · 365 KB
/
changes
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
-----------
emer Date: Mon Nov 6 16:00:22 EST 2006 CSN: CSN-asim-6
Mon Nov 6 21:00:22 UTC 2006
Directory tools/scripts
asim-shell Locally Modified 5
Temporarily disable package locking since we have no lock
manager at this time.
----------
jsemer Date: Wed Nov 8 09:45:19 EST 2006 CSN: CSN-asim-7
Wed Nov 8 14:45:19 UTC 2006
Directory .
configure Locally Modified 6
Makefile.in Locally Modified 6
configure.in Locally Modified 6
Directory libperl/AsimShell/lib/AsimShell
Commands.pm Locally Modified 6
Directory libperl
Makefile.in Locally Modified 6
Directory libperl/Asim/lib/Asim
Repository.pm Locally Modified 6
Directory libperl/Asim/lib/Asim/Package
Svn.pm Locally Modified 6
Directory libperl/Asim/lib/Asim
UnionDir.pm Locally Modified 6
Package.pm Locally Modified 6
Directory libperl
Makefile.am Locally Modified 6
Directory tools
Makefile.in Locally Modified 6
Directory tools/scripts
Makefile.in Locally Modified 6
regression.verifier Locally Modified 6
asim-run Locally Modified 6
Directory tools/awb/amc
Makefile.in Locally Modified 6
Directory tools/awb/apm-edit
Makefile.in Locally Modified 6
Directory tools/awb
Makefile.in Locally Modified 6
Directory tools/awb/awb-wizard
Makefile.in Locally Modified 6
Directory tools/awb/awb-resolver
Makefile.in Locally Modified 6
Directory tools/awb/awb2
Makefile.in Locally Modified 6
Directory tools/dreams
Makefile.in Locally Modified 6
Directory tools/dreams/dbtest
Makefile.in Locally Modified 6
Directory tools/dreams/dbtest/src
Makefile.in Locally Modified 6
Directory lib/libdraldb
Makefile.in Locally Modified 6
Directory lib/libdraldb/include
Makefile.in Locally Modified 6
Directory lib/libasim
Makefile.in Locally Modified 6
Directory lib/libasim/include
Makefile.in Locally Modified 6
Directory lib/libasim/include/asim
xmlout-nolib-gz.h Locally Added 0
cache.h Locally Modified 6
Directory lib/libawb
Makefile.in Locally Modified 6
Directory lib/libagt
Makefile.in Locally Modified 6
Directory lib/libagt/include
Makefile.in Locally Modified 6
Directory lib
Makefile.in Locally Modified 6
Directory lib/libdral
Makefile.in Locally Modified 6
Directory lib/libdral/include
Makefile.in Locally Modified 6
Directory etc
asimrc.template Locally Modified 6
Directory .
aclocal.m4 Locally Modified 6
Updated with changes in simcore up to revision number 2227
Joel
----------
jsemer Date: Wed Nov 8 10:31:07 EST 2006 CSN: CSN-asimcore-8
Wed Nov 8 15:31:07 UTC 2006
Directory admin/packages
asim Locally Removed 7
asimcore Locally Added -
Directory libperl/Asim/lib/Asim/Workspace
Template.pm Locally Modified 6
Directory lib/libasim/src
xmlout-nolib-gz.cpp Locally Added 0
Directory etc
asim.pack Locally Modified 6
Directory .
configure Locally Modified 7
configure.in Locally Modified 7
Change name to asimcore.
Joel
----------
jsemer Date: Wed Nov 8 11:03:34 EST 2006 CSN: CSN-asimcore-9
Wed Nov 8 16:03:34 UTC 2006
Directory etc
asim.pack Locally Modified 8
Changed asimcore repository location from .../svn/asim to .../asim/asimcore
Joel
----------
emer Date: Wed Nov 8 17:15:19 EST 2006 CSN: CSN-asimcore-11
Wed Nov 8 22:15:19 UTC 2006
Directory libperl/Asim/lib/Asim/Workspace
Template.pm Locally Modified 10
Fixed up template creation for new workspaces.
Joel
----------
emer Date: Wed Nov 8 18:00:26 EST 2006 CSN: CSN-asimcore-12
Wed Nov 8 23:00:26 UTC 2006
Directory etc
awb.config.template.in Locally Modified 11
Fixed awb.config template to match new package name.
Joel
----------
pellauer Date: Wed Dec 20 11:10:17 EST 2006 CSN: CSN-asimcore-13
Wed Dec 20 16:10:17 UTC 2006
Directory .
configure Locally Modified 12
configure.in Locally Modified 12
Directory lib/libasim/include/asim
trace.h Locally Modified 12
Added better checking for QT, also added assert.h so that it builds on Debian.
Michael
----------
spartha1 Date: Tue Mar 13 16:12:45 EDT 2007 CSN: CSN-asimcore-14
Tue Mar 13 20:12:45 UTC 2007
Directory libperl/AsimShell/lib/AsimShell
Commands.pm Locally Modified 13
Updating with simcore changes (rev. 2229)
- Changed a number of package commands to take multiple packages
as arguments: delete, show, update, commit, configure, build, and
make commands can all take one or more package arguments now.
----------
spartha1 Date: Tue Mar 13 16:26:52 EDT 2007 CSN: CSN-asimcore-15
Tue Mar 13 20:26:52 UTC 2007
Directory libperl/AsimShell/lib/AsimShell
Completion.pm Locally Modified 14
Updating with simcore changes (rev. 2230)
- Command completion for commands that take multiple packages as arguments
----------
spartha1 Date: Tue Mar 13 16:30:35 EDT 2007 CSN: CSN-asimcore-16
Tue Mar 13 20:30:35 UTC 2007
Directory libperl/Asim/lib/Asim
Repository.pm Locally Modified 15
Updating with simcore changes (rev. 2231)
- You can now check out a specific version from a BitKeeper repository
using the same syntax as for SVN and CVS, i.e.
"checkout package <packagename>/<tag_or_version_number>"
----------
spartha1 Date: Tue Mar 13 16:33:19 EDT 2007 CSN: CSN-asimcore-17
Tue Mar 13 20:33:19 UTC 2007
Directory libperl/Asim/lib/Asim/Package
BitKeeper.pm Locally Modified 16
Updating with simcore changes (rev. 2232)
User now gets an error message with instructions on what to do
if he tries to update a BK package with changes that have not been
checked in locally.
----------
spartha1 Date: Tue Mar 13 16:37:16 EDT 2007 CSN: CSN-asimcore-18
Tue Mar 13 20:37:16 UTC 2007
Directory libperl/Asim/lib/Asim
GenCFG.pm Locally Modified 17
Directory tools/awb/awb2
awb_util.pm Locally Modified 17
Updating with simcore changes (rev. 2233)
Improve performance of awb on CFX files:
- Add --listflags option fo all CFX files. This lets awb find out whether
a generated CFG file has multiple regions in a single pass instead of
having to invoke the CFX file twice.
- Cache the result of CFX queries for 1 minute in awb. The awb GUI
is constantly probing the CFX file, even with mouse events. The cache
greatly improves performance.
----------
spartha1 Date: Tue Mar 13 16:40:33 EDT 2007 CSN: CSN-asimcore-19
Tue Mar 13 20:40:33 UTC 2007
Directory tools/scripts
asim-run Locally Modified 18
Directory etc
asimrc.template Locally Modified 18
Updating with simcore changes (rev. 2234)
- support for using seperate pool, class, queue netbatch params for build and run.
----------
spartha1 Date: Tue Mar 13 16:43:07 EDT 2007 CSN: CSN-asimcore-20
Tue Mar 13 20:43:07 UTC 2007
Directory libperl/Asim/lib/Asim/Package
Svn.pm Locally Modified 19
Updating with simcore changes (rev. 2235)
Fixed the problem of modified locked files not being recognized during a commit
----------
spartha1 Date: Tue Mar 13 16:45:46 EDT 2007 CSN: CSN-asimcore-21
Tue Mar 13 20:45:46 UTC 2007
Directory tools/scripts
asim-run Locally Modified 20
Updating with simcore changes (rev. 2236)
- changed semantics of nobuild option. Nobuild really wont build.
----------
spartha1 Date: Tue Mar 13 16:48:39 EDT 2007 CSN: CSN-asimcore-22
Tue Mar 13 20:48:39 UTC 2007
Directory tools/scripts
asim-run Locally Modified 21
Updating with simcore changes (rev. 2237)
- addresses second part of mantis #571. Added an
option --altexepath that specifies an area to look for
pre-built models. This option is meaningful only in
combination with nobuild option. Each model is looked in
the location after adding model_name/pm to the path specified.
----------
spartha1 Date: Tue Mar 13 17:43:00 EDT 2007 CSN: CSN-asimcore-23
Tue Mar 13 21:43:00 UTC 2007
Directory .
configure Locally Modified 22
Makefile.in Locally Modified 22
configure.in Locally Modified 22
Directory libperl
Makefile.in Locally Modified 22
Directory tools
Makefile.in Locally Modified 22
Directory tools/scripts
Makefile.in Locally Modified 22
Directory tools/awb/amc
Makefile.in Locally Modified 22
Makefile.am Locally Modified 22
Directory tools/awb/apm-edit
Makefile.in Locally Modified 22
Directory tools/awb
Makefile.in Locally Modified 22
Directory tools/awb/awb-wizard
Makefile.in Locally Modified 22
Directory tools/awb/awb-resolver
Makefile.in Locally Modified 22
Makefile.am Locally Modified 22
Directory tools/awb/awb2
Makefile.in Locally Modified 22
Directory tools
Makefile.am Locally Modified 22
Directory tools/dreams
Makefile.in Locally Modified 22
Directory tools/dreams/dbtest
Makefile.in Locally Modified 22
Directory tools/dreams/dbtest/src
Makefile.in Locally Modified 22
Directory lib/libdraldb
Makefile.in Locally Modified 22
Directory lib/libdraldb/include
Makefile.in Locally Modified 22
Directory lib/libasim
Makefile.in Locally Modified 22
Directory lib/libasim/include
Makefile.in Locally Modified 22
Directory lib/libawb
Makefile.in Locally Modified 22
Directory lib/libagt
Makefile.in Locally Modified 22
Directory lib/libagt/include
Makefile.in Locally Modified 22
Directory lib
Makefile.in Locally Modified 22
Directory lib/libdral
Makefile.in Locally Modified 22
Directory lib/libdral/include
Makefile.in Locally Modified 22
Updating with simcore changes (rev. 2238)
- Added --disable-64bit option to configure, to allow building 32-bit binaries
on x86_64 systems.
----------
spartha1 Date: Tue Mar 13 17:46:41 EDT 2007 CSN: CSN-asimcore-24
Tue Mar 13 21:46:41 UTC 2007
Directory libperl/AsimShell/lib/AsimShell
Commands.pm Locally Modified 23
Updating with simcore changes (rev. 2239)
- in batch mode, update, configure and build are attempted on all packages and
any error is reported at the end.
----------
spartha1 Date: Tue Mar 13 17:54:22 EDT 2007 CSN: CSN-asimcore-25
Tue Mar 13 21:54:22 UTC 2007
Directory lib/libasim/include/asim
state.h Locally Modified 24
Directory modules/system/basesystem_classic
basesystem_classic.cpp Locally Modified 24
Updating with simcore changes (rev. 2240)
- Added a StrValue method to the ASIM_STATE_CLASS
- This will be used to parse string parameters when adding
extra information to the default ADF files in basesystem_classic.cpp
----------
spartha1 Date: Tue Mar 13 17:56:43 EDT 2007 CSN: CSN-asimcore-26
Tue Mar 13 21:56:43 UTC 2007
Directory tools/scripts
asim-run Locally Modified 25
Directory etc
asimrc.template Locally Modified 25
Updating with simcore changes (rev. 2241)
- support for specifying EXTRA_NBQ_FLAGS param.
----------
spartha1 Date: Tue Mar 13 18:24:53 EDT 2007 CSN: CSN-asimcore-27
Tue Mar 13 22:24:53 UTC 2007
Directory libperl/AsimShell/lib/AsimShell
Help.pm Locally Modified 26
Directory libperl/Asim/lib/Asim
GenCFG/ Locally Added 0
Directory libperl/Asim/lib/Asim/GenCFG
Auto.pm Locally Added 0
Directory tools/scripts/bm/tracecache
single.cfx Locally Modified 26
single.setup Locally Removed 26
multi.cfx Locally Modified 26
Directory tools/scripts
asim-run Locally Modified 26
Updating with simcore changes (rev. 2242)
- Added another perl module Asim::GenCFG::Auto to encapsulate the common
operations performed by generic .cfx scripts, and simplify benchmark
configurations by allowing setup and run scripts to be given inline
with the configuration data.
Also fixed a bug in multi.cfx.
----------
spartha1 Date: Tue Mar 13 18:28:22 EDT 2007 CSN: CSN-asimcore-28
Tue Mar 13 22:28:22 UTC 2007
Directory lib/libasim/include/asim
rate_matcher.h Locally Modified 27
port.h Locally Modified 27
Directory lib/libasim/src
port.cpp Locally Modified 27
Updating with simcore changes (rev. 2243)
- For well over a year, the port code has been dynamically allocating
the storage associated with each read port. Since it's now doing it
dynamically (it used to be statically allocated), 2 assertions that
were checking the static size were irrelevant and removed.
Furthermore, there was no longer any need to specify a static size
in any port declaration if the port's bandwidth or latency exceeded
the default static size. So, all of these template parameters were
removed to make the code easier to read and understand.
----------
spartha1 Date: Tue Mar 13 18:30:20 EDT 2007 CSN: CSN-asimcore-29
Tue Mar 13 22:30:20 UTC 2007
Directory tools/scripts
model-browse Locally Modified 28
Updating with simcore changes (rev. 2244)
- fixed model browser GUI to understand multiple %public and %private
lines in awb files
----------
spartha1 Date: Tue Mar 13 18:35:55 EDT 2007 CSN: CSN-asimcore-30
Tue Mar 13 22:35:55 UTC 2007
Directory modules/system
single_chip_common_system.cpp Locally Modified 29
multi_chip_common_system.cpp Locally Modified 29
single_chip_clockserver_system.cpp Locally Modified 29
Directory modules/power_model
null_power_model.h Locally Modified 29
Updating with simcore changes (rev. 2245)
Make a call to myPowerModel.PowerPostProcessing() at the end
of a simulation interval to force power computation. This feature makes
it possible to compute power periodically (instead of every cycle) and still
be assured that at end-of-run, total power is represeneted.
----------
spartha1 Date: Tue Mar 13 18:43:03 EDT 2007 CSN: CSN-asimcore-31
Tue Mar 13 22:43:03 UTC 2007
Directory tools/scripts
asim-run Locally Modified 30
Updating with changes in simcore (rev. 2246)
- support for specifying nebatch expressions for class arguments.
----------
spartha1 Date: Tue Mar 13 23:45:08 EDT 2007 CSN: CSN-asimcore-32
Wed Mar 14 03:45:08 UTC 2007
Directory config/pm
controllerNativeTcl.apm Locally Modified 31
controllerTclBeamer.apm Locally Modified 31
Directory modules/controller/classic
schedule.h Locally Removed 31
args.h Locally Removed 31
args_x86.cpp Locally Modified 31
main.cpp Locally Modified 31
control_x86.cpp Locally Modified 31
control.h Locally Modified 31
schedule.cpp Locally Modified 31
args.cpp Locally Modified 31
controller_classic_alg.awb Locally Added 0
main_x86e.cpp Locally Modified 31
control_x86e.h Locally Modified 31
args_x86.h Locally Removed 31
controller_classic.awb Locally Modified 31
controller_classic_alg.h Locally Added 0
controller_x86.awb Locally Modified 31
controller_x86_alg.h Locally Added 0
control.cpp Locally Modified 31
controller_x86e.awb Locally Modified 31
controller_x86e_alg.h Locally Added 0
main_x86.cpp Locally Modified 31
control_x86.h Locally Modified 31
control_x86e.cpp Locally Modified 31
Updating with simcore changes (rev. 2247)
- Refactored the controllers to use a common base module
(controller_classic.awb) which can be specialized using plugin "algorithm"
modules tha %provide a controller_alg.
----------
spartha1 Date: Tue Mar 13 23:49:33 EDT 2007 CSN: CSN-asimcore-33
Wed Mar 14 03:49:33 UTC 2007
Directory modules/controller/classic
control.h Locally Modified 32
Updating with simcore changes (rev. 2248)
controlTraceable global defined in control.cpp, referenced in control.h
but no extern was defined for other modules. I assume this change is correct.
----------
spartha1 Date: Wed Mar 14 00:49:35 EDT 2007 CSN: CSN-asimcore-34
Wed Mar 14 04:49:35 UTC 2007
Directory lib/libasim/include/asim
trace.h Locally Modified 33
smp.h Locally Modified 33
pool_allocated_object.h Locally Modified 33
clockserver.h Locally Modified 33
rate_matcher.h Locally Modified 33
mm.h Locally Modified 33
dynamic_array.h Locally Modified 33
port.h Locally Modified 33
mmptr.h Locally Modified 33
clockable.h Locally Modified 33
trace_legacy.h Locally Modified 33
syntax.h Locally Modified 33
Directory lib/libasim/src
smp.cpp Locally Modified 33
clockserver.cpp Locally Modified 33
Directory modules/model/test_model/test_board
test_board.cpp Locally Modified 33
Directory modules/system
multi_chip_common_system.h Locally Modified 33
single_chip_clockserver_system.h Locally Modified 33
multi_chip_common_system.awb Locally Modified 33
single_chip_common_system.cpp Locally Modified 33
single_chip_clockserver_system.awb Locally Modified 33
single_chip_common_system.h Locally Modified 33
single_chip_common_system.awb Locally Modified 33
Directory modules/system/ape_system
ape.cpp Locally Modified 33
ape.h Locally Modified 33
ape.awb Locally Modified 33
Directory modules/system/system_minimal
system_mini.cpp Locally Modified 33
system_mini.h Locally Modified 33
system_mini.awb Locally Modified 33
Directory modules/system
multi_chip_common_system.cpp Locally Modified 33
single_chip_clockserver_system.cpp Locally Modified 33
Partially updating with simcore changes (rev. 2249)
Restructure SMP thread model to support global management of threads within
the simulator. Major changes include:
- Number of threads is no longer an argument to make. It is a property of
the model, stored in parameters in the system module.
- SMP class now has a number of static methods for managing threads.
The system calls the SMP initialization method.
- Cleaned up the threading interface to the clock server. Threads are no
named as objects instead of integers.
- The clock server calls SMP to start threads. All thread global IDs are
assigned by the SMP class.
- Updated atomic for better performance on 64 bit machines.
- Added compare and exchange functions to atomic.h
Note: no parallel models tested yet. This is all infrastructure change.
----------
spartha1 Date: Wed Mar 14 00:59:27 EDT 2007 CSN: CSN-asimcore-35
Wed Mar 14 04:59:27 UTC 2007
Directory lib/libasim/include/asim
syntax.h Locally Modified 34
Updating with simcore changes (rev. 2250)
Only include cctype on C++ compilations.
----------
spartha1 Date: Wed Mar 14 01:02:41 EDT 2007 CSN: CSN-asimcore-36
Wed Mar 14 05:02:41 UTC 2007
Directory modules/controller/classic
args_x86.cpp Locally Modified 35
control.cpp Locally Modified 35
Updating with simcore changes (rev. 2251)
- minor changes for improved readability & robustness
----------
spartha1 Date: Wed Mar 14 01:06:26 EDT 2007 CSN: CSN-asimcore-37
Wed Mar 14 05:06:26 UTC 2007
Directory tools/scripts
asimstarter.in Locally Modified 36
create-benchmark-file Locally Added 0
Updating with simcore changes (rev. 2252)
added tool "create-benchmark-file". run this tool without a command line to
see its usage. it is used for creating .benchmark file from a tlist or from
the trace_list tool. this works well with the fetch-trace tool.
----------
spartha1 Date: Wed Mar 14 01:09:26 EDT 2007 CSN: CSN-asimcore-38
Wed Mar 14 05:09:26 UTC 2007
Directory tools/scripts
create-benchmark-file Locally Modified 37
Updating with simcore changes (rev. 2253)
minor fix.
----------
spartha1 Date: Wed Mar 14 01:11:53 EDT 2007 CSN: CSN-asimcore-39
Wed Mar 14 05:11:53 UTC 2007
Directory modules/controller/classic
control.h Locally Modified 38
args.cpp Locally Modified 38
Updating with simcore changes (rev. 2254)
- Added the ability to specify command line args in a file,
using the syntax
-cfg <filename>
This arguments file can have one or multiple arguments on a line, or
comments starting with hash (#),and config files can recursively call
other config files.
This option should work in --feeder, --system or awb args sections,
or you could have a single file containing both --feeder and --system
sections.
Argument values may contain double-quoted (") sections, and the quote
characters are stripped before further parsing by the simulator, as they
would be in the shell. Thus any arg lists currently in .models files can
be copied verabatim into config files for use with -cfg.
This change was made to the classic controller base class, so any controller
based on it will inherit this feature.
----------
spartha1 Date: Wed Mar 14 01:15:47 EDT 2007 CSN: CSN-asimcore-40
Wed Mar 14 05:15:47 UTC 2007
Directory tools/awb/amc
amc.cpp Locally Modified 39
amc.h Locally Modified 39
Directory lib/libawb
model_builder.cpp Locally Modified 39
model_builder.h Locally Modified 39
Updating with simcore changes (rev. 2255)
- initial steps towards supporting persist qualifier for model configure.
----------
spartha1 Date: Wed Mar 14 03:08:44 EDT 2007 CSN: CSN-asimcore-41
Wed Mar 14 07:08:44 UTC 2007
Directory lib/libasim/include/asim
trace.h Locally Modified 40
smp.h Locally Modified 40
pool_allocated_object.h Locally Modified 40
clockserver.h Locally Modified 40
rate_matcher.h Locally Modified 40
mm.h Locally Modified 40
dynamic_array.h Locally Modified 40
port.h Locally Modified 40
mmptr.h Locally Modified 40
clockable.h Locally Modified 40
trace_legacy.h Locally Modified 40
syntax.h Locally Modified 40
Directory lib/libasim/src
smp.cpp Locally Modified 40
clockserver.cpp Locally Modified 40
Directory modules/model/test_model/test_board
test_board.cpp Locally Modified 40
Directory modules/system
multi_chip_common_system.h Locally Modified 40
single_chip_clockserver_system.h Locally Modified 40
multi_chip_common_system.awb Locally Modified 40
single_chip_common_system.cpp Locally Modified 40
single_chip_clockserver_system.awb Locally Modified 40
single_chip_common_system.h Locally Modified 40
single_chip_common_system.awb Locally Modified 40
Directory modules/system/ape_system
ape.cpp Locally Modified 40
ape.h Locally Modified 40
ape.awb Locally Modified 40
Directory modules/system/system_minimal
system_mini.cpp Locally Modified 40
system_mini.h Locally Modified 40
system_mini.awb Locally Modified 40
Directory modules/system
multi_chip_common_system.cpp Locally Modified 40
single_chip_clockserver_system.cpp Locally Modified 40
Backing out changes made in rev. 34 and 35.
----------
pellauer Date: Wed Mar 14 14:45:28 EDT 2007 CSN: CSN-asimcore-42
Wed Mar 14 18:45:28 UTC 2007
Directory libperl/Asim/lib/Asim
Model.pm Locally Modified 41
Directory tools/awb/awb2
awb_util.pm Locally Modified 41
Small changes to support Hasim running benchmarks.
Michael
----------
jsemer Date: Wed Mar 14 15:02:24 EDT 2007 CSN: CSN-asimcore-43
Wed Mar 14 19:02:24 UTC 2007
Directory libperl/Asim/lib/Asim
Model.pm Locally Modified 42
Some more small changes for hasim-configure command-line options.
Michael
----------
emer Date: Wed Mar 21 17:10:57 EDT 2007 CSN: CSN-asimcore-44
Wed Mar 21 21:10:57 UTC 2007
Directory etc
asim.pack Locally Modified 43
Added ofdm project.
----------
spartha1 Date: Fri Mar 30 15:36:59 EDT 2007 CSN: CSN-asimcore-45
Fri Mar 30 19:36:59 UTC 2007
Directory lib/libasim/include/asim
trace.h Locally Modified 44
smp.h Locally Modified 44
pool_allocated_object.h Locally Modified 44
clockserver.h Locally Modified 44
atomic.h Locally Modified 44
rate_matcher.h Locally Modified 44
mm.h Locally Modified 44
dynamic_array.h Locally Modified 44
message_handler_log.h Locally Modified 44
port.h Locally Modified 44
mmptr.h Locally Modified 44
clockable.h Locally Modified 44
threaded_log.h Locally Modified 44
trace_legacy.h Locally Modified 44
syntax.h Locally Modified 44
Directory lib/libasim/src
smp.cpp Locally Modified 44
atomic.cpp Locally Modified 44
clockserver.cpp Locally Modified 44
Directory modules/model/test_model/test_board
test_board.cpp Locally Modified 44
Directory modules/system
multi_chip_common_system.h Locally Modified 44
single_chip_clockserver_system.h Locally Modified 44
multi_chip_common_system.awb Locally Modified 44
single_chip_common_system.cpp Locally Modified 44
single_chip_clockserver_system.awb Locally Modified 44
single_chip_common_system.h Locally Modified 44
single_chip_common_system.awb Locally Modified 44
Directory modules/system/ape_system
ape.cpp Locally Modified 44
ape.h Locally Modified 44
ape.awb Locally Modified 44
Directory modules/system/system_minimal
system_mini.cpp Locally Modified 44
system_mini.h Locally Modified 44
system_mini.awb Locally Modified 44
Directory modules/system
multi_chip_common_system.cpp Locally Modified 44
single_chip_clockserver_system.cpp Locally Modified 44
Updating with simcore changes (rev. 2249 and 2250)
Restructure SMP thread model to support global management of threads within
the simulator. Major changes include:
- Number of threads is no longer an argument to make. It is a property of
the model, stored in parameters in the system module.
- SMP class now has a number of static methods for managing threads.
The system calls the SMP initialization method.
- Cleaned up the threading interface to the clock server. Threads are no
named as objects instead of integers.
- The clock server calls SMP to start threads. All thread global IDs are
assigned by the SMP class.
- Updated atomic for better performance on 64 bit machines.
- Added compare and exchange functions to atomic.h
Note: no parallel models tested yet. This is all infrastructure change.
Only include cctype on C++ compilations.
----------
spartha1 Date: Fri Mar 30 15:41:25 EDT 2007 CSN: CSN-asimcore-46
Fri Mar 30 19:41:25 UTC 2007
Directory lib/libawb
model_builder.cpp Locally Modified 45
Updating with simcore changes (rev. 2256)
- supported handling of sym links in persist configure option.
----------
spartha1 Date: Fri Mar 30 15:44:04 EDT 2007 CSN: CSN-asimcore-47
Fri Mar 30 19:44:04 UTC 2007
Directory lib/libawb
model_builder.cpp Locally Modified 46
model_builder.h Locally Modified 46
Updating with simcore changes (rev. 2257)
- supported linking of directories with persist qualifier.
- persist option to model configure is functional now.
----------
spartha1 Date: Fri Mar 30 16:28:51 EDT 2007 CSN: CSN-asimcore-48
Fri Mar 30 20:28:51 UTC 2007
Directory .
configure Locally Modified 47
Makefile.in Locally Modified 47
configure.in Locally Modified 47
Makefile.am Locally Modified 47
Updating with simcore changes (rev. 2258 and 2259)
- Fixed the perl Qt search path to look under .../lib64/... on SUSE64 with perl 5.8.7
instead of lib32, since that version of perl seems to be a true 64-bit binary.
- Added a make target "install-src-public" that does the same as "install-sc" but also
makes the installed source tree world-readable.
- look for PerlQt in either .../lib32/... or .../lib64/... depending
on whether you are on x86_64 or not, on SUSE.
----------
spartha1 Date: Fri Mar 30 16:33:05 EDT 2007 CSN: CSN-asimcore-49
Fri Mar 30 20:33:05 UTC 2007
Directory libperl/Asim/lib/Asim/Package
Commit.pm Locally Modified 48
Updating with simcore changes (rev. 2260)