forked from accellera-official/cci
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
1972 lines (1630 loc) · 65.6 KB
/
ChangeLog
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
ChangeLog
---------
Nov 14, 2019
Merge pull request #250 from /intel-doc-license-notice
Update NOTICE
Merge pull request #252 from /intel-feature-sc_variant
Nov 10, 2019
cci_rapidjson.h: decode JSON parse error
cci_value: add explicit copy constructor to reference types
Nov 6, 2019
Fix typo (Saint-Exupery)
Sep 2, 2019
cci_value: report error upon JSON parsing failure
Aug 10, 2019
cci_value: sc_variant -> sc_any_value
Apr 17, 2019
ex07_Parameter_Information: use explicit constructor for C++17
cci_value: use sc_variant, if available
Apr 15, 2019
cci_value: add missing cci_value::try_set<T>
cci_value: add conversion support for fixpoint types
cci_value: opt-in converter support
Update RapidJSON submodule
cci_param_untyped_handle: remove virtual functions
cci_value_converter: move instantiations after specializations
Makefile: allow variadic macros
Aug 1, 2018
Updated NOTICE file to align with systemc.
Jun 15, 2018
Merge pull request #248 from /intel-cleanup-add_ex19_project
Merge pull request #247 from /intel-feature-broker-memfn-cb
Add release note about cci_broker_handle update to suupport callback
Add Example 19 visual studio project file (had been filtered out)
cci_broker_handle: add overloads for member function callbacks
Add Example 19 golden log that got ignored by filter.
Merge pull request #246 from /intel-cleanup-release_1_0_prep
Merge pull request #245 from /intel-cleanup-interface-classes
Jun 14, 2018
README cleanups
Revert "Merge the callbacks interface directly into cci_broker_if"
Release 1.0.0 version info
Update READMEs for the 1.0 release.
Jun 13, 2018
Merge pull request #244 from /intel-fix-bhandle-orig-propagation
inline promote_originator() in handles for efficiency
Merge the callbacks interface directly into cci_broker_if
Disable copy ctor and assignment for interface classes
Jun 11, 2018
Init originator from current context in copy ctor
Remove propagation of originator in broker handles
Merge pull request #243 from /intel-fix-name_return_type
Add namespace and header for cstring functions
Jun 7, 2018
Consistently use char* as name() return type
May 24, 2018
Merge pull request #241 from /intel-fix-originator-sc_object-ctor
May 16, 2018
Remove cci_originator::get_parent_originator()
Make ctor with sc_object argument protected
Remove originator ctor with sc_object arg
Merge pull request #240 from /intel-fix-long-pathnames
May 9, 2018
Truncate examples paths
May 6, 2018
Merge pull request #239 from /intel-fix-name-query; closes #235.
Remove temp name() for consistency
May 4, 2018
Rename cci_param_if::get_name() to name()
Merge pull request #232 from /intel-cleanup-cadence-feedback
Fix formatting only.
Fix inability to specify a single test(s) reported by some users
Apr 19, 2018
Remove initialization of SYSTEMC_TEST
Merge pull request #236 from /intel-fix-clang60
Apr 18, 2018
cci_broker_handle: add missing include and const
Mar 30, 2018
More updates to address Ericsson & Cadence public review feedback.
Cleanup to address public review feedback from Ericsson & Cadence
Mar 28, 2018
Merge branch 'intel-fix-example24'
Mar 27, 2018
Merge pull request #229 from markfoodyburton/201-203-originator-cleanup
Mar 21, 2018
Added a comment that the originator is explicitly omitted from the as
Remove originator copies from handle assignes and ensure proper const
Remove local originator from broker implementations
Mar 12, 2018
Rename Example24 as Example19
Add PowerPoint for Reset example.
Mar 2, 2018
Process callbacks consistently during parameter reset()
Add cci_broker_if::get_preset_value_origin().
Mar 1, 2018
Example 24 cleanups
Feb 8, 2018
Merge pull request #225 from /intel-fix-ex16
Updates to Example24.
Feb 8, 2018
Update value originator before post-write cb in set_raw_value()
Change init() sequence to apply preset before adding param to broker
Feb 7, 2018
Revamped reset()
A better fix for recording originator of an updated preset value.
ex16: move converter specialization CCI namespace
Feb 6, 2018
Updated to show reset behaviors.
Add const to cci_param_untyped_handel::is_default_value()
Jan 5, 2018
Restore example24 in order to fix it.
Dec 19, 2017
Merge pull request #223 from /intel-cleanup-examples_ppt
Fix Linux instructions (final prep for public review)
Merge pull request #222 from /intel-fix-msvc10-mdd
MSVC'2010: explicitly select /MDd for Debug builds
Merge pull request #221 from /intel-sync-verify-pl
Cleanup for public review
Remove MT/d RuntimeLibrary overrides
Merge branch 'systemc-regressions/verify-pl' into intel-sync-verify-pl
Dec 17, 2017
Merge pull request #220 from /intel-cleanup-instructions
Merge pull request #219 from markfoodyburton/fix-ignore-unconsumed
Final cleanup of instructions.
fix to take ignored predicates into account for unconsumed.
Merge pull request #218 from /intel-fix-callbacks
cci_param_untyped: add missing callback unregistration
Merge pull request #217 from /intel-cleanup-ppt-terminology-part4
Merge pull request #216 from /intel-cleanup-ppt-terminology-part3
Merge pull request #215 from /intel-cleanup-ppt-terminology-part2
Merge pull request #213 from /intel-cleanup-tarball
Merge pull request #214 from /intel-msvc10-cleanups
Add note about DLL defaults on Windows
Update Ex05 project filenames to match example
Clean examples for public review.
Cleanup examples for public review.
Dec 15, 2017
Cleanup examples 5-10 for public review.
Fix some compiler warnings on MSVC'2010
Update MSVC'2010 solution and project files
Add note about Windows archiver limitation & workaround
Fix export-ignore and update version date for release tarball
Dec 14, 2017
Merge pull request #212 from /intel-cleanup-remove-example19
Merge pull request #210 from /intel-cleanup-disable-example24
Merge pull request #209 from /intel-cleanup-export-example26
Remove Example 19
Merge pull request #208 from /intel-cleanup-readmes
Disable example 24 in preparation for public review release
Remove Example 26
Dec 13, 2017
Fixes based on PR feedback.
Add AUTHORS for release kit.
Update README and related files in preparation for public review.
Dec 12, 2017
Merge pull request #207 from /intel-cleanup-LRM-alignment
Merge pull request #205 from /intel-fix-cleanup-cci_broker_if-
Dec 8, 2017
Call param destroy callbacks before unregistering param
Update set() to set_value() in comment.
Make password argument to set_cci_value() const.
Make cci_broker_if dtor protected
Dec 5, 2017
Remove cci_broker_if is_used() and param_exists().
Nov 30, 2017
Merge pull request #194 from /intel-cleanup-ppt-terminology
Nov 15, 2017
Powerpoints updated to reflect new semantics and logfiles.
PPT terminology updates and cleanup
Nov 7, 2017
Merge pull request #200 from /intel-cleanup-integral-type
Nov 3, 2017
Merge pull request #199 from /intel-misc-cleanup
Merge pull request #197 from /intel-fix-typed-handle
Update & fix MSVS project and filters.
Nov 2, 2017
CCI_NUMBER_(PARAM,VALUE) -> CCI_INTEGRAL_(PARAM,VALUE)
Doxygen updates
MSVC: add source/header file filters
examples: fix compiler warnings
README.txt: update build instructions
Makefile improvements
drop unused Makefile.defs
cci_filtered_range: rename nested class
cci_value_converter<sc_time>: leverage SystemC 2.3.2
cci_param_typed(_handle: set() -> set_value()
Drop implicit handle reattach upon parameter resurrection
cci_(broker|param)_if: make create_*_handle non-virtual
Add cci_param_cast<T> convenience function
cci_param_typed/cci_param_if/*_handle: cleanups and fixes
cci_broker_handle: cleanups and fixes
cci_abort: delegate to sc_abort on SystemC 2.3.2
Merge pull request #195 from markfoodyburton/139-get-broker-cleanup
Update vcxproj file for PR195.
Update Ex19 golden logfile.
Nov 1, 2017
minor fixes to comments, and register broker will silently accept re-
Oct 30, 2017
move broker_manager to use 'raw' sc_object hierarchy
Oct 26, 2017
Change the 'LRM' functions from being cci_broker_manager::get_broker
Oct 24, 2017
modifications to how the global broker is dealt with:
Sep 30, 2017
Changes to cleanup get_broker and remove the need to pass the origina
Sep 28, 2017
Merge pull request #193 from markfoodyburton/26_change_Intial_Preset
Change "Initial" to "Preset" accross the board.
Sep 27, 2017
Merge pull request #192 from /intel-fix-init-destroy
cci_param_if: improve originator interface
Sep 23, 2017
cci_param_if: improved initialization/destruction & cleanups
Sep 22, 2017
cci_param_untyped_handle: fix lifetime handling
Merge pull request #190 from markfoodyburton/182-remove-elaboration-m
Sep 20, 2017
basic removal of elaboration-mutable as a type of mutability
Sep 11, 2017
Merge pull request #188 from /intel-cleanup-misc
Sep 10, 2017
cci_global_cfg_broker: cleanups
Don't use 'cci::' namespace directly
RapidJSON: suppress -Wterminate warning on GCC 6.0 or later
RapidJSON: move symbols into cci_impl namespace
Sep 5, 2017
Merge pull request #183 from markfoodyburton/171_lock_cleanup
Sep 4, 2017
Slightly better fix in ex19 (which should be reworked/removed anyway)
Sep 2, 2017
Merge pull request #187 from /intel-cleanup-greencontrol
Merge pull request #186 from /-intel-cleanup-PR179
Additional submodule cleanup
Sep 1, 2017
Merge pull request #185 from markfoodyburton/152-broker-api-update
added anonymous namespace
Sep 1, 2017
Drop more GS references
Fixes in accordance with discussion. Base 'globality' on a virtual fu
Drop GreenControl submodule leftovers
Futher cleanup to lock, and removal of some excess in param_if (as pe
fixes for #171 to cleanup the way lock works
Merge pull request #184 from markfoodyburton/missing_map_include
MSVS cleanup for PR179
Merge pull request #179 from /intel-feature-error-handling
Aug 31, 2017
Trivial missing <map> causing some gcc's to cry.
cci_abort: temporarily disable call to sc_abort
Merge pull request #180 from /intel-fix-remove-gs-submodules
Merge pull request #178 from /intel-cleanup-originator
Aug 29, 2017
Merge pull request #177 from /intel-cleanup-cmnhdr-includes
Merge pull request #181 from /intel-fix-cci_value-pointer_traits
cci_value: add support for pointer_traits
Merge pull request #176 from /intel-feature-cci_value-move
cci_report_handler: remove unneeded header fil
Remove gs submodules
Aug 27, 2017
Harden error paths (closes #144)
cci_report_handler: improve error handling (closes #175)
cci_originator: add move support, cleanups
cleanup includes (no functional changes)
cci_cmnhdr.h: sync with SystemC
cci_value: add move support
Aug 25, 2017
Merge pull request #170 from /intel-feature-cci_value-at-insert
Aug 10, 2017
Merge pull request #169 from /intel-cleanup-ns-detail
ex16: fix user-defined datatype converter
Aug 8, 2017
cci_value_list: implement missing insert overload
cci_value_map: move const find overloads to cref
cci_value_map: refine key-based access
cci_value_list: refine element-wise access
Rename cci::detail namespace to cci::cci_impl
Aug 7, 2017
Merge pull request #166 from /intel-fix-callback-exceptions
Aug 6, 2017
Merge branch 'markfoodyburton-fix-164'
Update golden regression log.
Merge branch 'master' of https://github.com/OSCI-WG/cci
Merge branch 'markfoodyburton-fix-164'
Aug 6, 2017
Fix outdated invalidate() call using an argument.
Merge branch 'fix-164' of https://github.com/markfoodyburton/cci into
Aug 5, 2017
verify.pl: update MSVC runtime default
Jul 13, 2017
Merge pull request #163 from markfoodyburton/examples-fixes
Merge pull request #162 from /intel-fixes-gsbroker-removal
Jul 6, 2017
Add exception safety to parameter callback handling
Jul 3, 2017
Fixes to resolve issue/164.
May 11, 2017
Merge branch 'master' of https://github.com/OSCI-WG/cci
Merge pull request #160 from /intel-feature-cci_value
Merge branch 'master' into intel-feature-cci_value
Merge pull request #161 from /intel-fixes-cxx11
May 9, 2017
Merge branch 'master' of https://github.com/OSCI-WG/cci
Merge branch 'master' of github.com:markfoodyburton/cci
move fast_read/write mechanism to untyped param so it better tracks u
May 8, 2017
move example to cci_param
fixes to add new API members (and remove supurious call to get_defaul
The current private broker requires fully qualified names.
this used set_init_value to set values, whether they were initialized
ex07 relied on the is_default_value being a flag, e.g. when the value
fix for example 5 (seems to be working correctly, a comment was wrong
Remove lazy (and horrid) variadic macro, and fix up iterators to work
May 4, 2017
Removing lingering referneces to the GS broker now that the POC inclu
Apr 29, 2017
cci_value: add rapidjson::StringOutputStream
Apr 21, 2017
Use template aliases on C++11
Add and use CCI_TPLEXTERN_ (see osci-wg/systemc#187)
rapidjson: avoid -Wterminate warning on GCC in C++11
fixes for SystemC 2.3.2 and C++11 mode
Add CCI_CPLUSPLUS to determine the C++ baseline
Merge branch 'markfoodyburton-with-broker'
Merge branch 'with-broker' of https://github.com/markfoodyburton/cci
Apr 20, 2017
use CCI_TPLEXTERN_ (requires #161)
Apr 17, 2017
cci_value: add free-standing swap overload to mutable references
cci_value: avoid taking the address of proxy objects
cci_value: add iterator interface
cci_value: add missing string comparison overload
cci_value: guard against self-assignment
cci_value: fix comparison of null values
cci_value: (documentation) cleanup
cci_value: add simple pool for top-level objects
cci_value: update to RapidJSON v1.1.0
Apr 13, 2017
adopt the agreed semantice:
added and use has_initial_value
remove inheritence of broker_manager
a number of minor fixes (const's and other niceness)
Apr 10, 2017
remove the m_is_* from the param's
use try_get to make is_initial_value more robust, and to correctly id
use a try_get to better evaluate is_initial_value
check whether a param exists as well as the euqality of its initial v
more const and indent fixes for the broer handle this time
better null cci_value return
more const cleaning
consistent use of const for functions (and return types)
Apr 9, 2017
fixed comment
change the name 'implicit' to 'initial value'
make constructor explict
Fixed ordering issue in constructor
adjust ordering of members to avoide a -Wreorder issue.
modified include paths to consistently use prefixes
Apr 7, 2017
Merge branch 'lrm_prep_cci_value'
Rename cci_value_category enum values with VALUE vs. DATUM.
Rename cci_value's basic_type to be consistent with cci_param category.
Rename cci_value converter macros for clarity (CCI_VALUE_CONVERTER_EN
Update Ex07 to reflect renaming of get_basic_type() to get_data_categ
Apr 5, 2017
Rename get_basic_type() to get_data_category().
Fix case for CCI_VALUE_CONVERTER substitutions.
Feb 28, 2017
example to show simple TLM usage and check speed of parameters
This is an experimental commit to improve the speed of parameter acce
fix post read to actually be post read !
Feb 27, 2017
Initial commit to change is_default and initial _value calls to calcu
Fix to ordering bug in broker (corrupted used parameter values)
Feb 24, 2017
Reset all (instantiated) parameters at the end of elaboration (e.g. i
Feb 23, 2017
better reset handling for param's (taking into account if an init val
remove get_param_handles with a string once and for all (hopefully).
Feb 19, 2017
vsvars.bat: update default to MSVC 2010
Feb 16, 2017
Merge pull request #157 from /ex_clean
param names are always absolute, the relative handling in the broker
Update file names/locations for moving cci_value into cci_core/.
Group renaming and some slight declaration reordering to align with L
Feb 15, 2017
Split cci_data_type into separate roles for cci_value datum (cci_valu
Modified ex14 to use private broker, but note the old private broker
Remove the entire get_cci_value_keep_unused interface as it seems to
Add a reset method to typed parameters, and to untyped handles
Adding broker implementation: An instance is used for the global brok
Feb 14, 2017
add doc for compile and run cci examples
update example sldes
Feb 11, 2017
update example sldes
update name
Remove extraneous ctor.
Feb 10, 2017
Rename cci_value_traits to cci_value_converter.
Feb 6, 2017
Remove CR at end of command-line
Feb 5, 2017
examples update
Feb 4, 2017
Update comments to distinguish disabled (no conversion) from disallow
Remove bounds check todo comments; resulting truncation is fine for i
Move cci_value and cci_value_traits (along with rapidson.h) to the cc
Move cci_value and cci_value_traits (along with rapidson.h) to the cc
Feb 3, 2017
Merge pull request #156 from /vcxproj_update
Feb 1, 2017
Fix the list of include files to match the current code base.
Jan 31, 2017
Merge branch 'master' of https://github.com/OSCI-WG/cci into lrm_prep
Merge pull request #155 from /intel-sync-verify-pl
Merge pull request #151 from guyguy333/fix-link
Merge branch 'guyguy333-fix-link' into lrm_prep_cci_value
Merge branch 'fix-link' of https://github.com/guyguy333/cci into guyg
Add include required for latest MSVS2015 compiler.
Jan 29, 2017
example PowerPoint updates
cleanup
update a naming from parameter_container to parameter_owner
Jan 22, 2017
renaming and clean up
renaming and clean up
Sync with upstream branch 'verify.pl'
Jan 11, 2017
Avoid printing of comments in vsvars.bat
Dec 22, 2016
Merge pull request #154 from /dev_ex_to_reg_repo
Dec 21, 2016
Update instructions for running all examples.
Remove dev_examples references in the README files.
update tests results with all dev_examples removed
dev_examples and their git histories are moved to cci-regressions rep
Merge branch '-MSVS-project-file-for-Example-#22'
Merge branch 'MSVS-project-file-for-Example-#22' of https://github.co
Merge branch '-MSVS-project-file-for-Example-#22'
Minor updates and reformatting of PowerPoint presentations.
Merge branch 'MSVS-project-file-for-Example-#22' of https://github.co
Dec 20, 2016
Merge pull request #138 from /Updated-powepoint-slides-to-
Various refinements of the PowerPoint presentations.
Remove catching of (intended) exceptions which resulted in double rep
Add cpp FILE and LINE info when reporting issues. This reflects a loc
Remove set_actions override (for severity >= SC_ERROR); we should not
Merge branch '-Updated-powepoint-slides-to-reflect-changes
Merge branch 'Updated-powepoint-slides-to-reflect-changes-in-examples
Dec 19, 2016
Merge pull request #149 from guyguy333/255-remove-get-param-list
Update gs_broker submodule reference.
Dec 16, 2016
Updated with m_broker and fixed merge conflict
Dec 15, 2016
src: fix circular link dependency and static initialization
cci_cfg/cci_originator: fix compatibility with old compilers
examples/dev_examples: fix examples with unconsumed values API
cci_cfg: remove get_param_list()
Dec 14, 2016
Merge branch '-dev_ex_rm_clean'; closes #22 and closes #86.
Merge pull request #147 from guyguy333/253-cci-broker-handle
Update GS submodule references for PR#147.
Update MSVS project files with cci_broker_handle updates.
uplift
its on Dec 14, 2016
cci_cfg: add cci_broker_handle
Dec 13, 2016
Merge pull request #148 from guyguy333/254-remove-cci-debug
Merge pull request #137 from guyguy333/152-unconsumed-parameter
Update gs_broker submodule reference.
Merge branch '152-unconsumed-parameter' of https://github.com/guyguy3
cci_cfg: remove cci_debug
Dec 12, 2016
cci_filtered_range: fix initialization
cci_broker_if: add cci_name_value_pair type
Dec 11, 2016
add ppt for ex23
refactoring data names
refactoring
Dec 9, 2016
using reset api
add reset api
Dec 8, 2016
name update
rm is_initial_value_example and the missing feature is added into ex05
add set_initial_cci_value test after construcntion which is treated a
removed gs_example and one feature is converted to broker_get_originator
demo broker to get originator which is showed in gs_example. gs_examp
change name for compare relevant examples
change name for cci_value relevant examples
Dec 7, 2016
register_create_callback api demostrated in these two dev example has
Dec 4, 2016
update format to example styple
move hierarchical value set from dev to example
Dec 1, 2016
Update gs_broker submodule reference.
Nov 29, 2016
Added new CODING STYLE.txt and added power point slides for ex21 and
Nov 28, 2016
cci_filtered_range: various fixes
cci_filtered_range: improve the filter and iterator class
examples/ex05: add unconsumed initial cci value example
cci_broker_if: replace cci_param_filter_iterator with cci_param_range
examples/ex22: update with new API
cci_cfg: add unconsumed initial cci value querying and filtering support
cci_filtered_range: refactoring with nested iterator class
cci_filtered_range: rename cci_filter_iterator to cci_filtered_range
cci_filter_iterator: make the container configurable through a templa
cci_core: move cci_param_filter_iterator to a more generic cci_filter
Nov 22, 2016
Merge branch '-Replace-ASI-with-Accellera-in-sc_report-msg
Merge pull request #112 from guyguy333/134-broker-stack
Update greensocs submodule references.
cci_broker_manager: remove "cache" for calls to get_broker() and prin
cci_broker_manager: remove the originator parameter
examples/ex14: creates a specific private broker hierarchy
examples/ex14: update with the latest cci_broker_manager API
dev_examples/priv_broker_example: introduce a subtop to separate priv
dev_examples/priv_broker_example: remove uneeded explicit private bro
cci_originator: add is_unknow()
cci_broker_if: return get_latest_write_originator by value
cci_originator: simplify unknow originator creation
cci_originator: update operator== and operator< with the new logic
Nov 17, 2016
dev_examples/priv_broker_example: remove outdated comment
examples+dev_examples: remove the uneeded broker argument
Nov 16, 2016
dev_examples+examples: move cci_broker_if pointer to reference
cci_broker_if: rename create_global_cnf_broker to cci_get_global_broker
scripts/results: fix summary.txt
examples/ex06: move cci name type to CCI_ABSOLUTE_NAME for sc_main pa
examples+dev_examples: omit cci_originator argument of get_broker whe
dev_examples/broker_hierarchy: remove broker pointer
Nov 15, 2016
Merge branch 'Updated-powepoint-slides-to-reflect-changes-in-examples
scripts/results/summary: update with latest fixes
cci_param_untyped_handle: protect operator= against self assignement
dev_examples: add broker hierarchy example
cci_originator: update operator == and <
cci_originator: remove uneeded else
cci_originator: move swap method to public and update doc
cci_broker_manager: rename get_current_(parent_)broker() to get_(pare
cci_broker_manager: make get_current_parent_broker protected
examples/ex14: update to the latest cci_broker_manager API
cci_broker_manager: return the provided broker after registration for
examples/ex14_Hiding_Parameters: update to the new cci_broker_manager
dev_examples/priv_broker_example: update to the new cci_broker_manage
dev_examples/priv_broker_example: remove unused code
dev_examples/priv_broker_example: remove SC_INCLUDE_DYNAMIC_PROCESSES
cci_broker_manager: set originator argument as optional
cci_broker_manager: add register_broker method
cci_originator: fix compare operator
cci_originator: add get_parent_originator()
cci_broker_manager: simplify implementation
cci_originator: simplify constructor API
cci_originator: fix operator= memory leak
cci_originator: forbid empty originator
Nov 14, 2016
Updated examples 1-4 to remove outdated terminolgy and code.
cci_originator: simplify current_originator_object()
cci_cfg: fix broker stack
cci_originator: prefer __CCI_UNKNOWN_ORIGINATOR_STRING__ instead of a
Nov 10, 2016
Merge pull request #135 from /intel-sync-verify-pl
Merge pull request #133 from guyguy333/sc-dynamic-processes
Merge pull request #111 from guyguy333/153-search-predicate
Update gs_broker submodule reference for PR111.
scripts/results: update summary.txt
examples/ex22: add predicate example
Sync with upstream branch 'verify.pl'
cci_cfg: add predicate support
cci_cfg: introduce cci_param_filter_iterator class
cci_core/systemc: include SystemC dynamic processes support by default
vsvars.bat: add documentation+licensing
Nov 9, 2016
More update on log files to sync with OSCI-WG/ master
Merge branch 'master' of https://github.com/OSCI-WG/cci into Replace-
Update GreenSocs submodule references associated with PR127.
Nov 8, 2016
Updated log files
Merge branch 'master' of https://github.com/OSCI-WG/cci into Replace-
Nov 7, 2016
Changed "ASI" to "Accellera" and updated all log files- Resolves #131
Merge pull request #127 from guyguy333/238-gs-param-dependency
Nov 6, 2016
dev_examples/gs_example: remove the catch clause and update default v
dev_examples/callback_example: remove the catch clause and use the ri
Nov 4, 2016
verify.pl: change license to Apache-2.0
Nov 3, 2016
Merge pull request #130 from guyguy333/move-cci-core-types
Nov 2, 2016
scripts/results/summary: GPU meter is now 100%
cci_param_untyped_handle: add operator=
examples/ex14: add conflict name warning to the golden file
examples/ex19: fix build and golden file
examples/ex16: fix pre read callback originator
examples/ex08: fix pre read callback originator
examples/ex07: fix golden log
cci_cfg: add get_cci_value(originator) to fix pre/post read callback
cci_cfg: rename get_default_value_raw to get_raw_default_value
cci_cfg: add originator to get_raw_value to fix pre/post read callback
cci_param_typed: fix NULL password case
cci_param_typed: fix column width
examples/ex06: fix example with new API
cci_param_typed: fix pre write nested callback lock
dev_examples/gs_example: update to the new API
dev_examples/callback_example: catch bad cci_value during parameter c
cci_param_untyped: fix destruction for partially constructed params
examples/ex07: partial fix
cci_cfg: add get_default_cci_value()
cci_cfg: remove GS dependency
Oct 31, 2016
src: move cci_core_types.h to cci_core
Oct 29, 2016
Merge pull request #129 from /Updates-on-ex21
Merge pull request #128 from guyguy333/239-example-param-outside-sysc
Ex06 logfile(s) updated to reflect addition of colliding submodule in
Merge branch '239-example-param-outside-sysc' of https://github.com/g
Oct 28, 2016
Merge branch 'master' of https://github.com/OSCI-WG/cci
Merge pull request #126 from /callback_ex_updates
Merge branch '-callback_ex_updates'
Merge branch 'callback_ex_updates' of https://github.com//cci
Merge pull request #125 from guyguy333/237-datatype-cleanup
Merge branch 'guyguy333-236-mutability-getter'
Merge branch '236-mutability-getter' of https://github.com/guyguy333/cci
Merge for PR#124.
Merge branch 'master' of https://github.com/OSCI-WG/cci
Merge pull request #123 from guyguy333/235-systemc-2-3-1-support
Update greencontrol submodule reference.
Make submodule public in accordance with common guidelines.
Ex06 expected results for kernels older than 2.3.2.
Merge branch 'guyguy333-235-systemc-2-3-1-support'
Merge branch '235-systemc-2-3-1-support' of https://github.com/guyguy
Merge pull request #122 from guyguy333/234-remove-m-latest-write
Update gs_broker submodule reference.
Oct 26, 2016
Added ex21 project file to cci.sln, removed cciparamimpl.lib from cci
Oct 24, 2016
examples/ex06: add parameters outside the SystemC hierarchy
cci_param_untyped_handle: fix case original name is NULL
Oct 15, 2016
update result
cb update
callback update
../../dev_examples/cb_new_param/ObserverModule.h
minor adjust
add dummy_handle
minor update
Oct 14, 2016
cci_datatypes: split into cci_core_types.h and cci_mutable_types.h
prefix cci data type and move to upper-case
cci_datatypes: fix doxygen comment width
cci_datatypes: fix indentation and extra whitespaces
prefix parameter mutable type and move to upper-case
cci_cfg: add mutable type getter
update const function
cci_param_untyped_handle: avoid documentation duplication
examples/ex06: add a conflict name test with SystemC hierarchy
cci_cfg+cci_core: add SystemC 2.3.1 support for name collision avoidance
Oct 13, 2016
example updates
nested callback prevention
add param handle to event and add nested callback prevention
add param handle to event
cci_cfg: remove cci_param_untyped::m_latest_write_access_originator_v
Oct 12, 2016
Merge pull request #121 from guyguy333/156-fix-license-header
Merge pull request #120 from guyguy333/hotfix-oct-12
Update MSVS cciapi project file with files added/deleted for callbacks.
license: consistently apply the new Apache2 aligned license header
clean: remove uneeded files
packages: update gs module references
scripts: update regression summary
cci_param_untyped: restore code deleted in last merge
Update gs_broker submodule reference.
Merge branch 'guyguy333-148-callbacks'
Merge branch '148-callbacks' of https://github.com/guyguy333/cci into
Merge pull request #98 from guyguy333/146-destructed-parameters-acces
Update regression summary with addition of Ex#21.
Update greensocs submodule references.
Merge branch '146-destructed-parameters-accessor-rebase' of https://g
cci_core: rename cci_config.h to cci_cmnhdr.h
dev_examples/callback_standalone: update to latest callback API
cci_param_untyped: fix callback originator check
cci_originator: add operator==
cci_originator: fix string_name in case it's not defined
cci_cfg: add post_read callback
cci_cfg: update callback API name
cci_broker_if: clean
cci_broker_if: fix indentation
cci_broker_if: fix build with clang
cci_param: improve readability/maintainability
cci_param: simplify unregister callback API
cci_param_typed: add note about default value
cci_param: fix value_type
cci_param: fix documentation
cci_param_callbacks: remove duplicate
cci_param_handle: add read callback support
cci_param: fix typed handle ambiguity
cci_param: global callback fix typed/untyped tag
cci_param_callbacks: add cci_param_write_event_untyped and cci_param_
cci_param: improve read callback API
cci_param: improve write / validate write callback API
cci_param_untyped: fix fixed type param callback
cci_param_typed: group related callback methods
cci_param_typed: remove uneeded explicit namespace
cci_param_typed: remove duplicated code
cci_param_typed: run write callback after actual write and validation
cci_param_typed: remove uneeded cast
cci_param_typed: pass value by reference
cci_param_typed: replace T by value_type
cci_broker_if: add cci_broker_callback_if inheritance
cci_cfg: add more convenient callback registration methods
cci_cfg: create_param_handle returns by value
cci_param_typed: fix write callback with pwd
cci_cfg: add read callback
examples/ex19: add support for new cci_param_if API
examples/ex21: move to the new Apache header
cci_cfg: add parameter destruction / resurrection support
Sep 28, 2016
cci_cfg: add write callbacks
cci_cfg: fix indentation
cci_broker_if: fix missing header
callbacks: documantation fixes, small example cleanups
Initial callback proposal - not yet integrated
fixup compilation errors
cci_cfg: drop Boost dependency
cci_cfg: remove old callback version
Modified cci_param classes to use new API interfaces
Added CCI_MOVE macro to help with move semantics
Added cci_callback support for a single parameter
Adding callback wrapper class
Adding handle class for callback registrations
Adding check for rvalue compiler support (continually enable move sem
Sep 23, 2016
Merge pull request #109 from /administrative_items
Add guidlines for enum naming and doxygen @copydoc.
Sep 15, 2016
Merge branch 'guyguy333-138-top-level-parameter'
Direct example output into a dedicated directory to avoid cross-examp
Update greencontrol submodule reference.
Merge branch '-Built-projects-of-examples-for-cci'
Merge branch 'Built-projects-of-examples-for-cci' of https://github.c
Change CCI_TOP_LEVEL_NAME to CCI_ABSOLUTE_NAME in a few lingering exa
Merge pull request #104 from /Updated-README-and-Instructi
Merge branch '138-top-level-parameter' of https://github.com/guyguy33
Built projects of examples and included all projects in sln file of cci
Merge pull request #101 from guyguy333/136-cci-name-gen
cci_cfg/cci_param_typed: replace cci_top_level_name with cci_name_type
Add guideline for naming include guard macros.
The NOTICE file in support of the Apache License, Version 2.0; this c
Sep 14, 2016
Changed the path syntax to avoid confusion
cci_cfg/cci_param_typed: add documentation of constructors
cci_cfg/cci_param_typed: remove confusion in constructors
cci_param_typed: add originator as an optional constructor argument
cci_param_typed: remove unused constructors
examples/ex06_Parameter_Naming: fix golden file
dev_examples/priv_broker_example: fix golden file
scripts/verify.pl: add SC_INCLUDE_DYNAMIC_PROCESSES for GreenControl
Update MSVS project to reflect renamed class and new source file.
cci_name_gen: use SystemC registry name
Updated all README and Instructions in CCI
Sep 13, 2016
Merge branch '138-top-level-parameter' of https://github.com/guyguy33
Sep 12, 2016
Merge pull request #103 from guyguy333/fix-gs-reference
Regression summary with expected failures (11) due to callbacks rework.
Merge branch 'fix-gs-reference' of https://github.com/guyguy333/cci i
packages/gs_broker: update reference
Sep 8, 2016
Merge branch 'master' of https://github.com/OSCI-WG/cci
Merge pull request #94 from guyguy333/217-fix-global-broker-originator
Merge branch 'guyguy333-217-fix-global-broker-originator'
Set gs_broker submodule ref to 217-fix-global-broker-originator branch.
Merge branch '217-fix-global-broker-originator' of https://github.com
Merge branch 'master' of https://github.com/OSCI-WG/cci
Merge pull request #96 from guyguy333/218-handle-by-value
Merge branch 'guyguy333-218-handle-by-value'
Set gs_broker ref to 218-handle-by-value branch.
cci_param_typed: add originator as an optional constructor argument
cci_param_typed: remove unused constructors
Sep 7, 2016
cci_originator: refactoring and simplification
Sep 6, 2016
Merge pull request #17 from /intel-feature-msvc14
Sep 5, 2016
cci_originator: remove constructor with pointer to module/object
cci_originator: improve name constructor doc
cci_originator: group constructors
cci_originator: move to cpp
cci_originator: remove non-standard code
cci_originator: add cci_originator constructor with rescue name
cci_param_untyped_handle: move constructor to public
cci_param_untyped_handle: mark invalid constructor as explicit
examples/dev_examples: update examples with handle returned by value
cci_param_typed: fix get_default_value()
cci_cfg: remove is_handle()
cci_cfg: return param handle by value
Sep 3, 2016
Remove cci_factory.h which is no longer relevant from the cciapi proj
Merge branch '-Baseline-MSVS-2010-for-cci'
Merge branch 'Baseline-MSVS-2010-for-cci' of https://github.com/sonal
Merge pull request #97 from guyguy333/151-metadata
Add new metadata support in example param implementation of ex19 to g
Sep 2, 2016
Merge branch '151-metadata' of https://github.com/guyguy333/cci into
Reconcile 2 dev_examples with recent json API updates, restoring them
Merge branch 'guyguy333-gs-ref-09-01'
Sep 1, 2016
packages: update greencontrol and gs_broker references
cci_param_typed: check init value is not null first
cci_cfg: add metadata support
Merge pull request #77 from guyguy333/147-serialization-cci-value
cci_broker_if: set get_cci_value_keep_unused as a const method
cci_cfg: remove JSON comments
examples/ex19: update to latest CCI API
cci_broker_if: align API with cci_value
cci_value: clean serialization / deserialization API
move serialization / deserialization from cci_param_if to cci_value
dev_examples/gs_example: fix golden file
Aug 25, 2016
Merge pull request #95 from guyguy333/141-broker-api-init
Merge pull request #84 from guyguy333/137-cci-report-handler
Merge pull request #93 from guyguy333/216-protect-raw-value
Document Updated as msvc10 migration
Aug 19, 2016
Migration from msvc80 to msvc10 with VS2010 as baseline
Aug 18, 2016
cci_param_typed: initialize value in case an initial value is available
cci_broker_if: add get_initial_cci_value
dev_examples/cci_hierarchical_values_set: update golden log
cci_macros: remove unused macro
cci_macros: enable cci_report_handler macros outside of CCI
cci_report_handler: more generic prefix