├── ext ├── Kconfiglib │ ├── tests │ │ ├── empty │ │ ├── defconfig_1 │ │ ├── defconfig_2 │ │ ├── sub │ │ │ ├── defconfig_in_sub │ │ │ ├── Klocation_grsourced1 │ │ │ ├── Klocation_grsourced2 │ │ │ ├── Klocation_gsourced1 │ │ │ ├── Klocation_gsourced2 │ │ │ ├── Klocation_rsourced │ │ │ ├── Kconfig_symlink_2 │ │ │ ├── Kconfig_symlink_3 │ │ │ └── sub │ │ │ │ └── Kconfig_symlink_1 │ │ ├── config_set_bool │ │ ├── Kmissingrsource │ │ ├── Kmissingsource │ │ ├── Krecursive1 │ │ ├── Krecursive2 │ │ ├── config_set_string │ │ ├── Kdeploop1 │ │ ├── Kdeploop2 │ │ ├── Kdeploop0 │ │ ├── Kdeploop3 │ │ ├── Kescape │ │ ├── Kdeploop6 │ │ ├── Kmainmenu │ │ ├── Kdeploop9 │ │ ├── Kdeploop5 │ │ ├── Kdeploop4 │ │ ├── Kheader │ │ ├── Kdeploop8 │ │ ├── config_indented │ │ ├── Kdeploop7 │ │ ├── Kinclude_path_sourced_2 │ │ ├── Kdefconfig_nonexistent │ │ ├── Kdefconfig_srctree │ │ ├── Kinclude_path │ │ ├── Kappend │ │ ├── Kinclude_path_sourced_1 │ │ └── Kexpr_items │ ├── .gitignore │ ├── MANIFEST.in │ └── setup.cfg ├── softfloat │ ├── softfloat.ac │ ├── s_commonNaNToF16UI.c │ ├── s_commonNaNToF32UI.c │ ├── s_commonNaNToF64UI.c │ ├── s_f128UIToCommonNaN.c │ ├── s_f16UIToCommonNaN.c │ ├── s_f32UIToCommonNaN.c │ └── s_f64UIToCommonNaN.c ├── pybind11 │ ├── pybind11 │ │ └── py.typed │ ├── tests │ │ ├── extra_setuptools │ │ │ └── pytest.ini │ │ ├── extra_python_package │ │ │ └── pytest.ini │ │ ├── test_eval_call.py │ │ ├── test_union.py │ │ └── test_cmake_build │ │ │ └── main.cpp │ ├── .gitattributes │ ├── docs │ │ ├── _static │ │ │ └── css │ │ │ │ └── custom.css │ │ ├── pybind11-logo.png │ │ ├── pybind11_vs_boost_python1.png │ │ ├── pybind11_vs_boost_python2.png │ │ └── requirements.txt │ ├── .github │ │ ├── labeler_merged.yml │ │ ├── labeler.yml │ │ ├── dependabot.yml │ │ └── CODEOWNERS │ ├── .readthedocs.yml │ ├── tools │ │ ├── pyproject.toml │ │ └── pybind11.pc.in │ └── include │ │ └── pybind11 │ │ └── common.h ├── dramsys │ └── .gitignore ├── systemc │ └── src │ │ └── sysc │ │ └── qt │ │ └── md │ │ ├── null.README │ │ ├── axp.Makefile │ │ ├── ksr1.Makefile │ │ ├── default.Makefile │ │ ├── m88k.Makefile │ │ ├── axp.1.Makefile │ │ └── axp.2.Makefile ├── ply │ ├── ply.egg-info │ │ ├── top_level.txt │ │ └── dependency_links.txt │ ├── test │ │ ├── pkg_test1 │ │ │ └── parsing │ │ │ │ └── __init__.py │ │ ├── pkg_test2 │ │ │ └── parsing │ │ │ │ └── __init__.py │ │ ├── pkg_test3 │ │ │ ├── parsing │ │ │ │ └── __init__.py │ │ │ └── generated │ │ │ │ └── __init__.py │ │ ├── pkg_test4 │ │ │ └── parsing │ │ │ │ └── __init__.py │ │ ├── pkg_test5 │ │ │ └── parsing │ │ │ │ └── __init__.py │ │ ├── pkg_test6 │ │ │ └── parsing │ │ │ │ └── __init__.py │ │ ├── cleanup.sh │ │ └── lex_module.py │ ├── CHANGES │ ├── example │ │ ├── BASIC │ │ │ ├── sqrt2.bas │ │ │ ├── hello.bas │ │ │ ├── rand.bas │ │ │ ├── func.bas │ │ │ └── sqrt1.bas │ │ ├── cleanup.sh │ │ └── ansic │ │ │ └── README │ ├── ply │ │ └── __init__.py │ ├── setup.cfg │ └── MANIFEST.in ├── googletest │ ├── docs │ │ ├── _config.yml │ │ └── assets │ │ │ └── css │ │ │ └── style.scss │ ├── googlemock │ │ └── docs │ │ │ └── README.md │ └── googletest │ │ └── docs │ │ └── README.md ├── nomali │ └── .gitignore ├── sst │ └── sst │ │ └── README.md └── mcpat │ └── cacti │ └── cacti.i ├── src ├── python │ ├── gem5 │ │ ├── __init__.py │ │ ├── utils │ │ │ └── __init__.py │ │ ├── components │ │ │ ├── __init__.py │ │ │ ├── boards │ │ │ │ ├── __init__.py │ │ │ │ └── experimental │ │ │ │ │ └── __init__.py │ │ │ ├── devices │ │ │ │ ├── __init__.py │ │ │ │ └── gpus │ │ │ │ │ └── __init__.py │ │ │ ├── processors │ │ │ │ └── __init__.py │ │ │ ├── cachehierarchies │ │ │ │ ├── __init__.py │ │ │ │ ├── chi │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── nodes │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── classic │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── caches │ │ │ │ │ │ └── __init__.py │ │ │ │ └── ruby │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── viper │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── mi_example │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── mesi_two_level │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── mesi_three_level │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── topologies │ │ │ │ │ └── __init__.py │ │ │ └── memory │ │ │ │ └── dram_interfaces │ │ │ │ └── __init__.py │ │ ├── prebuilt │ │ │ ├── __init__.py │ │ │ ├── demo │ │ │ │ └── __init__.py │ │ │ ├── viper │ │ │ │ └── __init__.py │ │ │ └── riscvmatched │ │ │ │ └── __init__.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ └── client_api │ │ │ │ └── __init__.py │ │ └── simulate │ │ │ └── __init__.py │ └── m5 │ │ └── ext │ │ └── pyfdt │ │ └── __init__.py ├── mem │ ├── slicc │ │ └── generate │ │ │ └── __init__.py │ └── ruby │ │ └── protocol │ │ ├── chi │ │ └── CHI.slicc │ │ ├── Garnet_standalone.slicc │ │ ├── MI_example.slicc │ │ ├── MOESI_hammer.slicc │ │ └── MOESI_AMD_Base.slicc ├── systemc │ └── tests │ │ ├── systemc │ │ ├── misc │ │ │ ├── gnats │ │ │ │ ├── pr-130 │ │ │ │ │ └── COMPILE │ │ │ │ ├── pr-480 │ │ │ │ │ └── COMPILE │ │ │ │ ├── pr-52 │ │ │ │ │ └── COMPILE │ │ │ │ ├── pr-56 │ │ │ │ │ └── COMPILE │ │ │ │ ├── pr-5_1 │ │ │ │ │ └── COMPILE │ │ │ │ ├── pr-51_pos │ │ │ │ │ └── COMPILE │ │ │ │ ├── pr-2 │ │ │ │ │ └── golden │ │ │ │ │ │ └── pr-2.log │ │ │ │ ├── pr-25 │ │ │ │ │ └── golden │ │ │ │ │ │ └── pr-25.log │ │ │ │ ├── pr213 │ │ │ │ │ └── golden │ │ │ │ │ │ └── pr213.log │ │ │ │ ├── pr57 │ │ │ │ │ └── golden │ │ │ │ │ │ └── pr57.log │ │ │ │ ├── pr-134 │ │ │ │ │ └── golden │ │ │ │ │ │ └── pr-134.log │ │ │ │ ├── pr-233 │ │ │ │ │ └── golden │ │ │ │ │ │ └── pr-233.log │ │ │ │ ├── pr-47_3 │ │ │ │ │ └── golden │ │ │ │ │ │ └── pr-47_3.log │ │ │ │ ├── pr-503 │ │ │ │ │ └── golden │ │ │ │ │ │ └── pr-503.log │ │ │ │ └── pr-503-neg │ │ │ │ │ └── golden │ │ │ │ │ └── pr-503-neg.log │ │ │ ├── unit │ │ │ │ ├── extern │ │ │ │ │ └── COMPILE │ │ │ │ ├── extern2 │ │ │ │ │ └── COMPILE │ │ │ │ ├── rtlout │ │ │ │ │ └── test1 │ │ │ │ │ │ └── COMPILE │ │ │ │ ├── structs │ │ │ │ │ └── test3 │ │ │ │ │ │ └── COMPILE │ │ │ │ ├── alg_simp │ │ │ │ │ └── rule10 │ │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── test2_imp │ │ │ │ │ │ └── COMPILE │ │ │ │ │ │ └── test2_ref │ │ │ │ │ │ └── COMPILE │ │ │ │ ├── control │ │ │ │ │ ├── wait │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── wait.log │ │ │ │ │ └── demo1 │ │ │ │ │ │ └── demo1.f │ │ │ │ ├── methodology │ │ │ │ │ ├── file_io │ │ │ │ │ │ ├── input_sc_signed │ │ │ │ │ │ │ ├── DEPS │ │ │ │ │ │ │ ├── input.char │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── input_sc_signed.log │ │ │ │ │ │ └── input_char_sc_signed │ │ │ │ │ │ │ ├── DEPS │ │ │ │ │ │ │ ├── input.decimal │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── input_char_sc_signed.log │ │ │ │ │ └── sim_control │ │ │ │ │ │ ├── sim_to_time │ │ │ │ │ │ └── sim_to_time.f │ │ │ │ │ │ └── sim_to_infinity │ │ │ │ │ │ └── sim_to_infinity.f │ │ │ │ └── data │ │ │ │ │ ├── datawidth_signed │ │ │ │ │ ├── promote │ │ │ │ │ │ └── promote.f │ │ │ │ │ ├── extension │ │ │ │ │ │ └── extension.f │ │ │ │ │ ├── lost_carry │ │ │ │ │ │ └── lost_carry.f │ │ │ │ │ ├── truncation │ │ │ │ │ │ └── truncation.f │ │ │ │ │ ├── bits_to_bits │ │ │ │ │ │ └── bits_to_bits.f │ │ │ │ │ ├── promote_extension │ │ │ │ │ │ └── promote_extension.f │ │ │ │ │ ├── promote_lost_carry │ │ │ │ │ │ └── promote_lost_carry.f │ │ │ │ │ └── promote_truncation │ │ │ │ │ │ └── promote_truncation.f │ │ │ │ │ ├── datawidth_unsigned │ │ │ │ │ ├── promote │ │ │ │ │ │ └── promote.f │ │ │ │ │ ├── extension │ │ │ │ │ │ └── extension.f │ │ │ │ │ ├── lost_carry │ │ │ │ │ │ └── lost_carry.f │ │ │ │ │ ├── truncation │ │ │ │ │ │ └── truncation.f │ │ │ │ │ ├── bits_to_bits │ │ │ │ │ │ └── bits_to_bits.f │ │ │ │ │ ├── promote_extension │ │ │ │ │ │ └── promote_extension.f │ │ │ │ │ ├── promote_lost_carry │ │ │ │ │ │ └── promote_lost_carry.f │ │ │ │ │ └── promote_truncation │ │ │ │ │ │ └── promote_truncation.f │ │ │ │ │ ├── datawidth_bool_to_signed │ │ │ │ │ ├── promote │ │ │ │ │ │ └── promote.f │ │ │ │ │ ├── extension │ │ │ │ │ │ └── extension.f │ │ │ │ │ ├── lost_carry │ │ │ │ │ │ └── lost_carry.f │ │ │ │ │ ├── truncation │ │ │ │ │ │ └── truncation.f │ │ │ │ │ ├── bits_to_bits │ │ │ │ │ │ └── bits_to_bits.f │ │ │ │ │ ├── promote_extension │ │ │ │ │ │ └── promote_extension.f │ │ │ │ │ ├── promote_lost_carry │ │ │ │ │ │ └── promote_lost_carry.f │ │ │ │ │ └── promote_truncation │ │ │ │ │ │ └── promote_truncation.f │ │ │ │ │ ├── datawidth_bool_to_unsigned │ │ │ │ │ ├── promote │ │ │ │ │ │ └── promote.f │ │ │ │ │ ├── extension │ │ │ │ │ │ └── extension.f │ │ │ │ │ ├── lost_carry │ │ │ │ │ │ └── lost_carry.f │ │ │ │ │ ├── truncation │ │ │ │ │ │ └── truncation.f │ │ │ │ │ ├── bits_to_bits │ │ │ │ │ │ └── bits_to_bits.f │ │ │ │ │ ├── promote_extension │ │ │ │ │ │ └── promote_extension.f │ │ │ │ │ ├── promote_lost_carry │ │ │ │ │ │ └── promote_lost_carry.f │ │ │ │ │ └── promote_truncation │ │ │ │ │ │ └── promote_truncation.f │ │ │ │ │ └── general │ │ │ │ │ ├── add_promote │ │ │ │ │ └── add_promote.f │ │ │ │ │ ├── array_range │ │ │ │ │ ├── array_range.f │ │ │ │ │ └── golden │ │ │ │ │ │ └── array_range.log │ │ │ │ │ ├── concat_port │ │ │ │ │ └── concat_port.f │ │ │ │ │ ├── int_to_bits │ │ │ │ │ └── int_to_bits.f │ │ │ │ │ ├── promote_add │ │ │ │ │ └── promote_add.f │ │ │ │ │ ├── bool_tilda │ │ │ │ │ └── golden │ │ │ │ │ │ └── bool_tilda.log │ │ │ │ │ ├── datawidth_int │ │ │ │ │ └── datawidth_int.f │ │ │ │ │ ├── std_ulogic_tilda │ │ │ │ │ └── golden │ │ │ │ │ │ └── std_ulogic_tilda.log │ │ │ │ │ └── std_to_bool │ │ │ │ │ └── golden │ │ │ │ │ └── std_to_bool.log │ │ │ ├── parsing │ │ │ │ ├── T_1_1_2_1 │ │ │ │ │ └── COMPILE │ │ │ │ ├── T_1_1_2_3 │ │ │ │ │ └── COMPILE │ │ │ │ ├── T_1_1_2_4 │ │ │ │ │ └── COMPILE │ │ │ │ ├── T_1_1_2_5 │ │ │ │ │ └── COMPILE │ │ │ │ └── T_1_1_2_6 │ │ │ │ │ └── COMPILE │ │ │ ├── stars │ │ │ │ ├── star102573 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star102574 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star103601-2 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star103765 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star103832 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star104726 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star106015 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star107755 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star108117 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star108761 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star109180 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star109218-2 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star109218 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star109678 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star110069 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star110089 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star110668 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star110672 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star110998 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star111004 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star111657 │ │ │ │ │ └── COMPILE │ │ │ │ ├── star113999 │ │ │ │ │ └── expected_returncode │ │ │ │ ├── star115165 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star113946 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star114639 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star114678 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star132136 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star105234 │ │ │ │ │ └── golden │ │ │ │ │ │ └── star105234.log │ │ │ │ ├── star114716 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star129901 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star113632 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star114633 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star116406 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star113321 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star113726 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star117831 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star127624 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star127914 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star113623 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star124010 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star130786 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star137040 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star116072 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star113320 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star125338 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star116568 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star135771 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star114203 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star125422 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star126360 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star132075 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star107464 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star114085 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star115038 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star123845 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── star127848 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ └── star127712 │ │ │ │ │ └── golden │ │ │ │ │ └── test.log │ │ │ ├── user_guide │ │ │ │ ├── chpt3.1 │ │ │ │ │ ├── DEPS │ │ │ │ │ └── chpt3.1.f │ │ │ │ ├── chpt3.2 │ │ │ │ │ ├── DEPS │ │ │ │ │ └── chpt3.2.f │ │ │ │ ├── chpt11.1 │ │ │ │ │ └── golden │ │ │ │ │ │ └── mean.log │ │ │ │ ├── chpt11.2 │ │ │ │ │ └── golden │ │ │ │ │ │ └── mean.log │ │ │ │ ├── chpt11.3 │ │ │ │ │ └── golden │ │ │ │ │ │ └── mean.log │ │ │ │ ├── chpt11.4 │ │ │ │ │ └── golden │ │ │ │ │ │ └── mean.log │ │ │ │ ├── chpt11.5 │ │ │ │ │ └── golden │ │ │ │ │ │ └── mean.log │ │ │ │ ├── chpt11.6 │ │ │ │ │ └── golden │ │ │ │ │ │ └── mean.log │ │ │ │ ├── chpt11.7 │ │ │ │ │ └── golden │ │ │ │ │ │ └── mean.log │ │ │ │ ├── chpt7.1 │ │ │ │ │ └── chpt7.1.f │ │ │ │ ├── chpt10.1 │ │ │ │ │ └── chpt10.1.f │ │ │ │ ├── chpt12.1 │ │ │ │ │ └── chpt12.1.f │ │ │ │ ├── chpt12.2 │ │ │ │ │ └── chpt12.2.f │ │ │ │ ├── chpt14.1 │ │ │ │ │ └── chpt14.1.f │ │ │ │ ├── chpt7.2 │ │ │ │ │ └── chpt7.2.f │ │ │ │ ├── chpt5.1 │ │ │ │ │ └── chpt5.1.f │ │ │ │ ├── param_model │ │ │ │ │ └── param_model.f │ │ │ │ ├── chpt6.1 │ │ │ │ │ └── chpt6.1.f │ │ │ │ ├── chpt4.1 │ │ │ │ │ └── chpt4.1.f │ │ │ │ ├── chpt4.2 │ │ │ │ │ └── chpt4.2.f │ │ │ │ ├── chpt4.4 │ │ │ │ │ └── chpt4.4.f │ │ │ │ └── chpt4.3 │ │ │ │ │ └── golden │ │ │ │ │ └── main.log │ │ │ ├── synth │ │ │ │ ├── add_chain │ │ │ │ │ └── DEPS │ │ │ │ ├── add_chain_FUNC │ │ │ │ │ ├── DEPS │ │ │ │ │ └── add_chain_FUNC.f │ │ │ │ ├── gcd │ │ │ │ │ └── golden │ │ │ │ │ │ └── gcd.log │ │ │ │ ├── scflow │ │ │ │ │ └── t │ │ │ │ │ │ ├── t.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── t.log │ │ │ │ ├── combo │ │ │ │ │ ├── share │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── share.log │ │ │ │ │ ├── switch3 │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── switch3.log │ │ │ │ │ ├── switch4 │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── switch4.log │ │ │ │ │ ├── switch5 │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── switch5.log │ │ │ │ │ └── switch6 │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── switch6.log │ │ │ │ ├── blast │ │ │ │ │ ├── blast1 │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── blast1.log │ │ │ │ │ ├── blast2 │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── blast2.log │ │ │ │ │ └── blast3 │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── blast3.log │ │ │ │ ├── wait_until │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── test1 │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test1.log │ │ │ │ │ │ ├── test2 │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test2.log │ │ │ │ │ │ ├── test3 │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test3.log │ │ │ │ │ │ ├── test4 │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test4.log │ │ │ │ │ │ ├── test5 │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test5.log │ │ │ │ │ │ └── test6 │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test6.log │ │ │ │ │ ├── test01 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test02 │ │ │ │ │ │ └── test.f │ │ │ │ │ ├── test03 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test04 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test05 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test06 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test07 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test08 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test09 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test10 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test11 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test12 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test13 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test14 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test15 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test16 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ └── test17 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── directives │ │ │ │ │ ├── resource │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ ├── test1 │ │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ │ └── test1.log │ │ │ │ │ │ │ ├── test2 │ │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ │ └── test2.log │ │ │ │ │ │ │ └── test3 │ │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test3.log │ │ │ │ │ │ ├── test1 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test2 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test3 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test4 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test5 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ └── test6 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── line_label │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ ├── test1 │ │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ │ └── test1.log │ │ │ │ │ │ │ ├── test2 │ │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ │ └── test2.log │ │ │ │ │ │ │ └── test3 │ │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test3.log │ │ │ │ │ │ ├── test1 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test2 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test3 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test4 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test5 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test6 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test7 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test8 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ └── test9 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── test1 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test2 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test3 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test4 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test5 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test6 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ └── test7 │ │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ └── translate_on │ │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test2 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ │ └── test5 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ ├── inlining │ │ │ │ │ ├── test3 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test4 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test5 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test6 │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── test1.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test1.log │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── test2.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test2.log │ │ │ │ ├── synth_gnats │ │ │ │ │ └── pr-207 │ │ │ │ │ │ ├── pr-207_mem │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── pr-207_mem.log │ │ │ │ │ │ ├── pr-207_rf │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── pr-207_rf.log │ │ │ │ │ │ └── pr-207_blast │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── pr-207_blast.log │ │ │ │ ├── reduce │ │ │ │ │ └── golden │ │ │ │ │ │ └── reduce.log │ │ │ │ ├── concat │ │ │ │ │ ├── fncall │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── lvalue │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test.log │ │ │ │ │ └── rvalue │ │ │ │ │ │ ├── test.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ └── prime_flag │ │ │ │ │ └── prime_flag.f │ │ │ ├── sim_tests │ │ │ │ ├── cycle_dw8051_demo │ │ │ │ │ ├── DEPS │ │ │ │ │ ├── cycle_dw8051_demo.f │ │ │ │ │ └── test.hex │ │ │ │ ├── simple_cpu │ │ │ │ │ └── DEPS │ │ │ │ ├── hshake2 │ │ │ │ │ └── hshake2.f │ │ │ │ ├── srlatch │ │ │ │ │ ├── srlatch.f │ │ │ │ │ └── golden │ │ │ │ │ │ └── srlatch.log │ │ │ │ ├── biquad │ │ │ │ │ ├── biquad1 │ │ │ │ │ │ └── biquad1.f │ │ │ │ │ ├── biquad3 │ │ │ │ │ │ └── biquad3.f │ │ │ │ │ └── biquad2 │ │ │ │ │ │ └── biquad2.f │ │ │ │ ├── irq │ │ │ │ │ └── golden │ │ │ │ │ │ └── irq.log │ │ │ │ └── tri_state2 │ │ │ │ │ └── tri_state2.f │ │ │ ├── examples │ │ │ │ ├── parsing │ │ │ │ │ └── golden │ │ │ │ │ │ └── activa.log │ │ │ │ ├── a2901 │ │ │ │ │ ├── golden │ │ │ │ │ │ └── a2901.log │ │ │ │ │ └── a2901.f │ │ │ │ └── datawidth_int_file │ │ │ │ │ └── datawidth_int.f │ │ │ ├── semantic │ │ │ │ ├── 2.4 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_4_1_1.log │ │ │ │ ├── 2.5 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_5_1_1.log │ │ │ │ └── 2.3 │ │ │ │ │ ├── T_2_3_1_1 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_3_1_1.log │ │ │ │ │ ├── T_2_3_1_2 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_3_1_2.log │ │ │ │ │ ├── T_2_3_1_3 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_3_1_3.log │ │ │ │ │ ├── T_2_3_1_4 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_3_1_4.log │ │ │ │ │ ├── T_2_3_2_1 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_3_2_1.log │ │ │ │ │ ├── T_2_3_3_1 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_3_3_1.log │ │ │ │ │ ├── T_2_3_4_1 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_3_4_1.log │ │ │ │ │ ├── T_2_3_5_1 │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_3_5_1.log │ │ │ │ │ ├── T_2_3_1_5_neg │ │ │ │ │ └── golden │ │ │ │ │ │ └── T_2_3_1_5_neg.log │ │ │ │ │ └── T_2_3_2_5_neg │ │ │ │ │ └── golden │ │ │ │ │ └── T_2_3_2_5_neg.log │ │ │ ├── memory_explosion │ │ │ │ ├── test01 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test01.log │ │ │ │ └── test02 │ │ │ │ │ └── golden │ │ │ │ │ └── test02.log │ │ │ ├── communication │ │ │ │ ├── channel │ │ │ │ │ └── aggregate │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── rgb.log │ │ │ │ └── signals │ │ │ │ │ ├── aggregate │ │ │ │ │ └── golden │ │ │ │ │ │ └── rgb.log │ │ │ │ │ ├── int │ │ │ │ │ └── int.f │ │ │ │ │ ├── bool │ │ │ │ │ └── bool.f │ │ │ │ │ ├── float │ │ │ │ │ └── float.f │ │ │ │ │ └── unsigned │ │ │ │ │ └── unsigned.f │ │ │ ├── v1.0 │ │ │ │ ├── dash0 │ │ │ │ │ └── dash0.f │ │ │ │ ├── blv │ │ │ │ │ └── golden │ │ │ │ │ │ └── blv.log │ │ │ │ ├── dash1 │ │ │ │ │ └── dash1.f │ │ │ │ ├── dash2 │ │ │ │ │ └── dash2.f │ │ │ │ ├── dash3 │ │ │ │ │ └── dash3.f │ │ │ │ ├── dash4 │ │ │ │ │ └── dash4.f │ │ │ │ ├── dash5 │ │ │ │ │ └── dash5.f │ │ │ │ ├── dash6 │ │ │ │ │ └── dash6.f │ │ │ │ ├── dash7 │ │ │ │ │ └── dash7.f │ │ │ │ ├── dash8 │ │ │ │ │ └── dash8.f │ │ │ │ └── dash9 │ │ │ │ │ └── dash9.f │ │ │ ├── cae_test │ │ │ │ └── general │ │ │ │ │ ├── arith │ │ │ │ │ ├── mult │ │ │ │ │ │ └── mult.f │ │ │ │ │ ├── modulo │ │ │ │ │ │ └── modulo.f │ │ │ │ │ ├── divide │ │ │ │ │ │ ├── divide │ │ │ │ │ │ │ └── divide.f │ │ │ │ │ │ └── datatypes │ │ │ │ │ │ │ └── datatypes.f │ │ │ │ │ ├── addition │ │ │ │ │ │ ├── sharing │ │ │ │ │ │ │ └── sharing.f │ │ │ │ │ │ ├── addition │ │ │ │ │ │ │ └── addition.f │ │ │ │ │ │ ├── bitwidth │ │ │ │ │ │ │ └── bitwidth.f │ │ │ │ │ │ ├── datatypes │ │ │ │ │ │ │ └── datatypes.f │ │ │ │ │ │ └── increment │ │ │ │ │ │ │ └── increment.f │ │ │ │ │ └── subtract │ │ │ │ │ │ ├── sharing │ │ │ │ │ │ └── sharing.f │ │ │ │ │ │ ├── bitwidth │ │ │ │ │ │ └── bitwidth.f │ │ │ │ │ │ ├── subtract │ │ │ │ │ │ └── subtract.f │ │ │ │ │ │ ├── datatypes │ │ │ │ │ │ └── datatypes.f │ │ │ │ │ │ └── decrement │ │ │ │ │ │ └── decrement.f │ │ │ │ │ ├── control │ │ │ │ │ ├── case │ │ │ │ │ │ ├── fsm │ │ │ │ │ │ │ └── fsm.f │ │ │ │ │ │ ├── inlining │ │ │ │ │ │ │ └── inlining.f │ │ │ │ │ │ ├── balancing │ │ │ │ │ │ │ └── balancing.f │ │ │ │ │ │ └── datatypes │ │ │ │ │ │ │ └── datatypes.f │ │ │ │ │ ├── if_test │ │ │ │ │ │ ├── fsm │ │ │ │ │ │ │ └── fsm.f │ │ │ │ │ │ ├── if_test │ │ │ │ │ │ │ └── if_test.f │ │ │ │ │ │ ├── inlining │ │ │ │ │ │ │ └── inlining.f │ │ │ │ │ │ ├── balancing │ │ │ │ │ │ │ └── balancing.f │ │ │ │ │ │ ├── datatypes │ │ │ │ │ │ │ └── datatypes.f │ │ │ │ │ │ └── conditions │ │ │ │ │ │ │ └── conditions.f │ │ │ │ │ └── loop │ │ │ │ │ │ ├── for_fsm │ │ │ │ │ │ └── for_fsm.f │ │ │ │ │ │ ├── for_exit │ │ │ │ │ │ └── for_exit.f │ │ │ │ │ │ ├── while_fsm │ │ │ │ │ │ └── while_fsm.f │ │ │ │ │ │ ├── while_exit │ │ │ │ │ │ └── while_exit.f │ │ │ │ │ │ ├── for_datatypes │ │ │ │ │ │ └── for_datatypes.f │ │ │ │ │ │ └── while_datatypes │ │ │ │ │ │ └── while_datatypes.f │ │ │ │ │ └── bitwise │ │ │ │ │ ├── or │ │ │ │ │ ├── or_1 │ │ │ │ │ │ └── or_1.f │ │ │ │ │ └── datatypes │ │ │ │ │ │ ├── datatypes.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── datatypes.log │ │ │ │ │ ├── and │ │ │ │ │ ├── and_1 │ │ │ │ │ │ └── and_1.f │ │ │ │ │ └── datatypes │ │ │ │ │ │ └── datatypes.f │ │ │ │ │ ├── not │ │ │ │ │ ├── not_1 │ │ │ │ │ │ └── not_1.f │ │ │ │ │ └── datatypes │ │ │ │ │ │ └── datatypes.f │ │ │ │ │ ├── xor │ │ │ │ │ ├── xor_1 │ │ │ │ │ │ └── xor_1.f │ │ │ │ │ └── datatypes │ │ │ │ │ │ └── datatypes.f │ │ │ │ │ ├── shl │ │ │ │ │ ├── sharing │ │ │ │ │ │ ├── sharing.f │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── sharing.log │ │ │ │ │ ├── bitwidth │ │ │ │ │ │ └── bitwidth.f │ │ │ │ │ └── datatypes │ │ │ │ │ │ └── datatypes.f │ │ │ │ │ └── shr │ │ │ │ │ └── sharing │ │ │ │ │ ├── sharing.f │ │ │ │ │ └── golden │ │ │ │ │ └── sharing.log │ │ │ ├── if_transforms │ │ │ │ └── loop_unrolling │ │ │ │ │ ├── pr476 │ │ │ │ │ ├── test.f │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test1 │ │ │ │ │ ├── test.f │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test2 │ │ │ │ │ ├── test.f │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test3 │ │ │ │ │ ├── test.f │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test4 │ │ │ │ │ ├── test.f │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ │ ├── test5 │ │ │ │ │ ├── test.f │ │ │ │ │ └── golden │ │ │ │ │ │ └── test.log │ │ │ │ │ └── test6 │ │ │ │ │ ├── test.f │ │ │ │ │ └── golden │ │ │ │ │ └── test.log │ │ │ └── sim │ │ │ │ └── prime_do_while │ │ │ │ ├── prime_do_while.f │ │ │ │ └── golden │ │ │ │ └── prime_do_while.log │ │ ├── datatypes │ │ │ ├── fx │ │ │ │ ├── bit │ │ │ │ │ ├── ref_files │ │ │ │ │ │ ├── t_all.0 │ │ │ │ │ │ └── t_all.1 │ │ │ │ │ └── test.f │ │ │ │ ├── other_types │ │ │ │ │ └── test01 │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test01.log │ │ │ │ ├── ranges │ │ │ │ │ └── test.f │ │ │ │ ├── arith_big │ │ │ │ │ └── test.f │ │ │ │ ├── shift │ │ │ │ │ └── test.f │ │ │ │ └── constructors │ │ │ │ │ └── files.f │ │ │ ├── int │ │ │ │ ├── compare │ │ │ │ │ └── golden │ │ │ │ │ │ └── compare.log │ │ │ │ ├── sc_signed │ │ │ │ │ ├── bit_select │ │ │ │ │ │ └── test01 │ │ │ │ │ │ │ ├── expected_returncode │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test01.log │ │ │ │ │ └── part_select │ │ │ │ │ │ ├── test01 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ │ ├── test02 │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test02.log │ │ │ │ │ │ ├── test04 │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test04.log │ │ │ │ │ │ └── test03 │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test03.log │ │ │ │ ├── sc_unsigned │ │ │ │ │ ├── bit_select │ │ │ │ │ │ └── test01 │ │ │ │ │ │ │ ├── expected_returncode │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test01.log │ │ │ │ │ ├── part_select │ │ │ │ │ │ ├── test01 │ │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ │ ├── test02 │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ │ └── test02.log │ │ │ │ │ │ └── test03 │ │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test03.log │ │ │ │ │ └── minus │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── minus.log │ │ │ │ ├── misc │ │ │ │ │ └── test02 │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test02.log │ │ │ │ ├── sc_small │ │ │ │ │ └── bsps1 │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── bsps1.log │ │ │ │ └── arith │ │ │ │ │ └── arith11 │ │ │ │ │ └── golden │ │ │ │ │ └── arith11.log │ │ │ ├── bit │ │ │ │ └── sc_proxy │ │ │ │ │ └── bitwise_binary │ │ │ │ │ └── test01 │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ └── misc │ │ │ │ └── concat │ │ │ │ ├── test02 │ │ │ │ └── golden │ │ │ │ │ └── test02.log │ │ │ │ ├── test05 │ │ │ │ └── golden │ │ │ │ │ └── test05.log │ │ │ │ ├── test08 │ │ │ │ └── golden │ │ │ │ │ └── test08.log │ │ │ │ └── test09 │ │ │ │ └── golden │ │ │ │ └── test09.log │ │ ├── kernel │ │ │ ├── sc_time │ │ │ │ ├── test02 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test02.log │ │ │ │ ├── test03 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test03.log │ │ │ │ ├── test04 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test04.log │ │ │ │ ├── test05 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test05.log │ │ │ │ ├── test06 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test06.log │ │ │ │ ├── test07 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test07.log │ │ │ │ ├── test08 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test08.log │ │ │ │ ├── test09 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test09.log │ │ │ │ ├── test12 │ │ │ │ │ └── expected_returncode │ │ │ │ ├── test13 │ │ │ │ │ └── expected_returncode │ │ │ │ ├── test14 │ │ │ │ │ └── expected_returncode │ │ │ │ ├── test15 │ │ │ │ │ └── expected_returncode │ │ │ │ ├── test16 │ │ │ │ │ └── expected_returncode │ │ │ │ └── test18 │ │ │ │ │ └── golden │ │ │ │ │ └── test18.log │ │ │ ├── sc_event │ │ │ │ └── test03 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ └── test03.log │ │ │ ├── sc_module │ │ │ │ ├── test08 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test08.log │ │ │ │ ├── test01 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test01.log │ │ │ │ ├── test03 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test03.log │ │ │ │ └── test10 │ │ │ │ │ └── golden │ │ │ │ │ └── test10.log │ │ │ ├── sc_sensitive │ │ │ │ ├── test04 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test04.log │ │ │ │ └── test05 │ │ │ │ │ └── golden │ │ │ │ │ └── test05.log │ │ │ ├── dynamic_processes │ │ │ │ ├── test03 │ │ │ │ │ └── expected_returncode │ │ │ │ ├── test04 │ │ │ │ │ └── expected_returncode │ │ │ │ ├── sc_barrier │ │ │ │ │ └── test01 │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test01.log │ │ │ │ ├── test05 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test05.log │ │ │ │ └── test08 │ │ │ │ │ └── golden │ │ │ │ │ └── test08.log │ │ │ ├── sc_start │ │ │ │ └── time_overflow │ │ │ │ │ └── expected_returncode │ │ │ ├── module_method_after_sc_start │ │ │ │ └── expected_returncode │ │ │ ├── module_thread_after_sc_start │ │ │ │ └── expected_returncode │ │ │ ├── kind_string │ │ │ │ └── test01 │ │ │ │ │ └── test01.f │ │ │ ├── sc_ver │ │ │ │ └── test01 │ │ │ │ │ ├── test01.f │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ ├── sc_module_name │ │ │ │ └── test01 │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ ├── sc_main_main │ │ │ │ └── golden │ │ │ │ │ └── sc_main_main.log │ │ │ ├── sc_attribute │ │ │ │ └── test01 │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ ├── sc_elab_and_sim │ │ │ │ └── golden │ │ │ │ │ └── sc_elab_and_sim.log │ │ │ ├── sc_object_manager │ │ │ │ └── test02 │ │ │ │ │ └── golden │ │ │ │ │ └── test02.log │ │ │ ├── sc_process_handle │ │ │ │ ├── test01 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test01.log │ │ │ │ └── test02 │ │ │ │ │ └── golden │ │ │ │ │ └── test02.log │ │ │ ├── sc_process_b │ │ │ │ └── test01 │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ ├── sc_object │ │ │ │ └── test02 │ │ │ │ │ └── golden │ │ │ │ │ └── test02.log │ │ │ ├── sc_simcontext │ │ │ │ ├── test01 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test01.log │ │ │ │ └── sc_delta_count │ │ │ │ │ └── golden │ │ │ │ │ └── sc_delta_count.log │ │ │ ├── reset_signal_is │ │ │ │ └── test01 │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ ├── sc_lambda │ │ │ │ └── test01 │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ └── sc_stop │ │ │ │ ├── test01 │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ │ └── test03 │ │ │ │ └── golden │ │ │ │ └── test03.log │ │ ├── bugs │ │ │ ├── constructor_throw │ │ │ │ ├── expected_returncode │ │ │ │ └── golden │ │ │ │ │ └── constructor_throw.log │ │ │ ├── stack_alignment │ │ │ │ ├── .notsparcOS5 │ │ │ │ └── golden │ │ │ │ │ └── stack_alignment.log │ │ │ ├── sc_string_bracket_assign │ │ │ │ └── golden │ │ │ │ │ └── sc_string_bracket_assign.log │ │ │ └── bug_185 │ │ │ │ └── golden │ │ │ │ └── bug_185.log │ │ ├── communication │ │ │ ├── ports │ │ │ │ ├── test05 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test05.log │ │ │ │ └── test02 │ │ │ │ │ └── golden │ │ │ │ │ └── test02.log │ │ │ ├── sc_export │ │ │ │ ├── test02 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test02.log │ │ │ │ ├── test04 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test04.log │ │ │ │ └── test03 │ │ │ │ │ └── golden │ │ │ │ │ └── test03.log │ │ │ ├── sc_port_policy │ │ │ │ ├── test03 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test03.log │ │ │ │ ├── test04 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test04.log │ │ │ │ └── test05 │ │ │ │ │ └── golden │ │ │ │ │ └── test05.log │ │ │ ├── sc_signal_rv │ │ │ │ ├── test02 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test02.log │ │ │ │ └── test03 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ └── test03.log │ │ │ ├── sc_signal_resolved │ │ │ │ ├── test02 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test02.log │ │ │ │ ├── test03 │ │ │ │ │ ├── expected_returncode │ │ │ │ │ └── golden │ │ │ │ │ │ └── test03.log │ │ │ │ └── test04 │ │ │ │ │ └── golden │ │ │ │ │ └── test04.log │ │ │ ├── sc_signal │ │ │ │ ├── check_writer │ │ │ │ │ ├── test01 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test02 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test03 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test04 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test05 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test07 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test08 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test09 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test10 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test11 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test12 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test14 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test06 │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test06.log │ │ │ │ │ └── test13 │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test13.log │ │ │ │ ├── register_port │ │ │ │ │ ├── test01 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ ├── test02 │ │ │ │ │ │ └── expected_returncode │ │ │ │ │ └── test03 │ │ │ │ │ │ └── expected_returncode │ │ │ │ ├── datatypes │ │ │ │ │ ├── test01 │ │ │ │ │ │ └── golden │ │ │ │ │ │ │ └── test01.log │ │ │ │ │ └── test02 │ │ │ │ │ │ └── golden │ │ │ │ │ │ └── test02.log │ │ │ │ └── constructors │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ ├── sc_semaphore │ │ │ │ ├── test03 │ │ │ │ │ └── test03.f │ │ │ │ └── test04 │ │ │ │ │ └── golden │ │ │ │ │ └── test04.log │ │ │ ├── sc_clock │ │ │ │ ├── test04 │ │ │ │ │ └── golden │ │ │ │ │ │ └── test04.log │ │ │ │ └── test03 │ │ │ │ │ └── golden │ │ │ │ │ └── test03.log │ │ │ ├── sc_signal_ports │ │ │ │ └── test01 │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ ├── sc_signal_resolved_port │ │ │ │ └── test02 │ │ │ │ │ └── golden │ │ │ │ │ └── test02.log │ │ │ ├── sc_interface │ │ │ │ └── test01 │ │ │ │ │ └── golden │ │ │ │ │ └── test01.log │ │ │ └── sc_prim_channel │ │ │ │ └── test01 │ │ │ │ └── golden │ │ │ │ └── test01.log │ │ ├── utils │ │ │ ├── sc_report │ │ │ │ └── test05 │ │ │ │ │ └── expected_returncode │ │ │ └── sc_vector │ │ │ │ └── test09 │ │ │ │ └── golden │ │ │ │ └── iter_test.log │ │ ├── examples │ │ │ ├── aes │ │ │ │ └── golden │ │ │ │ │ └── aes.log │ │ │ ├── isqrt │ │ │ │ └── golden │ │ │ │ │ └── isqrt.log │ │ │ └── trie │ │ │ │ └── golden │ │ │ │ └── trie.log │ │ ├── tracing │ │ │ └── wif_trace │ │ │ │ └── pct1 │ │ │ │ └── pct1.f │ │ ├── 1666-2011-compliance │ │ │ ├── async_reset │ │ │ │ └── golden │ │ │ │ │ └── async_reset.log │ │ │ ├── sc_start_bug │ │ │ │ └── golden │ │ │ │ │ └── sc_start_bug.log │ │ │ ├── virtual_bind │ │ │ │ └── golden │ │ │ │ │ └── virtual_bind.log │ │ │ ├── late_reset_bug │ │ │ │ └── golden │ │ │ │ │ └── late_reset_bug.log │ │ │ ├── old_event_bug │ │ │ │ └── golden │ │ │ │ │ └── old_event_bug.log │ │ │ ├── proc_ctrl_elab │ │ │ │ └── golden │ │ │ │ │ └── proc_ctrl_elab.log │ │ │ ├── self_reset_bug │ │ │ │ └── golden │ │ │ │ │ └── self_reset_bug.log │ │ │ ├── async_reset_port │ │ │ │ └── golden │ │ │ │ │ └── async_reset_port.log │ │ │ ├── living_children │ │ │ │ └── golden │ │ │ │ │ └── living_children.log │ │ │ ├── method_with_reset │ │ │ │ └── golden │ │ │ │ │ └── method_with_reset.log │ │ │ ├── mixed_child_procs │ │ │ │ └── golden │ │ │ │ │ └── mixed_child_procs.log │ │ │ ├── proc_ctrl_immed │ │ │ │ └── golden │ │ │ │ │ └── proc_ctrl_immed.log │ │ │ ├── sc_writer_policy │ │ │ │ └── golden │ │ │ │ │ └── sc_writer_policy.log │ │ │ ├── child_proc_control │ │ │ │ └── golden │ │ │ │ │ └── child_proc_control.log │ │ │ ├── include_descendants │ │ │ │ └── golden │ │ │ │ │ └── include_descendants.log │ │ │ ├── recursive_kill_bug │ │ │ │ └── golden │ │ │ │ │ └── recursive_kill_bug.log │ │ │ ├── version_macros │ │ │ │ └── golden │ │ │ │ │ └── version_macros.log │ │ │ ├── proc_ctrl │ │ │ │ └── golden │ │ │ │ │ └── proc_ctrl.log │ │ │ ├── sync_reset │ │ │ │ └── golden │ │ │ │ │ └── sync_reset.log │ │ │ ├── disable_enable │ │ │ │ └── golden │ │ │ │ │ └── disable_enable.log │ │ │ ├── sc_process_handle_less_than │ │ │ │ └── golden │ │ │ │ │ └── sc_process_handle_less_than.log │ │ │ ├── proc_ctrl_priority │ │ │ │ └── golden │ │ │ │ │ └── proc_ctrl_priority.log │ │ │ ├── proc_ctrl_timeout │ │ │ │ └── golden │ │ │ │ │ └── proc_ctrl_timeout.log │ │ │ └── method_suspends_itself │ │ │ │ └── golden │ │ │ │ └── method_suspends_itself.log │ │ ├── compliance_1666 │ │ │ ├── test206 │ │ │ │ └── golden │ │ │ │ │ └── test206.log │ │ │ ├── test207 │ │ │ │ └── golden │ │ │ │ │ └── test207.log │ │ │ ├── test208 │ │ │ │ └── golden │ │ │ │ │ └── test208.log │ │ │ ├── test209 │ │ │ │ └── golden │ │ │ │ │ └── test209.log │ │ │ ├── test210 │ │ │ │ └── golden │ │ │ │ │ └── test210.log │ │ │ ├── test211 │ │ │ │ └── golden │ │ │ │ │ └── test211.log │ │ │ ├── test219 │ │ │ │ └── golden │ │ │ │ │ └── test219.log │ │ │ ├── test233 │ │ │ │ └── golden │ │ │ │ │ └── test233.log │ │ │ ├── test203b │ │ │ │ └── golden │ │ │ │ │ └── test203b.log │ │ │ ├── test235a │ │ │ │ └── golden │ │ │ │ │ └── test235a.log │ │ │ ├── test106 │ │ │ │ └── golden │ │ │ │ │ └── test106.log │ │ │ ├── test202 │ │ │ │ └── golden │ │ │ │ │ └── test202.log │ │ │ ├── test205 │ │ │ │ └── golden │ │ │ │ │ └── test205.log │ │ │ ├── test234 │ │ │ │ └── golden │ │ │ │ │ └── test234.log │ │ │ └── test228 │ │ │ │ └── golden │ │ │ │ └── test228.log │ │ └── tmp │ │ │ └── others │ │ │ ├── priority_bug │ │ │ └── golden │ │ │ │ └── priority_bug.log │ │ │ ├── sc_writer_bug │ │ │ └── golden │ │ │ │ └── sc_writer_bug.log │ │ │ └── bogus_reset │ │ │ └── golden │ │ │ └── bogus_reset.log │ │ └── tlm │ │ ├── endian_conv │ │ └── DEPS │ │ ├── update_original │ │ └── golden │ │ │ └── update_original.log │ │ ├── bugs │ │ └── multi_passthrough_sockets_bug │ │ │ └── golden │ │ │ └── multi_passthrough_sockets_bug.log │ │ └── nb2b_adapter │ │ └── golden │ │ └── nb2b_adapter.log ├── doxygen │ ├── images │ │ ├── gem5_MS_Fig1.PNG │ │ ├── gem5_MS_Fig2.PNG │ │ ├── gem5_MS_Fig3.PNG │ │ ├── gem5_MS_Fig4.PNG │ │ ├── gem5_MS_Fig5.PNG │ │ ├── gem5_MS_Fig6.PNG │ │ ├── gem5_MS_Fig7.PNG │ │ ├── gem5_MS_Fig8.PNG │ │ └── gem5_MS_Fig9.PNG │ └── footer.html └── learning_gem5 │ └── part3 │ ├── MSI.slicc │ └── SConsopts ├── tests ├── pyunit │ ├── __init__.py │ ├── stdlib │ │ ├── __init__.py │ │ └── resources │ │ │ └── __init__.py │ └── util │ │ └── __init__.py ├── test-progs │ ├── m5-exit │ │ ├── .gitignore │ │ └── src │ │ │ └── .gitignore │ ├── hello │ │ └── bin │ │ │ ├── arm │ │ │ └── linux │ │ │ │ └── hello │ │ │ ├── x86 │ │ │ └── linux │ │ │ │ ├── hello │ │ │ │ └── hello32 │ │ │ ├── riscv │ │ │ └── linux │ │ │ │ └── hello │ │ │ └── power │ │ │ └── linux │ │ │ ├── hello32 │ │ │ ├── hello64be │ │ │ └── hello64le │ └── threads │ │ ├── bin │ │ └── x86 │ │ │ └── linux │ │ │ └── threads │ │ └── src │ │ └── Makefile ├── .gitignore └── gem5 │ ├── stdlib │ └── simulator │ │ └── hypercall-exit │ │ └── .gitignore │ ├── cpu_tests │ └── ref │ │ ├── Bubblesort │ │ └── FloatMM │ ├── memory │ └── tgen-simple-mem.trc │ ├── learning_gem5 │ └── ref │ │ ├── hello │ │ ├── test │ │ ├── simple │ │ └── threads │ ├── to_tick │ └── ref │ │ ├── tick-exit-100.txt │ │ ├── tick-to-max-at-execution-100.txt │ │ ├── tick-to-max-before-execution-250.txt │ │ ├── tick-exit-10-20-30-40.txt │ │ └── tick-to-max-at-execution-and-after-100-200.txt │ └── gem5_library_example_tests │ └── ref │ └── simout_multisim_print_this_list.txt ├── configs └── boot │ └── halt.sh ├── util ├── systemc │ └── .gitignore ├── gerrit-bot │ └── .gitignore ├── update_copyright │ ├── test │ │ └── __init__.py │ └── requirements.txt ├── gem5-resources-manager │ ├── test │ │ └── __init__.py │ ├── static │ │ └── images │ │ │ ├── favicon.png │ │ │ ├── gem5ColorLong.gif │ │ │ └── gem5ResourcesManager.png │ └── .gitignore ├── tlm │ └── .gitignore ├── maint │ ├── __init__.py │ └── lib │ │ ├── __init__.py │ │ └── tests │ │ └── __init__.py ├── helper_scripts_for_mongodb │ └── requirements.txt ├── gem5art │ ├── gem5art.png │ ├── artifact │ │ └── mypy.ini │ ├── run │ │ └── mypy.ini │ ├── tasks │ │ └── mypy.ini │ └── .gitignore ├── lsan-suppressions ├── Makefile └── cpt_upgraders │ └── multiple-event-queues.py ├── docs └── gem5-sphinx ├── optional-requirements.txt ├── requirements.txt └── .vscode └── settings.json /ext/Kconfiglib/tests/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/softfloat/softfloat.ac: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pyunit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/boot/halt.sh: -------------------------------------------------------------------------------- 1 | m5 exit 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/defconfig_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/defconfig_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/pybind11/pybind11/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pyunit/stdlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pyunit/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/systemc/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /ext/dramsys/.gitignore: -------------------------------------------------------------------------------- 1 | DRAMSys 2 | -------------------------------------------------------------------------------- /ext/systemc/src/sysc/qt/md/null.README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mem/slicc/generate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/prebuilt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/simulate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/m5/ext/pyfdt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/gerrit-bot/.gitignore: -------------------------------------------------------------------------------- 1 | .data 2 | -------------------------------------------------------------------------------- /util/update_copyright/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/gem5-sphinx: -------------------------------------------------------------------------------- 1 | import sphinx.__main__ 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/sub/defconfig_in_sub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/ply/ply.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ply 2 | -------------------------------------------------------------------------------- /ext/ply/test/pkg_test1/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/ply/test/pkg_test2/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/ply/test/pkg_test3/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/ply/test/pkg_test4/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/ply/test/pkg_test5/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/ply/test/pkg_test6/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /optional-requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm==4.67.1 2 | -------------------------------------------------------------------------------- /src/python/gem5/prebuilt/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/prebuilt/viper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pyunit/stdlib/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/ply/ply.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ext/ply/test/pkg_test3/generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/pybind11/tests/extra_setuptools/pytest.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/boards/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/resources/client_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-progs/m5-exit/.gitignore: -------------------------------------------------------------------------------- 1 | bin/x86 2 | -------------------------------------------------------------------------------- /util/gem5-resources-manager/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/tlm/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .sconsign.dblite 3 | -------------------------------------------------------------------------------- /ext/googletest/docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: GoogleTest 2 | -------------------------------------------------------------------------------- /ext/pybind11/.gitattributes: -------------------------------------------------------------------------------- 1 | docs/*.svg binary 2 | -------------------------------------------------------------------------------- /ext/pybind11/tests/extra_python_package/pytest.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/devices/gpus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/prebuilt/riscvmatched/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-130/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-480/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-52/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-56/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-5_1/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/extern/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/extern2/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/tlm/endian_conv/DEPS: -------------------------------------------------------------------------------- 1 | input.txt 2 | -------------------------------------------------------------------------------- /util/maint/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /util/maint/lib/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/config_set_bool: -------------------------------------------------------------------------------- 1 | CONFIG_BOOL=y 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mypy==1.15.0 2 | pre-commit==4.2.0 3 | -------------------------------------------------------------------------------- /src/python/gem5/components/boards/experimental/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-51_pos/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/parsing/T_1_1_2_1/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/parsing/T_1_1_2_3/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/parsing/T_1_1_2_4/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/parsing/T_1_1_2_5/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/parsing/T_1_1_2_6/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star102573/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star102574/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star103601-2/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star103765/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star103832/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star104726/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star106015/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star107755/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star108117/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star108761/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star109180/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star109218-2/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star109218/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star109678/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star110069/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star110089/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star110668/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star110672/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star110998/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star111004/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star111657/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/rtlout/test1/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/structs/test3/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | testing-results 2 | gem5/resources 3 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kmissingrsource: -------------------------------------------------------------------------------- 1 | rsource "nonexistent" 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kmissingsource: -------------------------------------------------------------------------------- 1 | source "nonexistent" 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Krecursive1: -------------------------------------------------------------------------------- 1 | source "tests/Krecursive2" 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Krecursive2: -------------------------------------------------------------------------------- 1 | source "tests/Krecursive1" 2 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/chi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/classic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/ruby/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/memory/dram_interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/fx/bit/ref_files/t_all.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/fx/bit/ref_files/t_all.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/maint/lib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/config_set_string: -------------------------------------------------------------------------------- 1 | CONFIG_STRING="foo bar" 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/sub/Klocation_grsourced1: -------------------------------------------------------------------------------- 1 | config MANY_DEF 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/sub/Klocation_grsourced2: -------------------------------------------------------------------------------- 1 | config MANY_DEF 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/sub/Klocation_gsourced1: -------------------------------------------------------------------------------- 1 | config MANY_DEF 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/sub/Klocation_gsourced2: -------------------------------------------------------------------------------- 1 | config MANY_DEF 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/sub/Klocation_rsourced: -------------------------------------------------------------------------------- 1 | 2 | config MANY_DEF 3 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/chi/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/ruby/caches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt3.1/DEPS: -------------------------------------------------------------------------------- 1 | testcase 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt3.2/DEPS: -------------------------------------------------------------------------------- 1 | testcase 2 | -------------------------------------------------------------------------------- /util/update_copyright/requirements.txt: -------------------------------------------------------------------------------- 1 | git-filter-repo==2.28.0 2 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/classic/caches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/ruby/caches/viper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/ruby/topologies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test02/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test03/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test04/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test05/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test06/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test07/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test08/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test09/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test12/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test13/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test14/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test15/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test16/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star113999/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star115165/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/add_chain/DEPS: -------------------------------------------------------------------------------- 1 | add_chain.dat 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/.gitignore: -------------------------------------------------------------------------------- 1 | *.py[co] 2 | build/ 3 | *.egg-info/ 4 | dist/ 5 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop1: -------------------------------------------------------------------------------- 1 | config FOO 2 | bool 3 | select FOO 4 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop2: -------------------------------------------------------------------------------- 1 | config FOO 2 | bool 3 | default FOO 4 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/sub/Kconfig_symlink_2: -------------------------------------------------------------------------------- 1 | rsource "Kconfig_symlink_3" 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/sub/Kconfig_symlink_3: -------------------------------------------------------------------------------- 1 | config FOUNDME 2 | bool 3 | -------------------------------------------------------------------------------- /ext/ply/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/ext/ply/CHANGES -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/ruby/caches/mi_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/bugs/constructor_throw/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/ports/test05/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_event/test03/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_module/test08/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_sensitive/test04/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/DEPS: -------------------------------------------------------------------------------- 1 | test.hex 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/add_chain_FUNC/DEPS: -------------------------------------------------------------------------------- 1 | add_chain.dat 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/gcd/golden/gcd.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/scflow/t/t.f: -------------------------------------------------------------------------------- 1 | t/t.cpp 2 | t/main.cpp 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/alg_simp/rule10/test2/test2_imp/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/alg_simp/rule10/test2/test2_ref/COMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/utils/sc_report/test05/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop0: -------------------------------------------------------------------------------- 1 | config FOO 2 | bool 3 | depends on FOO 4 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop3: -------------------------------------------------------------------------------- 1 | config FOO 2 | bool 3 | default y if FOO 4 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/ruby/caches/mesi_two_level/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_export/test02/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_export/test04/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/dynamic_processes/test03/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/dynamic_processes/test04/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_start/time_overflow/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-2/golden/pr-2.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-25/golden/pr-25.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr213/golden/pr213.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr57/golden/pr57.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/simple_cpu/DEPS: -------------------------------------------------------------------------------- 1 | datamem 2 | progmem 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/scflow/t/golden/t.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /tests/gem5/stdlib/simulator/hypercall-exit/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | hypercall-exit 3 | -------------------------------------------------------------------------------- /src/python/gem5/components/cachehierarchies/ruby/caches/mesi_three_level/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_port_policy/test03/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_port_policy/test04/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_rv/test02/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_rv/test03/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/fx/bit/test.f: -------------------------------------------------------------------------------- 1 | bit/main.cpp 2 | bit/test_bit.cpp 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/module_method_after_sc_start/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/module_thread_after_sc_start/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/examples/parsing/golden/activa.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-134/golden/pr-134.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-233/golden/pr-233.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-47_3/golden/pr-47_3.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-503/golden/pr-503.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.4/golden/T_2_4_1_1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.5/golden/T_2_5_1_1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star113946/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star114639/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star114678/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star132136/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/combo/share/golden/share.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/control/wait/golden/wait.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /util/helper_scripts_for_mongodb/requirements.txt: -------------------------------------------------------------------------------- 1 | bson == 0.5.10 2 | pymongo == 4.6.3 3 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kescape: -------------------------------------------------------------------------------- 1 | config STRING 2 | string "string" 3 | default "\"\\" 4 | -------------------------------------------------------------------------------- /ext/pybind11/docs/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | .highlight .go { 2 | color: #707070; 3 | } 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_resolved/test02/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_resolved/test03/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/compare/golden/compare.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_signed/bit_select/test01/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_module/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_module/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/gnats/pr-503-neg/golden/pr-503-neg.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star105234/golden/star105234.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star114716/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 1 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star129901/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 1 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/blast/blast1/golden/blast1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/blast/blast2/golden/blast2.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/blast/blast3/golden/blast3.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/combo/switch3/golden/switch3.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/combo/switch4/golden/switch4.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/combo/switch5/golden/switch5.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/combo/switch6/golden/switch6.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/methodology/file_io/input_sc_signed/DEPS: -------------------------------------------------------------------------------- 1 | input.char 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt11.1/golden/mean.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt11.2/golden/mean.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt11.3/golden/mean.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt11.4/golden/mean.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt11.5/golden/mean.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt11.6/golden/mean.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt11.7/golden/mean.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /tests/test-progs/m5-exit/src/.gitignore: -------------------------------------------------------------------------------- 1 | /m5_exit 2 | /m5_exit.squashfs 3 | /squashfs_root 4 | -------------------------------------------------------------------------------- /ext/ply/test/cleanup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -rf *~ *.pyc *.pyo *.dif *.out __pycache__ 4 | 5 | -------------------------------------------------------------------------------- /ext/systemc/src/sysc/qt/md/axp.Makefile: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # GNU CC 4 | # 5 | CC = gcc -D__AXP__ 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test01/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test02/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test03/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test04/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test05/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test07/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test08/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test09/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test10/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test11/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test12/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test14/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/register_port/test01/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/register_port/test02/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/register_port/test03/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/fx/other_types/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/fx/ranges/test.f: -------------------------------------------------------------------------------- 1 | ranges/main.cpp 2 | ranges/range_fx.cpp 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_signed/part_select/test01/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_unsigned/bit_select/test01/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_unsigned/part_select/test01/expected_returncode: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/examples/aes/golden/aes.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | program complete 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/examples/a2901/golden/a2901.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 410 us 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/memory_explosion/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/memory_explosion/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_1_1/golden/T_2_3_1_1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_1_2/golden/T_2_3_1_2.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_1_3/golden/T_2_3_1_3.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_1_4/golden/T_2_3_1_4.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_2_1/golden/T_2_3_2_1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_3_1/golden/T_2_3_3_1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_4_1/golden/T_2_3_4_1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_5_1/golden/T_2_3_5_1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star113632/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0010 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star114633/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0000 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star116406/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | a = 4 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/misc/test1/golden/test1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/misc/test2/golden/test2.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/misc/test3/golden/test3.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/misc/test4/golden/test4.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/misc/test5/golden/test5.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/misc/test6/golden/test6.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/methodology/file_io/input_sc_signed/input.char: -------------------------------------------------------------------------------- 1 | 12 2 | 13 3 | -------------------------------------------------------------------------------- /util/gem5art/gem5art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/util/gem5art/gem5art.png -------------------------------------------------------------------------------- /ext/ply/example/BASIC/sqrt2.bas: -------------------------------------------------------------------------------- 1 | 10 FOR X = 1 TO 100 2 | 20 PRINT X, SQR(X) 3 | 30 NEXT X 4 | 40 END 5 | -------------------------------------------------------------------------------- /ext/ply/example/cleanup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -f */*.pyc */parsetab.py */parser.out */*~ */*.class 3 | -------------------------------------------------------------------------------- /ext/pybind11/.github/labeler_merged.yml: -------------------------------------------------------------------------------- 1 | needs changelog: 2 | - all: 3 | - '!docs/changelog.rst' 4 | -------------------------------------------------------------------------------- /ext/pybind11/.readthedocs.yml: -------------------------------------------------------------------------------- 1 | python: 2 | version: 3 3 | requirements_file: docs/requirements.txt 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/examples/isqrt/golden/isqrt.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed. 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/examples/trie/golden/trie.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | program complete 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/kind_string/test01/test01.f: -------------------------------------------------------------------------------- 1 | test01/foo.cpp 2 | test01/main.cpp 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/communication/channel/aggregate/golden/rgb.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/communication/signals/aggregate/golden/rgb.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star113321/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0001110000 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star113726/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -1 3 | 0001 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star117831/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 11010001 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star127624/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 15 3 | 7 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star127914/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | sum is 5 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/methodology/file_io/input_char_sc_signed/DEPS: -------------------------------------------------------------------------------- 1 | input.decimal 2 | -------------------------------------------------------------------------------- /util/gem5art/artifact/mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | namespace_packages = True 3 | warn_unreachable = True 4 | -------------------------------------------------------------------------------- /ext/Kconfiglib/MANIFEST.in: -------------------------------------------------------------------------------- 1 | # Include the license file in source distributions 2 | include LICENSE.txt 3 | -------------------------------------------------------------------------------- /ext/ply/example/BASIC/hello.bas: -------------------------------------------------------------------------------- 1 | 5 REM HELLO WORLD PROGAM 2 | 10 PRINT "HELLO WORLD" 3 | 99 END 4 | 5 | -------------------------------------------------------------------------------- /ext/ply/example/BASIC/rand.bas: -------------------------------------------------------------------------------- 1 | 10 FOR I = 1 TO 20 2 | 20 PRINT INT(10*RND(0)) 3 | 30 NEXT I 4 | 40 END 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/fx/arith_big/test.f: -------------------------------------------------------------------------------- 1 | arith_big/add_big.cpp 2 | arith_big/main.cpp 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_ver/test01/test01.f: -------------------------------------------------------------------------------- 1 | test01/main.cpp 2 | test01/test-unchecked.cpp 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_1_5_neg/golden/T_2_3_1_5_neg.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_2_5_neg/golden/T_2_3_2_5_neg.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star113623/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0 3 | 9 4 | 9 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star124010/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 4 3 | -1 4 | 0 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star130786/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | a = 10 3 | a = 10 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/misc/test1/golden/test1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/misc/test2/golden/test2.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/misc/test3/golden/test3.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/methodology/file_io/input_char_sc_signed/input.decimal: -------------------------------------------------------------------------------- 1 | 0d12 2 | 0d13 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt7.1/chpt7.1.f: -------------------------------------------------------------------------------- 1 | chpt7.1/main.cpp 2 | chpt7.1/testbench.cpp 3 | -------------------------------------------------------------------------------- /tests/gem5/cpu_tests/ref/Bubblesort: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | -50000 3 | -------------------------------------------------------------------------------- /tests/gem5/cpu_tests/ref/FloatMM: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | -776.000061 3 | -------------------------------------------------------------------------------- /ext/systemc/src/sysc/qt/md/ksr1.Makefile: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # KSR1 configuration. 4 | # 5 | CC = cc -ansi 6 | 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_semaphore/test03/test03.f: -------------------------------------------------------------------------------- 1 | test03/test_sem.cpp 2 | test03/main.cpp 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test06/golden/test06.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_module_name/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | m1 3 | m2 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star137040/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 10 3 | 10 4 | 6 5 | 6 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/misc/test1/golden/test1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/misc/test2/golden/test2.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/misc/test3/golden/test3.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test3/test.f: -------------------------------------------------------------------------------- 1 | test3/test.cpp 2 | test3/tb.cpp 3 | test3/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test4/test.f: -------------------------------------------------------------------------------- 1 | test4/test.cpp 2 | test4/tb.cpp 3 | test4/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test5/test.f: -------------------------------------------------------------------------------- 1 | test5/test.cpp 2 | test5/tb.cpp 3 | test5/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test6/test.f: -------------------------------------------------------------------------------- 1 | test6/test.cpp 2 | test6/tb.cpp 3 | test6/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/synth_gnats/pr-207/pr-207_mem/golden/pr-207_mem.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/synth_gnats/pr-207/pr-207_rf/golden/pr-207_rf.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/tracing/wif_trace/pct1/pct1.f: -------------------------------------------------------------------------------- 1 | pct1/main.cpp 2 | pct1/monitor.cpp 3 | pct1/tx.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/utils/sc_vector/test09/golden/iter_test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop6: -------------------------------------------------------------------------------- 1 | config FOO 2 | bool 3 | 4 | config BAR 5 | bool 6 | select FOO if FOO 7 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kmainmenu: -------------------------------------------------------------------------------- 1 | config FOO 2 | string 3 | option env="FOO" 4 | 5 | mainmenu "---$FOO---" 6 | -------------------------------------------------------------------------------- /ext/googletest/docs/assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "jekyll-theme-primer"; 5 | @import "main"; 6 | -------------------------------------------------------------------------------- /ext/pybind11/docs/pybind11-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/ext/pybind11/docs/pybind11-logo.png -------------------------------------------------------------------------------- /src/doxygen/images/gem5_MS_Fig1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/doxygen/images/gem5_MS_Fig1.PNG -------------------------------------------------------------------------------- /src/doxygen/images/gem5_MS_Fig2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/doxygen/images/gem5_MS_Fig2.PNG -------------------------------------------------------------------------------- /src/doxygen/images/gem5_MS_Fig3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/doxygen/images/gem5_MS_Fig3.PNG -------------------------------------------------------------------------------- /src/doxygen/images/gem5_MS_Fig4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/doxygen/images/gem5_MS_Fig4.PNG -------------------------------------------------------------------------------- /src/doxygen/images/gem5_MS_Fig5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/doxygen/images/gem5_MS_Fig5.PNG -------------------------------------------------------------------------------- /src/doxygen/images/gem5_MS_Fig6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/doxygen/images/gem5_MS_Fig6.PNG -------------------------------------------------------------------------------- /src/doxygen/images/gem5_MS_Fig7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/doxygen/images/gem5_MS_Fig7.PNG -------------------------------------------------------------------------------- /src/doxygen/images/gem5_MS_Fig8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/doxygen/images/gem5_MS_Fig8.PNG -------------------------------------------------------------------------------- /src/doxygen/images/gem5_MS_Fig9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/doxygen/images/gem5_MS_Fig9.PNG -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_semaphore/test04/golden/test04.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | sc_semaphore 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/datatypes/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 123 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/bit/sc_proxy/bitwise_binary/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | OK 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/misc/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/misc/concat/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/misc/concat/test05/golden/test05.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/misc/concat/test08/golden/test08.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_main_main/golden/sc_main_main.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/communication/signals/int/int.f: -------------------------------------------------------------------------------- 1 | int/proc1.cpp 2 | int/proc2.cpp 3 | int/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star116072/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | sc_bit(1).to_char() = 1 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test1/test1.f: -------------------------------------------------------------------------------- 1 | test1/test.cpp 2 | test1/tb.cpp 3 | test1/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test2/test2.f: -------------------------------------------------------------------------------- 1 | test2/test.cpp 2 | test2/tb.cpp 3 | test2/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/synth_gnats/pr-207/pr-207_blast/golden/pr-207_blast.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/control/demo1/demo1.f: -------------------------------------------------------------------------------- 1 | demo1/main.cpp 2 | demo1/proc1.cpp 3 | demo1/proc2.cpp 4 | -------------------------------------------------------------------------------- /util/lsan-suppressions: -------------------------------------------------------------------------------- 1 | # Suppress detection of leaks from within the python3 interpreter. 2 | leak:libpython3*.so 3 | -------------------------------------------------------------------------------- /ext/nomali/.gitignore: -------------------------------------------------------------------------------- 1 | /docs 2 | /tests/nomali_test* 3 | !/tests/nomali_test*.* 4 | *~ 5 | *.o 6 | *.d 7 | *.so 8 | *.a 9 | -------------------------------------------------------------------------------- /ext/ply/example/BASIC/func.bas: -------------------------------------------------------------------------------- 1 | 10 DEF FDX(X) = 2*X 2 | 20 FOR I = 0 TO 100 3 | 30 PRINT FDX(I) 4 | 40 NEXT I 5 | 50 END 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/async_reset/golden/async_reset.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/sc_start_bug/golden/sc_start_bug.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/virtual_bind/golden/virtual_bind.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_attribute/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | a1 3 | 42 4 | a1 5 | a2 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_elab_and_sim/golden/sc_elab_and_sim.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_object_manager/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_process_handle/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_process_handle/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/communication/signals/bool/bool.f: -------------------------------------------------------------------------------- 1 | bool/proc1.cpp 2 | bool/proc2.cpp 3 | bool/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/hshake2/hshake2.f: -------------------------------------------------------------------------------- 1 | hshake2/proc1.cpp 2 | hshake2/proc2.cpp 3 | hshake2/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star113320/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | a=10 3 | b=0000001010 4 | c=10 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star125338/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | -5 3 | 5 4 | 4294967291 5 | 5 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test01/test.f: -------------------------------------------------------------------------------- 1 | test01/test.cpp 2 | test01/tb.cpp 3 | test01/main.cpp 4 | -------------------------------------------------------------------------------- /tests/gem5/memory/tgen-simple-mem.trc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/tests/gem5/memory/tgen-simple-mem.trc -------------------------------------------------------------------------------- /util/gem5art/run/mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | namespace_packages = True 3 | warn_unreachable = True 4 | mypy_path = ../artifact 5 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop9: -------------------------------------------------------------------------------- 1 | choice 2 | bool "choice" if FOO 3 | 4 | config FOO 5 | bool "foo" 6 | 7 | endchoice 8 | -------------------------------------------------------------------------------- /ext/ply/example/ansic/README: -------------------------------------------------------------------------------- 1 | This example is incomplete. Was going to specify an ANSI C parser. 2 | This is part of it. 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/late_reset_bug/golden/late_reset_bug.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/old_event_bug/golden/old_event_bug.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_elab/golden/proc_ctrl_elab.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/self_reset_bug/golden/self_reset_bug.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/misc/concat/test09/golden/test09.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 15 9 3 | Program completed 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_process_b/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | main action sc_method_process 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/communication/signals/float/float.f: -------------------------------------------------------------------------------- 1 | float/proc1.cpp 2 | float/proc2.cpp 3 | float/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/srlatch/srlatch.f: -------------------------------------------------------------------------------- 1 | srlatch/nor.cpp 2 | srlatch/testbench.cpp 3 | srlatch/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star116568/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 00000001 3 | 00000010 4 | 00000011 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star135771/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 01ZX0000111101ZX 3 | 111101ZXXXXXXXXX 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash0/dash0.f: -------------------------------------------------------------------------------- 1 | dash0/main.cpp 2 | dash0/dist.cpp 3 | dash0/pulse.cpp 4 | dash0/speed.cpp 5 | -------------------------------------------------------------------------------- /util/gem5art/tasks/mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | namespace_packages = True 3 | warn_unreachable = True 4 | mypy_path = ../artifact 5 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop5: -------------------------------------------------------------------------------- 1 | config FOO 2 | bool 3 | select BAR 4 | 5 | config BAR 6 | bool 7 | select FOO 8 | -------------------------------------------------------------------------------- /ext/ply/example/BASIC/sqrt1.bas: -------------------------------------------------------------------------------- 1 | 10 LET X = 0 2 | 20 LET X = X + 1 3 | 30 PRINT X, SQR(X) 4 | 40 IF X < 100 THEN 20 5 | 50 END 6 | -------------------------------------------------------------------------------- /ext/sst/sst/README.md: -------------------------------------------------------------------------------- 1 | # SST System Configurations 2 | 3 | This folder contains SST configurations used for SST/gem5 simulation. 4 | -------------------------------------------------------------------------------- /src/learning_gem5/part3/MSI.slicc: -------------------------------------------------------------------------------- 1 | protocol "MSI"; 2 | include "MSI-msg.sm"; 3 | include "MSI-cache.sm"; 4 | include "MSI-dir.sm"; 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/async_reset_port/golden/async_reset_port.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/living_children/golden/living_children.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/method_with_reset/golden/method_with_reset.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/mixed_child_procs/golden/mixed_child_procs.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_immed/golden/proc_ctrl_immed.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/sc_writer_policy/golden/sc_writer_policy.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/bugs/stack_alignment/.notsparcOS5: -------------------------------------------------------------------------------- 1 | # This bug is assumed not to affect the 32-bit SPARC architecture. 2 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/check_writer/test13/golden/test13.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Program completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test206/golden/test206.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test207/golden/test207.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test208/golden/test208.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test209/golden/test209.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test210/golden/test210.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test211/golden/test211.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test219/golden/test219.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test233/golden/test233.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_ver/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: sc_api_version: in sc_main 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/reduce/golden/reduce.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 1690 3 | 1690 4 | 1625 5 | 2665 6 | 1365 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt10.1/chpt10.1.f: -------------------------------------------------------------------------------- 1 | chpt10.1/main.cpp 2 | chpt10.1/paramadd.cpp 3 | chpt10.1/stim.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt12.1/chpt12.1.f: -------------------------------------------------------------------------------- 1 | chpt12.1/accessor.cpp 2 | chpt12.1/main.cpp 3 | chpt12.1/ram.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt12.2/chpt12.2.f: -------------------------------------------------------------------------------- 1 | chpt12.2/accessor.cpp 2 | chpt12.2/main.cpp 3 | chpt12.2/ram.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt14.1/chpt14.1.f: -------------------------------------------------------------------------------- 1 | chpt14.1/main.cpp 2 | chpt14.1/proc1.cpp 3 | chpt14.1/proc2.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt7.2/chpt7.2.f: -------------------------------------------------------------------------------- 1 | chpt7.2/adder_sub.cpp 2 | chpt7.2/main.cpp 3 | chpt7.2/testbench.cpp 4 | -------------------------------------------------------------------------------- /tests/test-progs/hello/bin/arm/linux/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/tests/test-progs/hello/bin/arm/linux/hello -------------------------------------------------------------------------------- /tests/test-progs/hello/bin/x86/linux/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/tests/test-progs/hello/bin/x86/linux/hello -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop4: -------------------------------------------------------------------------------- 1 | config FOO 2 | bool 3 | depends on BAR 4 | 5 | config BAR 6 | bool 7 | depends on FOO 8 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kheader: -------------------------------------------------------------------------------- 1 | # Used to test headers in .config and header files 2 | 3 | config FOO 4 | bool "foo" 5 | default y 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/child_proc_control/golden/child_proc_control.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/include_descendants/golden/include_descendants.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/recursive_kill_bug/golden/recursive_kill_bug.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Success 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/bugs/sc_string_bracket_assign/golden/sc_string_bracket_assign.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | s5: abc 3 | s6: aXc 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test203b/golden/test203b.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test235a/golden/test235a.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_signed/part_select/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0 3 | Program completed 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_small/bsps1/golden/bsps1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 38 3 | -2147483642 4 | 326 5 | 1152 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_module/test10/golden/test10.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0 s 3 | 0 s 4 | 500 ps 5 | 1 ns 6 | 1500 ps 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/biquad/biquad1/biquad1.f: -------------------------------------------------------------------------------- 1 | biquad1/biquad.cpp 2 | biquad1/main.cpp 3 | biquad1/testbench.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star114203/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0000111100 3 | 0b0000111100 4 | 0b00000111100 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/concat/fncall/test.f: -------------------------------------------------------------------------------- 1 | fncall/test.cpp 2 | fncall/tb.cpp 3 | fncall/monitor.cpp 4 | fncall/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/concat/lvalue/test.f: -------------------------------------------------------------------------------- 1 | lvalue/test.cpp 2 | lvalue/tb.cpp 3 | lvalue/monitor.cpp 4 | lvalue/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/concat/rvalue/test.f: -------------------------------------------------------------------------------- 1 | rvalue/test.cpp 2 | rvalue/tb.cpp 3 | rvalue/monitor.cpp 4 | rvalue/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/methodology/sim_control/sim_to_time/sim_to_time.f: -------------------------------------------------------------------------------- 1 | sim_to_time/main.cpp 2 | sim_to_time/display.cpp 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt5.1/chpt5.1.f: -------------------------------------------------------------------------------- 1 | chpt5.1/accumulator.cpp 2 | chpt5.1/main.cpp 3 | chpt5.1/testbench.cpp 4 | -------------------------------------------------------------------------------- /tests/gem5/learning_gem5/ref/hello: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | Beginning simulation! 3 | Hello world! 4 | -------------------------------------------------------------------------------- /tests/gem5/to_tick/ref/tick-exit-100.txt: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | Exiting at: 100 3 | Hello world! 4 | -------------------------------------------------------------------------------- /tests/test-progs/hello/bin/riscv/linux/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/tests/test-progs/hello/bin/riscv/linux/hello -------------------------------------------------------------------------------- /tests/test-progs/hello/bin/x86/linux/hello32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/tests/test-progs/hello/bin/x86/linux/hello32 -------------------------------------------------------------------------------- /ext/pybind11/docs/pybind11_vs_boost_python1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/ext/pybind11/docs/pybind11_vs_boost_python1.png -------------------------------------------------------------------------------- /ext/pybind11/docs/pybind11_vs_boost_python2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/ext/pybind11/docs/pybind11_vs_boost_python2.png -------------------------------------------------------------------------------- /ext/pybind11/tools/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["setuptools>=42", "wheel"] 3 | build-backend = "setuptools.build_meta" 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_unsigned/part_select/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0 3 | Program completed 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/communication/signals/unsigned/unsigned.f: -------------------------------------------------------------------------------- 1 | unsigned/proc1.cpp 2 | unsigned/proc2.cpp 3 | unsigned/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test1/test.f: -------------------------------------------------------------------------------- 1 | test1/test.cpp 2 | test1/tb.cpp 3 | test1/monitor.cpp 4 | test1/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test2/test.f: -------------------------------------------------------------------------------- 1 | test2/test.cpp 2 | test2/tb.cpp 3 | test2/monitor.cpp 4 | test2/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test3/test.f: -------------------------------------------------------------------------------- 1 | test3/test.cpp 2 | test3/tb.cpp 3 | test3/monitor.cpp 4 | test3/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test4/test.f: -------------------------------------------------------------------------------- 1 | test4/test.cpp 2 | test4/tb.cpp 3 | test4/monitor.cpp 4 | test4/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test5/test.f: -------------------------------------------------------------------------------- 1 | test5/test.cpp 2 | test5/tb.cpp 3 | test5/monitor.cpp 4 | test5/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test6/test.f: -------------------------------------------------------------------------------- 1 | test6/test.cpp 2 | test6/tb.cpp 3 | test6/monitor.cpp 4 | test6/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test7/test.f: -------------------------------------------------------------------------------- 1 | test7/test.cpp 2 | test7/tb.cpp 3 | test7/monitor.cpp 4 | test7/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test02/test.f: -------------------------------------------------------------------------------- 1 | test02/test.cpp 2 | test02/tb.cpp 3 | test02/monitor.cpp 4 | test02/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test03/test.f: -------------------------------------------------------------------------------- 1 | test03/test.cpp 2 | test03/tb.cpp 3 | test03/monitor.cpp 4 | test03/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test04/test.f: -------------------------------------------------------------------------------- 1 | test04/test.cpp 2 | test04/tb.cpp 3 | test04/monitor.cpp 4 | test04/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test05/test.f: -------------------------------------------------------------------------------- 1 | test05/test.cpp 2 | test05/tb.cpp 3 | test05/monitor.cpp 4 | test05/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test06/test.f: -------------------------------------------------------------------------------- 1 | test06/test.cpp 2 | test06/tb.cpp 3 | test06/monitor.cpp 4 | test06/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test07/test.f: -------------------------------------------------------------------------------- 1 | test07/test.cpp 2 | test07/tb.cpp 3 | test07/monitor.cpp 4 | test07/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test08/test.f: -------------------------------------------------------------------------------- 1 | test08/test.cpp 2 | test08/tb.cpp 3 | test08/monitor.cpp 4 | test08/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test09/test.f: -------------------------------------------------------------------------------- 1 | test09/test.cpp 2 | test09/tb.cpp 3 | test09/monitor.cpp 4 | test09/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test10/test.f: -------------------------------------------------------------------------------- 1 | test10/test.cpp 2 | test10/tb.cpp 3 | test10/monitor.cpp 4 | test10/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test11/test.f: -------------------------------------------------------------------------------- 1 | test11/test.cpp 2 | test11/tb.cpp 3 | test11/monitor.cpp 4 | test11/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test12/test.f: -------------------------------------------------------------------------------- 1 | test12/test.cpp 2 | test12/tb.cpp 3 | test12/monitor.cpp 4 | test12/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test13/test.f: -------------------------------------------------------------------------------- 1 | test13/test.cpp 2 | test13/tb.cpp 3 | test13/monitor.cpp 4 | test13/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test14/test.f: -------------------------------------------------------------------------------- 1 | test14/test.cpp 2 | test14/tb.cpp 3 | test14/monitor.cpp 4 | test14/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test15/test.f: -------------------------------------------------------------------------------- 1 | test15/test.cpp 2 | test15/tb.cpp 3 | test15/monitor.cpp 4 | test15/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test16/test.f: -------------------------------------------------------------------------------- 1 | test16/test.cpp 2 | test16/tb.cpp 3 | test16/monitor.cpp 4 | test16/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test17/test.f: -------------------------------------------------------------------------------- 1 | test17/test.cpp 2 | test17/tb.cpp 3 | test17/monitor.cpp 4 | test17/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/methodology/file_io/input_sc_signed/golden/input_sc_signed.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | SAMPLE DATA = 12 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/blv/golden/blv.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | verifying sc_bv<2000> 4 | 5 | verifying sc_lv<2000> 6 | -------------------------------------------------------------------------------- /tests/test-progs/hello/bin/power/linux/hello32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/tests/test-progs/hello/bin/power/linux/hello32 -------------------------------------------------------------------------------- /tests/test-progs/hello/bin/power/linux/hello64be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/tests/test-progs/hello/bin/power/linux/hello64be -------------------------------------------------------------------------------- /tests/test-progs/hello/bin/power/linux/hello64le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/tests/test-progs/hello/bin/power/linux/hello64le -------------------------------------------------------------------------------- /tests/test-progs/threads/bin/x86/linux/threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/tests/test-progs/threads/bin/x86/linux/threads -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.extraPaths": [ 3 | "src/python", 4 | "ext", 5 | "tests" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop8: -------------------------------------------------------------------------------- 1 | choice 2 | bool "choice" 3 | default FOO if FOO 4 | 5 | config FOO 6 | bool "foo" 7 | 8 | endchoice 9 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/sub/sub/Kconfig_symlink_1: -------------------------------------------------------------------------------- 1 | # Sources tests/sub/Kconfig_symlink_2, with an absolute path 2 | source "$(KCONFIG_SYMLINK_2)" 3 | -------------------------------------------------------------------------------- /ext/ply/ply/__init__.py: -------------------------------------------------------------------------------- 1 | # PLY package 2 | # Author: David Beazley (dave@dabeaz.com) 3 | 4 | __version__ = '3.11' 5 | __all__ = ['lex','yacc'] 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/ports/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | binding of models to parent model is completed 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/mult/mult.f: -------------------------------------------------------------------------------- 1 | mult/stimulus.cpp 2 | mult/display.cpp 3 | mult/mult.cpp 4 | mult/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/case/fsm/fsm.f: -------------------------------------------------------------------------------- 1 | fsm/display.cpp 2 | fsm/fsm.cpp 3 | fsm/main.cpp 4 | fsm/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/if_test/fsm/fsm.f: -------------------------------------------------------------------------------- 1 | fsm/main.cpp 2 | fsm/stimulus.cpp 3 | fsm/display.cpp 4 | fsm/fsm.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star125422/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0 s 3 | 15 ns 4 | 30 ns 5 | 45 ns 6 | 60 ns 7 | 75 ns 8 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star126360/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star132075/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 1 3 | 1 4 | 0 5 | 0 6 | 1 7 | 1 8 | 0 9 | 0 10 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test1/test.f: -------------------------------------------------------------------------------- 1 | test1/test.cpp 2 | test1/tb.cpp 3 | test1/monitor.cpp 4 | test1/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test2/test.f: -------------------------------------------------------------------------------- 1 | test2/test.cpp 2 | test2/tb.cpp 3 | test2/monitor.cpp 4 | test2/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test3/test.f: -------------------------------------------------------------------------------- 1 | test3/test.cpp 2 | test3/tb.cpp 3 | test3/monitor.cpp 4 | test3/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test4/test.f: -------------------------------------------------------------------------------- 1 | test4/test.cpp 2 | test4/tb.cpp 3 | test4/monitor.cpp 4 | test4/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test5/test.f: -------------------------------------------------------------------------------- 1 | test5/test.cpp 2 | test5/tb.cpp 3 | test5/monitor.cpp 4 | test5/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test6/test.f: -------------------------------------------------------------------------------- 1 | test6/test.cpp 2 | test6/tb.cpp 3 | test6/monitor.cpp 4 | test6/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test7/test.f: -------------------------------------------------------------------------------- 1 | test7/test.cpp 2 | test7/tb.cpp 3 | test7/monitor.cpp 4 | test7/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test8/test.f: -------------------------------------------------------------------------------- 1 | test8/test.cpp 2 | test8/tb.cpp 3 | test8/monitor.cpp 4 | test8/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test9/test.f: -------------------------------------------------------------------------------- 1 | test9/test.cpp 2 | test9/tb.cpp 3 | test9/monitor.cpp 4 | test9/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test1/test.f: -------------------------------------------------------------------------------- 1 | test1/test.cpp 2 | test1/tb.cpp 3 | test1/monitor.cpp 4 | test1/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test2/test.f: -------------------------------------------------------------------------------- 1 | test2/test.cpp 2 | test2/tb.cpp 3 | test2/monitor.cpp 4 | test2/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test3/test.f: -------------------------------------------------------------------------------- 1 | test3/test.cpp 2 | test3/tb.cpp 3 | test3/monitor.cpp 4 | test3/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test4/test.f: -------------------------------------------------------------------------------- 1 | test4/test.cpp 2 | test4/tb.cpp 3 | test4/monitor.cpp 4 | test4/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test5/test.f: -------------------------------------------------------------------------------- 1 | test5/test.cpp 2 | test5/tb.cpp 3 | test5/monitor.cpp 4 | test5/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test6/test.f: -------------------------------------------------------------------------------- 1 | test6/test.cpp 2 | test6/tb.cpp 3 | test6/monitor.cpp 4 | test6/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test3/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test4/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test5/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test6/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_signed/promote/promote.f: -------------------------------------------------------------------------------- 1 | promote/datawidth.cpp 2 | promote/stimgen.cpp 3 | promote/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt3.1/chpt3.1.f: -------------------------------------------------------------------------------- 1 | chpt3.1/counter.cpp 2 | chpt3.1/fsmr.cpp 3 | chpt3.1/main.cpp 4 | chpt3.1/sg.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt3.2/chpt3.2.f: -------------------------------------------------------------------------------- 1 | chpt3.2/counter.cpp 2 | chpt3.2/fsmr.cpp 3 | chpt3.2/main.cpp 4 | chpt3.2/sg.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/param_model/param_model.f: -------------------------------------------------------------------------------- 1 | param_model/param.cpp 2 | param_model/stim.cpp 3 | param_model/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash1/dash1.f: -------------------------------------------------------------------------------- 1 | dash1/driver.cpp 2 | dash1/dist.cpp 3 | dash1/main.cpp 4 | dash1/pulse.cpp 5 | dash1/speed.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash2/dash2.f: -------------------------------------------------------------------------------- 1 | dash2/driver.cpp 2 | dash2/dist.cpp 3 | dash2/main.cpp 4 | dash2/pulse.cpp 5 | dash2/speed.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash3/dash3.f: -------------------------------------------------------------------------------- 1 | dash3/driver.cpp 2 | dash3/dist.cpp 3 | dash3/main.cpp 4 | dash3/pulse.cpp 5 | dash3/speed.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash4/dash4.f: -------------------------------------------------------------------------------- 1 | dash4/driver.cpp 2 | dash4/dist.cpp 3 | dash4/main.cpp 4 | dash4/pulse.cpp 5 | dash4/speed.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash5/dash5.f: -------------------------------------------------------------------------------- 1 | dash5/driver.cpp 2 | dash5/dist.cpp 3 | dash5/main.cpp 4 | dash5/pulse.cpp 5 | dash5/speed.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash6/dash6.f: -------------------------------------------------------------------------------- 1 | dash6/driver.cpp 2 | dash6/dist.cpp 3 | dash6/main.cpp 4 | dash6/pulse.cpp 5 | dash6/speed.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash7/dash7.f: -------------------------------------------------------------------------------- 1 | dash7/driver.cpp 2 | dash7/dist.cpp 3 | dash7/main.cpp 4 | dash7/pulse.cpp 5 | dash7/speed.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash8/dash8.f: -------------------------------------------------------------------------------- 1 | dash8/driver.cpp 2 | dash8/dist.cpp 3 | dash8/main.cpp 4 | dash8/pulse.cpp 5 | dash8/speed.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/v1.0/dash9/dash9.f: -------------------------------------------------------------------------------- 1 | dash9/driver.cpp 2 | dash9/dist.cpp 3 | dash9/main.cpp 4 | dash9/pulse.cpp 5 | dash9/speed.cpp 6 | -------------------------------------------------------------------------------- /tests/gem5/gem5_library_example_tests/ref/simout_multisim_print_this_list.txt: -------------------------------------------------------------------------------- 1 | process_0 2 | process_1 3 | process_2 4 | process_3 5 | process_4 6 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/config_indented: -------------------------------------------------------------------------------- 1 | # Indented assignments should be ignored to be compatible with the C 2 | # implementation 3 | CONFIG_IGNOREME=n 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_object/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | object_0 3 | object_1 4 | object_2 5 | Program completed 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/or/or_1/or_1.f: -------------------------------------------------------------------------------- 1 | or_1/display.cpp 2 | or_1/main.cpp 3 | or_1/or_1.cpp 4 | or_1/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/pr476/test.f: -------------------------------------------------------------------------------- 1 | pr476/test.cpp 2 | pr476/tb.cpp 3 | pr476/monitor.cpp 4 | pr476/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test1/test.f: -------------------------------------------------------------------------------- 1 | test1/test.cpp 2 | test1/tb.cpp 3 | test1/monitor.cpp 4 | test1/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test2/test.f: -------------------------------------------------------------------------------- 1 | test2/test.cpp 2 | test2/tb.cpp 3 | test2/monitor.cpp 4 | test2/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test3/test.f: -------------------------------------------------------------------------------- 1 | test3/test.cpp 2 | test3/tb.cpp 3 | test3/monitor.cpp 4 | test3/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test4/test.f: -------------------------------------------------------------------------------- 1 | test4/test.cpp 2 | test4/tb.cpp 3 | test4/monitor.cpp 4 | test4/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test5/test.f: -------------------------------------------------------------------------------- 1 | test5/test.cpp 2 | test5/tb.cpp 3 | test5/monitor.cpp 4 | test5/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test6/test.f: -------------------------------------------------------------------------------- 1 | test6/test.cpp 2 | test6/tb.cpp 3 | test6/monitor.cpp 4 | test6/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star107464/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 1111111111111111111111111111111111111111 3 | -1 4 | 4294967295 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test1/test.f: -------------------------------------------------------------------------------- 1 | test1/test.cpp 2 | test1/tb.cpp 3 | test1/monitor.cpp 4 | test1/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test2/test.f: -------------------------------------------------------------------------------- 1 | test2/test.cpp 2 | test2/tb.cpp 3 | test2/monitor.cpp 4 | test2/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test3/test.f: -------------------------------------------------------------------------------- 1 | test3/test.cpp 2 | test3/tb.cpp 3 | test3/monitor.cpp 4 | test3/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test4/test.f: -------------------------------------------------------------------------------- 1 | test4/test.cpp 2 | test4/tb.cpp 3 | test4/monitor.cpp 4 | test4/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test5/test.f: -------------------------------------------------------------------------------- 1 | test5/test.cpp 2 | test5/tb.cpp 3 | test5/monitor.cpp 4 | test5/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test1/golden/test1.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/inlining/test2/golden/test2.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_unsigned/promote/promote.f: -------------------------------------------------------------------------------- 1 | promote/datawidth.cpp 2 | promote/stimgen.cpp 3 | promote/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/methodology/file_io/input_char_sc_signed/golden/input_char_sc_signed.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | SAMPLE DATA = 12 3 | -------------------------------------------------------------------------------- /src/systemc/tests/tlm/update_original/golden/update_original.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Unit test for update_original_from(). Should remain silent 3 | -------------------------------------------------------------------------------- /tests/test-progs/threads/src/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ../bin/x86/linux/threads: threads.cpp 3 | g++ -o ../bin/x86/linux/threads threads.cpp -pthread -std=c++11 4 | -------------------------------------------------------------------------------- /util/Makefile: -------------------------------------------------------------------------------- 1 | PROTO_PATH=../src/proto 2 | 3 | packet_pb2.py: $(PROTO_PATH)/packet.proto 4 | protoc --python_out=. --proto_path=$(PROTO_PATH) $< 5 | -------------------------------------------------------------------------------- /util/gem5-resources-manager/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/util/gem5-resources-manager/static/images/favicon.png -------------------------------------------------------------------------------- /util/gem5art/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | .venv 4 | __pycache__ 5 | dist/ 6 | *.egg-info/ 7 | .vscode/ 8 | .mypy_cache/ 9 | /run/results/** 10 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/version_macros/golden/version_macros.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | IEEE_1666_SYSTEMC = 201101 3 | 4 | Success 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_clock/test04/golden/test04.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | current time is: 8 ns 3 | now, the current time is: 10 ns 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_unsigned/minus/golden/minus.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | a = 2 b = 4 3 | a - b = -2 4 | a - 4 = -2 5 | 2 - b = -2 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/modulo/modulo.f: -------------------------------------------------------------------------------- 1 | modulo/stimulus.cpp 2 | modulo/display.cpp 3 | modulo/modulo.cpp 4 | modulo/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/and/and_1/and_1.f: -------------------------------------------------------------------------------- 1 | and_1/stimulus.cpp 2 | and_1/display.cpp 3 | and_1/and_1.cpp 4 | and_1/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/not/not_1/not_1.f: -------------------------------------------------------------------------------- 1 | not_1/display.cpp 2 | not_1/main.cpp 3 | not_1/not_1.cpp 4 | not_1/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/xor/xor_1/xor_1.f: -------------------------------------------------------------------------------- 1 | xor_1/display.cpp 2 | xor_1/main.cpp 3 | xor_1/stimulus.cpp 4 | xor_1/xor_1.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star114085/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0000000000000000000000000000000000000000000000000000000000011100 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/promote/promote.f: -------------------------------------------------------------------------------- 1 | promote/datawidth.cpp 2 | promote/stimgen.cpp 3 | promote/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/promote/promote.f: -------------------------------------------------------------------------------- 1 | promote/datawidth.cpp 2 | promote/stimgen.cpp 3 | promote/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_signed/extension/extension.f: -------------------------------------------------------------------------------- 1 | extension/datawidth.cpp 2 | extension/stimgen.cpp 3 | extension/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/methodology/sim_control/sim_to_infinity/sim_to_infinity.f: -------------------------------------------------------------------------------- 1 | sim_to_infinity/main.cpp 2 | sim_to_infinity/display.cpp 3 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test106/golden/test106.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | T() 1 0 3 | T() 1 1 4 | T() 1 2 5 | T() 1 3 6 | 7 | Success 8 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/biquad/biquad3/biquad3.f: -------------------------------------------------------------------------------- 1 | biquad3/biquad.cpp 2 | biquad3/delay_line.cpp 3 | biquad3/main.cpp 4 | biquad3/testbench.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star115038/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 00000000000000000000000000001010 3 | 00000000000000000000000000001010 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_signed/lost_carry/lost_carry.f: -------------------------------------------------------------------------------- 1 | lost_carry/datawidth.cpp 2 | lost_carry/stimgen.cpp 3 | lost_carry/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_signed/truncation/truncation.f: -------------------------------------------------------------------------------- 1 | truncation/datawidth.cpp 2 | truncation/stimgen.cpp 3 | truncation/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_unsigned/extension/extension.f: -------------------------------------------------------------------------------- 1 | extension/datawidth.cpp 2 | extension/stimgen.cpp 3 | extension/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/add_promote/add_promote.f: -------------------------------------------------------------------------------- 1 | add_promote/datawidth.cpp 2 | add_promote/stimgen.cpp 3 | add_promote/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/array_range/array_range.f: -------------------------------------------------------------------------------- 1 | array_range/array_range.cpp 2 | array_range/stimgen.cpp 3 | array_range/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/concat_port/concat_port.f: -------------------------------------------------------------------------------- 1 | concat_port/concat_port.cpp 2 | concat_port/stimgen.cpp 3 | concat_port/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/int_to_bits/int_to_bits.f: -------------------------------------------------------------------------------- 1 | int_to_bits/datawidth.cpp 2 | int_to_bits/stimgen.cpp 3 | int_to_bits/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/promote_add/promote_add.f: -------------------------------------------------------------------------------- 1 | promote_add/datawidth.cpp 2 | promote_add/stimgen.cpp 3 | promote_add/main.cpp 4 | -------------------------------------------------------------------------------- /ext/pybind11/include/pybind11/common.h: -------------------------------------------------------------------------------- 1 | #include "detail/common.h" 2 | #warning "Including 'common.h' is deprecated. It will be removed in v3.0. Use 'pybind11.h'." 3 | -------------------------------------------------------------------------------- /ext/systemc/src/sysc/qt/md/default.Makefile: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # `Normal' configuration. 4 | # 5 | CC = gcc -ansi -Wall -pedantic 6 | 7 | .o.s: 8 | as -o $@ $< 9 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_ports/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0 3 | 0 4 | X 5 | XXXX 6 | 2 7 | 1 8 | 1 9 | 1111 10 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/divide/divide/divide.f: -------------------------------------------------------------------------------- 1 | divide/stimulus.cpp 2 | divide/display.cpp 3 | divide/divide.cpp 4 | divide/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/irq/golden/irq.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Posedge on IRQ 0 3 | Negedge on IRQ 0 4 | Posedge on IRQ 1 5 | Negedge on IRQ 1 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/extension/extension.f: -------------------------------------------------------------------------------- 1 | extension/datawidth.cpp 2 | extension/stimgen.cpp 3 | extension/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/extension/extension.f: -------------------------------------------------------------------------------- 1 | extension/datawidth.cpp 2 | extension/stimgen.cpp 3 | extension/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_unsigned/lost_carry/lost_carry.f: -------------------------------------------------------------------------------- 1 | lost_carry/datawidth.cpp 2 | lost_carry/stimgen.cpp 3 | lost_carry/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_unsigned/truncation/truncation.f: -------------------------------------------------------------------------------- 1 | truncation/datawidth.cpp 2 | truncation/stimgen.cpp 3 | truncation/main.cpp 4 | -------------------------------------------------------------------------------- /util/gem5-resources-manager/static/images/gem5ColorLong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/util/gem5-resources-manager/static/images/gem5ColorLong.gif -------------------------------------------------------------------------------- /ext/pybind11/tests/test_eval_call.py: -------------------------------------------------------------------------------- 1 | # This file is called from 'test_eval.py' 2 | 3 | if "call_test2" in locals(): 4 | call_test2(y) # noqa: F821 undefined name 5 | -------------------------------------------------------------------------------- /ext/systemc/src/sysc/qt/md/m88k.Makefile: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # Hosted compilers for 88k for Meerkat. 4 | # 5 | CC = gcc88 -Dm88k -ansi -pedantic -Wall -fno-builtin 6 | AS = as88 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/fx/shift/test.f: -------------------------------------------------------------------------------- 1 | shift/operator_shift_both.cpp 2 | shift/operator_shift_left.cpp 3 | shift/operator_shift_right.cpp 4 | shift/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_signed/part_select/test04/golden/test04.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 1234fa78 3 | 12340a78 4 | 12340a78 5 | Program completed 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_unsigned/part_select/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 12340a78 3 | 12340a78 4 | 12340a78 5 | Program completed 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/dynamic_processes/sc_barrier/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 11 ns - c 3 | 11 ns - b 4 | 11 ns - a 5 | Program completed 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.f: -------------------------------------------------------------------------------- 1 | sharing/display.cpp 2 | sharing/main.cpp 3 | sharing/sharing.cpp 4 | sharing/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/shr/sharing/sharing.f: -------------------------------------------------------------------------------- 1 | sharing/display.cpp 2 | sharing/main.cpp 3 | sharing/sharing.cpp 4 | sharing/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/loop/for_fsm/for_fsm.f: -------------------------------------------------------------------------------- 1 | for_fsm/main.cpp 2 | for_fsm/stimulus.cpp 3 | for_fsm/display.cpp 4 | for_fsm/for_fsm.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star123845/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: (I704) VCD delta cycle tracing with pseudo timesteps (1 unit): 1 ps 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star127848/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 11001100 3 | 01100 4 | 00110 5 | 11100110 6 | 11100110 7 | 10110011 8 | 10110011 9 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/prime_flag/prime_flag.f: -------------------------------------------------------------------------------- 1 | prime_flag/reset.cpp 2 | prime_flag/display.cpp 3 | prime_flag/prime_numgen.cpp 4 | prime_flag/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test01/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | 4 | Info: /OSCI/SystemC: Simulation stopped by user. 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/lost_carry/lost_carry.f: -------------------------------------------------------------------------------- 1 | lost_carry/datawidth.cpp 2 | lost_carry/stimgen.cpp 3 | lost_carry/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/truncation/truncation.f: -------------------------------------------------------------------------------- 1 | truncation/datawidth.cpp 2 | truncation/stimgen.cpp 3 | truncation/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/lost_carry/lost_carry.f: -------------------------------------------------------------------------------- 1 | lost_carry/datawidth.cpp 2 | lost_carry/stimgen.cpp 3 | lost_carry/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/truncation/truncation.f: -------------------------------------------------------------------------------- 1 | truncation/datawidth.cpp 2 | truncation/stimgen.cpp 3 | truncation/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_signed/bits_to_bits/bits_to_bits.f: -------------------------------------------------------------------------------- 1 | bits_to_bits/datawidth.cpp 2 | bits_to_bits/stimgen.cpp 3 | bits_to_bits/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/bool_tilda/golden/bool_tilda.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | a = 0 (!1) 4 | b = 1 (!0) 5 | c = 1 (~1) 6 | d = 1 (~0) 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/datawidth_int/datawidth_int.f: -------------------------------------------------------------------------------- 1 | datawidth_int/datawidth.cpp 2 | datawidth_int/stimgen.cpp 3 | datawidth_int/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt6.1/chpt6.1.f: -------------------------------------------------------------------------------- 1 | chpt6.1/display.cpp 2 | chpt6.1/driver.cpp 3 | chpt6.1/main.cpp 4 | chpt6.1/pullup.cpp 5 | chpt6.1/ts_buf.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/tlm/bugs/multi_passthrough_sockets_bug/golden/multi_passthrough_sockets_bug.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Received successfully introspection extension! 3 | -------------------------------------------------------------------------------- /src/systemc/tests/tlm/nb2b_adapter/golden/nb2b_adapter.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Unit test for nb2b adapter, PEQ, and instance-specific extensions. Should remain silent 3 | -------------------------------------------------------------------------------- /tests/gem5/learning_gem5/ref/test: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000 ticks per second 2 | Beginning simulation! 3 | Exiting @ tick 10011 because Ruby Tester completed 4 | -------------------------------------------------------------------------------- /ext/ply/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | description-file = README.md 6 | 7 | [egg_info] 8 | tag_build = 9 | tag_date = 0 10 | 11 | -------------------------------------------------------------------------------- /ext/systemc/src/sysc/qt/md/axp.1.Makefile: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # Compiling for the DEC AXP (alpha) with GNU CC or version 1.x of OSF. 4 | # 5 | CC = cc -std1 -D__AXP__ -D__OSF1__ 6 | -------------------------------------------------------------------------------- /ext/systemc/src/sysc/qt/md/axp.2.Makefile: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # Compiling for the DEC AXP (alpha) with GNU CC or version 2.x of OSF. 4 | # 5 | CC = cc -std1 -D__AXP__ -D__OSF2__ 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl/golden/proc_ctrl.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | 5 | Success 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/sync_reset/golden/sync_reset.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | 5 | Success 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_resolved_port/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Z X X X X 3 | Z Z X X X 4 | Z Z Z X X 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_signed/part_select/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0021 0021 3 | 0021 0021 4 | 21 21 5 | 0021 6 | 00021 7 | 00021 8 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/addition/sharing/sharing.f: -------------------------------------------------------------------------------- 1 | sharing/stimulus.cpp 2 | sharing/display.cpp 3 | sharing/sharing.cpp 4 | sharing/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/sharing/sharing.f: -------------------------------------------------------------------------------- 1 | sharing/stimulus.cpp 2 | sharing/display.cpp 3 | sharing/sharing.cpp 4 | sharing/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.f: -------------------------------------------------------------------------------- 1 | bitwidth/stimulus.cpp 2 | bitwidth/display.cpp 3 | bitwidth/bitwidth.cpp 4 | bitwidth/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/if_test/if_test/if_test.f: -------------------------------------------------------------------------------- 1 | if_test/if_test.cpp 2 | if_test/display.cpp 3 | if_test/main.cpp 4 | if_test/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/examples/datawidth_int_file/datawidth_int.f: -------------------------------------------------------------------------------- 1 | datawidth_int_file/datawidth.cpp 2 | datawidth_int_file/stimgen.cpp 3 | datawidth_int_file/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_unsigned/bits_to_bits/bits_to_bits.f: -------------------------------------------------------------------------------- 1 | bits_to_bits/datawidth.cpp 2 | bits_to_bits/stimgen.cpp 3 | bits_to_bits/main.cpp 4 | -------------------------------------------------------------------------------- /ext/pybind11/.github/labeler.yml: -------------------------------------------------------------------------------- 1 | docs: 2 | - any: 3 | - 'docs/**/*.rst' 4 | - '!docs/changelog.rst' 5 | - '!docs/upgrade.rst' 6 | 7 | ci: 8 | - '.github/workflows/*.yml' 9 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_export/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 10 ns In Channel run() 3 | 17 ns In Channel run() 4 | 20 ns In Channel run() 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/addition/addition/addition.f: -------------------------------------------------------------------------------- 1 | addition/stimulus.cpp 2 | addition/display.cpp 3 | addition/addition.cpp 4 | addition/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/addition/bitwidth/bitwidth.f: -------------------------------------------------------------------------------- 1 | bitwidth/stimulus.cpp 2 | bitwidth/display.cpp 3 | bitwidth/bitwidth.cpp 4 | bitwidth/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/bitwidth/bitwidth.f: -------------------------------------------------------------------------------- 1 | bitwidth/stimulus.cpp 2 | bitwidth/display.cpp 3 | bitwidth/bitwidth.cpp 4 | bitwidth/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/subtract/subtract.f: -------------------------------------------------------------------------------- 1 | subtract/stimulus.cpp 2 | subtract/display.cpp 3 | subtract/subtract.cpp 4 | subtract/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/case/inlining/inlining.f: -------------------------------------------------------------------------------- 1 | inlining/display.cpp 2 | inlining/inlining.cpp 3 | inlining/main.cpp 4 | inlining/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/if_test/inlining/inlining.f: -------------------------------------------------------------------------------- 1 | inlining/main.cpp 2 | inlining/stimulus.cpp 3 | inlining/display.cpp 4 | inlining/inlining.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/loop/for_exit/for_exit.f: -------------------------------------------------------------------------------- 1 | for_exit/main.cpp 2 | for_exit/stimulus.cpp 3 | for_exit/display.cpp 4 | for_exit/for_exit.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/bits_to_bits/bits_to_bits.f: -------------------------------------------------------------------------------- 1 | bits_to_bits/datawidth.cpp 2 | bits_to_bits/stimgen.cpp 3 | bits_to_bits/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/bits_to_bits/bits_to_bits.f: -------------------------------------------------------------------------------- 1 | bits_to_bits/datawidth.cpp 2 | bits_to_bits/stimgen.cpp 3 | bits_to_bits/main.cpp 4 | -------------------------------------------------------------------------------- /util/gem5-resources-manager/static/images/gem5ResourcesManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/util/gem5-resources-manager/static/images/gem5ResourcesManager.png -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/disable_enable/golden/disable_enable.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | 5 | Success 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/sc_process_handle_less_than/golden/sc_process_handle_less_than.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | T2 completed 3 | T1 completed 4 | 5 | Success 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/bugs/constructor_throw/golden/constructor_throw.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E514) set time resolution failed 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/addition/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/stimulus.cpp 2 | datatypes/display.cpp 3 | datatypes/datatypes.cpp 4 | datatypes/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/addition/increment/increment.f: -------------------------------------------------------------------------------- 1 | increment/stimulus.cpp 2 | increment/display.cpp 3 | increment/increment.cpp 4 | increment/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/stimulus.cpp 2 | datatypes/display.cpp 3 | datatypes/datatypes.cpp 4 | datatypes/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/stimulus.cpp 2 | datatypes/display.cpp 3 | datatypes/datatypes.cpp 4 | datatypes/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/decrement/decrement.f: -------------------------------------------------------------------------------- 1 | decrement/stimulus.cpp 2 | decrement/display.cpp 3 | decrement/decrement.cpp 4 | decrement/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/and/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/stimulus.cpp 2 | datatypes/display.cpp 3 | datatypes/datatypes.cpp 4 | datatypes/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/not/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/stimulus.cpp 2 | datatypes/display.cpp 3 | datatypes/datatypes.cpp 4 | datatypes/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/or/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/datatypes.cpp 2 | datatypes/display.cpp 3 | datatypes/main.cpp 4 | datatypes/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/stimulus.cpp 2 | datatypes/display.cpp 3 | datatypes/datatypes.cpp 4 | datatypes/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/xor/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/stimulus.cpp 2 | datatypes/display.cpp 3 | datatypes/datatypes.cpp 4 | datatypes/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/case/balancing/balancing.f: -------------------------------------------------------------------------------- 1 | balancing/balancing.cpp 2 | balancing/display.cpp 3 | balancing/main.cpp 4 | balancing/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/case/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/datatypes.cpp 2 | datatypes/display.cpp 3 | datatypes/main.cpp 4 | datatypes/stimulus.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_fsm/while_fsm.f: -------------------------------------------------------------------------------- 1 | while_fsm/main.cpp 2 | while_fsm/stimulus.cpp 3 | while_fsm/display.cpp 4 | while_fsm/while_fsm.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/cycle_dw8051_demo.f: -------------------------------------------------------------------------------- 1 | cycle_dw8051_demo/cycle_model.cpp 2 | cycle_dw8051_demo/peripheral.cpp 3 | cycle_dw8051_demo/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/concat/fncall/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/concat/lvalue/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/concat/rvalue/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/tmp/others/priority_bug/golden/priority_bug.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Target called/reset at 0 s 3 | 4 | Info: /OSCI/SystemC: Simulation stopped by user. 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/tmp/others/sc_writer_bug/golden/sc_writer_bug.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | port written in top.m1 at 1 ps 3 | port written in top.m2 at 2 ps 4 | 5 | Success 6 | -------------------------------------------------------------------------------- /tests/gem5/to_tick/ref/tick-to-max-at-execution-100.txt: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | Current Tick: 100 3 | Current Max Tick: 100 4 | Ticks until max: 0 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_priority/golden/proc_ctrl_priority.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | 5 | Success 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_timeout/golden/proc_ctrl_timeout.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | 5 | Success 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/datatypes/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 123 3 | 10 4 | 9 5 | 8 6 | 7 7 | 6 8 | 5 9 | 4 10 | 3 11 | 2 12 | 1 13 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test202/golden/test202.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Info: /OSCI/SystemC: Simulation stopped by user. 5 | 6 | Success 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test205/golden/test205.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Info: /OSCI/SystemC: Simulation stopped by user. 5 | 6 | Success 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test234/golden/test234.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent... 3 | 4 | Info: /OSCI/SystemC: Simulation stopped by user. 5 | 6 | Success 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/dynamic_processes/test05/golden/test05.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | spawn thetest 3 | in thetest() 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_sensitive/test05/golden/test05.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 1 ns 3 | 5 ns 4 | 6 ns 5 | 1006 ns 6 | 7 | Info: /OSCI/SystemC: Simulation stopped by user. 8 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_simcontext/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0 main_action_method called 3 | 0 main_action_thread called 4 | 1 main_action_cthread called 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test07/golden/test07.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E514) set time resolution failed: already specified 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/if_test/balancing/balancing.f: -------------------------------------------------------------------------------- 1 | balancing/main.cpp 2 | balancing/stimulus.cpp 3 | balancing/display.cpp 4 | balancing/balancing.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/if_test/datatypes/datatypes.f: -------------------------------------------------------------------------------- 1 | datatypes/display.cpp 2 | datatypes/main.cpp 3 | datatypes/stimulus.cpp 4 | datatypes/datatypes.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_exit/while_exit.f: -------------------------------------------------------------------------------- 1 | while_exit/main.cpp 2 | while_exit/stimulus.cpp 3 | while_exit/display.cpp 4 | while_exit/while_exit.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim/prime_do_while/prime_do_while.f: -------------------------------------------------------------------------------- 1 | prime_do_while/reset.cpp 2 | prime_do_while/display.cpp 3 | prime_do_while/prime_numgen.cpp 4 | prime_do_while/main.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/tri_state2/tri_state2.f: -------------------------------------------------------------------------------- 1 | tri_state2/display.cpp 2 | tri_state2/driver.cpp 3 | tri_state2/main.cpp 4 | tri_state2/pullup.cpp 5 | tri_state2/ts_buf.cpp 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test03/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test04/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test05/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test06/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test07/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test08/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test09/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test10/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test11/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test12/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test13/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test14/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test15/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test16/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/wait_until/test17/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /tests/gem5/to_tick/ref/tick-to-max-before-execution-250.txt: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | Current Tick: 250 3 | Current Max Tick: 250 4 | Ticks until max: 0 5 | -------------------------------------------------------------------------------- /ext/Kconfiglib/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | # We support both Python 2 and Python 3 3 | universal = 1 4 | 5 | [metadata] 6 | # Include the license file in wheels 7 | license_file = LICENSE.txt 8 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdeploop7: -------------------------------------------------------------------------------- 1 | choice 2 | bool "choice" 3 | 4 | config FOO 5 | bool "foo" 6 | depends on BAR 7 | 8 | config BAR 9 | bool "bar" 10 | 11 | endchoice 12 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kinclude_path_sourced_2: -------------------------------------------------------------------------------- 1 | config TWO_DOWN 2 | bool 3 | 4 | menu "menu" 5 | endmenu 6 | 7 | comment "comment" 8 | 9 | choice 10 | bool "choice" 11 | endchoice 12 | -------------------------------------------------------------------------------- /ext/googletest/googlemock/docs/README.md: -------------------------------------------------------------------------------- 1 | # Content Moved 2 | 3 | We are working on updates to the GoogleTest documentation, which has moved to 4 | the top-level [docs](../../docs) directory. 5 | -------------------------------------------------------------------------------- /ext/googletest/googletest/docs/README.md: -------------------------------------------------------------------------------- 1 | # Content Moved 2 | 3 | We are working on updates to the GoogleTest documentation, which has moved to 4 | the top-level [docs](../../docs) directory. 5 | -------------------------------------------------------------------------------- /src/mem/ruby/protocol/chi/CHI.slicc: -------------------------------------------------------------------------------- 1 | protocol "CHI" partial_func_reads; 2 | 3 | include "CHI-msg.sm"; 4 | include "CHI-cache.sm"; 5 | include "CHI-mem.sm"; 6 | include "CHI-dvm-misc-node.sm"; 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_interface/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Warning: (W116) channel doesn't have a default event 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_resolved/test04/golden/test04.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | a.res_sig1 3 | a.res_sig2 4 | 1. cycle 5 | 1 6 | X 7 | 2. cycle 8 | 1 9 | 1 10 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/reset_signal_is/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Before start 3 | A: reset 4 | B: reset 5 | A: reset 6 | B: reset 7 | After reset true 8 | Ending 9 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E514) set time resolution failed: value not positive 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.f: -------------------------------------------------------------------------------- 1 | conditions/display.cpp 2 | conditions/stimulus.cpp 3 | conditions/main.cpp 4 | conditions/conditions.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test1/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test2/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test3/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test4/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test5/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test6/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/misc/test7/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_signed/promote_extension/promote_extension.f: -------------------------------------------------------------------------------- 1 | promote_extension/datawidth.cpp 2 | promote_extension/stimgen.cpp 3 | promote_extension/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt4.1/chpt4.1.f: -------------------------------------------------------------------------------- 1 | chpt4.1/display.cpp 2 | chpt4.1/main.cpp 3 | chpt4.1/numgen.cpp 4 | chpt4.1/stage1.cpp 5 | chpt4.1/stage2.cpp 6 | chpt4.1/stage3.cpp 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt4.2/chpt4.2.f: -------------------------------------------------------------------------------- 1 | chpt4.2/display.cpp 2 | chpt4.2/main.cpp 3 | chpt4.2/numgen.cpp 4 | chpt4.2/stage1.cpp 5 | chpt4.2/stage2.cpp 6 | chpt4.2/stage3.cpp 7 | -------------------------------------------------------------------------------- /util/cpt_upgraders/multiple-event-queues.py: -------------------------------------------------------------------------------- 1 | # Add support for multiple event queues 2 | def upgrader(cpt): 3 | cpt.set("Globals", "numMainEventQueues", "1") 4 | 5 | 6 | legacy_version = 12 7 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdefconfig_nonexistent: -------------------------------------------------------------------------------- 1 | config A 2 | string 3 | option defconfig_list 4 | default "Kconfiglib/tests/non_existent_1" 5 | default "Kconfiglib/tests/non_existent_2" 6 | -------------------------------------------------------------------------------- /src/mem/ruby/protocol/Garnet_standalone.slicc: -------------------------------------------------------------------------------- 1 | protocol "Garnet_standalone"; 2 | include "Garnet_standalone-msg.sm"; 3 | include "Garnet_standalone-cache.sm"; 4 | include "Garnet_standalone-dir.sm"; 5 | -------------------------------------------------------------------------------- /src/mem/ruby/protocol/MI_example.slicc: -------------------------------------------------------------------------------- 1 | protocol "MI_example"; 2 | include "MI_example-msg.sm"; 3 | include "MI_example-cache.sm"; 4 | include "MI_example-dir.sm"; 5 | include "MI_example-dma.sm"; 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/1666-2011-compliance/method_suspends_itself/golden/method_suspends_itself.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Info: /OSCI/SystemC: Simulation stopped by user. 4 | 5 | Success 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_prim_channel/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | simulation time:0 s writting 0 to channel 3 | simulation time:0 s reading 0 from channel 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E514) set time resolution failed: value not a power of ten 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test09/golden/test09.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E514) set time resolution failed: value smaller than 1 fs 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/pr476/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test1/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test2/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test3/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test4/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test5/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/if_transforms/loop_unrolling/test6/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test1/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test2/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test3/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test4/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test5/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test6/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test7/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test8/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/line_label/test9/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test1/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test2/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test3/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test4/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test5/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/resource/test6/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test1/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test2/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test3/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test4/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/directives/translate_on/test5/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Begin Simulation 3 | End Simulation 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_signed/promote_lost_carry/promote_lost_carry.f: -------------------------------------------------------------------------------- 1 | promote_lost_carry/datawidth.cpp 2 | promote_lost_carry/stimgen.cpp 3 | promote_lost_carry/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_signed/promote_truncation/promote_truncation.f: -------------------------------------------------------------------------------- 1 | promote_truncation/datawidth.cpp 2 | promote_truncation/stimgen.cpp 3 | promote_truncation/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_unsigned/promote_extension/promote_extension.f: -------------------------------------------------------------------------------- 1 | promote_extension/datawidth.cpp 2 | promote_extension/stimgen.cpp 3 | promote_extension/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/std_ulogic_tilda/golden/std_ulogic_tilda.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | a = 0 (!1) 4 | b = 1 (!0) 5 | c = 0 (~1) 6 | d = 1 (~0) 7 | e = 0 (~1) 8 | -------------------------------------------------------------------------------- /tests/gem5/to_tick/ref/tick-exit-10-20-30-40.txt: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | Exiting at: 10 3 | Exiting at: 20 4 | Exiting at: 30 5 | Exiting at: 40 6 | Hello world! 7 | -------------------------------------------------------------------------------- /tests/gem5/to_tick/ref/tick-to-max-at-execution-and-after-100-200.txt: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | Current Tick: 100 3 | Current Max Tick: 200 4 | Ticks until max: 100 5 | -------------------------------------------------------------------------------- /ext/pybind11/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | breathe==4.34.0 2 | furo==2022.6.21 3 | sphinx==5.0.2 4 | sphinx-copybutton==0.5.0 5 | sphinxcontrib-moderncmakedomain==3.21.4 6 | sphinxcontrib-svg2pdfconverter==1.2.0 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/bugs/stack_alignment/golden/stack_alignment.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Inside sc_main() 3 | Inside C::run() 4 | Between C::run() 5 | Out of C::run() 6 | Out of sc_main() 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_export/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E120) sc_export instance has no interface: x.export_1 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test08/golden/test08.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E514) set time resolution failed: sc_time object(s) constructed 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/promote_extension/promote_extension.f: -------------------------------------------------------------------------------- 1 | promote_extension/datawidth.cpp 2 | promote_extension/stimgen.cpp 3 | promote_extension/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/promote_extension/promote_extension.f: -------------------------------------------------------------------------------- 1 | promote_extension/datawidth.cpp 2 | promote_extension/stimgen.cpp 3 | promote_extension/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_unsigned/promote_lost_carry/promote_lost_carry.f: -------------------------------------------------------------------------------- 1 | promote_lost_carry/datawidth.cpp 2 | promote_lost_carry/stimgen.cpp 3 | promote_lost_carry/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_unsigned/promote_truncation/promote_truncation.f: -------------------------------------------------------------------------------- 1 | promote_truncation/datawidth.cpp 2 | promote_truncation/stimgen.cpp 3 | promote_truncation/main.cpp 4 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kdefconfig_srctree: -------------------------------------------------------------------------------- 1 | config A 2 | string 3 | option defconfig_list 4 | default "sub/defconfig_in_sub" # Assume this doesn't exist 5 | default "Kconfiglib/tests/defconfig_2" 6 | -------------------------------------------------------------------------------- /ext/ply/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include example * 2 | recursive-include doc * 3 | recursive-include test * 4 | include ANNOUNCE 5 | include README.md 6 | include CHANGES 7 | include TODO 8 | global-exclude *.pyc 9 | -------------------------------------------------------------------------------- /ext/pybind11/tests/test_union.py: -------------------------------------------------------------------------------- 1 | from pybind11_tests import union_ as m 2 | 3 | 4 | def test_union(): 5 | instance = m.TestUnion() 6 | 7 | instance.as_uint = 10 8 | assert instance.as_int == 10 9 | -------------------------------------------------------------------------------- /src/mem/ruby/protocol/MOESI_hammer.slicc: -------------------------------------------------------------------------------- 1 | protocol "MOESI_hammer"; 2 | include "MOESI_hammer-msg.sm"; 3 | include "MOESI_hammer-cache.sm"; 4 | include "MOESI_hammer-dir.sm"; 5 | include "MOESI_hammer-dma.sm"; 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/arith/arith11/golden/arith11.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | a is 0 3 | a == 0 is 1 4 | raw digit: 0 5 | 6 | b is 0 7 | b == 0 is 1 8 | raw digit: 0 9 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_simcontext/sc_delta_count/golden/sc_delta_count.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 2 3 | 4 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | Program completed after 5 ns 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/biquad/biquad2/biquad2.f: -------------------------------------------------------------------------------- 1 | biquad2/biquad.cpp 2 | biquad2/delay_line.cpp 3 | biquad2/getres.cpp 4 | biquad2/main.cpp 5 | biquad2/op_queue.cpp 6 | biquad2/testbench.cpp 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/promote_lost_carry/promote_lost_carry.f: -------------------------------------------------------------------------------- 1 | promote_lost_carry/datawidth.cpp 2 | promote_lost_carry/stimgen.cpp 3 | promote_lost_carry/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/promote_truncation/promote_truncation.f: -------------------------------------------------------------------------------- 1 | promote_truncation/datawidth.cpp 2 | promote_truncation/stimgen.cpp 3 | promote_truncation/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/promote_lost_carry/promote_lost_carry.f: -------------------------------------------------------------------------------- 1 | promote_lost_carry/datawidth.cpp 2 | promote_lost_carry/stimgen.cpp 3 | promote_lost_carry/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/promote_truncation/promote_truncation.f: -------------------------------------------------------------------------------- 1 | promote_truncation/datawidth.cpp 2 | promote_truncation/stimgen.cpp 3 | promote_truncation/main.cpp 4 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/std_to_bool/golden/std_to_bool.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 100 3 | 4 | Warning: (W207) sc_bv cannot contain values X and Z 5 | In file: 6 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kinclude_path: -------------------------------------------------------------------------------- 1 | config TOP 2 | bool 3 | 4 | source "Kinclude_path_sourced_1" 5 | 6 | config TOP 7 | bool 8 | 9 | source "Kinclude_path_sourced_1" 10 | 11 | config TOP 12 | bool 13 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/bugs/bug_185/golden/bug_185.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | a = 00000000 3 | b = 111111111 4 | c = 00000000000 5 | d = 11111111111 6 | e = 00000000000 7 | f = 00000000001 8 | Program completed 9 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_lambda/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | i = 0 3 | i = 1 4 | i = 2 5 | i = 3 6 | i = 4 7 | i = 5 8 | i = 6 9 | i = 7 10 | i = 8 11 | i = 9 12 | i = 10 13 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test18/golden/test18.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 8 ns throwing 3 | 8 ns caught 4 | 9 ns throwing 5 | 9 ns caught 6 | 10 ns throwing 7 | 10 ns caught 8 | Program completed 9 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/loop/for_datatypes/for_datatypes.f: -------------------------------------------------------------------------------- 1 | for_datatypes/stimulus.cpp 2 | for_datatypes/main.cpp 3 | for_datatypes/display.cpp 4 | for_datatypes/for_datatypes.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/examples/a2901/a2901.f: -------------------------------------------------------------------------------- 1 | a2901/a2901.cpp 2 | a2901/a2901_alu.cpp 3 | a2901/a2901_alu_inputs.cpp 4 | a2901/a2901_edge.cpp 5 | a2901/a2901_output_and_shifter.cpp 6 | a2901/a2901_test.cpp 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/srlatch/golden/srlatch.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | SR=10 QQ'=01 3 | SR=01 QQ'=10 4 | SR=00 QQ'=10 5 | SR=11 QQ'=00 6 | 7 | Info: /OSCI/SystemC: Simulation stopped by user. 8 | -------------------------------------------------------------------------------- /ext/pybind11/tests/test_cmake_build/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | namespace py = pybind11; 3 | 4 | PYBIND11_MODULE(test_cmake_build, m) { 5 | m.def("add", [](int i, int j) { return i + j; }); 6 | } 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_event/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E521) immediate notification is not allowed during update phase or elaboration 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_sensitive/test04/golden/test04.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E526) make sensitive failed: simulation running 4 | In file: 5 | In process: x.able @ 0 s 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/golden/sharing.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/golden/sharing.log -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/shr/sharing/golden/sharing.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shr/sharing/golden/sharing.log -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star127712/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0 s: Method Activated 3 | 0 s: Method Activated 4 | 1 ns: Method Activated 5 | 2 ns: Method Activated 6 | 3 ns: Method Activated 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt4.4/chpt4.4.f: -------------------------------------------------------------------------------- 1 | chpt4.4/display.cpp 2 | chpt4.4/main.cpp 3 | chpt4.4/numgen.cpp 4 | chpt4.4/pipeline.cpp 5 | chpt4.4/stage1.cpp 6 | chpt4.4/stage2.cpp 7 | chpt4.4/stage3.cpp 8 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/tmp/others/bogus_reset/golden/bogus_reset.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Target called at 10 ns 3 | Target called at 15 ns 4 | 5 | Info: /OSCI/SystemC: Simulation stopped by user. 6 | 7 | Success 8 | -------------------------------------------------------------------------------- /ext/mcpat/cacti/cacti.i: -------------------------------------------------------------------------------- 1 | %module cacti 2 | %{ 3 | /* Includes the header in the wrapper code */ 4 | #include "cacti_interface.h" 5 | %} 6 | 7 | /* Parse the header file to generate wrappers */ 8 | %include "cacti_interface.h" -------------------------------------------------------------------------------- /ext/pybind11/.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | # Maintain dependencies for GitHub Actions 4 | - package-ecosystem: "github-actions" 5 | directory: "/" 6 | schedule: 7 | interval: "daily" 8 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_clock/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | name = c1 3 | value = 0 4 | new value = 0 5 | 6 | name = c2 7 | value = 1 8 | new value = 1 9 | 10 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_export/test04/golden/test04.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E109) complete binding failed: export not bound: export 'x.a' (sc_export) 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_port_policy/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E109) complete binding failed: port not bound: port 'tb.one' (sc_port) 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_port_policy/test05/golden/test05.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | m_all_bound_4[0] = 0 3 | m_all_bound_4[1] = 1 4 | m_all_bound_4[2] = 2 5 | m_all_bound_4[3] = 3 6 | Program completed 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/bitwise/or/datatypes/golden/datatypes.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darchr/gem5/HEAD/src/systemc/tests/systemc/misc/cae_test/general/bitwise/or/datatypes/golden/datatypes.log -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.f: -------------------------------------------------------------------------------- 1 | while_datatypes/main.cpp 2 | while_datatypes/stimulus.cpp 3 | while_datatypes/display.cpp 4 | while_datatypes/while_datatypes.cpp 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/stars/star115165/golden/test.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 0 s 3 | 4 | Error: (E525) wait(n) is only valid for n > 0: n = 0 5 | In file: 6 | In process: a.main_action @ 0 s 7 | -------------------------------------------------------------------------------- /tests/gem5/learning_gem5/ref/simple: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | Hello World! From a SimObject! 3 | Beginning simulation! 4 | Exiting @ tick 18446744073709551615 because simulate() limit reached 5 | -------------------------------------------------------------------------------- /src/learning_gem5/part3/SConsopts: -------------------------------------------------------------------------------- 1 | Import('*') 2 | 3 | # NOTE: All SLICC setup code found in src/mem/ruby/protocol/SConscript 4 | 5 | # Add this directory to the search path for SLICC 6 | main.Append(PROTOCOL_DIRS=[Dir('.')]) 7 | -------------------------------------------------------------------------------- /src/mem/ruby/protocol/MOESI_AMD_Base.slicc: -------------------------------------------------------------------------------- 1 | protocol "MOESI_AMD_Base"; 2 | include "MOESI_AMD_Base-msg.sm"; 3 | include "MOESI_AMD_Base-CorePair.sm"; 4 | include "MOESI_AMD_Base-L3cache.sm"; 5 | include "MOESI_AMD_Base-dir.sm"; 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_rv/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E117) resolved port not bound to resolved signal: port 'a.port_2' (sc_in_rv) 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_rv/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E117) resolved port not bound to resolved signal: port 'a.port_1' (sc_out_rv) 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/compliance_1666/test228/golden/test228.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Should be silent except for some renaming warnings... 3 | 4 | Info: (I703) tracing timescale unit set: 1 ns (vcd.vcd) 5 | 6 | Success 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_stop/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Creating able... 3 | Creating baker... 4 | Creating charlie... 5 | charlie: 0 s 6 | 7 | Info: /OSCI/SystemC: Simulation stopped by user. 8 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test04/golden/test04.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E514) set time resolution failed: simulation running 4 | In file: 5 | In process: src.main_action @ 0 s 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test05/golden/test05.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E514) set time resolution failed: simulation running 4 | In file: 5 | In process: src.main_action @ 0 s 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_time/test06/golden/test06.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E514) set time resolution failed: simulation running 4 | In file: 5 | In process: src.main_action @ 0 s 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/test.hex: -------------------------------------------------------------------------------- 1 | :03000000020100fa 2 | :160100007c0a78107911120200ecf2120200e31cec70f3020300f8 3 | :100200007a0a007b0a001beb0070fa1aea70f322ec 4 | :0103000022da 5 | :00000001ff 6 | -------------------------------------------------------------------------------- /tests/gem5/learning_gem5/ref/threads: -------------------------------------------------------------------------------- 1 | Global frequency set at 1000000000000 ticks per second 2 | Beginning simulation! 3 | Running on 2 cores. with 100 values 4 | Waiting for other threads to complete 5 | Validating...Success! 6 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kappend: -------------------------------------------------------------------------------- 1 | config MODULES 2 | def_bool y 3 | 4 | config BOOL 5 | bool "bool 1" 6 | 7 | config STRING 8 | string "string" 9 | 10 | config IGNOREME 11 | bool "ignore me" 12 | default y 13 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_stop/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Creating able... 3 | Creating baker... 4 | baker: 0 s: issuing sc_stop() 5 | able: 0 s 6 | 7 | Info: /OSCI/SystemC: Simulation stopped by user. 8 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kinclude_path_sourced_1: -------------------------------------------------------------------------------- 1 | config ONE_DOWN 2 | bool 3 | 4 | source "Kinclude_path_sourced_2" 5 | 6 | config ONE_DOWN 7 | bool 8 | 9 | source "Kinclude_path_sourced_2" 10 | 11 | config ONE_DOWN 12 | bool 13 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/ports/test05/golden/test05.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E107) bind interface to port failed: interface already bound to port: port 'tb.port_0' (sc_port) 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_resolved/test02/golden/test02.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E117) resolved port not bound to resolved signal: port 'a.port_2' (sc_in_resolved) 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal_resolved/test03/golden/test03.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E117) resolved port not bound to resolved signal: port 'a.port_1' (sc_out_resolved) 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_signed/bit_select/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E5) out of bounds: sc_bigint bit selection: index = 3 violates 0 <= index <= 2 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/int/sc_unsigned/bit_select/test01/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E5) out of bounds: sc_biguint bit selection: index = 3 violates 0 <= index <= 2 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/dynamic_processes/test08/golden/test08.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | update called... 3 | thread here... 4 | update called... 5 | 6 | Info: /OSCI/SystemC: Simulation stopped by user. 7 | Program completed 8 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/synth/add_chain_FUNC/add_chain_FUNC.f: -------------------------------------------------------------------------------- 1 | add_chain_FUNC/add_chain.cpp 2 | add_chain_FUNC/reset_stim.cpp 3 | add_chain_FUNC/data_gen.cpp 4 | add_chain_FUNC/display.cpp 5 | add_chain_FUNC/add_chain_main.cpp 6 | -------------------------------------------------------------------------------- /src/doxygen/footer.html: -------------------------------------------------------------------------------- 1 |
2 | Generated on $datetime for $projectname by doxygen $doxygenversion
3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/user_guide/chpt4.3/golden/main.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | Clk Pos 1 3 | Clk2 Pos 1 4 | Clk2 Neg 1 5 | Clk Neg 1 6 | Clk Pos 0 7 | Clk2 Pos 0 8 | Clk2 Neg 0 9 | Clk Neg 0 10 | Example run successfully 11 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_port_policy/test04/golden/test04.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E109) complete binding failed: 1 actual binds is less than required 2: port 'tb.all' (sc_port) 4 | In file: 5 | -------------------------------------------------------------------------------- /util/gem5-resources-manager/.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | 4 | # Unit test / coverage reports 5 | .coverage 6 | database/* 7 | instance 8 | instance/* 9 | 10 | # Environments 11 | .env 12 | .venv 13 | -------------------------------------------------------------------------------- /ext/Kconfiglib/tests/Kexpr_items: -------------------------------------------------------------------------------- 1 | config TEST 2 | bool 3 | default A && (B || !C && D = "E") || F > G || !!!H 4 | 5 | choice CHOICE 6 | bool "choice" 7 | 8 | config TEST_CHOICE 9 | bool "test choice" if A 10 | 11 | endchoice 12 | -------------------------------------------------------------------------------- /ext/pybind11/tools/pybind11.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix_for_pc_file@ 2 | includedir=@includedir_for_pc_file@ 3 | 4 | Name: @PROJECT_NAME@ 5 | Description: Seamless operability between C++11 and Python 6 | Version: @PROJECT_VERSION@ 7 | Cflags: -I${includedir} 8 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/datatypes/fx/constructors/files.f: -------------------------------------------------------------------------------- 1 | constructors/main.cpp 2 | constructors/array.cpp 3 | constructors/assign.cpp 4 | constructors/assign_constructor.cpp 5 | constructors/default_assign.cpp 6 | constructors/default_constructor.cpp 7 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/kernel/sc_module/test08/golden/test08.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 3 | Error: (E533) module name stack is empty: did you forget to add a sc_module_name parameter to your module constructor? 4 | In file: 5 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/sim/prime_do_while/golden/prime_do_while.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | 1 3 | 2 4 | Terminating process T1.entry 5 | 5 6 | 11 7 | 17 8 | 23 9 | 31 10 | 41 11 | 12 | Info: /OSCI/SystemC: Simulation stopped by user. 13 | -------------------------------------------------------------------------------- /ext/ply/test/lex_module.py: -------------------------------------------------------------------------------- 1 | # lex_module.py 2 | # 3 | 4 | import sys 5 | if ".." not in sys.path: sys.path.insert(0,"..") 6 | 7 | import ply.lex as lex 8 | import lex_module_import 9 | lex.lex(module=lex_module_import) 10 | lex.runmain(data="3+4") 11 | -------------------------------------------------------------------------------- /ext/pybind11/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | *.cmake @henryiii 2 | CMakeLists.txt @henryiii 3 | *.yml @henryiii 4 | *.yaml @henryiii 5 | /tools/ @henryiii 6 | /pybind11/ @henryiii 7 | noxfile.py @henryiii 8 | .clang-format @henryiii 9 | .clang-tidy @henryiii 10 | -------------------------------------------------------------------------------- /ext/softfloat/s_commonNaNToF16UI.c: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------------------------------------------------------------- 3 | | This file intentionally contains no code. 4 | *----------------------------------------------------------------------------*/ 5 | 6 | -------------------------------------------------------------------------------- /ext/softfloat/s_commonNaNToF32UI.c: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------------------------------------------------------------- 3 | | This file intentionally contains no code. 4 | *----------------------------------------------------------------------------*/ 5 | 6 | -------------------------------------------------------------------------------- /ext/softfloat/s_commonNaNToF64UI.c: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------------------------------------------------------------- 3 | | This file intentionally contains no code. 4 | *----------------------------------------------------------------------------*/ 5 | 6 | -------------------------------------------------------------------------------- /ext/softfloat/s_f128UIToCommonNaN.c: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------------------------------------------------------------- 3 | | This file intentionally contains no code. 4 | *----------------------------------------------------------------------------*/ 5 | 6 | -------------------------------------------------------------------------------- /ext/softfloat/s_f16UIToCommonNaN.c: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------------------------------------------------------------- 3 | | This file intentionally contains no code. 4 | *----------------------------------------------------------------------------*/ 5 | 6 | -------------------------------------------------------------------------------- /ext/softfloat/s_f32UIToCommonNaN.c: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------------------------------------------------------------- 3 | | This file intentionally contains no code. 4 | *----------------------------------------------------------------------------*/ 5 | 6 | -------------------------------------------------------------------------------- /ext/softfloat/s_f64UIToCommonNaN.c: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------------------------------------------------------------- 3 | | This file intentionally contains no code. 4 | *----------------------------------------------------------------------------*/ 5 | 6 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/communication/sc_signal/constructors/golden/test01.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | signal_0 = 0 3 | sig2 = 0 4 | sig3 = 42 5 | 6 | signal_1 = 0 7 | sig2 = 0 8 | sig3 = 1 9 | 10 | signal_2 = X 11 | sig2 = X 12 | sig3 = 0 13 | 14 | -------------------------------------------------------------------------------- /src/systemc/tests/systemc/misc/unit/data/general/array_range/golden/array_range.log: -------------------------------------------------------------------------------- 1 | SystemC Simulation 2 | IN1 = 01011001 3 | O1 = 0101 O2 = 1001 4 | O3 = 10011010 5 | O4 = 10011010 6 | O5 = 10001110 7 | 8 | Info: /OSCI/SystemC: Simulation stopped by user. 9 | --------------------------------------------------------------------------------