From 14b93bd145d5ffce16038ad68783f860fd4812a4 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Tue, 9 Jun 2020 16:06:27 +0200 Subject: [PATCH 01/53] Adapt PCT project to new recording structure. --- DRAMSys/library/src/common/TlmRecorder.cpp | 3 +-- DRAMSys/library/src/common/utils.cpp | 7 +++++++ DRAMSys/library/src/common/utils.h | 2 ++ DRAMSys/library/src/controller/Controller.cpp | 2 +- .../src/controller/ControllerRecordable.cpp | 2 +- DRAMSys/library/src/simulation/Arbiter.cpp | 4 ++-- DRAMSys/library/src/simulation/DRAMSys.cpp | 6 ++++++ DRAMSys/library/src/simulation/DRAMSys.h | 3 +-- .../src/simulation/dram/DramRecordable.cpp | 2 +- DRAMSys/pct/createPlatform.tcl | 5 +++-- DRAMSys/pct/dummy.h | 17 +++++++++++++---- 11 files changed, 38 insertions(+), 15 deletions(-) diff --git a/DRAMSys/library/src/common/TlmRecorder.cpp b/DRAMSys/library/src/common/TlmRecorder.cpp index ffa604b6..a15789f2 100644 --- a/DRAMSys/library/src/common/TlmRecorder.cpp +++ b/DRAMSys/library/src/common/TlmRecorder.cpp @@ -95,8 +95,7 @@ void TlmRecorder::recordPhase(tlm_generic_payload &trans, if (currentTransactionsInSystem.count(&trans) == 0) introduceTransactionSystem(trans); - //std::string phaseName = phaseNameToString(phase); - std::string phaseName = phase.get_name(); + std::string phaseName = getPhaseName(phase); std::string phaseBeginPrefix = "BEGIN_"; std::string phaseEndPrefix = "END_"; diff --git a/DRAMSys/library/src/common/utils.cpp b/DRAMSys/library/src/common/utils.cpp index 65999dc0..6918ab16 100644 --- a/DRAMSys/library/src/common/utils.cpp +++ b/DRAMSys/library/src/common/utils.cpp @@ -65,6 +65,13 @@ sc_time TimeInterval::getLength() return start - end; } +std::string getPhaseName(tlm_phase phase) +{ + std::ostringstream oss; + oss << phase; + return oss.str(); +} + json parseJSON(std::string path) { try diff --git a/DRAMSys/library/src/common/utils.h b/DRAMSys/library/src/common/utils.h index 0e52b291..47318b60 100644 --- a/DRAMSys/library/src/common/utils.h +++ b/DRAMSys/library/src/common/utils.h @@ -102,6 +102,8 @@ static inline void loadbar(unsigned int x, std::cout << "|\r" << std::flush; } +std::string getPhaseName(tlm::tlm_phase phase); + nlohmann::json parseJSON(std::string path); bool parseBool(nlohmann::json &obj, std::string name); unsigned int parseUint(nlohmann::json &obj, std::string name); diff --git a/DRAMSys/library/src/controller/Controller.cpp b/DRAMSys/library/src/controller/Controller.cpp index 6a0a4f0e..137aa3db 100644 --- a/DRAMSys/library/src/controller/Controller.cpp +++ b/DRAMSys/library/src/controller/Controller.cpp @@ -349,7 +349,7 @@ tlm_sync_enum Controller::nb_transport_fw(tlm_generic_payload &trans, else SC_REPORT_FATAL("Controller", "nb_transport_fw in controller was triggered with unknown phase"); - PRINTDEBUGMESSAGE(name(), "[fw] " + std::string(phase.get_name()) + " notification in " + + PRINTDEBUGMESSAGE(name(), "[fw] " + getPhaseName(phase) + " notification in " + notificationDelay.to_string()); return TLM_ACCEPTED; diff --git a/DRAMSys/library/src/controller/ControllerRecordable.cpp b/DRAMSys/library/src/controller/ControllerRecordable.cpp index e4a36e61..5c155e34 100644 --- a/DRAMSys/library/src/controller/ControllerRecordable.cpp +++ b/DRAMSys/library/src/controller/ControllerRecordable.cpp @@ -80,7 +80,7 @@ void ControllerRecordable::recordPhase(tlm_generic_payload &trans, tlm_phase pha unsigned int col __attribute__((unused)) = DramExtension::getExtension(trans).getColumn().ID(); uint64_t id __attribute__((unused)) = DramExtension::getExtension(trans).getPayloadID(); - PRINTDEBUGMESSAGE(name(), "Recording " + std::string(phase.get_name()) + " thread " + + PRINTDEBUGMESSAGE(name(), "Recording " + getPhaseName(phase) + " thread " + std::to_string(thr) + " channel " + std::to_string(ch) + " bank group " + std::to_string( bg) + " bank " + std::to_string(bank) + " row " + std::to_string(row) + " column " + std::to_string(col) + " id " + std::to_string(id) + " at " + recTime.to_string()); diff --git a/DRAMSys/library/src/simulation/Arbiter.cpp b/DRAMSys/library/src/simulation/Arbiter.cpp index 743ea18d..098c6013 100644 --- a/DRAMSys/library/src/simulation/Arbiter.cpp +++ b/DRAMSys/library/src/simulation/Arbiter.cpp @@ -93,7 +93,7 @@ tlm_sync_enum Arbiter::nb_transport_fw(int id, tlm_generic_payload &payload, notDelay += Configuration::getInstance().memSpec->tCK; } - PRINTDEBUGMESSAGE(name(), "[fw] " + std::string(phase.get_name()) + " notification in " + + PRINTDEBUGMESSAGE(name(), "[fw] " + getPhaseName(phase) + " notification in " + notDelay.to_string()); payloadEventQueue.notify(payload, phase, notDelay); return TLM_ACCEPTED; @@ -107,7 +107,7 @@ tlm_sync_enum Arbiter::nb_transport_bw(int channelId, tlm_generic_payload &paylo // Check channel ID assert((unsigned int)channelId == DramExtension::getExtension(payload).getChannel().ID()); - PRINTDEBUGMESSAGE(name(), "[bw] " + std::string(phase.get_name()) + " notification in " + + PRINTDEBUGMESSAGE(name(), "[bw] " + getPhaseName(phase) + " notification in " + bwDelay.to_string()); payloadEventQueue.notify(payload, phase, bwDelay); return TLM_ACCEPTED; diff --git a/DRAMSys/library/src/simulation/DRAMSys.cpp b/DRAMSys/library/src/simulation/DRAMSys.cpp index fa119ed2..b210438d 100644 --- a/DRAMSys/library/src/simulation/DRAMSys.cpp +++ b/DRAMSys/library/src/simulation/DRAMSys.cpp @@ -60,6 +60,12 @@ #include "dram/DramGDDR6.h" #include "../controller/Controller.h" +DRAMSys::DRAMSys(sc_module_name name, + std::string simulationToRun, + std::string pathToResources) + : DRAMSys(name, simulationToRun, pathToResources, true) +{} + DRAMSys::DRAMSys(sc_module_name name, std::string simulationToRun, std::string pathToResources, diff --git a/DRAMSys/library/src/simulation/DRAMSys.h b/DRAMSys/library/src/simulation/DRAMSys.h index 34f47091..4738a4fb 100644 --- a/DRAMSys/library/src/simulation/DRAMSys.h +++ b/DRAMSys/library/src/simulation/DRAMSys.h @@ -63,8 +63,7 @@ public: SC_HAS_PROCESS(DRAMSys); DRAMSys(sc_module_name name, std::string simulationToRun, - std::string pathToResources) - : DRAMSys(name, simulationToRun, pathToResources, true) {} + std::string pathToResources); virtual ~DRAMSys(); diff --git a/DRAMSys/library/src/simulation/dram/DramRecordable.cpp b/DRAMSys/library/src/simulation/dram/DramRecordable.cpp index 67830919..c2319ddb 100644 --- a/DRAMSys/library/src/simulation/dram/DramRecordable.cpp +++ b/DRAMSys/library/src/simulation/dram/DramRecordable.cpp @@ -95,7 +95,7 @@ void DramRecordable::recordPhase(tlm_generic_payload &trans, tlm_phase unsigned int row __attribute__((unused)) = DramExtension::getExtension(trans).getRow().ID(); unsigned int col __attribute__((unused)) = DramExtension::getExtension(trans).getColumn().ID(); - PRINTDEBUGMESSAGE(this->name(), "Recording " + std::string(phase.get_name()) + " thread " + + PRINTDEBUGMESSAGE(this->name(), "Recording " + getPhaseName(phase) + " thread " + std::to_string(thr) + " channel " + std::to_string(ch) + " bank group " + std::to_string( bg) + " bank " + std::to_string(bank) + " row " + std::to_string(row) + " column " + std::to_string(col) + " at " + recTime.to_string()); diff --git a/DRAMSys/pct/createPlatform.tcl b/DRAMSys/pct/createPlatform.tcl index d6a1c661..fd567c82 100644 --- a/DRAMSys/pct/createPlatform.tcl +++ b/DRAMSys/pct/createPlatform.tcl @@ -44,7 +44,8 @@ ::pct::set_dynamic_port_arrays_flag true ::pct::set_import_scml_properties_flag true ::pct::load_all_modules "--set-category" "dummy.h" -::pct::create_instance Project:DRAMSys /HARDWARE i_DRAMSys DRAMSys {DRAMSys(simulationToRun, pathToResources)} +#::pct::create_instance Project:DRAMSys /HARDWARE i_DRAMSys DRAMSys {DRAMSys(simulationToRun, pathToResources)} +::pct::create_instance Project:DRAMSysRecordable /HARDWARE i_DRAMSys DRAMSysRecordable {DRAMSysRecordable(simulationToRun, pathToResources)} # Add DRAMSys Library // ../[glob -type d ../../build*]/simulator/ ::pct::set_simulation_build_project_setting Debug Libraries "sqlite3 DRAMSysLibrary DRAMPower" @@ -61,7 +62,7 @@ # Configure DDR3 Example: ::pct::set_param_value /HARDWARE/i_DRAMSys {Constructor Arguments} pathToResources ../../library/resources/ -::pct::set_param_value /HARDWARE/i_DRAMSys {Constructor Arguments} simulationToRun ../../library/resources/simulations/ddr3-example.xml +::pct::set_param_value /HARDWARE/i_DRAMSys {Constructor Arguments} simulationToRun ../../library/resources/simulations/ddr3-example.json # Build Rest of the Example system: ::pct::open_library "GFRBM" diff --git a/DRAMSys/pct/dummy.h b/DRAMSys/pct/dummy.h index cd199d30..d4ad3fbc 100644 --- a/DRAMSys/pct/dummy.h +++ b/DRAMSys/pct/dummy.h @@ -31,10 +31,11 @@ * * Authors: * Matthias Jung + * Lukas Steiner */ -#ifndef DRAMSYS_H_ -#define DRAMSYS_H_ +#ifndef DUMMY_H +#define DUMMY_H #include #include @@ -48,7 +49,7 @@ * real module... */ -class DRAMSys: public sc_module +class DRAMSys : public sc_module { public: tlm_utils::multi_passthrough_target_socket tSocket; @@ -61,5 +62,13 @@ public: string pathToResources); }; -#endif /* SIMULATIONMANAGER_H_ */ +class DRAMSysRecordable : public DRAMSys +{ +public: + DRAMSysRecordable(sc_module_name name, + std::string simulationToRun, + std::string pathToResources); +}; + +#endif // DUMMY_H From 3f8f12358bb7415fa2813b7b995ad855f7b79483 Mon Sep 17 00:00:00 2001 From: scorrea Date: Wed, 10 Jun 2020 12:32:20 +0200 Subject: [PATCH 02/53] new test files --- .../configs/amconfigs/am_hbm2_8Gb_pc_brc.json | 46 +++++++++ .../HBM2/configs/mcconfigs/fifoStrict.json | 11 +++ DRAMSys/tests/HBM2/configs/memspecs/HBM2.json | 46 +++++++++ .../tests/HBM2/configs/simulator/hbm2.json | 21 +++++ .../tests/HBM2/configs/thermalsim/config.json | 15 +++ .../tests/HBM2/configs/thermalsim/core.flp | 45 +++++++++ DRAMSys/tests/HBM2/configs/thermalsim/mem.flp | 16 ++++ .../HBM2/configs/thermalsim/powerInfo.json | 20 ++++ .../tests/HBM2/configs/thermalsim/stack.stk | 49 ++++++++++ DRAMSys/tests/HBM2/scripts/createTraceDB.sql | 94 +++++++++++++++++++ .../tests/HBM2/simulations/hbm2-example.json | 20 ++++ ..._ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json | 51 ++++++++++ .../configs/mcconfigs/fr_fcfs_grp.json | 12 +++ .../MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json | 55 +++++++++++ .../configs/simulator/ddr3.json | 21 +++++ .../configs/thermalsim/config.json | 15 +++ .../configs/thermalsim/core.flp | 45 +++++++++ .../ddr3_multirank/configs/thermalsim/mem.flp | 16 ++++ .../configs/thermalsim/powerInfo.json | 20 ++++ .../configs/thermalsim/stack.stk | 49 ++++++++++ .../ddr3_multirank/scripts/createTraceDB.sql | 94 +++++++++++++++++++ .../simulations/ddr3-example.json | 16 ++++ .../am_ddr4_8x4Gbx8_dimm_p1KB_brc.json | 46 +++++++++ .../configs/mcconfigs/fr_fcfs.json | 12 +++ .../memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json | 66 +++++++++++++ .../configs/simulator/ddr4.json | 21 +++++ .../configs/thermalsim/config.json | 15 +++ .../configs/thermalsim/core.flp | 45 +++++++++ .../configs/thermalsim/mem.flp | 16 ++++ .../configs/thermalsim/powerInfo.json | 20 ++++ .../configs/thermalsim/stack.stk | 49 ++++++++++ .../ddr4_bankgroups/scripts/createTraceDB.sql | 94 +++++++++++++++++++ .../simulations/ddr4-example.json | 16 ++++ .../amconfigs/am_lpddr4_8Gbx16_brc.json | 42 +++++++++ .../tests/lpddr4/configs/mcconfigs/fifo.json | 11 +++ .../memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json | 46 +++++++++ .../lpddr4/configs/simulator/lpddr4.json | 21 +++++ .../lpddr4/configs/thermalsim/config.json | 15 +++ .../tests/lpddr4/configs/thermalsim/core.flp | 45 +++++++++ .../tests/lpddr4/configs/thermalsim/mem.flp | 16 ++++ .../lpddr4/configs/thermalsim/powerInfo.json | 20 ++++ .../tests/lpddr4/configs/thermalsim/stack.stk | 49 ++++++++++ .../tests/lpddr4/scripts/createTraceDB.sql | 94 +++++++++++++++++++ .../lpddr4/simulations/lpddr4-example.json | 16 ++++ 44 files changed, 1552 insertions(+) create mode 100644 DRAMSys/tests/HBM2/configs/amconfigs/am_hbm2_8Gb_pc_brc.json create mode 100644 DRAMSys/tests/HBM2/configs/mcconfigs/fifoStrict.json create mode 100644 DRAMSys/tests/HBM2/configs/memspecs/HBM2.json create mode 100644 DRAMSys/tests/HBM2/configs/simulator/hbm2.json create mode 100644 DRAMSys/tests/HBM2/configs/thermalsim/config.json create mode 100755 DRAMSys/tests/HBM2/configs/thermalsim/core.flp create mode 100755 DRAMSys/tests/HBM2/configs/thermalsim/mem.flp create mode 100644 DRAMSys/tests/HBM2/configs/thermalsim/powerInfo.json create mode 100755 DRAMSys/tests/HBM2/configs/thermalsim/stack.stk create mode 100644 DRAMSys/tests/HBM2/scripts/createTraceDB.sql create mode 100644 DRAMSys/tests/HBM2/simulations/hbm2-example.json create mode 100644 DRAMSys/tests/ddr3_multirank/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json create mode 100644 DRAMSys/tests/ddr3_multirank/configs/mcconfigs/fr_fcfs_grp.json create mode 100644 DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json create mode 100644 DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json create mode 100644 DRAMSys/tests/ddr3_multirank/configs/thermalsim/config.json create mode 100755 DRAMSys/tests/ddr3_multirank/configs/thermalsim/core.flp create mode 100755 DRAMSys/tests/ddr3_multirank/configs/thermalsim/mem.flp create mode 100644 DRAMSys/tests/ddr3_multirank/configs/thermalsim/powerInfo.json create mode 100755 DRAMSys/tests/ddr3_multirank/configs/thermalsim/stack.stk create mode 100644 DRAMSys/tests/ddr3_multirank/scripts/createTraceDB.sql create mode 100644 DRAMSys/tests/ddr3_multirank/simulations/ddr3-example.json create mode 100644 DRAMSys/tests/ddr4_bankgroups/configs/amconfigs/am_ddr4_8x4Gbx8_dimm_p1KB_brc.json create mode 100644 DRAMSys/tests/ddr4_bankgroups/configs/mcconfigs/fr_fcfs.json create mode 100644 DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json create mode 100644 DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json create mode 100644 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/config.json create mode 100755 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/core.flp create mode 100755 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/mem.flp create mode 100644 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/powerInfo.json create mode 100755 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/stack.stk create mode 100644 DRAMSys/tests/ddr4_bankgroups/scripts/createTraceDB.sql create mode 100644 DRAMSys/tests/ddr4_bankgroups/simulations/ddr4-example.json create mode 100644 DRAMSys/tests/lpddr4/configs/amconfigs/am_lpddr4_8Gbx16_brc.json create mode 100644 DRAMSys/tests/lpddr4/configs/mcconfigs/fifo.json create mode 100644 DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json create mode 100644 DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json create mode 100644 DRAMSys/tests/lpddr4/configs/thermalsim/config.json create mode 100755 DRAMSys/tests/lpddr4/configs/thermalsim/core.flp create mode 100755 DRAMSys/tests/lpddr4/configs/thermalsim/mem.flp create mode 100644 DRAMSys/tests/lpddr4/configs/thermalsim/powerInfo.json create mode 100755 DRAMSys/tests/lpddr4/configs/thermalsim/stack.stk create mode 100644 DRAMSys/tests/lpddr4/scripts/createTraceDB.sql create mode 100644 DRAMSys/tests/lpddr4/simulations/lpddr4-example.json diff --git a/DRAMSys/tests/HBM2/configs/amconfigs/am_hbm2_8Gb_pc_brc.json b/DRAMSys/tests/HBM2/configs/amconfigs/am_hbm2_8Gb_pc_brc.json new file mode 100644 index 00000000..354217a5 --- /dev/null +++ b/DRAMSys/tests/HBM2/configs/amconfigs/am_hbm2_8Gb_pc_brc.json @@ -0,0 +1,46 @@ +{ + "CONGEN": { + "RANK_BIT":[ + 29 + ], + "BANKGROUP_BIT":[ + 27, + 28 + ], + "BANK_BIT": [ + 25, + 26 + ], + "BYTE_BIT": [ + 0, + 1, + 2 + ], + "COLUMN_BIT": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "ROW_BIT": [ + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + } +} diff --git a/DRAMSys/tests/HBM2/configs/mcconfigs/fifoStrict.json b/DRAMSys/tests/HBM2/configs/mcconfigs/fifoStrict.json new file mode 100644 index 00000000..3546377c --- /dev/null +++ b/DRAMSys/tests/HBM2/configs/mcconfigs/fifoStrict.json @@ -0,0 +1,11 @@ +{"mcconfig": {"PagePolicy": "Closed", +"Scheduler": "Fifo", +"RequestBufferSize": 8, +"CmdMux": "Strict", +"RespQueue": "Fifo", +"RefreshPolicy": "Rankwise", +"RefreshMode": 1, +"RefreshMaxPostponed": 0, +"RefreshMaxPulledin": 0, +"PowerDownPolicy": "NoPowerDown", +"PowerDownTimeout": 100}} diff --git a/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json new file mode 100644 index 00000000..efa8ee9e --- /dev/null +++ b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json @@ -0,0 +1,46 @@ +{ + "memspec": { + "memarchitecturespec": { + "burstLength": 4, + "dataRate": 2, + "nbrOfBankGroups": 4, + "nbrOfBanks": 16, + "nbrOfColumns": 128, + "nbrOfRanks": 2, + "nbrOfRows": 32768, + "width": 64 + }, + "memoryId": "https://www.computerbase.de/2019-05/amd-memory-tweak-vram-oc/#bilder", + "memoryType": "HBM2", + "memtimingspec": { + "CCDL": 3, + "CCDS": 2, + "CKE": 8, + "DQSCK": 1, + "FAW": 16, + "PL": 0, + "RAS": 28, + "RC": 42, + "RCDRD": 12, + "RCDWR": 6, + "REFI": 3900, + "REFISB": 244, + "RFC": 220, + "RFCSB": 96, + "RL": 17, + "RP": 14, + "RRDL": 6, + "RRDS": 4, + "RREFD": 8, + "RTP": 5, + "RTW": 18, + "WL": 7, + "WR": 14, + "WTRL": 9, + "WTRS": 4, + "XP": 8, + "XS": 216, + "clkMhz": 1000 + } + } +} \ No newline at end of file diff --git a/DRAMSys/tests/HBM2/configs/simulator/hbm2.json b/DRAMSys/tests/HBM2/configs/simulator/hbm2.json new file mode 100644 index 00000000..9589611f --- /dev/null +++ b/DRAMSys/tests/HBM2/configs/simulator/hbm2.json @@ -0,0 +1,21 @@ +{ + "simconfig": { + "AddressOffset": 0, + "CheckTLM2Protocol": false, + "DatabaseRecording": true, + "Debug": false, + "ECCControllerMode": "Disabled", + "EnableWindowing": false, + "ErrorCSVFile": "", + "ErrorChipSeed": 42, + "NumberOfDevicesOnDIMM": 1, + "NumberOfMemChannels": 1, + "PowerAnalysis": false, + "SimulationName": "hbm2", + "SimulationProgressBar": true, + "StoreMode": "NoStorage", + "ThermalSimulation": false, + "UseMalloc": false, + "WindowSize": 1000 + } +} \ No newline at end of file diff --git a/DRAMSys/tests/HBM2/configs/thermalsim/config.json b/DRAMSys/tests/HBM2/configs/thermalsim/config.json new file mode 100644 index 00000000..b88ed84c --- /dev/null +++ b/DRAMSys/tests/HBM2/configs/thermalsim/config.json @@ -0,0 +1,15 @@ +{ + "thermalsimconfig": { + "TemperatureScale": "Celsius", + "StaticTemperatureDefaultValue": 89, + "ThermalSimPeriod":100, + "ThermalSimUnit":"us", + "PowerInfoFile": "powerInfo.json", + "IceServerIp": "127.0.0.1", + "IceServerPort": 11880, + "SimPeriodAdjustFactor" : 10, + "NPowStableCyclesToIncreasePeriod": 5, + "GenerateTemperatureMap": true, + "GeneratePowerMap": true + } +} diff --git a/DRAMSys/tests/HBM2/configs/thermalsim/core.flp b/DRAMSys/tests/HBM2/configs/thermalsim/core.flp new file mode 100755 index 00000000..e85e6801 --- /dev/null +++ b/DRAMSys/tests/HBM2/configs/thermalsim/core.flp @@ -0,0 +1,45 @@ +CPUs : + + position 0, 0 ; + dimension 2750, 4300 ; + +GPU : + + position 3350, 0 ; + dimension 2750, 4000 ; + +BASEBAND1 : + + position 4250, 4000 ; + dimension 1850, 3300 ; + +BASEBAND2 : + + position 3350, 7300 ; + dimension 2750, 3300 ; + +LLCACHE : + + position 0, 4300 ; + dimension 1900, 3000 ; + +DRAMCTRL1 : + + position 1900, 4300 ; + dimension 850, 3000 ; + +DRAMCTRL2 : + + position 3350, 4000 ; + dimension 900, 3300 ; + +TSVS : + + position 2750, 2300 ; + dimension 600, 6000 ; + +ACELLERATORS : + + position 0, 7300 ; + dimension 2750, 3300 ; + diff --git a/DRAMSys/tests/HBM2/configs/thermalsim/mem.flp b/DRAMSys/tests/HBM2/configs/thermalsim/mem.flp new file mode 100755 index 00000000..29d02254 --- /dev/null +++ b/DRAMSys/tests/HBM2/configs/thermalsim/mem.flp @@ -0,0 +1,16 @@ +channel0 : + position 150, 100 ; + dimension 2600, 5200 ; + +channel1 : + position 3350, 100 ; + dimension 2600, 5200 ; + +channel2 : + position 150, 5300 ; + dimension 2600, 5200 ; + +channel3 : + position 3350, 5300 ; + dimension 2600, 5200 ; + diff --git a/DRAMSys/tests/HBM2/configs/thermalsim/powerInfo.json b/DRAMSys/tests/HBM2/configs/thermalsim/powerInfo.json new file mode 100644 index 00000000..524f690f --- /dev/null +++ b/DRAMSys/tests/HBM2/configs/thermalsim/powerInfo.json @@ -0,0 +1,20 @@ +{ + "powerInfo": { + "dram_die_channel0": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel1": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel2": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel3": { + "init_pow": 0, + "threshold": 1.0 + } + } +} diff --git a/DRAMSys/tests/HBM2/configs/thermalsim/stack.stk b/DRAMSys/tests/HBM2/configs/thermalsim/stack.stk new file mode 100755 index 00000000..ec74f020 --- /dev/null +++ b/DRAMSys/tests/HBM2/configs/thermalsim/stack.stk @@ -0,0 +1,49 @@ +material SILICON : + thermal conductivity 1.30e-4 ; + volumetric heat capacity 1.628e-12 ; + +material BEOL : + thermal conductivity 2.25e-6 ; + volumetric heat capacity 2.175e-12 ; + +material COPPER : + thermal conductivity 4.01e-04 ; + volumetric heat capacity 3.37e-12 ; + +top heat sink : + //sink height 1e03, area 100e06, material COPPER ; + //spreader height 0.5e03, area 70e06, material SILICON ; + heat transfer coefficient 1.3e-09 ; + temperature 318.15 ; +dimensions : + chip length 6100, width 10600 ; + cell length 100, width 100 ; + + +layer PCB : + height 10 ; + material BEOL ; + +die DRAM : + layer 58.5 SILICON ; + source 2 SILICON ; + layer 1.5 BEOL ; + layer 58.5 SILICON ; + + +stack: + die DRAM_DIE DRAM floorplan "./mem.flp" ; + layer CONN_TO_PCB PCB ; + +solver: + transient step 0.01, slot 0.05 ; + initial temperature 300.0 ; + +output: + Tflpel(DRAM_DIE.channel0 , "temp_flp_element_ch0.txt" , average , slot ); + Tflpel(DRAM_DIE.channel1 , "temp_flp_element_ch1.txt" , average , slot ); + Tflpel(DRAM_DIE.channel2 , "temp_flp_element_ch2.txt" , average , slot ); + Tflpel(DRAM_DIE.channel3 , "temp_flp_element_ch3.txt" , average , slot ); + Tmap (DRAM_DIE, "output1.txt", slot) ; + Pmap (DRAM_DIE, "output2.txt", slot) ; + diff --git a/DRAMSys/tests/HBM2/scripts/createTraceDB.sql b/DRAMSys/tests/HBM2/scripts/createTraceDB.sql new file mode 100644 index 00000000..7a127fac --- /dev/null +++ b/DRAMSys/tests/HBM2/scripts/createTraceDB.sql @@ -0,0 +1,94 @@ +DROP TABLE IF EXISTS Phases; +DROP TABLE IF EXISTS GeneralInfo; +DROP TABLE IF EXISTS CommandLengths; +DROP TABLE IF EXISTS Comments; +DROP TABLE IF EXISTS ranges; +DROP TABLE IF EXISTS Transactions; +DROP TABLE IF EXISTS DebugMessages; +DROP TABLE IF EXISTS Power; + +CREATE TABLE Phases( + ID INTEGER PRIMARY KEY, + PhaseName TEXT, + PhaseBegin INTEGER, + PhaseEnd INTEGER, + Transact INTEGER +); + +CREATE TABLE GeneralInfo( + NumberOfTransactions INTEGER, + TraceEnd INTEGER, + NumberOfRanks INTEGER, + NumberOfBanks INTEGER, + clk INTEGER, + UnitOfTime TEXT, + MCconfig TEXT, + Memspec TEXT, + Traces TEXT, + WindowSize INTEGER, + FlexibleRefresh INTEGER, + MaxRefBurst INTEGER, + ControllerThread INTEGER +); + +CREATE TABLE CommandLengths( + ACT INTEGER, + PRE INTEGER, + PREA INTEGER, + RD INTEGER, + RDA INTEGER, + WR INTEGER, + WRA INTEGER, + REFA INTEGER, + REFB INTEGER, + PDEA INTEGER, + PDXA INTEGER, + PDEP INTEGER, + PDXP INTEGER, + SREFEN INTEGER, + SREFEX INTEGER +); + +CREATE TABLE Power( + time DOUBLE, + AveragePower DOUBLE +); + + +CREATE TABLE Comments( + Time INTEGER, + Text TEXT +); + +CREATE TABLE DebugMessages( + Time INTEGER, + Message TEXT +); + +-- use SQLITE R* TREE Module to make queries on timespans effecient (see http://www.sqlite.org/rtree.html) +CREATE VIRTUAL TABLE ranges USING rtree( + id, + begin, end +); + +CREATE TABLE Transactions( + ID INTEGER, + Range INTEGER, + Address INTEGER, + Burstlength INTEGER, + TThread INTEGER, + TChannel INTEGER, + TRank INTEGER, + TBankgroup INTEGER, + TBank INTEGER, + TRow INTEGER, + TColumn INTEGER, + DataStrobeBegin INTEGER, + DataStrobeEnd INTEGER, + TimeOfGeneration INTEGER, + Command TEXT + ); + +CREATE INDEX ranges_index ON Transactions(Range); +CREATE INDEX "phasesTransactions" ON "Phases" ("Transact" ASC); +CREATE INDEX "messageTimes" ON "DebugMessages" ("Time" ASC); diff --git a/DRAMSys/tests/HBM2/simulations/hbm2-example.json b/DRAMSys/tests/HBM2/simulations/hbm2-example.json new file mode 100644 index 00000000..6fd5f064 --- /dev/null +++ b/DRAMSys/tests/HBM2/simulations/hbm2-example.json @@ -0,0 +1,20 @@ +{ + "simulation": { + "addressmapping": "am_hbm2_8Gb_pc_brc.json", + "mcconfig": "fifoStrict.json", + "memspec": "HBM2.json", + "simconfig": "hbm2.json", + "simulationid": "hbm2-example", + "thermalconfig": "config.json", + "tracesetup": [ + { + "clkMhz": 1000, + "name": "trace1_test4.stl" + }, + { + "clkMhz": 1000, + "name": "trace2_test4.stl" + } + ] + } +} diff --git a/DRAMSys/tests/ddr3_multirank/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json b/DRAMSys/tests/ddr3_multirank/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json new file mode 100644 index 00000000..c82926c9 --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json @@ -0,0 +1,51 @@ +{ + "CONGEN": { + "XOR":[ + { + "FIRST":13, + "SECOND":16 + } + ], + "BANK_BIT": [ + 13, + 14, + 15 + ], + "BYTE_BIT": [ + 0, + 1, + 2 + ], + "COLUMN_BIT": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "ROW_BIT": [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ], + "RANK_BIT": [ + 30 + ] + } +} diff --git a/DRAMSys/tests/ddr3_multirank/configs/mcconfigs/fr_fcfs_grp.json b/DRAMSys/tests/ddr3_multirank/configs/mcconfigs/fr_fcfs_grp.json new file mode 100644 index 00000000..4ac02e30 --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/configs/mcconfigs/fr_fcfs_grp.json @@ -0,0 +1,12 @@ +{"mcconfig": + {"PagePolicy": "Open", + "Scheduler": "FrFcfsGrp", + "RequestBufferSize": 8, + "CmdMux": "Oldest", + "RespQueue": "Fifo", + "RefreshPolicy": "Rankwise", + "RefreshMode": 1, + "RefreshMaxPostponed": 0, + "RefreshMaxPulledin": 0, + "PowerDownPolicy": "Staggered", + "PowerDownTimeout": 100}} diff --git a/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json b/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json new file mode 100644 index 00000000..13d9fef5 --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json @@ -0,0 +1,55 @@ +{ + "memspec": { + "memarchitecturespec": { + "burstLength": 8, + "dataRate": 2, + "nbrOfBanks": 8, + "nbrOfColumns": 1024, + "nbrOfRanks": 2, + "nbrOfRows": 16384, + "width": 8 + }, + "memoryId": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM", + "memoryType": "DDR3", + "mempowerspec": { + "idd0": 720.0, + "idd2n": 400.0, + "idd2p0": 80.0, + "idd2p1": 200.0, + "idd3n": 440.0, + "idd3p0": 240.0, + "idd3p1": 240.0, + "idd4r": 1200.0, + "idd4w": 1200.0, + "idd5": 1760.0, + "idd6": 48.0, + "vdd": 1.5 + }, + "memtimingspec": { + "AL": 0, + "CCD": 4, + "CKE": 3, + "CKESR": 4, + "CL": 7, + "DQSCK": 0, + "FAW": 20, + "RAS": 20, + "RC": 27, + "RCD": 7, + "REFI": 4160, + "RFC": 59, + "RL": 7, + "RP": 7, + "RRD": 4, + "RTP": 4, + "WL": 6, + "WR": 8, + "WTR": 4, + "XP": 4, + "XPDLL": 13, + "XS": 64, + "XSDLL": 512, + "clkMhz": 533 + } + } +} diff --git a/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json b/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json new file mode 100644 index 00000000..4e9faadc --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json @@ -0,0 +1,21 @@ +{ + "simconfig": { + "AddressOffset": 0, + "CheckTLM2Protocol": false, + "DatabaseRecording": true, + "Debug": false, + "ECCControllerMode": "Disabled", + "EnableWindowing": false, + "ErrorCSVFile": "", + "ErrorChipSeed": 42, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1, + "PowerAnalysis": false, + "SimulationName": "ddr3", + "SimulationProgressBar": true, + "StoreMode": "NoStorage", + "ThermalSimulation": false, + "UseMalloc": false, + "WindowSize": 1000 + } +} diff --git a/DRAMSys/tests/ddr3_multirank/configs/thermalsim/config.json b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/config.json new file mode 100644 index 00000000..b88ed84c --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/config.json @@ -0,0 +1,15 @@ +{ + "thermalsimconfig": { + "TemperatureScale": "Celsius", + "StaticTemperatureDefaultValue": 89, + "ThermalSimPeriod":100, + "ThermalSimUnit":"us", + "PowerInfoFile": "powerInfo.json", + "IceServerIp": "127.0.0.1", + "IceServerPort": 11880, + "SimPeriodAdjustFactor" : 10, + "NPowStableCyclesToIncreasePeriod": 5, + "GenerateTemperatureMap": true, + "GeneratePowerMap": true + } +} diff --git a/DRAMSys/tests/ddr3_multirank/configs/thermalsim/core.flp b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/core.flp new file mode 100755 index 00000000..e85e6801 --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/core.flp @@ -0,0 +1,45 @@ +CPUs : + + position 0, 0 ; + dimension 2750, 4300 ; + +GPU : + + position 3350, 0 ; + dimension 2750, 4000 ; + +BASEBAND1 : + + position 4250, 4000 ; + dimension 1850, 3300 ; + +BASEBAND2 : + + position 3350, 7300 ; + dimension 2750, 3300 ; + +LLCACHE : + + position 0, 4300 ; + dimension 1900, 3000 ; + +DRAMCTRL1 : + + position 1900, 4300 ; + dimension 850, 3000 ; + +DRAMCTRL2 : + + position 3350, 4000 ; + dimension 900, 3300 ; + +TSVS : + + position 2750, 2300 ; + dimension 600, 6000 ; + +ACELLERATORS : + + position 0, 7300 ; + dimension 2750, 3300 ; + diff --git a/DRAMSys/tests/ddr3_multirank/configs/thermalsim/mem.flp b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/mem.flp new file mode 100755 index 00000000..29d02254 --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/mem.flp @@ -0,0 +1,16 @@ +channel0 : + position 150, 100 ; + dimension 2600, 5200 ; + +channel1 : + position 3350, 100 ; + dimension 2600, 5200 ; + +channel2 : + position 150, 5300 ; + dimension 2600, 5200 ; + +channel3 : + position 3350, 5300 ; + dimension 2600, 5200 ; + diff --git a/DRAMSys/tests/ddr3_multirank/configs/thermalsim/powerInfo.json b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/powerInfo.json new file mode 100644 index 00000000..524f690f --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/powerInfo.json @@ -0,0 +1,20 @@ +{ + "powerInfo": { + "dram_die_channel0": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel1": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel2": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel3": { + "init_pow": 0, + "threshold": 1.0 + } + } +} diff --git a/DRAMSys/tests/ddr3_multirank/configs/thermalsim/stack.stk b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/stack.stk new file mode 100755 index 00000000..ec74f020 --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/configs/thermalsim/stack.stk @@ -0,0 +1,49 @@ +material SILICON : + thermal conductivity 1.30e-4 ; + volumetric heat capacity 1.628e-12 ; + +material BEOL : + thermal conductivity 2.25e-6 ; + volumetric heat capacity 2.175e-12 ; + +material COPPER : + thermal conductivity 4.01e-04 ; + volumetric heat capacity 3.37e-12 ; + +top heat sink : + //sink height 1e03, area 100e06, material COPPER ; + //spreader height 0.5e03, area 70e06, material SILICON ; + heat transfer coefficient 1.3e-09 ; + temperature 318.15 ; +dimensions : + chip length 6100, width 10600 ; + cell length 100, width 100 ; + + +layer PCB : + height 10 ; + material BEOL ; + +die DRAM : + layer 58.5 SILICON ; + source 2 SILICON ; + layer 1.5 BEOL ; + layer 58.5 SILICON ; + + +stack: + die DRAM_DIE DRAM floorplan "./mem.flp" ; + layer CONN_TO_PCB PCB ; + +solver: + transient step 0.01, slot 0.05 ; + initial temperature 300.0 ; + +output: + Tflpel(DRAM_DIE.channel0 , "temp_flp_element_ch0.txt" , average , slot ); + Tflpel(DRAM_DIE.channel1 , "temp_flp_element_ch1.txt" , average , slot ); + Tflpel(DRAM_DIE.channel2 , "temp_flp_element_ch2.txt" , average , slot ); + Tflpel(DRAM_DIE.channel3 , "temp_flp_element_ch3.txt" , average , slot ); + Tmap (DRAM_DIE, "output1.txt", slot) ; + Pmap (DRAM_DIE, "output2.txt", slot) ; + diff --git a/DRAMSys/tests/ddr3_multirank/scripts/createTraceDB.sql b/DRAMSys/tests/ddr3_multirank/scripts/createTraceDB.sql new file mode 100644 index 00000000..7a127fac --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/scripts/createTraceDB.sql @@ -0,0 +1,94 @@ +DROP TABLE IF EXISTS Phases; +DROP TABLE IF EXISTS GeneralInfo; +DROP TABLE IF EXISTS CommandLengths; +DROP TABLE IF EXISTS Comments; +DROP TABLE IF EXISTS ranges; +DROP TABLE IF EXISTS Transactions; +DROP TABLE IF EXISTS DebugMessages; +DROP TABLE IF EXISTS Power; + +CREATE TABLE Phases( + ID INTEGER PRIMARY KEY, + PhaseName TEXT, + PhaseBegin INTEGER, + PhaseEnd INTEGER, + Transact INTEGER +); + +CREATE TABLE GeneralInfo( + NumberOfTransactions INTEGER, + TraceEnd INTEGER, + NumberOfRanks INTEGER, + NumberOfBanks INTEGER, + clk INTEGER, + UnitOfTime TEXT, + MCconfig TEXT, + Memspec TEXT, + Traces TEXT, + WindowSize INTEGER, + FlexibleRefresh INTEGER, + MaxRefBurst INTEGER, + ControllerThread INTEGER +); + +CREATE TABLE CommandLengths( + ACT INTEGER, + PRE INTEGER, + PREA INTEGER, + RD INTEGER, + RDA INTEGER, + WR INTEGER, + WRA INTEGER, + REFA INTEGER, + REFB INTEGER, + PDEA INTEGER, + PDXA INTEGER, + PDEP INTEGER, + PDXP INTEGER, + SREFEN INTEGER, + SREFEX INTEGER +); + +CREATE TABLE Power( + time DOUBLE, + AveragePower DOUBLE +); + + +CREATE TABLE Comments( + Time INTEGER, + Text TEXT +); + +CREATE TABLE DebugMessages( + Time INTEGER, + Message TEXT +); + +-- use SQLITE R* TREE Module to make queries on timespans effecient (see http://www.sqlite.org/rtree.html) +CREATE VIRTUAL TABLE ranges USING rtree( + id, + begin, end +); + +CREATE TABLE Transactions( + ID INTEGER, + Range INTEGER, + Address INTEGER, + Burstlength INTEGER, + TThread INTEGER, + TChannel INTEGER, + TRank INTEGER, + TBankgroup INTEGER, + TBank INTEGER, + TRow INTEGER, + TColumn INTEGER, + DataStrobeBegin INTEGER, + DataStrobeEnd INTEGER, + TimeOfGeneration INTEGER, + Command TEXT + ); + +CREATE INDEX ranges_index ON Transactions(Range); +CREATE INDEX "phasesTransactions" ON "Phases" ("Transact" ASC); +CREATE INDEX "messageTimes" ON "DebugMessages" ("Time" ASC); diff --git a/DRAMSys/tests/ddr3_multirank/simulations/ddr3-example.json b/DRAMSys/tests/ddr3_multirank/simulations/ddr3-example.json new file mode 100644 index 00000000..e3d4a4c3 --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/simulations/ddr3-example.json @@ -0,0 +1,16 @@ +{ + "simulation": { + "addressmapping": "am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json", + "mcconfig": "fr_fcfs_grp.json", + "memspec": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json", + "simconfig": "ddr3.json", + "simulationid": "ddr3-example-dual-rank-json", + "thermalconfig": "config.json", + "tracesetup": [ + { + "clkMhz": 533, + "name": "trace_test2.stl" + } + ] + } +} diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/amconfigs/am_ddr4_8x4Gbx8_dimm_p1KB_brc.json b/DRAMSys/tests/ddr4_bankgroups/configs/amconfigs/am_ddr4_8x4Gbx8_dimm_p1KB_brc.json new file mode 100644 index 00000000..be30b98f --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/configs/amconfigs/am_ddr4_8x4Gbx8_dimm_p1KB_brc.json @@ -0,0 +1,46 @@ +{ + "CONGEN": { + "BANKGROUP_BIT":[ + 30, + 31 + ], + "BANK_BIT": [ + 28, + 29 + ], + "BYTE_BIT": [ + 0, + 1, + 2 + ], + "COLUMN_BIT": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "ROW_BIT": [ + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ] + } +} diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/mcconfigs/fr_fcfs.json b/DRAMSys/tests/ddr4_bankgroups/configs/mcconfigs/fr_fcfs.json new file mode 100644 index 00000000..2da01ceb --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/configs/mcconfigs/fr_fcfs.json @@ -0,0 +1,12 @@ +{"mcconfig": { + "PagePolicy": "Open", + "Scheduler": "FrFcfs", + "RequestBufferSize": 8, + "CmdMux": "Oldest", + "RespQueue": "Fifo", + "RefreshPolicy": "Rankwise", + "RefreshMode": 1, + "RefreshMaxPostponed": 128, + "RefreshMaxPulledin": 128, + "PowerDownPolicy": "NoPowerDown", + "PowerDownTimeout": 100}} diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json b/DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json new file mode 100644 index 00000000..11700aaf --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json @@ -0,0 +1,66 @@ +{ + "memspec": { + "memarchitecturespec": { + "burstLength": 8, + "dataRate": 2, + "nbrOfBankGroups": 4, + "nbrOfBanks": 16, + "nbrOfColumns": 1024, + "nbrOfRanks": 1, + "nbrOfRows": 32768, + "width": 8 + }, + "memoryId": "MICRON_4Gb_DDR4-1866_8bit_A", + "memoryType": "DDR4", + "mempowerspec": { + "idd0": 56.25, + "idd02": 4.05, + "idd2n": 33.75, + "idd2p0": 17.0, + "idd2p1": 17.0, + "idd3n": 39.5, + "idd3p0": 22.5, + "idd3p1": 22.5, + "idd4r": 157.5, + "idd4w": 135.0, + "idd5": 118.0, + "idd6": 20.25, + "idd62": 2.6, + "vdd": 1.2, + "vdd2": 2.5 + }, + "memtimingspec": { + "AL": 0, + "CCD_L": 5, + "CCD_S": 4, + "CKE": 6, + "CKESR": 7, + "CL": 13, + "DQSCK": 2, + "FAW": 22, + "RAS": 32, + "RC": 45, + "RCD": 13, + "REFI": 3644, + "RFC": 243, + "RL": 13, + "RP": 13, + "RRD_L": 5, + "RRD_S": 4, + "RTP": 8, + "WL": 12, + "WR": 14, + "WTR_L": 7, + "WTR_S": 3, + "XP": 8, + "XPDLL": 255, + "XS": 252, + "XSDLL": 512, + "ACTPDEN": 1, + "PRPDEN": 1, + "REFPDEN": 1, + "RTRS": 1, + "clkMhz": 933 + } + } +} \ No newline at end of file diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json b/DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json new file mode 100644 index 00000000..8e62e680 --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json @@ -0,0 +1,21 @@ +{ + "simconfig": { + "AddressOffset": 0, + "CheckTLM2Protocol": false, + "DatabaseRecording": true, + "Debug": false, + "ECCControllerMode": "Disabled", + "EnableWindowing": false, + "ErrorCSVFile": "", + "ErrorChipSeed": 42, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1, + "PowerAnalysis": false, + "SimulationName": "ddr4", + "SimulationProgressBar": true, + "StoreMode": "NoStorage", + "ThermalSimulation": false, + "UseMalloc": false, + "WindowSize": 1000 + } +} \ No newline at end of file diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/config.json b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/config.json new file mode 100644 index 00000000..b88ed84c --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/config.json @@ -0,0 +1,15 @@ +{ + "thermalsimconfig": { + "TemperatureScale": "Celsius", + "StaticTemperatureDefaultValue": 89, + "ThermalSimPeriod":100, + "ThermalSimUnit":"us", + "PowerInfoFile": "powerInfo.json", + "IceServerIp": "127.0.0.1", + "IceServerPort": 11880, + "SimPeriodAdjustFactor" : 10, + "NPowStableCyclesToIncreasePeriod": 5, + "GenerateTemperatureMap": true, + "GeneratePowerMap": true + } +} diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/core.flp b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/core.flp new file mode 100755 index 00000000..e85e6801 --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/core.flp @@ -0,0 +1,45 @@ +CPUs : + + position 0, 0 ; + dimension 2750, 4300 ; + +GPU : + + position 3350, 0 ; + dimension 2750, 4000 ; + +BASEBAND1 : + + position 4250, 4000 ; + dimension 1850, 3300 ; + +BASEBAND2 : + + position 3350, 7300 ; + dimension 2750, 3300 ; + +LLCACHE : + + position 0, 4300 ; + dimension 1900, 3000 ; + +DRAMCTRL1 : + + position 1900, 4300 ; + dimension 850, 3000 ; + +DRAMCTRL2 : + + position 3350, 4000 ; + dimension 900, 3300 ; + +TSVS : + + position 2750, 2300 ; + dimension 600, 6000 ; + +ACELLERATORS : + + position 0, 7300 ; + dimension 2750, 3300 ; + diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/mem.flp b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/mem.flp new file mode 100755 index 00000000..29d02254 --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/mem.flp @@ -0,0 +1,16 @@ +channel0 : + position 150, 100 ; + dimension 2600, 5200 ; + +channel1 : + position 3350, 100 ; + dimension 2600, 5200 ; + +channel2 : + position 150, 5300 ; + dimension 2600, 5200 ; + +channel3 : + position 3350, 5300 ; + dimension 2600, 5200 ; + diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/powerInfo.json b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/powerInfo.json new file mode 100644 index 00000000..524f690f --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/powerInfo.json @@ -0,0 +1,20 @@ +{ + "powerInfo": { + "dram_die_channel0": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel1": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel2": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel3": { + "init_pow": 0, + "threshold": 1.0 + } + } +} diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/stack.stk b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/stack.stk new file mode 100755 index 00000000..ec74f020 --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/stack.stk @@ -0,0 +1,49 @@ +material SILICON : + thermal conductivity 1.30e-4 ; + volumetric heat capacity 1.628e-12 ; + +material BEOL : + thermal conductivity 2.25e-6 ; + volumetric heat capacity 2.175e-12 ; + +material COPPER : + thermal conductivity 4.01e-04 ; + volumetric heat capacity 3.37e-12 ; + +top heat sink : + //sink height 1e03, area 100e06, material COPPER ; + //spreader height 0.5e03, area 70e06, material SILICON ; + heat transfer coefficient 1.3e-09 ; + temperature 318.15 ; +dimensions : + chip length 6100, width 10600 ; + cell length 100, width 100 ; + + +layer PCB : + height 10 ; + material BEOL ; + +die DRAM : + layer 58.5 SILICON ; + source 2 SILICON ; + layer 1.5 BEOL ; + layer 58.5 SILICON ; + + +stack: + die DRAM_DIE DRAM floorplan "./mem.flp" ; + layer CONN_TO_PCB PCB ; + +solver: + transient step 0.01, slot 0.05 ; + initial temperature 300.0 ; + +output: + Tflpel(DRAM_DIE.channel0 , "temp_flp_element_ch0.txt" , average , slot ); + Tflpel(DRAM_DIE.channel1 , "temp_flp_element_ch1.txt" , average , slot ); + Tflpel(DRAM_DIE.channel2 , "temp_flp_element_ch2.txt" , average , slot ); + Tflpel(DRAM_DIE.channel3 , "temp_flp_element_ch3.txt" , average , slot ); + Tmap (DRAM_DIE, "output1.txt", slot) ; + Pmap (DRAM_DIE, "output2.txt", slot) ; + diff --git a/DRAMSys/tests/ddr4_bankgroups/scripts/createTraceDB.sql b/DRAMSys/tests/ddr4_bankgroups/scripts/createTraceDB.sql new file mode 100644 index 00000000..7a127fac --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/scripts/createTraceDB.sql @@ -0,0 +1,94 @@ +DROP TABLE IF EXISTS Phases; +DROP TABLE IF EXISTS GeneralInfo; +DROP TABLE IF EXISTS CommandLengths; +DROP TABLE IF EXISTS Comments; +DROP TABLE IF EXISTS ranges; +DROP TABLE IF EXISTS Transactions; +DROP TABLE IF EXISTS DebugMessages; +DROP TABLE IF EXISTS Power; + +CREATE TABLE Phases( + ID INTEGER PRIMARY KEY, + PhaseName TEXT, + PhaseBegin INTEGER, + PhaseEnd INTEGER, + Transact INTEGER +); + +CREATE TABLE GeneralInfo( + NumberOfTransactions INTEGER, + TraceEnd INTEGER, + NumberOfRanks INTEGER, + NumberOfBanks INTEGER, + clk INTEGER, + UnitOfTime TEXT, + MCconfig TEXT, + Memspec TEXT, + Traces TEXT, + WindowSize INTEGER, + FlexibleRefresh INTEGER, + MaxRefBurst INTEGER, + ControllerThread INTEGER +); + +CREATE TABLE CommandLengths( + ACT INTEGER, + PRE INTEGER, + PREA INTEGER, + RD INTEGER, + RDA INTEGER, + WR INTEGER, + WRA INTEGER, + REFA INTEGER, + REFB INTEGER, + PDEA INTEGER, + PDXA INTEGER, + PDEP INTEGER, + PDXP INTEGER, + SREFEN INTEGER, + SREFEX INTEGER +); + +CREATE TABLE Power( + time DOUBLE, + AveragePower DOUBLE +); + + +CREATE TABLE Comments( + Time INTEGER, + Text TEXT +); + +CREATE TABLE DebugMessages( + Time INTEGER, + Message TEXT +); + +-- use SQLITE R* TREE Module to make queries on timespans effecient (see http://www.sqlite.org/rtree.html) +CREATE VIRTUAL TABLE ranges USING rtree( + id, + begin, end +); + +CREATE TABLE Transactions( + ID INTEGER, + Range INTEGER, + Address INTEGER, + Burstlength INTEGER, + TThread INTEGER, + TChannel INTEGER, + TRank INTEGER, + TBankgroup INTEGER, + TBank INTEGER, + TRow INTEGER, + TColumn INTEGER, + DataStrobeBegin INTEGER, + DataStrobeEnd INTEGER, + TimeOfGeneration INTEGER, + Command TEXT + ); + +CREATE INDEX ranges_index ON Transactions(Range); +CREATE INDEX "phasesTransactions" ON "Phases" ("Transact" ASC); +CREATE INDEX "messageTimes" ON "DebugMessages" ("Time" ASC); diff --git a/DRAMSys/tests/ddr4_bankgroups/simulations/ddr4-example.json b/DRAMSys/tests/ddr4_bankgroups/simulations/ddr4-example.json new file mode 100644 index 00000000..d97481d9 --- /dev/null +++ b/DRAMSys/tests/ddr4_bankgroups/simulations/ddr4-example.json @@ -0,0 +1,16 @@ +{ + "simulation": { + "addressmapping": "am_ddr4_8x4Gbx8_dimm_p1KB_brc.json", + "mcconfig": "fr_fcfs.json", + "memspec": "MICRON_4Gb_DDR4-1866_8bit_A.json", + "simconfig": "ddr4.json", + "simulationid": "ddr4-bankgrp", + "thermalconfig": "config.json", + "tracesetup": [ + { + "clkMhz": 933, + "name": "trace_test3.stl" + } + ] + } +} diff --git a/DRAMSys/tests/lpddr4/configs/amconfigs/am_lpddr4_8Gbx16_brc.json b/DRAMSys/tests/lpddr4/configs/amconfigs/am_lpddr4_8Gbx16_brc.json new file mode 100644 index 00000000..e9b3ac9f --- /dev/null +++ b/DRAMSys/tests/lpddr4/configs/amconfigs/am_lpddr4_8Gbx16_brc.json @@ -0,0 +1,42 @@ +{ + "CONGEN": { + "BANK_BIT": [ + 27, + 28, + 29 + ], + "BYTE_BIT": [ + 0 + ], + "COLUMN_BIT": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "ROW_BIT": [ + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26 + ] + } +} \ No newline at end of file diff --git a/DRAMSys/tests/lpddr4/configs/mcconfigs/fifo.json b/DRAMSys/tests/lpddr4/configs/mcconfigs/fifo.json new file mode 100644 index 00000000..712e1c96 --- /dev/null +++ b/DRAMSys/tests/lpddr4/configs/mcconfigs/fifo.json @@ -0,0 +1,11 @@ +{"mcconfig": {"PagePolicy": "Open", +"Scheduler": "Fifo", +"RequestBufferSize": 8, +"CmdMux": "Oldest", +"RespQueue": "Fifo", +"RefreshPolicy": "Bankwise", +"RefreshMode": 1, +"RefreshMaxPostponed": 8, +"RefreshMaxPulledin": 8, +"PowerDownPolicy": "NoPowerDown", +"PowerDownTimeout": 100}} diff --git a/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json b/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json new file mode 100644 index 00000000..97a8cc3e --- /dev/null +++ b/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json @@ -0,0 +1,46 @@ +{ + "memspec": { + "memarchitecturespec": { + "burstLength": 16, + "dataRate": 2, + "nbrOfBanks": 8, + "nbrOfColumns": 1024, + "nbrOfRanks": 1, + "nbrOfRows": 65536, + "width": 16 + }, + "memoryId": "JEDEC_8Gb_LPDDR4-3200_16bit", + "memoryType": "LPDDR4", + "memtimingspec": { + "CCD": 8, + "CKE": 12, + "CMDCKE": 3, + "DQS2DQ": 2, + "DQSCK": 6, + "DQSS": 1, + "ESCKE": 3, + "FAW": 64, + "PPD": 4, + "RAS": 68, + "RCD": 29, + "REFI": 6246, + "REFIPB": 780, + "RFCAB": 448, + "RFCPB": 224, + "RL": 28, + "RPAB": 34, + "RPPB": 29, + "RPST": 0, + "RRD": 16, + "RTP": 12, + "SR": 24, + "WL": 14, + "WPRE": 2, + "WR": 29, + "WTR": 16, + "XP": 12, + "XSR": 460, + "clkMhz": 1600 + } + } +} \ No newline at end of file diff --git a/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json b/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json new file mode 100644 index 00000000..fd8fe855 --- /dev/null +++ b/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json @@ -0,0 +1,21 @@ +{ + "simconfig": { + "AddressOffset": 0, + "CheckTLM2Protocol": false, + "DatabaseRecording": true, + "Debug": false, + "ECCControllerMode": "Disabled", + "EnableWindowing": false, + "ErrorCSVFile": "", + "ErrorChipSeed": 42, + "NumberOfDevicesOnDIMM": 1, + "NumberOfMemChannels": 1, + "PowerAnalysis": false, + "SimulationName": "lpddr4", + "SimulationProgressBar": true, + "StoreMode": "NoStorage", + "ThermalSimulation": false, + "UseMalloc": false, + "WindowSize": 1000 + } +} \ No newline at end of file diff --git a/DRAMSys/tests/lpddr4/configs/thermalsim/config.json b/DRAMSys/tests/lpddr4/configs/thermalsim/config.json new file mode 100644 index 00000000..b88ed84c --- /dev/null +++ b/DRAMSys/tests/lpddr4/configs/thermalsim/config.json @@ -0,0 +1,15 @@ +{ + "thermalsimconfig": { + "TemperatureScale": "Celsius", + "StaticTemperatureDefaultValue": 89, + "ThermalSimPeriod":100, + "ThermalSimUnit":"us", + "PowerInfoFile": "powerInfo.json", + "IceServerIp": "127.0.0.1", + "IceServerPort": 11880, + "SimPeriodAdjustFactor" : 10, + "NPowStableCyclesToIncreasePeriod": 5, + "GenerateTemperatureMap": true, + "GeneratePowerMap": true + } +} diff --git a/DRAMSys/tests/lpddr4/configs/thermalsim/core.flp b/DRAMSys/tests/lpddr4/configs/thermalsim/core.flp new file mode 100755 index 00000000..e85e6801 --- /dev/null +++ b/DRAMSys/tests/lpddr4/configs/thermalsim/core.flp @@ -0,0 +1,45 @@ +CPUs : + + position 0, 0 ; + dimension 2750, 4300 ; + +GPU : + + position 3350, 0 ; + dimension 2750, 4000 ; + +BASEBAND1 : + + position 4250, 4000 ; + dimension 1850, 3300 ; + +BASEBAND2 : + + position 3350, 7300 ; + dimension 2750, 3300 ; + +LLCACHE : + + position 0, 4300 ; + dimension 1900, 3000 ; + +DRAMCTRL1 : + + position 1900, 4300 ; + dimension 850, 3000 ; + +DRAMCTRL2 : + + position 3350, 4000 ; + dimension 900, 3300 ; + +TSVS : + + position 2750, 2300 ; + dimension 600, 6000 ; + +ACELLERATORS : + + position 0, 7300 ; + dimension 2750, 3300 ; + diff --git a/DRAMSys/tests/lpddr4/configs/thermalsim/mem.flp b/DRAMSys/tests/lpddr4/configs/thermalsim/mem.flp new file mode 100755 index 00000000..29d02254 --- /dev/null +++ b/DRAMSys/tests/lpddr4/configs/thermalsim/mem.flp @@ -0,0 +1,16 @@ +channel0 : + position 150, 100 ; + dimension 2600, 5200 ; + +channel1 : + position 3350, 100 ; + dimension 2600, 5200 ; + +channel2 : + position 150, 5300 ; + dimension 2600, 5200 ; + +channel3 : + position 3350, 5300 ; + dimension 2600, 5200 ; + diff --git a/DRAMSys/tests/lpddr4/configs/thermalsim/powerInfo.json b/DRAMSys/tests/lpddr4/configs/thermalsim/powerInfo.json new file mode 100644 index 00000000..524f690f --- /dev/null +++ b/DRAMSys/tests/lpddr4/configs/thermalsim/powerInfo.json @@ -0,0 +1,20 @@ +{ + "powerInfo": { + "dram_die_channel0": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel1": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel2": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel3": { + "init_pow": 0, + "threshold": 1.0 + } + } +} diff --git a/DRAMSys/tests/lpddr4/configs/thermalsim/stack.stk b/DRAMSys/tests/lpddr4/configs/thermalsim/stack.stk new file mode 100755 index 00000000..ec74f020 --- /dev/null +++ b/DRAMSys/tests/lpddr4/configs/thermalsim/stack.stk @@ -0,0 +1,49 @@ +material SILICON : + thermal conductivity 1.30e-4 ; + volumetric heat capacity 1.628e-12 ; + +material BEOL : + thermal conductivity 2.25e-6 ; + volumetric heat capacity 2.175e-12 ; + +material COPPER : + thermal conductivity 4.01e-04 ; + volumetric heat capacity 3.37e-12 ; + +top heat sink : + //sink height 1e03, area 100e06, material COPPER ; + //spreader height 0.5e03, area 70e06, material SILICON ; + heat transfer coefficient 1.3e-09 ; + temperature 318.15 ; +dimensions : + chip length 6100, width 10600 ; + cell length 100, width 100 ; + + +layer PCB : + height 10 ; + material BEOL ; + +die DRAM : + layer 58.5 SILICON ; + source 2 SILICON ; + layer 1.5 BEOL ; + layer 58.5 SILICON ; + + +stack: + die DRAM_DIE DRAM floorplan "./mem.flp" ; + layer CONN_TO_PCB PCB ; + +solver: + transient step 0.01, slot 0.05 ; + initial temperature 300.0 ; + +output: + Tflpel(DRAM_DIE.channel0 , "temp_flp_element_ch0.txt" , average , slot ); + Tflpel(DRAM_DIE.channel1 , "temp_flp_element_ch1.txt" , average , slot ); + Tflpel(DRAM_DIE.channel2 , "temp_flp_element_ch2.txt" , average , slot ); + Tflpel(DRAM_DIE.channel3 , "temp_flp_element_ch3.txt" , average , slot ); + Tmap (DRAM_DIE, "output1.txt", slot) ; + Pmap (DRAM_DIE, "output2.txt", slot) ; + diff --git a/DRAMSys/tests/lpddr4/scripts/createTraceDB.sql b/DRAMSys/tests/lpddr4/scripts/createTraceDB.sql new file mode 100644 index 00000000..7a127fac --- /dev/null +++ b/DRAMSys/tests/lpddr4/scripts/createTraceDB.sql @@ -0,0 +1,94 @@ +DROP TABLE IF EXISTS Phases; +DROP TABLE IF EXISTS GeneralInfo; +DROP TABLE IF EXISTS CommandLengths; +DROP TABLE IF EXISTS Comments; +DROP TABLE IF EXISTS ranges; +DROP TABLE IF EXISTS Transactions; +DROP TABLE IF EXISTS DebugMessages; +DROP TABLE IF EXISTS Power; + +CREATE TABLE Phases( + ID INTEGER PRIMARY KEY, + PhaseName TEXT, + PhaseBegin INTEGER, + PhaseEnd INTEGER, + Transact INTEGER +); + +CREATE TABLE GeneralInfo( + NumberOfTransactions INTEGER, + TraceEnd INTEGER, + NumberOfRanks INTEGER, + NumberOfBanks INTEGER, + clk INTEGER, + UnitOfTime TEXT, + MCconfig TEXT, + Memspec TEXT, + Traces TEXT, + WindowSize INTEGER, + FlexibleRefresh INTEGER, + MaxRefBurst INTEGER, + ControllerThread INTEGER +); + +CREATE TABLE CommandLengths( + ACT INTEGER, + PRE INTEGER, + PREA INTEGER, + RD INTEGER, + RDA INTEGER, + WR INTEGER, + WRA INTEGER, + REFA INTEGER, + REFB INTEGER, + PDEA INTEGER, + PDXA INTEGER, + PDEP INTEGER, + PDXP INTEGER, + SREFEN INTEGER, + SREFEX INTEGER +); + +CREATE TABLE Power( + time DOUBLE, + AveragePower DOUBLE +); + + +CREATE TABLE Comments( + Time INTEGER, + Text TEXT +); + +CREATE TABLE DebugMessages( + Time INTEGER, + Message TEXT +); + +-- use SQLITE R* TREE Module to make queries on timespans effecient (see http://www.sqlite.org/rtree.html) +CREATE VIRTUAL TABLE ranges USING rtree( + id, + begin, end +); + +CREATE TABLE Transactions( + ID INTEGER, + Range INTEGER, + Address INTEGER, + Burstlength INTEGER, + TThread INTEGER, + TChannel INTEGER, + TRank INTEGER, + TBankgroup INTEGER, + TBank INTEGER, + TRow INTEGER, + TColumn INTEGER, + DataStrobeBegin INTEGER, + DataStrobeEnd INTEGER, + TimeOfGeneration INTEGER, + Command TEXT + ); + +CREATE INDEX ranges_index ON Transactions(Range); +CREATE INDEX "phasesTransactions" ON "Phases" ("Transact" ASC); +CREATE INDEX "messageTimes" ON "DebugMessages" ("Time" ASC); diff --git a/DRAMSys/tests/lpddr4/simulations/lpddr4-example.json b/DRAMSys/tests/lpddr4/simulations/lpddr4-example.json new file mode 100644 index 00000000..30211e69 --- /dev/null +++ b/DRAMSys/tests/lpddr4/simulations/lpddr4-example.json @@ -0,0 +1,16 @@ +{ + "simulation": { + "addressmapping": "am_lpddr4_8Gbx16_brc.json", + "mcconfig": "fifo.json", + "memspec": "JEDEC_8Gb_LPDDR4-3200_16bit.json", + "simconfig": "lpddr4.json", + "simulationid": "lpddr4-example", + "thermalconfig": "config.json", + "tracesetup": [ + { + "clkMhz": 1600, + "name": "trace_lpddr4.stl" + } + ] + } +} From a3592e15ba6646c4c149c758505d59f771033650 Mon Sep 17 00:00:00 2001 From: scorrea Date: Mon, 15 Jun 2020 18:24:16 +0200 Subject: [PATCH 03/53] Nr of channel and devices per DIMM at memspec file --- DRAMSys/library/src/common/AddressDecoder.cpp | 4 +- .../src/configuration/Configuration.cpp | 17 +--- .../library/src/configuration/Configuration.h | 2 - .../src/configuration/memspec/MemSpec.cpp | 4 + .../src/configuration/memspec/MemSpec.h | 2 + DRAMSys/library/src/controller/ControllerIF.h | 2 +- DRAMSys/library/src/simulation/Arbiter.cpp | 4 +- DRAMSys/library/src/simulation/DRAMSys.cpp | 6 +- .../src/simulation/DRAMSysRecordable.cpp | 8 +- DRAMSys/library/src/simulation/dram/Dram.cpp | 4 +- .../src/simulation/dram/DramRecordable.cpp | 8 +- ..._ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json | 51 ++++++++++ .../configs/mcconfigs/fr_fcfs_grp.json | 12 +++ .../MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json | 62 ++++++++++++ .../configs/simulator/ddr3.json | 19 ++++ .../configs/thermalsim/config.json | 15 +++ .../configs/thermalsim/core.flp | 45 +++++++++ .../configs/thermalsim/mem.flp | 16 ++++ .../configs/thermalsim/powerInfo.json | 20 ++++ .../configs/thermalsim/stack.stk | 49 ++++++++++ .../scripts/createTraceDB.sql | 94 +++++++++++++++++++ .../simulations/ddr3-example.json | 16 ++++ 22 files changed, 427 insertions(+), 33 deletions(-) create mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json create mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/mcconfigs/fr_fcfs_grp.json create mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json create mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/simulator/ddr3.json create mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/config.json create mode 100755 DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/core.flp create mode 100755 DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/mem.flp create mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/powerInfo.json create mode 100755 DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/stack.stk create mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/scripts/createTraceDB.sql create mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/simulations/ddr3-example.json diff --git a/DRAMSys/library/src/common/AddressDecoder.cpp b/DRAMSys/library/src/common/AddressDecoder.cpp index b454cec6..02980d4f 100644 --- a/DRAMSys/library/src/common/AddressDecoder.cpp +++ b/DRAMSys/library/src/common/AddressDecoder.cpp @@ -143,10 +143,10 @@ AddressDecoder::AddressDecoder(std::string pathToAddressMapping) Configuration &config = Configuration::getInstance(); MemSpec *memSpec = config.memSpec; - if (config.numberOfMemChannels != channels || memSpec->numberOfRanks != ranks + if (memSpec->numberOfMemChannels != channels || memSpec->numberOfRanks != ranks || memSpec->numberOfBankGroups != bankgroups || memSpec->numberOfBanks != banks || memSpec->numberOfRows != rows || memSpec->numberOfColumns != columns - || config.numberOfDevicesOnDIMM * memSpec->bitWidth != bytes * 8) + || memSpec->numberOfDevicesOnDIMM * memSpec->bitWidth != bytes * 8) SC_REPORT_FATAL("AddressDecoder", "Memspec and address mapping do not match"); } diff --git a/DRAMSys/library/src/configuration/Configuration.cpp b/DRAMSys/library/src/configuration/Configuration.cpp index 3f8462ba..921c8c5c 100644 --- a/DRAMSys/library/src/configuration/Configuration.cpp +++ b/DRAMSys/library/src/configuration/Configuration.cpp @@ -121,20 +121,10 @@ void Configuration::setParameter(std::string name, nlohmann::json value) } else if (name == "Debug") debug = value; - else if (name == "NumberOfMemChannels") - numberOfMemChannels = value; else if (name == "ThermalSimulation") thermalSimulation = value; else if (name == "SimulationProgressBar") simulationProgressBar = value; - else if (name == "NumberOfDevicesOnDIMM") - { - numberOfDevicesOnDIMM = value; - if (numberOfDevicesOnDIMM == 0) - SC_REPORT_FATAL("Configuration", - ("Invalid value for parameter " + name + - ". This parameter must be at least one.").c_str()); - } else if (name == "AddressOffset") { #ifdef DRAMSYS_GEM5 @@ -209,12 +199,13 @@ std::uint64_t Configuration::getSimMemSizeInBytes() std::uint64_t rows = memSpec->numberOfRows; std::uint64_t columns = memSpec->numberOfColumns; std::uint64_t bitWidth = memSpec->bitWidth; + std::uint64_t devicesOnDIMM = memSpec->numberOfDevicesOnDIMM; // 2. Calculate size of one DRAM chip in bits std::uint64_t chipBitSize = banks * rows * columns * bitWidth; // 3. Calculate size of one DRAM chip in bytes std::uint64_t chipSize = chipBitSize / 8; // 4. Total memory size in Bytes of one DIMM (with only support of 1 rank on a DIMM) - std::uint64_t memorySize = chipSize * numberOfDevicesOnDIMM; + std::uint64_t memorySize = chipSize * memSpec->numberOfDevicesOnDIMM; std::cout << headline << std::endl; std::cout << "Per Channel Configuration:" << std::endl << std::endl; @@ -228,7 +219,7 @@ std::uint64_t Configuration::getSimMemSizeInBytes() std::cout << " Chip data bus width: " << bitWidth << std::endl; std::cout << " Chip size in bits: " << chipBitSize << std::endl; std::cout << " Chip Size in bytes: " << chipSize << std::endl; - std::cout << " Devices/Chips on DIMM: " << numberOfDevicesOnDIMM << std::endl; + std::cout << " Devices/Chips on DIMM: " << devicesOnDIMM << std::endl; std::cout << std::endl; assert(memorySize > 0); @@ -241,7 +232,7 @@ std::uint64_t Configuration::getSimMemSizeInBytes() // The bus width is given in bits, e.g., 64-bit data bus, 128-bit data bus, etc. unsigned int Configuration::getDataBusWidth() { - return memSpec->bitWidth * numberOfDevicesOnDIMM; + return memSpec->bitWidth * memSpec->numberOfDevicesOnDIMM; } // Returns the number of bytes transfered in a burst diff --git a/DRAMSys/library/src/configuration/Configuration.h b/DRAMSys/library/src/configuration/Configuration.h index af0ffff9..0f850baa 100644 --- a/DRAMSys/library/src/configuration/Configuration.h +++ b/DRAMSys/library/src/configuration/Configuration.h @@ -88,10 +88,8 @@ public: bool enableWindowing = false; unsigned int windowSize = 1000; bool debug = false; - unsigned int numberOfMemChannels = 1; bool thermalSimulation = false; bool simulationProgressBar = false; - unsigned int numberOfDevicesOnDIMM = 8; bool checkTLM2Protocol = false; std::string ECCMode = "Disabled"; ECCBaseClass *pECC = nullptr; diff --git a/DRAMSys/library/src/configuration/memspec/MemSpec.cpp b/DRAMSys/library/src/configuration/memspec/MemSpec.cpp index 3022440c..3d7984f0 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpec.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpec.cpp @@ -58,6 +58,10 @@ MemSpec::MemSpec(json &memspec, unsigned numberOfRanks, unsigned banksPerRank, dataRate(parseUint(memspec["memarchitecturespec"]["dataRate"],"dataRate")), bitWidth(parseUint(memspec["memarchitecturespec"]["width"],"width")), fCKMHz(parseUdouble(memspec["memtimingspec"]["clkMhz"], "clkMhz")), + numberOfDevicesOnDIMM(parseUint(memspec["memarchitecturespec"]["NumberOfDevicesOnDIMM"], + "numberOfDevicesOnDIMM")), + numberOfMemChannels(parseUint(memspec["memarchitecturespec"]["NumberOfMemChannels"], + "NumberOfMemChannels")), tCK(sc_time(1.0 / fCKMHz, SC_US)), burstDuration(tCK * (burstLength / dataRate)), memoryId(parseString(memspec["memoryId"], "memoryId")), diff --git a/DRAMSys/library/src/configuration/memspec/MemSpec.h b/DRAMSys/library/src/configuration/memspec/MemSpec.h index 37185107..afa311e4 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpec.h +++ b/DRAMSys/library/src/configuration/memspec/MemSpec.h @@ -59,6 +59,8 @@ public: unsigned burstLength; unsigned dataRate; unsigned bitWidth; + unsigned int numberOfDevicesOnDIMM; + unsigned int numberOfMemChannels; // Clock double fCKMHz; diff --git a/DRAMSys/library/src/controller/ControllerIF.h b/DRAMSys/library/src/controller/ControllerIF.h index fbcf969f..965697c2 100644 --- a/DRAMSys/library/src/controller/ControllerIF.h +++ b/DRAMSys/library/src/controller/ControllerIF.h @@ -35,7 +35,7 @@ public: // BusWidth e.g. 8 or 64 * Configuration::getInstance().memSpec->bitWidth // Number of devices on a DIMM e.g. 8 - * Configuration::getInstance().numberOfDevicesOnDIMM ) / ( 1024 ); + * Configuration::getInstance().memSpec->numberOfDevicesOnDIMM ) / ( 1024 ); std::cout << name() << std::string(" Total Time: ") << sc_time_stamp().to_string() diff --git a/DRAMSys/library/src/simulation/Arbiter.cpp b/DRAMSys/library/src/simulation/Arbiter.cpp index 098c6013..6b6c061b 100644 --- a/DRAMSys/library/src/simulation/Arbiter.cpp +++ b/DRAMSys/library/src/simulation/Arbiter.cpp @@ -49,7 +49,7 @@ Arbiter::Arbiter(sc_module_name name, std::string pathToAddressMapping) : // Anytime an transaction comes from a memory unity to the arbiter the "bw" callback is called. iSocket.register_nb_transport_bw(this, &Arbiter::nb_transport_bw); - for (size_t i = 0; i < Configuration::getInstance().numberOfMemChannels; ++i) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; ++i) { channelIsFree.push_back(true); pendingRequests.push_back(std::queue()); @@ -130,7 +130,7 @@ void Arbiter::peqCallback(tlm_generic_payload &payload, const tlm_phase &phase) // Check the valid range of thread ID and channel Id // TODO: thread ID not checked - assert(channelId < Configuration::getInstance().numberOfMemChannels); + assert(channelId < Configuration::getInstance().memSpec->numberOfMemChannels); // Phases initiated by the intiator side from arbiter's point of view (devices performing memory requests to the arbiter) if (phase == BEGIN_REQ) diff --git a/DRAMSys/library/src/simulation/DRAMSys.cpp b/DRAMSys/library/src/simulation/DRAMSys.cpp index b210438d..7a9d8b8f 100644 --- a/DRAMSys/library/src/simulation/DRAMSys.cpp +++ b/DRAMSys/library/src/simulation/DRAMSys.cpp @@ -192,7 +192,7 @@ void DRAMSys::instantiateModules(const std::string &pathToResources, // Create controllers and DRAMs std::string memoryType = Configuration::getInstance().memSpec->memoryType; - for (size_t i = 0; i < Configuration::getInstance().numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) { std::string str = "controller" + std::to_string(i); @@ -251,7 +251,7 @@ void DRAMSys::bindSockets() if (Configuration::getInstance().checkTLM2Protocol) { - for (size_t i = 0; i < Configuration::getInstance().numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) { arbiter->iSocket.bind(controllersTlmCheckers[i]->target_socket); controllersTlmCheckers[i]->initiator_socket.bind(controllers[i]->tSocket); @@ -260,7 +260,7 @@ void DRAMSys::bindSockets() } else { - for (size_t i = 0; i < Configuration::getInstance().numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) { arbiter->iSocket.bind(controllers[i]->tSocket); controllers[i]->iSocket.bind(drams[i]->tSocket); diff --git a/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp b/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp index 60e4dbd9..b55180a5 100644 --- a/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp +++ b/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp @@ -91,7 +91,7 @@ void DRAMSysRecordable::setupTlmRecorders(const std::string &traceName, const std::string &pathToResources) { // Create TLM Recorders, one per channel. - for (size_t i = 0; i < Configuration::getInstance().numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) { std::string sqlScriptURI = pathToResources + std::string("scripts/createTraceDB.sql"); @@ -140,7 +140,7 @@ void DRAMSysRecordable::instantiateModules(const std::string &traceName, // Create controllers and DRAMs std::string memoryType = Configuration::getInstance().memSpec->memoryType; - for (size_t i = 0; i < Configuration::getInstance().numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) { std::string str = "controller" + std::to_string(i); @@ -199,7 +199,7 @@ void DRAMSysRecordable::bindSockets() if (Configuration::getInstance().checkTLM2Protocol) { - for (size_t i = 0; i < Configuration::getInstance().numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) { arbiter->iSocket.bind(controllersTlmCheckers[i]->target_socket); controllersTlmCheckers[i]->initiator_socket.bind(controllers[i]->tSocket); @@ -208,7 +208,7 @@ void DRAMSysRecordable::bindSockets() } else { - for (size_t i = 0; i < Configuration::getInstance().numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) { arbiter->iSocket.bind(controllers[i]->tSocket); controllers[i]->iSocket.bind(drams[i]->tSocket); diff --git a/DRAMSys/library/src/simulation/dram/Dram.cpp b/DRAMSys/library/src/simulation/dram/Dram.cpp index 16a76f98..845cbfbe 100644 --- a/DRAMSys/library/src/simulation/dram/Dram.cpp +++ b/DRAMSys/library/src/simulation/dram/Dram.cpp @@ -129,14 +129,14 @@ void Dram::reportPower() std::cout << name() << std::string(" Total Energy: ") << std::fixed << std::setprecision( 2 ) << DRAMPower->getEnergy().total_energy - * Configuration::getInstance().numberOfDevicesOnDIMM + * Configuration::getInstance().memSpec->numberOfDevicesOnDIMM << std::string(" pJ") << std::endl; std::cout << name() << std::string(" Average Power: ") << std::fixed << std::setprecision( 2 ) << DRAMPower->getPower().average_power - * Configuration::getInstance().numberOfDevicesOnDIMM + * Configuration::getInstance().memSpec->numberOfDevicesOnDIMM << std::string(" mW") << std::endl; } } diff --git a/DRAMSys/library/src/simulation/dram/DramRecordable.cpp b/DRAMSys/library/src/simulation/dram/DramRecordable.cpp index c2319ddb..96f2ddc2 100644 --- a/DRAMSys/library/src/simulation/dram/DramRecordable.cpp +++ b/DRAMSys/library/src/simulation/dram/DramRecordable.cpp @@ -67,7 +67,7 @@ void DramRecordable::reportPower() BaseDram::reportPower(); tlmRecorder->recordPower(sc_time_stamp().to_seconds(), this->DRAMPower->getPower().window_average_power - * Configuration::getInstance().numberOfDevicesOnDIMM); + * Configuration::getInstance().memSpec->numberOfDevicesOnDIMM); } template @@ -132,15 +132,15 @@ void DramRecordable::powerWindow() // Store the time (in seconds) and the current average power (in mW) into the database tlmRecorder->recordPower(sc_time_stamp().to_seconds(), this->DRAMPower->getPower().window_average_power - * Configuration::getInstance().numberOfDevicesOnDIMM); + * Configuration::getInstance().memSpec->numberOfDevicesOnDIMM); // Here considering that DRAMPower provides the energy in pJ and the power in mW PRINTDEBUGMESSAGE(this->name(), std::string("\tWindow Energy: \t") + std::to_string( this->DRAMPower->getEnergy().window_energy * - Configuration::getInstance().numberOfDevicesOnDIMM) + std::string("\t[pJ]")); + Configuration::getInstance().memSpec->numberOfDevicesOnDIMM) + std::string("\t[pJ]")); PRINTDEBUGMESSAGE(this->name(), std::string("\tWindow Average Power: \t") + std::to_string( this->DRAMPower->getPower().window_average_power * - Configuration::getInstance().numberOfDevicesOnDIMM) + std::string("\t[mW]")); + Configuration::getInstance().memSpec->numberOfDevicesOnDIMM) + std::string("\t[mW]")); } while (true); } diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json new file mode 100644 index 00000000..c82926c9 --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json @@ -0,0 +1,51 @@ +{ + "CONGEN": { + "XOR":[ + { + "FIRST":13, + "SECOND":16 + } + ], + "BANK_BIT": [ + 13, + 14, + 15 + ], + "BYTE_BIT": [ + 0, + 1, + 2 + ], + "COLUMN_BIT": [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "ROW_BIT": [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ], + "RANK_BIT": [ + 30 + ] + } +} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/mcconfigs/fr_fcfs_grp.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/mcconfigs/fr_fcfs_grp.json new file mode 100644 index 00000000..4ac02e30 --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/mcconfigs/fr_fcfs_grp.json @@ -0,0 +1,12 @@ +{"mcconfig": + {"PagePolicy": "Open", + "Scheduler": "FrFcfsGrp", + "RequestBufferSize": 8, + "CmdMux": "Oldest", + "RespQueue": "Fifo", + "RefreshPolicy": "Rankwise", + "RefreshMode": 1, + "RefreshMaxPostponed": 0, + "RefreshMaxPulledin": 0, + "PowerDownPolicy": "Staggered", + "PowerDownTimeout": 100}} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json new file mode 100644 index 00000000..d842bda2 --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json @@ -0,0 +1,62 @@ +{ + "memspec": { + "memarchitecturespec": { + "burstLength": 8, + "dataRate": 2, + "nbrOfBanks": 8, + "nbrOfColumns": 1024, + "nbrOfRanks": 2, + "nbrOfRows": 16384, + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 + }, + "memoryId": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM", + "memoryType": "DDR3", + "mempowerspec": { + "idd0": 720.0, + "idd2n": 400.0, + "idd2p0": 80.0, + "idd2p1": 200.0, + "idd3n": 440.0, + "idd3p0": 240.0, + "idd3p1": 240.0, + "idd4r": 1200.0, + "idd4w": 1200.0, + "idd5": 1760.0, + "idd6": 48.0, + "vdd": 1.5 + }, + "memtimingspec": { + "AL": 0, + "CCD": 4, + "CKE": 3, + "CKESR": 4, + "CL": 7, + "DQSCK": 0, + "FAW": 20, + "RAS": 20, + "RC": 27, + "RCD": 7, + "REFI": 4160, + "RFC": 59, + "RL": 7, + "RP": 7, + "RRD": 4, + "RTP": 4, + "WL": 6, + "WR": 8, + "WTR": 4, + "XP": 4, + "XPDLL": 13, + "XS": 64, + "XSDLL": 512, + "clkMhz": 533, + + "ACTPDEN": 1, + "PRPDEN": 1, + "REFPDEN": 1, + "RTRS": 1 + } + } +} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/simulator/ddr3.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/simulator/ddr3.json new file mode 100644 index 00000000..99ccdb45 --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/simulator/ddr3.json @@ -0,0 +1,19 @@ +{ + "simconfig": { + "AddressOffset": 0, + "CheckTLM2Protocol": false, + "DatabaseRecording": true, + "Debug": false, + "ECCControllerMode": "Disabled", + "EnableWindowing": false, + "ErrorCSVFile": "", + "ErrorChipSeed": 42, + "PowerAnalysis": false, + "SimulationName": "ddr3", + "SimulationProgressBar": true, + "StoreMode": "NoStorage", + "ThermalSimulation": false, + "UseMalloc": false, + "WindowSize": 1000 + } +} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/config.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/config.json new file mode 100644 index 00000000..b88ed84c --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/config.json @@ -0,0 +1,15 @@ +{ + "thermalsimconfig": { + "TemperatureScale": "Celsius", + "StaticTemperatureDefaultValue": 89, + "ThermalSimPeriod":100, + "ThermalSimUnit":"us", + "PowerInfoFile": "powerInfo.json", + "IceServerIp": "127.0.0.1", + "IceServerPort": 11880, + "SimPeriodAdjustFactor" : 10, + "NPowStableCyclesToIncreasePeriod": 5, + "GenerateTemperatureMap": true, + "GeneratePowerMap": true + } +} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/core.flp b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/core.flp new file mode 100755 index 00000000..e85e6801 --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/core.flp @@ -0,0 +1,45 @@ +CPUs : + + position 0, 0 ; + dimension 2750, 4300 ; + +GPU : + + position 3350, 0 ; + dimension 2750, 4000 ; + +BASEBAND1 : + + position 4250, 4000 ; + dimension 1850, 3300 ; + +BASEBAND2 : + + position 3350, 7300 ; + dimension 2750, 3300 ; + +LLCACHE : + + position 0, 4300 ; + dimension 1900, 3000 ; + +DRAMCTRL1 : + + position 1900, 4300 ; + dimension 850, 3000 ; + +DRAMCTRL2 : + + position 3350, 4000 ; + dimension 900, 3300 ; + +TSVS : + + position 2750, 2300 ; + dimension 600, 6000 ; + +ACELLERATORS : + + position 0, 7300 ; + dimension 2750, 3300 ; + diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/mem.flp b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/mem.flp new file mode 100755 index 00000000..29d02254 --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/mem.flp @@ -0,0 +1,16 @@ +channel0 : + position 150, 100 ; + dimension 2600, 5200 ; + +channel1 : + position 3350, 100 ; + dimension 2600, 5200 ; + +channel2 : + position 150, 5300 ; + dimension 2600, 5200 ; + +channel3 : + position 3350, 5300 ; + dimension 2600, 5200 ; + diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/powerInfo.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/powerInfo.json new file mode 100644 index 00000000..524f690f --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/powerInfo.json @@ -0,0 +1,20 @@ +{ + "powerInfo": { + "dram_die_channel0": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel1": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel2": { + "init_pow": 0, + "threshold": 1.0 + }, + "dram_die_channel3": { + "init_pow": 0, + "threshold": 1.0 + } + } +} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/stack.stk b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/stack.stk new file mode 100755 index 00000000..ec74f020 --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/stack.stk @@ -0,0 +1,49 @@ +material SILICON : + thermal conductivity 1.30e-4 ; + volumetric heat capacity 1.628e-12 ; + +material BEOL : + thermal conductivity 2.25e-6 ; + volumetric heat capacity 2.175e-12 ; + +material COPPER : + thermal conductivity 4.01e-04 ; + volumetric heat capacity 3.37e-12 ; + +top heat sink : + //sink height 1e03, area 100e06, material COPPER ; + //spreader height 0.5e03, area 70e06, material SILICON ; + heat transfer coefficient 1.3e-09 ; + temperature 318.15 ; +dimensions : + chip length 6100, width 10600 ; + cell length 100, width 100 ; + + +layer PCB : + height 10 ; + material BEOL ; + +die DRAM : + layer 58.5 SILICON ; + source 2 SILICON ; + layer 1.5 BEOL ; + layer 58.5 SILICON ; + + +stack: + die DRAM_DIE DRAM floorplan "./mem.flp" ; + layer CONN_TO_PCB PCB ; + +solver: + transient step 0.01, slot 0.05 ; + initial temperature 300.0 ; + +output: + Tflpel(DRAM_DIE.channel0 , "temp_flp_element_ch0.txt" , average , slot ); + Tflpel(DRAM_DIE.channel1 , "temp_flp_element_ch1.txt" , average , slot ); + Tflpel(DRAM_DIE.channel2 , "temp_flp_element_ch2.txt" , average , slot ); + Tflpel(DRAM_DIE.channel3 , "temp_flp_element_ch3.txt" , average , slot ); + Tmap (DRAM_DIE, "output1.txt", slot) ; + Pmap (DRAM_DIE, "output2.txt", slot) ; + diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/scripts/createTraceDB.sql b/DRAMSys/tests/ddr3_parametersAtMemspec/scripts/createTraceDB.sql new file mode 100644 index 00000000..7a127fac --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/scripts/createTraceDB.sql @@ -0,0 +1,94 @@ +DROP TABLE IF EXISTS Phases; +DROP TABLE IF EXISTS GeneralInfo; +DROP TABLE IF EXISTS CommandLengths; +DROP TABLE IF EXISTS Comments; +DROP TABLE IF EXISTS ranges; +DROP TABLE IF EXISTS Transactions; +DROP TABLE IF EXISTS DebugMessages; +DROP TABLE IF EXISTS Power; + +CREATE TABLE Phases( + ID INTEGER PRIMARY KEY, + PhaseName TEXT, + PhaseBegin INTEGER, + PhaseEnd INTEGER, + Transact INTEGER +); + +CREATE TABLE GeneralInfo( + NumberOfTransactions INTEGER, + TraceEnd INTEGER, + NumberOfRanks INTEGER, + NumberOfBanks INTEGER, + clk INTEGER, + UnitOfTime TEXT, + MCconfig TEXT, + Memspec TEXT, + Traces TEXT, + WindowSize INTEGER, + FlexibleRefresh INTEGER, + MaxRefBurst INTEGER, + ControllerThread INTEGER +); + +CREATE TABLE CommandLengths( + ACT INTEGER, + PRE INTEGER, + PREA INTEGER, + RD INTEGER, + RDA INTEGER, + WR INTEGER, + WRA INTEGER, + REFA INTEGER, + REFB INTEGER, + PDEA INTEGER, + PDXA INTEGER, + PDEP INTEGER, + PDXP INTEGER, + SREFEN INTEGER, + SREFEX INTEGER +); + +CREATE TABLE Power( + time DOUBLE, + AveragePower DOUBLE +); + + +CREATE TABLE Comments( + Time INTEGER, + Text TEXT +); + +CREATE TABLE DebugMessages( + Time INTEGER, + Message TEXT +); + +-- use SQLITE R* TREE Module to make queries on timespans effecient (see http://www.sqlite.org/rtree.html) +CREATE VIRTUAL TABLE ranges USING rtree( + id, + begin, end +); + +CREATE TABLE Transactions( + ID INTEGER, + Range INTEGER, + Address INTEGER, + Burstlength INTEGER, + TThread INTEGER, + TChannel INTEGER, + TRank INTEGER, + TBankgroup INTEGER, + TBank INTEGER, + TRow INTEGER, + TColumn INTEGER, + DataStrobeBegin INTEGER, + DataStrobeEnd INTEGER, + TimeOfGeneration INTEGER, + Command TEXT + ); + +CREATE INDEX ranges_index ON Transactions(Range); +CREATE INDEX "phasesTransactions" ON "Phases" ("Transact" ASC); +CREATE INDEX "messageTimes" ON "DebugMessages" ("Time" ASC); diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/simulations/ddr3-example.json b/DRAMSys/tests/ddr3_parametersAtMemspec/simulations/ddr3-example.json new file mode 100644 index 00000000..e3d4a4c3 --- /dev/null +++ b/DRAMSys/tests/ddr3_parametersAtMemspec/simulations/ddr3-example.json @@ -0,0 +1,16 @@ +{ + "simulation": { + "addressmapping": "am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json", + "mcconfig": "fr_fcfs_grp.json", + "memspec": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json", + "simconfig": "ddr3.json", + "simulationid": "ddr3-example-dual-rank-json", + "thermalconfig": "config.json", + "tracesetup": [ + { + "clkMhz": 533, + "name": "trace_test2.stl" + } + ] + } +} From 4265ecc3c701c803df45dac19a9c48429b615ab6 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Tue, 16 Jun 2020 10:53:43 +0200 Subject: [PATCH 04/53] Adapted memspecs to nbrOfChannels and nbrOfDevicesOnDIMM. --- DRAMSys/library/CMakeLists.txt | 3 +++ DRAMSys/library/src/common/AddressDecoder.cpp | 2 +- .../src/configuration/memspec/MemSpec.cpp | 18 +++++++++--------- .../src/configuration/memspec/MemSpec.h | 10 ++++++---- .../src/configuration/memspec/MemSpecDDR3.cpp | 4 +++- .../src/configuration/memspec/MemSpecDDR4.cpp | 4 +++- .../src/configuration/memspec/MemSpecGDDR5.cpp | 4 +++- .../configuration/memspec/MemSpecGDDR5X.cpp | 4 +++- .../src/configuration/memspec/MemSpecGDDR6.cpp | 4 +++- .../src/configuration/memspec/MemSpecHBM2.cpp | 4 +++- .../configuration/memspec/MemSpecLPDDR4.cpp | 4 +++- .../configuration/memspec/MemSpecWideIO.cpp | 4 +++- .../configuration/memspec/MemSpecWideIO2.cpp | 4 +++- DRAMSys/library/src/simulation/Arbiter.cpp | 4 ++-- DRAMSys/library/src/simulation/DRAMSys.cpp | 6 +++--- .../src/simulation/DRAMSysRecordable.cpp | 8 ++++---- DRAMSys/tests/HBM2/configs/memspecs/HBM2.json | 1 + DRAMSys/tests/HBM2/configs/simulator/hbm2.json | 2 -- .../MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json | 8 +++++++- .../ddr3_multirank/configs/simulator/ddr3.json | 2 -- .../memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json | 4 +++- .../configs/simulator/ddr4.json | 2 -- .../memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json | 4 ++++ .../tests/lpddr4/configs/simulator/lpddr4.json | 2 -- 24 files changed, 70 insertions(+), 42 deletions(-) diff --git a/DRAMSys/library/CMakeLists.txt b/DRAMSys/library/CMakeLists.txt index 0b828857..d15862ed 100644 --- a/DRAMSys/library/CMakeLists.txt +++ b/DRAMSys/library/CMakeLists.txt @@ -172,6 +172,7 @@ add_library(DRAMSysLibrary resources/simulations/lpddr4-example.json resources/simulations/ranktest.json resources/simulations/wideio-example.json + resources/simulations/wideio-thermal.json # Address Mapping Config Files resources/configs/amconfigs/am_ddr3_1Gbx8_p1KB_brc.json @@ -266,9 +267,11 @@ add_library(DRAMSysLibrary resources/configs/simulator/hbm2.json resources/configs/simulator/lpddr4.json resources/configs/simulator/wideio.json + resources/configs/simulator/wideio_thermal.json # Thermal Simulation Config Files resources/configs/thermalsim/config.json + resources/configs/thermalsim/powerInfo.json # Trace Files resources/traces/test_ecc.stl diff --git a/DRAMSys/library/src/common/AddressDecoder.cpp b/DRAMSys/library/src/common/AddressDecoder.cpp index 02980d4f..33e920c9 100644 --- a/DRAMSys/library/src/common/AddressDecoder.cpp +++ b/DRAMSys/library/src/common/AddressDecoder.cpp @@ -143,7 +143,7 @@ AddressDecoder::AddressDecoder(std::string pathToAddressMapping) Configuration &config = Configuration::getInstance(); MemSpec *memSpec = config.memSpec; - if (memSpec->numberOfMemChannels != channels || memSpec->numberOfRanks != ranks + if (memSpec->numberOfChannels != channels || memSpec->numberOfRanks != ranks || memSpec->numberOfBankGroups != bankgroups || memSpec->numberOfBanks != banks || memSpec->numberOfRows != rows || memSpec->numberOfColumns != columns || memSpec->numberOfDevicesOnDIMM * memSpec->bitWidth != bytes * 8) diff --git a/DRAMSys/library/src/configuration/memspec/MemSpec.cpp b/DRAMSys/library/src/configuration/memspec/MemSpec.cpp index 3d7984f0..4cae3c73 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpec.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpec.cpp @@ -43,29 +43,29 @@ using namespace tlm; using json = nlohmann::json; -MemSpec::MemSpec(json &memspec, unsigned numberOfRanks, unsigned banksPerRank, +MemSpec::MemSpec(json &memspec, unsigned numberOfChannels, + unsigned numberOfRanks, unsigned banksPerRank, unsigned groupsPerRank, unsigned banksPerGroup, - unsigned numberOfBanks, unsigned numberOfBankGroups) - : numberOfRanks(numberOfRanks), + unsigned numberOfBanks, unsigned numberOfBankGroups, + unsigned numberOfDevicesOnDIMM) + : numberOfChannels(numberOfChannels), + numberOfRanks(numberOfRanks), banksPerRank(banksPerRank), groupsPerRank(groupsPerRank), banksPerGroup(banksPerGroup), numberOfBanks(numberOfBanks), numberOfBankGroups(numberOfBankGroups), + numberOfDevicesOnDIMM(numberOfDevicesOnDIMM), numberOfRows(parseUint(memspec["memarchitecturespec"]["nbrOfRows"],"nbrOfRows")), numberOfColumns(parseUint(memspec["memarchitecturespec"]["nbrOfColumns"],"nbrOfColumns")), burstLength(parseUint(memspec["memarchitecturespec"]["burstLength"],"burstLength")), dataRate(parseUint(memspec["memarchitecturespec"]["dataRate"],"dataRate")), bitWidth(parseUint(memspec["memarchitecturespec"]["width"],"width")), fCKMHz(parseUdouble(memspec["memtimingspec"]["clkMhz"], "clkMhz")), - numberOfDevicesOnDIMM(parseUint(memspec["memarchitecturespec"]["NumberOfDevicesOnDIMM"], - "numberOfDevicesOnDIMM")), - numberOfMemChannels(parseUint(memspec["memarchitecturespec"]["NumberOfMemChannels"], - "NumberOfMemChannels")), tCK(sc_time(1.0 / fCKMHz, SC_US)), - burstDuration(tCK * (burstLength / dataRate)), memoryId(parseString(memspec["memoryId"], "memoryId")), - memoryType(parseString(memspec["memoryType"], "memoryType")) + memoryType(parseString(memspec["memoryType"], "memoryType")), + burstDuration(tCK * (burstLength / dataRate)) { commandLengthInCycles = std::vector(numberOfCommands(), 1); } diff --git a/DRAMSys/library/src/configuration/memspec/MemSpec.h b/DRAMSys/library/src/configuration/memspec/MemSpec.h index afa311e4..785e52d7 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpec.h +++ b/DRAMSys/library/src/configuration/memspec/MemSpec.h @@ -48,19 +48,19 @@ class MemSpec { public: + unsigned numberOfChannels; unsigned numberOfRanks; unsigned banksPerRank; unsigned groupsPerRank; unsigned banksPerGroup; unsigned numberOfBanks; unsigned numberOfBankGroups; + unsigned numberOfDevicesOnDIMM; unsigned numberOfRows; unsigned numberOfColumns; unsigned burstLength; unsigned dataRate; unsigned bitWidth; - unsigned int numberOfDevicesOnDIMM; - unsigned int numberOfMemChannels; // Clock double fCKMHz; @@ -80,9 +80,11 @@ public: sc_time getCommandLength(Command) const; protected: - MemSpec(nlohmann::json &memspec, unsigned numberOfRanks, unsigned banksPerRank, + MemSpec(nlohmann::json &memspec, unsigned numberOfChannels, + unsigned numberOfRanks, unsigned banksPerRank, unsigned groupsPerRank, unsigned banksPerGroup, - unsigned numberOfBanks, unsigned numberOfBankGroups); + unsigned numberOfBanks, unsigned numberOfBankGroups, + unsigned numberOfDevicesOnDIMM); // Command lengths in cycles on bus, usually one clock cycle std::vector commandLengthInCycles; diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp index 387ec6be..52fed95d 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp @@ -40,13 +40,15 @@ using json = nlohmann::json; MemSpecDDR3::MemSpecDDR3(json &memspec) : MemSpec(memspec, + parseUint(memspec["memarchitecturespec"]["nbrOfChannels"],"nbrOfChannels"), parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), 1, parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks") * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), - parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks")), + parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), + parseUint(memspec["memarchitecturespec"]["nbrOfDevicesOnDIMM"],"nbrOfDevicesOnDIMM")), tCKE (tCK * parseUint(memspec["memtimingspec"]["CKE"], "CKE")), tPD (tCKE), tCKESR (tCK * parseUint(memspec["memtimingspec"]["CKESR"], "CKESR")), diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp index 5078ca0e..9e38241e 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp @@ -41,6 +41,7 @@ using json = nlohmann::json; MemSpecDDR4::MemSpecDDR4(json &memspec) : MemSpec(memspec, + parseUint(memspec["memarchitecturespec"]["nbrOfChannels"],"nbrOfChannels"), parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups"), @@ -49,7 +50,8 @@ MemSpecDDR4::MemSpecDDR4(json &memspec) parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks") * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups") - * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks")), + * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), + parseUint(memspec["memarchitecturespec"]["nbrOfDevicesOnDIMM"],"nbrOfDevicesOnDIMM")), tCKE (tCK * parseUint(memspec["memtimingspec"]["CKE"], "CKE")), tPD (tCKE), tCKESR (tCK * parseUint(memspec["memtimingspec"]["CKESR"], "CKESR")), diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp index 66bd7f7c..0572099a 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp @@ -40,6 +40,7 @@ using json = nlohmann::json; MemSpecGDDR5::MemSpecGDDR5(json &memspec) : MemSpec(memspec, + parseUint(memspec["memarchitecturespec"]["nbrOfChannels"],"nbrOfChannels"), parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups"), @@ -48,7 +49,8 @@ MemSpecGDDR5::MemSpecGDDR5(json &memspec) parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks") * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups") - * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks")), + * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), + 1), tRP (tCK * parseUint(memspec["memtimingspec"]["RP"], "RP")), tRAS (tCK * parseUint(memspec["memtimingspec"]["RAS"], "RAS")), tRC (tCK * parseUint(memspec["memtimingspec"]["RC"], "RC")), diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp index a2897967..90908bd9 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp @@ -40,6 +40,7 @@ using json = nlohmann::json; MemSpecGDDR5X::MemSpecGDDR5X(json &memspec) : MemSpec(memspec, + parseUint(memspec["memarchitecturespec"]["nbrOfChannels"],"nbrOfChannels"), parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups"), @@ -48,7 +49,8 @@ MemSpecGDDR5X::MemSpecGDDR5X(json &memspec) parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks") * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups") - * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks")), + * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), + 1), tRP (tCK * parseUint(memspec["memtimingspec"]["RP"], "RP")), tRAS (tCK * parseUint(memspec["memtimingspec"]["RAS"], "RAS")), tRC (tCK * parseUint(memspec["memtimingspec"]["RC"], "RC")), diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp index 636a3351..b9a70d10 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp @@ -40,6 +40,7 @@ using json = nlohmann::json; MemSpecGDDR6::MemSpecGDDR6(json &memspec) : MemSpec(memspec, + parseUint(memspec["memarchitecturespec"]["nbrOfChannels"],"nbrOfChannels"), parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups"), @@ -48,7 +49,8 @@ MemSpecGDDR6::MemSpecGDDR6(json &memspec) parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks") * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups") - * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks")), + * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), + 1), tRP (tCK * parseUint(memspec["memtimingspec"]["RP"], "RP")), tRAS (tCK * parseUint(memspec["memtimingspec"]["RAS"], "RAS")), tRC (tCK * parseUint(memspec["memtimingspec"]["RC"], "RC")), diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp index c8afaa93..da1d77b1 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp @@ -40,6 +40,7 @@ using json = nlohmann::json; MemSpecHBM2::MemSpecHBM2(json &memspec) : MemSpec(memspec, + parseUint(memspec["memarchitecturespec"]["nbrOfChannels"],"nbrOfChannels"), parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups"), @@ -48,7 +49,8 @@ MemSpecHBM2::MemSpecHBM2(json &memspec) parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks") * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBankGroups"], "nbrOfBankGroups") - * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks")), + * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), + 1), tDQSCK (tCK * parseUint(memspec["memtimingspec"]["DQSCK"], "DQSCK")), tRC (tCK * parseUint(memspec["memtimingspec"]["RC"], "RC")), tRAS (tCK * parseUint(memspec["memtimingspec"]["RAS"], "RAS")), diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp index c16f9b50..6716744f 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp @@ -40,13 +40,15 @@ using json = nlohmann::json; MemSpecLPDDR4::MemSpecLPDDR4(json &memspec) : MemSpec(memspec, + parseUint(memspec["memarchitecturespec"]["nbrOfChannels"],"nbrOfChannels"), parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), 1, parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks") * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), - parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks")), + parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), + 1), tREFI (tCK * parseUint(memspec["memtimingspec"]["REFI"], "REFI")), tREFIpb (tCK * parseUint(memspec["memtimingspec"]["REFIPB"], "REFIPB")), tRFCab (tCK * parseUint(memspec["memtimingspec"]["RFCAB"], "RFCAB")), diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp index ecbcb202..e4ccfadb 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp @@ -40,13 +40,15 @@ using json = nlohmann::json; MemSpecWideIO::MemSpecWideIO(json &memspec) : MemSpec(memspec, + parseUint(memspec["memarchitecturespec"]["nbrOfChannels"],"nbrOfChannels"), parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), 1, parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks") * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), - parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks")), + parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), + 1), tCKE (tCK * parseUint(memspec["memtimingspec"]["CKE"], "CKE")), tCKESR (tCK * parseUint(memspec["memtimingspec"]["CKESR"], "CKESR")), tDQSCK (tCK * parseUint(memspec["memtimingspec"]["DQSCK"], "DQSCK")), diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp index 91e27078..2f07fdcd 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp @@ -40,13 +40,15 @@ using json = nlohmann::json; MemSpecWideIO2::MemSpecWideIO2(json &memspec) : MemSpec(memspec, + parseUint(memspec["memarchitecturespec"]["nbrOfChannels"],"nbrOfChannels"), parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), 1, parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks"), parseUint(memspec["memarchitecturespec"]["nbrOfBanks"],"nbrOfBanks") * parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), - parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks")), + parseUint(memspec["memarchitecturespec"]["nbrOfRanks"],"nbrOfRanks"), + 1), tDQSCK (tCK * parseUint(memspec["memtimingspec"]["DQSCK"], "DQSCK")), tDQSS (tCK * parseUint(memspec["memtimingspec"]["DQSS"], "DQSS")), tCKE (tCK * parseUint(memspec["memtimingspec"]["CKE"], "CKE")), diff --git a/DRAMSys/library/src/simulation/Arbiter.cpp b/DRAMSys/library/src/simulation/Arbiter.cpp index 6b6c061b..6a74396d 100644 --- a/DRAMSys/library/src/simulation/Arbiter.cpp +++ b/DRAMSys/library/src/simulation/Arbiter.cpp @@ -49,7 +49,7 @@ Arbiter::Arbiter(sc_module_name name, std::string pathToAddressMapping) : // Anytime an transaction comes from a memory unity to the arbiter the "bw" callback is called. iSocket.register_nb_transport_bw(this, &Arbiter::nb_transport_bw); - for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; ++i) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfChannels; ++i) { channelIsFree.push_back(true); pendingRequests.push_back(std::queue()); @@ -130,7 +130,7 @@ void Arbiter::peqCallback(tlm_generic_payload &payload, const tlm_phase &phase) // Check the valid range of thread ID and channel Id // TODO: thread ID not checked - assert(channelId < Configuration::getInstance().memSpec->numberOfMemChannels); + assert(channelId < Configuration::getInstance().memSpec->numberOfChannels); // Phases initiated by the intiator side from arbiter's point of view (devices performing memory requests to the arbiter) if (phase == BEGIN_REQ) diff --git a/DRAMSys/library/src/simulation/DRAMSys.cpp b/DRAMSys/library/src/simulation/DRAMSys.cpp index 7a9d8b8f..5991560b 100644 --- a/DRAMSys/library/src/simulation/DRAMSys.cpp +++ b/DRAMSys/library/src/simulation/DRAMSys.cpp @@ -192,7 +192,7 @@ void DRAMSys::instantiateModules(const std::string &pathToResources, // Create controllers and DRAMs std::string memoryType = Configuration::getInstance().memSpec->memoryType; - for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfChannels; i++) { std::string str = "controller" + std::to_string(i); @@ -251,7 +251,7 @@ void DRAMSys::bindSockets() if (Configuration::getInstance().checkTLM2Protocol) { - for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfChannels; i++) { arbiter->iSocket.bind(controllersTlmCheckers[i]->target_socket); controllersTlmCheckers[i]->initiator_socket.bind(controllers[i]->tSocket); @@ -260,7 +260,7 @@ void DRAMSys::bindSockets() } else { - for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfChannels; i++) { arbiter->iSocket.bind(controllers[i]->tSocket); controllers[i]->iSocket.bind(drams[i]->tSocket); diff --git a/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp b/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp index b55180a5..c799d8c1 100644 --- a/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp +++ b/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp @@ -91,7 +91,7 @@ void DRAMSysRecordable::setupTlmRecorders(const std::string &traceName, const std::string &pathToResources) { // Create TLM Recorders, one per channel. - for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfChannels; i++) { std::string sqlScriptURI = pathToResources + std::string("scripts/createTraceDB.sql"); @@ -140,7 +140,7 @@ void DRAMSysRecordable::instantiateModules(const std::string &traceName, // Create controllers and DRAMs std::string memoryType = Configuration::getInstance().memSpec->memoryType; - for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfChannels; i++) { std::string str = "controller" + std::to_string(i); @@ -199,7 +199,7 @@ void DRAMSysRecordable::bindSockets() if (Configuration::getInstance().checkTLM2Protocol) { - for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfChannels; i++) { arbiter->iSocket.bind(controllersTlmCheckers[i]->target_socket); controllersTlmCheckers[i]->initiator_socket.bind(controllers[i]->tSocket); @@ -208,7 +208,7 @@ void DRAMSysRecordable::bindSockets() } else { - for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfMemChannels; i++) + for (size_t i = 0; i < Configuration::getInstance().memSpec->numberOfChannels; i++) { arbiter->iSocket.bind(controllers[i]->tSocket); controllers[i]->iSocket.bind(drams[i]->tSocket); diff --git a/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json index efa8ee9e..7cf4004b 100644 --- a/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json +++ b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json @@ -7,6 +7,7 @@ "nbrOfBanks": 16, "nbrOfColumns": 128, "nbrOfRanks": 2, + "nbrOfChannels": 1, "nbrOfRows": 32768, "width": 64 }, diff --git a/DRAMSys/tests/HBM2/configs/simulator/hbm2.json b/DRAMSys/tests/HBM2/configs/simulator/hbm2.json index 9589611f..e6affb0b 100644 --- a/DRAMSys/tests/HBM2/configs/simulator/hbm2.json +++ b/DRAMSys/tests/HBM2/configs/simulator/hbm2.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "hbm2", "SimulationProgressBar": true, diff --git a/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json b/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json index 13d9fef5..08e13043 100644 --- a/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json +++ b/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json @@ -6,8 +6,10 @@ "nbrOfBanks": 8, "nbrOfColumns": 1024, "nbrOfRanks": 2, + "nbrOfChannels": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "nbrOfDevicesOnDIMM": 8 }, "memoryId": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM", "memoryType": "DDR3", @@ -49,6 +51,10 @@ "XPDLL": 13, "XS": 64, "XSDLL": 512, + "ACTPDEN": 1, + "PRPDEN": 1, + "REFPDEN": 1, + "RTRS": 1, "clkMhz": 533 } } diff --git a/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json b/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json index 4e9faadc..99ccdb45 100644 --- a/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json +++ b/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "ddr3", "SimulationProgressBar": true, diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json b/DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json index 11700aaf..adbfd117 100644 --- a/DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json +++ b/DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json @@ -7,8 +7,10 @@ "nbrOfBanks": 16, "nbrOfColumns": 1024, "nbrOfRanks": 1, + "nbrOfChannels": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "nbrOfDevicesOnDIMM": 8 }, "memoryId": "MICRON_4Gb_DDR4-1866_8bit_A", "memoryType": "DDR4", diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json b/DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json index 8e62e680..81b72d43 100644 --- a/DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json +++ b/DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "ddr4", "SimulationProgressBar": true, diff --git a/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json b/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json index 97a8cc3e..223f064d 100644 --- a/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json +++ b/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json @@ -6,6 +6,7 @@ "nbrOfBanks": 8, "nbrOfColumns": 1024, "nbrOfRanks": 1, + "nbrOfChannels": 1, "nbrOfRows": 65536, "width": 16 }, @@ -30,6 +31,8 @@ "RL": 28, "RPAB": 34, "RPPB": 29, + "RCAB": 102, + "RCPB": 97, "RPST": 0, "RRD": 16, "RTP": 12, @@ -40,6 +43,7 @@ "WTR": 16, "XP": 12, "XSR": 460, + "RTRS": 1, "clkMhz": 1600 } } diff --git a/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json b/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json index fd8fe855..0fae8a52 100644 --- a/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json +++ b/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "lpddr4", "SimulationProgressBar": true, From b2b70d3771a412bde69fab0651613824bb894b88 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 16 Jun 2020 11:25:49 +0200 Subject: [PATCH 05/53] ci and test files modified/some old tests deleted --- .gitlab-ci_old.yml | 56 +++++++++++ DRAMSys/tests/DDR3/ci.yml | 83 ---------------- .../am_ddr3_8x1Gbx8_dimm_p1KB_brc.xml | 34 ------- .../DDR3/configs/mcconfigs/fifoStrict.xml | 20 ---- .../tests/DDR3/configs/mcconfigs/fr_fcfs.xml | 20 ---- .../memspecs/MICRON_1Gb_DDR3-1600_8bit_G.xml | 55 ----------- .../simulator/ddr3-protocol_checker.xml | 29 ------ DRAMSys/tests/DDR3/configs/simulator/ddr3.xml | 29 ------ .../tests/DDR3/configs/thermalsim/config.xml | 14 --- .../DDR3/configs/thermalsim/powerInfo.xml | 8 -- .../tests/DDR3/simulations/ddr3-example.xml | 25 ----- .../tests/DDR3/simulations/ddr3-fr_fcfs.xml | 25 ----- .../simulations/ddr3-protocol_checker.xml | 25 ----- DRAMSys/tests/DDR4/ci.yml | 29 ++++++ .../am_ddr4_8x4Gbx8_dimm_p1KB_brc.json | 0 .../configs/mcconfigs/fr_fcfs.json | 0 .../memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json | 6 +- .../configs/simulator/ddr4.json | 4 +- .../configs/thermalsim/config.json | 0 .../configs/thermalsim/core.flp | 0 .../{DDR3 => DDR4}/configs/thermalsim/mem.flp | 0 .../configs/thermalsim/powerInfo.json | 0 .../configs/thermalsim/stack.stk | 0 .../{DDR3 => DDR4}/scripts/createTraceDB.sql | 0 .../simulations/ddr4-example.json | 0 DRAMSys/tests/HBM2/ci.yml | 29 ++++++ DRAMSys/tests/HBM2/configs/memspecs/HBM2.json | 6 +- .../tests/HBM2/configs/simulator/hbm2.json | 4 +- DRAMSys/tests/WIDEIO/ci.yml | 40 -------- .../configs/amconfigs/am_wideio_brc.xml | 8 -- .../configs/amconfigs/am_wideio_rbc.xml | 8 -- .../WIDEIO/configs/mcconfigs/fifoStrict.xml | 50 ---------- .../tests/WIDEIO/configs/memspecs/wideio.xml | 61 ------------ .../tests/WIDEIO/configs/simulator/wideio.xml | 24 ----- .../WIDEIO/configs/thermalsim/config.xml | 14 --- .../tests/WIDEIO/configs/thermalsim/core.flp | 45 --------- .../tests/WIDEIO/configs/thermalsim/mem.flp | 16 ---- .../WIDEIO/configs/thermalsim/powerInfo.xml | 8 -- .../tests/WIDEIO/configs/thermalsim/stack.stk | 49 ---------- .../tests/WIDEIO/scripts/createTraceDB.sql | 94 ------------------- .../WIDEIO/simulations/wideio-example.xml | 24 ----- DRAMSys/tests/WIDEIO/traces/generator.pl | 75 --------------- DRAMSys/tests/ddr3_multirank/ci.yml | 29 ++++++ .../MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json | 11 ++- .../configs/simulator/ddr3.json | 2 - .../simulations/ddr3-example.json | 2 +- ..._ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json | 51 ---------- .../configs/mcconfigs/fr_fcfs_grp.json | 12 --- .../MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json | 62 ------------ .../configs/simulator/ddr3.json | 19 ---- .../configs/thermalsim/core.flp | 45 --------- .../configs/thermalsim/mem.flp | 16 ---- .../configs/thermalsim/stack.stk | 49 ---------- .../scripts/createTraceDB.sql | 94 ------------------- .../simulations/ddr3-example.json | 16 ---- .../configs/thermalsim/config.json | 15 --- .../configs/thermalsim/core.flp | 45 --------- .../configs/thermalsim/mem.flp | 16 ---- .../configs/thermalsim/powerInfo.json | 20 ---- .../configs/thermalsim/stack.stk | 49 ---------- .../ddr4_bankgroups/scripts/createTraceDB.sql | 94 ------------------- DRAMSys/tests/lpddr4/ci.yml | 28 ++++++ .../memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json | 10 +- .../lpddr4/configs/simulator/lpddr4.json | 4 +- 64 files changed, 200 insertions(+), 1506 deletions(-) create mode 100644 .gitlab-ci_old.yml delete mode 100644 DRAMSys/tests/DDR3/ci.yml delete mode 100644 DRAMSys/tests/DDR3/configs/amconfigs/am_ddr3_8x1Gbx8_dimm_p1KB_brc.xml delete mode 100644 DRAMSys/tests/DDR3/configs/mcconfigs/fifoStrict.xml delete mode 100644 DRAMSys/tests/DDR3/configs/mcconfigs/fr_fcfs.xml delete mode 100644 DRAMSys/tests/DDR3/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.xml delete mode 100644 DRAMSys/tests/DDR3/configs/simulator/ddr3-protocol_checker.xml delete mode 100644 DRAMSys/tests/DDR3/configs/simulator/ddr3.xml delete mode 100644 DRAMSys/tests/DDR3/configs/thermalsim/config.xml delete mode 100644 DRAMSys/tests/DDR3/configs/thermalsim/powerInfo.xml delete mode 100644 DRAMSys/tests/DDR3/simulations/ddr3-example.xml delete mode 100644 DRAMSys/tests/DDR3/simulations/ddr3-fr_fcfs.xml delete mode 100644 DRAMSys/tests/DDR3/simulations/ddr3-protocol_checker.xml create mode 100644 DRAMSys/tests/DDR4/ci.yml rename DRAMSys/tests/{ddr4_bankgroups => DDR4}/configs/amconfigs/am_ddr4_8x4Gbx8_dimm_p1KB_brc.json (100%) rename DRAMSys/tests/{ddr4_bankgroups => DDR4}/configs/mcconfigs/fr_fcfs.json (100%) rename DRAMSys/tests/{ddr4_bankgroups => DDR4}/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json (94%) rename DRAMSys/tests/{ddr4_bankgroups => DDR4}/configs/simulator/ddr4.json (87%) rename DRAMSys/tests/{ddr3_parametersAtMemspec => DDR4}/configs/thermalsim/config.json (100%) rename DRAMSys/tests/{DDR3 => DDR4}/configs/thermalsim/core.flp (100%) rename DRAMSys/tests/{DDR3 => DDR4}/configs/thermalsim/mem.flp (100%) rename DRAMSys/tests/{ddr3_parametersAtMemspec => DDR4}/configs/thermalsim/powerInfo.json (100%) rename DRAMSys/tests/{DDR3 => DDR4}/configs/thermalsim/stack.stk (100%) rename DRAMSys/tests/{DDR3 => DDR4}/scripts/createTraceDB.sql (100%) rename DRAMSys/tests/{ddr4_bankgroups => DDR4}/simulations/ddr4-example.json (100%) create mode 100644 DRAMSys/tests/HBM2/ci.yml delete mode 100644 DRAMSys/tests/WIDEIO/ci.yml delete mode 100755 DRAMSys/tests/WIDEIO/configs/amconfigs/am_wideio_brc.xml delete mode 100755 DRAMSys/tests/WIDEIO/configs/amconfigs/am_wideio_rbc.xml delete mode 100644 DRAMSys/tests/WIDEIO/configs/mcconfigs/fifoStrict.xml delete mode 100644 DRAMSys/tests/WIDEIO/configs/memspecs/wideio.xml delete mode 100644 DRAMSys/tests/WIDEIO/configs/simulator/wideio.xml delete mode 100644 DRAMSys/tests/WIDEIO/configs/thermalsim/config.xml delete mode 100755 DRAMSys/tests/WIDEIO/configs/thermalsim/core.flp delete mode 100755 DRAMSys/tests/WIDEIO/configs/thermalsim/mem.flp delete mode 100644 DRAMSys/tests/WIDEIO/configs/thermalsim/powerInfo.xml delete mode 100755 DRAMSys/tests/WIDEIO/configs/thermalsim/stack.stk delete mode 100644 DRAMSys/tests/WIDEIO/scripts/createTraceDB.sql delete mode 100644 DRAMSys/tests/WIDEIO/simulations/wideio-example.xml delete mode 100644 DRAMSys/tests/WIDEIO/traces/generator.pl create mode 100644 DRAMSys/tests/ddr3_multirank/ci.yml delete mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json delete mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/mcconfigs/fr_fcfs_grp.json delete mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json delete mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/configs/simulator/ddr3.json delete mode 100755 DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/core.flp delete mode 100755 DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/mem.flp delete mode 100755 DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/stack.stk delete mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/scripts/createTraceDB.sql delete mode 100644 DRAMSys/tests/ddr3_parametersAtMemspec/simulations/ddr3-example.json delete mode 100644 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/config.json delete mode 100755 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/core.flp delete mode 100755 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/mem.flp delete mode 100644 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/powerInfo.json delete mode 100755 DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/stack.stk delete mode 100644 DRAMSys/tests/ddr4_bankgroups/scripts/createTraceDB.sql create mode 100644 DRAMSys/tests/lpddr4/ci.yml diff --git a/.gitlab-ci_old.yml b/.gitlab-ci_old.yml new file mode 100644 index 00000000..9011e4ab --- /dev/null +++ b/.gitlab-ci_old.yml @@ -0,0 +1,56 @@ +# vim: set ts=4 sw=4 expandtab: +image: gcc + +variables: + GIT_STRATEGY: clone + +stages: + - build + - dramsys-gem5-build + - WIDEIO + - DDR3 + - Coverage + +build: + stage: build + script: + - git submodule sync + - git submodule update --init --recursive + - rm -rf build + - mkdir -p build + - cd build + - cmake ../DRAMSys + - make -j16 + - find . -name "*.o" -type f -delete + - rm -rf ${CI_PROJECT_DIR}/coverage + - mkdir -p ${CI_PROJECT_DIR}/coverage + + cache: + key: build + paths: + - build/ + policy: push + + artifacts: + paths: + - coverage/ + +coverage: + stage: Coverage + coverage: '/Total:\|(\d+\.?\d+\%)/' + script: + # delete all empty files since they produce errors + - find coverage -size 0 -type f -delete + - ls coverage/ -lah + - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out + - lcov --list coverage/final.out + + artifacts: + paths: + - coverage/final.out + + +include: + - '/DRAMSys/tests/DDR3/ci.yml' + - '/DRAMSys/tests/WIDEIO/ci.yml' + #- '/DRAMSys/tests/dramsys-gem5/ci.yml' # Should be activated again when a new gitlab runner with right dependencies is used diff --git a/DRAMSys/tests/DDR3/ci.yml b/DRAMSys/tests/DDR3/ci.yml deleted file mode 100644 index a5afa603..00000000 --- a/DRAMSys/tests/DDR3/ci.yml +++ /dev/null @@ -1,83 +0,0 @@ -# Standard DDR3 Test: -example_ddr3: - stage: DDR3 - script: - - export GCOV_PREFIX=$(pwd) - - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - - cd build/simulator - - ./DRAMSys ../../DRAMSys/tests/DDR3/simulations/ddr3-example.xml ../../DRAMSys/tests/DDR3/ - - ls -lah - - ls -lah ../../DRAMSys/tests/DDR3/expected/ - - sqldiff ../../DRAMSys/tests/DDR3/expected/ddr3-example_ddr3_ch0.tdb ddr3-example_ddr3_ch0.tdb - - perl -e 'if(`sqldiff ../../DRAMSys/tests/DDR3/expected/ddr3-example_ddr3_ch0.tdb ddr3-example_ddr3_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' - - cd ../traceAnalyzer - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/ddr3-example_ddr3_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi - # Run Code Coverage - - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out - - cache: - key: build - paths: - - build/ - policy: pull - - artifacts: - paths: - - build/simulator/ddr3-example_ddr3_ch0.tdb - - coverage/${CI_JOB_NAME}.out - expire_in: 2 days - -# Testing Reordering with FR_FCFS Scheduling Algorithm: -fr_fcfs: - stage: DDR3 - script: - - export GCOV_PREFIX=$(pwd) - - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - - cd build/simulator - - ./DRAMSys ../../DRAMSys/tests/DDR3/simulations/ddr3-fr_fcfs.xml ../../DRAMSys/tests/DDR3/ - - ls -lah - - ls -lah ../../DRAMSys/tests/DDR3/expected/ - - sqldiff ../../DRAMSys/tests/DDR3/expected/ddr3-fr_fcfs_ddr3_ch0.tdb ddr3-fr_fcfs_ddr3_ch0.tdb - - perl -e 'if(`sqldiff ../../DRAMSys/tests/DDR3/expected/ddr3-fr_fcfs_ddr3_ch0.tdb ddr3-fr_fcfs_ddr3_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' - - cd ../traceAnalyzer - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/ddr3-fr_fcfs_ddr3_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi - # Run Code Coverage - - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out - - cache: - key: build - paths: - - build/ - policy: pull - - allow_failure: true # TODO should be removed after first tests - - artifacts: - paths: - - build/simulator/ddr3-fr_fcfs_ddr3_ch0.tdb - - coverage/${CI_JOB_NAME}.out - expire_in: 2 days - -# Testing with TLM Protocol Checker -protocol_checker: - stage: DDR3 - script: - - export GCOV_PREFIX=$(pwd) - - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - - cd build/simulator - - ./DRAMSys ../../DRAMSys/tests/DDR3/simulations/ddr3-protocol_checker.xml ../../DRAMSys/tests/DDR3/ > output.txt - - echo "TODO" - - ls -lah - # Run Code Coverage - - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out - - cache: - key: build - paths: - - build/ - policy: pull - - artifacts: - paths: - - coverage/${CI_JOB_NAME}.out - expire_in: 2 days diff --git a/DRAMSys/tests/DDR3/configs/amconfigs/am_ddr3_8x1Gbx8_dimm_p1KB_brc.xml b/DRAMSys/tests/DDR3/configs/amconfigs/am_ddr3_8x1Gbx8_dimm_p1KB_brc.xml deleted file mode 100644 index b2c3af48..00000000 --- a/DRAMSys/tests/DDR3/configs/amconfigs/am_ddr3_8x1Gbx8_dimm_p1KB_brc.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - 0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 18 - 19 - 20 - 21 - 22 - 23 - 24 - 25 - 26 - 27 - 28 - 29 - - \ No newline at end of file diff --git a/DRAMSys/tests/DDR3/configs/mcconfigs/fifoStrict.xml b/DRAMSys/tests/DDR3/configs/mcconfigs/fifoStrict.xml deleted file mode 100644 index 44bf294e..00000000 --- a/DRAMSys/tests/DDR3/configs/mcconfigs/fifoStrict.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/DDR3/configs/mcconfigs/fr_fcfs.xml b/DRAMSys/tests/DDR3/configs/mcconfigs/fr_fcfs.xml deleted file mode 100644 index 7240485d..00000000 --- a/DRAMSys/tests/DDR3/configs/mcconfigs/fr_fcfs.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/DDR3/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.xml b/DRAMSys/tests/DDR3/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.xml deleted file mode 100644 index 052f6773..00000000 --- a/DRAMSys/tests/DDR3/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/DDR3/configs/simulator/ddr3-protocol_checker.xml b/DRAMSys/tests/DDR3/configs/simulator/ddr3-protocol_checker.xml deleted file mode 100644 index 3efbabe7..00000000 --- a/DRAMSys/tests/DDR3/configs/simulator/ddr3-protocol_checker.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/DDR3/configs/simulator/ddr3.xml b/DRAMSys/tests/DDR3/configs/simulator/ddr3.xml deleted file mode 100644 index 1613737f..00000000 --- a/DRAMSys/tests/DDR3/configs/simulator/ddr3.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/DDR3/configs/thermalsim/config.xml b/DRAMSys/tests/DDR3/configs/thermalsim/config.xml deleted file mode 100644 index 4d32315e..00000000 --- a/DRAMSys/tests/DDR3/configs/thermalsim/config.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/DDR3/configs/thermalsim/powerInfo.xml b/DRAMSys/tests/DDR3/configs/thermalsim/powerInfo.xml deleted file mode 100644 index 192cb4ea..00000000 --- a/DRAMSys/tests/DDR3/configs/thermalsim/powerInfo.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/DRAMSys/tests/DDR3/simulations/ddr3-example.xml b/DRAMSys/tests/DDR3/simulations/ddr3-example.xml deleted file mode 100644 index c6140385..00000000 --- a/DRAMSys/tests/DDR3/simulations/ddr3-example.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - ddr3_example.stl - - diff --git a/DRAMSys/tests/DDR3/simulations/ddr3-fr_fcfs.xml b/DRAMSys/tests/DDR3/simulations/ddr3-fr_fcfs.xml deleted file mode 100644 index a432321b..00000000 --- a/DRAMSys/tests/DDR3/simulations/ddr3-fr_fcfs.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - ddr3_example.stl - - diff --git a/DRAMSys/tests/DDR3/simulations/ddr3-protocol_checker.xml b/DRAMSys/tests/DDR3/simulations/ddr3-protocol_checker.xml deleted file mode 100644 index ececf822..00000000 --- a/DRAMSys/tests/DDR3/simulations/ddr3-protocol_checker.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - ddr3_example.stl - - diff --git a/DRAMSys/tests/DDR4/ci.yml b/DRAMSys/tests/DDR4/ci.yml new file mode 100644 index 00000000..d6226908 --- /dev/null +++ b/DRAMSys/tests/DDR4/ci.yml @@ -0,0 +1,29 @@ +# DDR4 with 4 bank groups, flexible rankwise refresh and FrFcfs scheduler: +example_ddr4: + stage: DDR4 + script: + - export GCOV_PREFIX=$(pwd) + - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') + - cd build/simulator + - ./DRAMSys ../../DRAMSys/tests/DDR4/simulations/ddr4-example.json ../../DRAMSys/tests/DDR4/ + - ls -lah + - ls -lah ../../DRAMSys/tests/DDR4/expected/ + - sqldiff ../../DRAMSys/tests/DDR4/expected/ddr4-bankgrp_ddr4_ch0.tdb ddr4-bankgrp_ddr4_ch0.tdb + - perl -e 'if(`sqldiff ../../DRAMSys/tests/DDR4/expected/ddr4-bankgrp_ddr4_ch0.tdb ddr4-bankgrp_ddr4_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' + - cd ../traceAnalyzer + - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/ddr4-bankgrp_ddr4_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi + # Run Code Coverage + - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out + + cache: + key: build + paths: + - build/ + policy: pull + + artifacts: + paths: + - build/simulator/ddr4-bankgrp_ddr4_ch0.tdb + - coverage/${CI_JOB_NAME}.out + expire_in: 2 days + diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/amconfigs/am_ddr4_8x4Gbx8_dimm_p1KB_brc.json b/DRAMSys/tests/DDR4/configs/amconfigs/am_ddr4_8x4Gbx8_dimm_p1KB_brc.json similarity index 100% rename from DRAMSys/tests/ddr4_bankgroups/configs/amconfigs/am_ddr4_8x4Gbx8_dimm_p1KB_brc.json rename to DRAMSys/tests/DDR4/configs/amconfigs/am_ddr4_8x4Gbx8_dimm_p1KB_brc.json diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/mcconfigs/fr_fcfs.json b/DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json similarity index 100% rename from DRAMSys/tests/ddr4_bankgroups/configs/mcconfigs/fr_fcfs.json rename to DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json b/DRAMSys/tests/DDR4/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json similarity index 94% rename from DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json rename to DRAMSys/tests/DDR4/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json index 11700aaf..abad7eab 100644 --- a/DRAMSys/tests/ddr4_bankgroups/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json +++ b/DRAMSys/tests/DDR4/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json @@ -8,7 +8,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_4Gb_DDR4-1866_8bit_A", "memoryType": "DDR4", @@ -63,4 +65,4 @@ "clkMhz": 933 } } -} \ No newline at end of file +} diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json b/DRAMSys/tests/DDR4/configs/simulator/ddr4.json similarity index 87% rename from DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json rename to DRAMSys/tests/DDR4/configs/simulator/ddr4.json index 8e62e680..05cd86e2 100644 --- a/DRAMSys/tests/ddr4_bankgroups/configs/simulator/ddr4.json +++ b/DRAMSys/tests/DDR4/configs/simulator/ddr4.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "ddr4", "SimulationProgressBar": true, @@ -18,4 +16,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/config.json b/DRAMSys/tests/DDR4/configs/thermalsim/config.json similarity index 100% rename from DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/config.json rename to DRAMSys/tests/DDR4/configs/thermalsim/config.json diff --git a/DRAMSys/tests/DDR3/configs/thermalsim/core.flp b/DRAMSys/tests/DDR4/configs/thermalsim/core.flp similarity index 100% rename from DRAMSys/tests/DDR3/configs/thermalsim/core.flp rename to DRAMSys/tests/DDR4/configs/thermalsim/core.flp diff --git a/DRAMSys/tests/DDR3/configs/thermalsim/mem.flp b/DRAMSys/tests/DDR4/configs/thermalsim/mem.flp similarity index 100% rename from DRAMSys/tests/DDR3/configs/thermalsim/mem.flp rename to DRAMSys/tests/DDR4/configs/thermalsim/mem.flp diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/powerInfo.json b/DRAMSys/tests/DDR4/configs/thermalsim/powerInfo.json similarity index 100% rename from DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/powerInfo.json rename to DRAMSys/tests/DDR4/configs/thermalsim/powerInfo.json diff --git a/DRAMSys/tests/DDR3/configs/thermalsim/stack.stk b/DRAMSys/tests/DDR4/configs/thermalsim/stack.stk similarity index 100% rename from DRAMSys/tests/DDR3/configs/thermalsim/stack.stk rename to DRAMSys/tests/DDR4/configs/thermalsim/stack.stk diff --git a/DRAMSys/tests/DDR3/scripts/createTraceDB.sql b/DRAMSys/tests/DDR4/scripts/createTraceDB.sql similarity index 100% rename from DRAMSys/tests/DDR3/scripts/createTraceDB.sql rename to DRAMSys/tests/DDR4/scripts/createTraceDB.sql diff --git a/DRAMSys/tests/ddr4_bankgroups/simulations/ddr4-example.json b/DRAMSys/tests/DDR4/simulations/ddr4-example.json similarity index 100% rename from DRAMSys/tests/ddr4_bankgroups/simulations/ddr4-example.json rename to DRAMSys/tests/DDR4/simulations/ddr4-example.json diff --git a/DRAMSys/tests/HBM2/ci.yml b/DRAMSys/tests/HBM2/ci.yml new file mode 100644 index 00000000..fb9474a1 --- /dev/null +++ b/DRAMSys/tests/HBM2/ci.yml @@ -0,0 +1,29 @@ +# HBM2 test with 4 bank groups, 2 trace players, fifo strict scheduler and closed pg policy.: +example_HBM2: + stage: HBM2 + script: + - export GCOV_PREFIX=$(pwd) + - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') + - cd build/simulator + - ./DRAMSys ../../DRAMSys/tests/HBM2/simulations/hbm2-example.json ../../DRAMSys/tests/HBM2/ + - ls -lah + - ls -lah ../../DRAMSys/tests/HBM2/expected/ + - sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch0.tdb hbm2-example_hbm2_ch0.tdb + - perl -e 'if(`sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch0.tdb hbm2-example_hbm2_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' + - cd ../traceAnalyzer + - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/hbm2-example_hbm2_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi + # Run Code Coverage + - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out + + cache: + key: build + paths: + - build/ + policy: pull + + artifacts: + paths: + - build/simulator/hbm2-example_hbm2_ch0.tdb + - coverage/${CI_JOB_NAME}.out + expire_in: 2 days + diff --git a/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json index efa8ee9e..b5985d10 100644 --- a/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json +++ b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json @@ -8,7 +8,9 @@ "nbrOfColumns": 128, "nbrOfRanks": 2, "nbrOfRows": 32768, - "width": 64 + "width": 64, + "NumberOfDevicesOnDIMM": 1, + "NumberOfMemChannels": 1 }, "memoryId": "https://www.computerbase.de/2019-05/amd-memory-tweak-vram-oc/#bilder", "memoryType": "HBM2", @@ -43,4 +45,4 @@ "clkMhz": 1000 } } -} \ No newline at end of file +} diff --git a/DRAMSys/tests/HBM2/configs/simulator/hbm2.json b/DRAMSys/tests/HBM2/configs/simulator/hbm2.json index 9589611f..608aec41 100644 --- a/DRAMSys/tests/HBM2/configs/simulator/hbm2.json +++ b/DRAMSys/tests/HBM2/configs/simulator/hbm2.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "hbm2", "SimulationProgressBar": true, @@ -18,4 +16,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/tests/WIDEIO/ci.yml b/DRAMSys/tests/WIDEIO/ci.yml deleted file mode 100644 index e04215e0..00000000 --- a/DRAMSys/tests/WIDEIO/ci.yml +++ /dev/null @@ -1,40 +0,0 @@ -# vim: set ts=4 sw=4 expandtab: -example_wideio: - stage: WIDEIO - script: - - export GCOV_PREFIX=$(pwd) - - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - # Generate specific traces for WIDEIO: - - cd DRAMSys/tests/WIDEIO/traces/ - - perl generator.pl - - cd - - # Run DRAMSys - - cd build/simulator - - ./DRAMSys ../../DRAMSys/tests/WIDEIO/simulations/wideio-example.xml ../../DRAMSys/tests/WIDEIO/ - - ls - # Run Traceanalyzer testing scripts: - - cd ../traceAnalyzer - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/wideio-example_wideio_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/wideio-example_wideio_ch1.tdb | if ! grep "failed"; then exit 0; else exit 1; fi - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/wideio-example_wideio_ch2.tdb | if ! grep "failed"; then exit 0; else exit 1; fi - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/wideio-example_wideio_ch3.tdb | if ! grep "failed"; then exit 0; else exit 1; fi - # Run Code Coverage - - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out - - cache: - key: build - paths: - - build/ - policy: pull - - allow_failure: true # TODO: should be removed once the problems are fixed! - - artifacts: - paths: - - build/simulator/wideio-example_wideio_ch0.tdb - - build/simulator/wideio-example_wideio_ch1.tdb - - build/simulator/wideio-example_wideio_ch2.tdb - - build/simulator/wideio-example_wideio_ch3.tdb - - coverage/${CI_JOB_NAME}.out - expire_in: 2 days - diff --git a/DRAMSys/tests/WIDEIO/configs/amconfigs/am_wideio_brc.xml b/DRAMSys/tests/WIDEIO/configs/amconfigs/am_wideio_brc.xml deleted file mode 100755 index c6a33e71..00000000 --- a/DRAMSys/tests/WIDEIO/configs/amconfigs/am_wideio_brc.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/DRAMSys/tests/WIDEIO/configs/amconfigs/am_wideio_rbc.xml b/DRAMSys/tests/WIDEIO/configs/amconfigs/am_wideio_rbc.xml deleted file mode 100755 index 511a7f0a..00000000 --- a/DRAMSys/tests/WIDEIO/configs/amconfigs/am_wideio_rbc.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/DRAMSys/tests/WIDEIO/configs/mcconfigs/fifoStrict.xml b/DRAMSys/tests/WIDEIO/configs/mcconfigs/fifoStrict.xml deleted file mode 100644 index ed869b57..00000000 --- a/DRAMSys/tests/WIDEIO/configs/mcconfigs/fifoStrict.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/WIDEIO/configs/memspecs/wideio.xml b/DRAMSys/tests/WIDEIO/configs/memspecs/wideio.xml deleted file mode 100644 index fbe252d6..00000000 --- a/DRAMSys/tests/WIDEIO/configs/memspecs/wideio.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/WIDEIO/configs/simulator/wideio.xml b/DRAMSys/tests/WIDEIO/configs/simulator/wideio.xml deleted file mode 100644 index acd95599..00000000 --- a/DRAMSys/tests/WIDEIO/configs/simulator/wideio.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/WIDEIO/configs/thermalsim/config.xml b/DRAMSys/tests/WIDEIO/configs/thermalsim/config.xml deleted file mode 100644 index 4d32315e..00000000 --- a/DRAMSys/tests/WIDEIO/configs/thermalsim/config.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/DRAMSys/tests/WIDEIO/configs/thermalsim/core.flp b/DRAMSys/tests/WIDEIO/configs/thermalsim/core.flp deleted file mode 100755 index e85e6801..00000000 --- a/DRAMSys/tests/WIDEIO/configs/thermalsim/core.flp +++ /dev/null @@ -1,45 +0,0 @@ -CPUs : - - position 0, 0 ; - dimension 2750, 4300 ; - -GPU : - - position 3350, 0 ; - dimension 2750, 4000 ; - -BASEBAND1 : - - position 4250, 4000 ; - dimension 1850, 3300 ; - -BASEBAND2 : - - position 3350, 7300 ; - dimension 2750, 3300 ; - -LLCACHE : - - position 0, 4300 ; - dimension 1900, 3000 ; - -DRAMCTRL1 : - - position 1900, 4300 ; - dimension 850, 3000 ; - -DRAMCTRL2 : - - position 3350, 4000 ; - dimension 900, 3300 ; - -TSVS : - - position 2750, 2300 ; - dimension 600, 6000 ; - -ACELLERATORS : - - position 0, 7300 ; - dimension 2750, 3300 ; - diff --git a/DRAMSys/tests/WIDEIO/configs/thermalsim/mem.flp b/DRAMSys/tests/WIDEIO/configs/thermalsim/mem.flp deleted file mode 100755 index 29d02254..00000000 --- a/DRAMSys/tests/WIDEIO/configs/thermalsim/mem.flp +++ /dev/null @@ -1,16 +0,0 @@ -channel0 : - position 150, 100 ; - dimension 2600, 5200 ; - -channel1 : - position 3350, 100 ; - dimension 2600, 5200 ; - -channel2 : - position 150, 5300 ; - dimension 2600, 5200 ; - -channel3 : - position 3350, 5300 ; - dimension 2600, 5200 ; - diff --git a/DRAMSys/tests/WIDEIO/configs/thermalsim/powerInfo.xml b/DRAMSys/tests/WIDEIO/configs/thermalsim/powerInfo.xml deleted file mode 100644 index 192cb4ea..00000000 --- a/DRAMSys/tests/WIDEIO/configs/thermalsim/powerInfo.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/DRAMSys/tests/WIDEIO/configs/thermalsim/stack.stk b/DRAMSys/tests/WIDEIO/configs/thermalsim/stack.stk deleted file mode 100755 index ec74f020..00000000 --- a/DRAMSys/tests/WIDEIO/configs/thermalsim/stack.stk +++ /dev/null @@ -1,49 +0,0 @@ -material SILICON : - thermal conductivity 1.30e-4 ; - volumetric heat capacity 1.628e-12 ; - -material BEOL : - thermal conductivity 2.25e-6 ; - volumetric heat capacity 2.175e-12 ; - -material COPPER : - thermal conductivity 4.01e-04 ; - volumetric heat capacity 3.37e-12 ; - -top heat sink : - //sink height 1e03, area 100e06, material COPPER ; - //spreader height 0.5e03, area 70e06, material SILICON ; - heat transfer coefficient 1.3e-09 ; - temperature 318.15 ; -dimensions : - chip length 6100, width 10600 ; - cell length 100, width 100 ; - - -layer PCB : - height 10 ; - material BEOL ; - -die DRAM : - layer 58.5 SILICON ; - source 2 SILICON ; - layer 1.5 BEOL ; - layer 58.5 SILICON ; - - -stack: - die DRAM_DIE DRAM floorplan "./mem.flp" ; - layer CONN_TO_PCB PCB ; - -solver: - transient step 0.01, slot 0.05 ; - initial temperature 300.0 ; - -output: - Tflpel(DRAM_DIE.channel0 , "temp_flp_element_ch0.txt" , average , slot ); - Tflpel(DRAM_DIE.channel1 , "temp_flp_element_ch1.txt" , average , slot ); - Tflpel(DRAM_DIE.channel2 , "temp_flp_element_ch2.txt" , average , slot ); - Tflpel(DRAM_DIE.channel3 , "temp_flp_element_ch3.txt" , average , slot ); - Tmap (DRAM_DIE, "output1.txt", slot) ; - Pmap (DRAM_DIE, "output2.txt", slot) ; - diff --git a/DRAMSys/tests/WIDEIO/scripts/createTraceDB.sql b/DRAMSys/tests/WIDEIO/scripts/createTraceDB.sql deleted file mode 100644 index 7a127fac..00000000 --- a/DRAMSys/tests/WIDEIO/scripts/createTraceDB.sql +++ /dev/null @@ -1,94 +0,0 @@ -DROP TABLE IF EXISTS Phases; -DROP TABLE IF EXISTS GeneralInfo; -DROP TABLE IF EXISTS CommandLengths; -DROP TABLE IF EXISTS Comments; -DROP TABLE IF EXISTS ranges; -DROP TABLE IF EXISTS Transactions; -DROP TABLE IF EXISTS DebugMessages; -DROP TABLE IF EXISTS Power; - -CREATE TABLE Phases( - ID INTEGER PRIMARY KEY, - PhaseName TEXT, - PhaseBegin INTEGER, - PhaseEnd INTEGER, - Transact INTEGER -); - -CREATE TABLE GeneralInfo( - NumberOfTransactions INTEGER, - TraceEnd INTEGER, - NumberOfRanks INTEGER, - NumberOfBanks INTEGER, - clk INTEGER, - UnitOfTime TEXT, - MCconfig TEXT, - Memspec TEXT, - Traces TEXT, - WindowSize INTEGER, - FlexibleRefresh INTEGER, - MaxRefBurst INTEGER, - ControllerThread INTEGER -); - -CREATE TABLE CommandLengths( - ACT INTEGER, - PRE INTEGER, - PREA INTEGER, - RD INTEGER, - RDA INTEGER, - WR INTEGER, - WRA INTEGER, - REFA INTEGER, - REFB INTEGER, - PDEA INTEGER, - PDXA INTEGER, - PDEP INTEGER, - PDXP INTEGER, - SREFEN INTEGER, - SREFEX INTEGER -); - -CREATE TABLE Power( - time DOUBLE, - AveragePower DOUBLE -); - - -CREATE TABLE Comments( - Time INTEGER, - Text TEXT -); - -CREATE TABLE DebugMessages( - Time INTEGER, - Message TEXT -); - --- use SQLITE R* TREE Module to make queries on timespans effecient (see http://www.sqlite.org/rtree.html) -CREATE VIRTUAL TABLE ranges USING rtree( - id, - begin, end -); - -CREATE TABLE Transactions( - ID INTEGER, - Range INTEGER, - Address INTEGER, - Burstlength INTEGER, - TThread INTEGER, - TChannel INTEGER, - TRank INTEGER, - TBankgroup INTEGER, - TBank INTEGER, - TRow INTEGER, - TColumn INTEGER, - DataStrobeBegin INTEGER, - DataStrobeEnd INTEGER, - TimeOfGeneration INTEGER, - Command TEXT - ); - -CREATE INDEX ranges_index ON Transactions(Range); -CREATE INDEX "phasesTransactions" ON "Phases" ("Transact" ASC); -CREATE INDEX "messageTimes" ON "DebugMessages" ("Time" ASC); diff --git a/DRAMSys/tests/WIDEIO/simulations/wideio-example.xml b/DRAMSys/tests/WIDEIO/simulations/wideio-example.xml deleted file mode 100644 index fea1f568..00000000 --- a/DRAMSys/tests/WIDEIO/simulations/wideio-example.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - wideio.stl - - diff --git a/DRAMSys/tests/WIDEIO/traces/generator.pl b/DRAMSys/tests/WIDEIO/traces/generator.pl deleted file mode 100644 index 173a0248..00000000 --- a/DRAMSys/tests/WIDEIO/traces/generator.pl +++ /dev/null @@ -1,75 +0,0 @@ -#!/usr/bin/perl -w -use warnings; -use strict; - -# Width: 128 bit -# -# Mapping: -# 28 | 27 26 25 24 | 23 22 21 20 | 19 18 17 16 | 15 14 13 12 | 11 10 9 8 | 7 6 5 4 | 3 2 1 0 -# H | H B B B | R R R R | R R R R | R R R R | R C C C | C C C C | Y Y Y Y - - -open(OUT, "> wideio.stl"); - -my $length = 100000; -my $size = 0x10; -my $channelOffset = 0x8000000; -my $state = 0; -# state 0: reads only linear -# state 1: reads only random -# state 2: read and writes linear - -for(my $i=0; $i < $length; $i += 4) -{ - my $r = 0; - - if($state == 0) - { - print OUT ($i+0).": read ".sprintf("0x%x",($size*$i)+0*$channelOffset)."\n"; - print OUT ($i+1).": read ".sprintf("0x%x",($size*$i)+1*$channelOffset)."\n"; - print OUT ($i+2).": read ".sprintf("0x%x",($size*$i)+2*$channelOffset)."\n"; - print OUT ($i+3).": read ".sprintf("0x%x",($size*$i)+3*$channelOffset)."\n"; - } - elsif($state == 1) - { - $r = int(rand($channelOffset)); - print OUT ($i+0).": read ".sprintf("0x%x",($size*$r)+0*$channelOffset)."\n"; - $r = int(rand($channelOffset)); - print OUT ($i+1).": read ".sprintf("0x%x",($size*$r)+1*$channelOffset)."\n"; - $r = int(rand($channelOffset)); - print OUT ($i+2).": read ".sprintf("0x%x",($size*$r)+2*$channelOffset)."\n"; - $r = int(rand($channelOffset)); - print OUT ($i+3).": read ".sprintf("0x%x",($size*$r)+3*$channelOffset)."\n"; - } - elsif($state == 2) - { - my $rw = int(rand(2))%2; - if($rw == 0) - { - print OUT "$i: read ".sprintf("0x%x",($size*$i)+0*$channelOffset)."\n"; - print OUT "$i: read ".sprintf("0x%x",($size*$i)+1*$channelOffset)."\n"; - print OUT "$i: read ".sprintf("0x%x",($size*$i)+2*$channelOffset)."\n"; - print OUT "$i: read ".sprintf("0x%x",($size*$i)+3*$channelOffset)."\n"; - } - else - { - print OUT "$i: write ".sprintf("0x%x",($size*$i)+0*$channelOffset)."\n"; - print OUT "$i: write ".sprintf("0x%x",($size*$i)+1*$channelOffset)."\n"; - print OUT "$i: write ".sprintf("0x%x",($size*$i)+2*$channelOffset)."\n"; - print OUT "$i: write ".sprintf("0x%x",($size*$i)+3*$channelOffset)."\n"; - } - } - else - { - print "Error generating traces (".$state.")"; - exit(-1); - } - - if(($i != 0) && (($i % 1000) == 0)) - { - # GOTO next state every 1000st request: - $state = ($state + 1) % 3; - } -} - -close(OUT); diff --git a/DRAMSys/tests/ddr3_multirank/ci.yml b/DRAMSys/tests/ddr3_multirank/ci.yml new file mode 100644 index 00000000..da90393a --- /dev/null +++ b/DRAMSys/tests/ddr3_multirank/ci.yml @@ -0,0 +1,29 @@ +# DDR3 Dual Rank Test with Staggered Power Down Policy and Scheduler FrFcfsGrp +example_ddr3: + stage: DDR3 + script: + - export GCOV_PREFIX=$(pwd) + - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') + - cd build/simulator + - ./DRAMSys ../../DRAMSys/tests/ddr3_multirank/ddr3-example.json ../../DRAMSys/tests/ddr3_multirank/ + - ls -lah + - ls -lah ../../DRAMSys/tests/ddr3_multirank/expected/ + - sqldiff ../../DRAMSys/tests/ddr3_multirank/expected/ddr3-dual-rank_ddr3_ch0.tdb ddr3-dual-rank_ddr3_ch0.tdb + - perl -e 'if(`sqldiff ../../DRAMSys/tests/ddr3_multirank/expected/ddr3-dual-rank_ddr3_ch0.tdb ddr3-dual-rank_ddr3_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' + - cd ../traceAnalyzer + - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/ddr3_multirank_ddr3_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi + # Run Code Coverage + - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out + + cache: + key: build + paths: + - build/ + policy: pull + + artifacts: + paths: + - build/simulator/ddr3_multirank_ddr3_ch0.tdb + - coverage/${CI_JOB_NAME}.out + expire_in: 2 days + diff --git a/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json b/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json index 13d9fef5..d842bda2 100644 --- a/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json +++ b/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 2, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM", "memoryType": "DDR3", @@ -49,7 +51,12 @@ "XPDLL": 13, "XS": 64, "XSDLL": 512, - "clkMhz": 533 + "clkMhz": 533, + + "ACTPDEN": 1, + "PRPDEN": 1, + "REFPDEN": 1, + "RTRS": 1 } } } diff --git a/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json b/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json index 4e9faadc..99ccdb45 100644 --- a/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json +++ b/DRAMSys/tests/ddr3_multirank/configs/simulator/ddr3.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "ddr3", "SimulationProgressBar": true, diff --git a/DRAMSys/tests/ddr3_multirank/simulations/ddr3-example.json b/DRAMSys/tests/ddr3_multirank/simulations/ddr3-example.json index e3d4a4c3..b924da62 100644 --- a/DRAMSys/tests/ddr3_multirank/simulations/ddr3-example.json +++ b/DRAMSys/tests/ddr3_multirank/simulations/ddr3-example.json @@ -4,7 +4,7 @@ "mcconfig": "fr_fcfs_grp.json", "memspec": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json", "simconfig": "ddr3.json", - "simulationid": "ddr3-example-dual-rank-json", + "simulationid": "ddr3-dual-rank", "thermalconfig": "config.json", "tracesetup": [ { diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json deleted file mode 100644 index c82926c9..00000000 --- a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/amconfigs/am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "CONGEN": { - "XOR":[ - { - "FIRST":13, - "SECOND":16 - } - ], - "BANK_BIT": [ - 13, - 14, - 15 - ], - "BYTE_BIT": [ - 0, - 1, - 2 - ], - "COLUMN_BIT": [ - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12 - ], - "ROW_BIT": [ - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29 - ], - "RANK_BIT": [ - 30 - ] - } -} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/mcconfigs/fr_fcfs_grp.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/mcconfigs/fr_fcfs_grp.json deleted file mode 100644 index 4ac02e30..00000000 --- a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/mcconfigs/fr_fcfs_grp.json +++ /dev/null @@ -1,12 +0,0 @@ -{"mcconfig": - {"PagePolicy": "Open", - "Scheduler": "FrFcfsGrp", - "RequestBufferSize": 8, - "CmdMux": "Oldest", - "RespQueue": "Fifo", - "RefreshPolicy": "Rankwise", - "RefreshMode": 1, - "RefreshMaxPostponed": 0, - "RefreshMaxPulledin": 0, - "PowerDownPolicy": "Staggered", - "PowerDownTimeout": 100}} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json deleted file mode 100644 index d842bda2..00000000 --- a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "memspec": { - "memarchitecturespec": { - "burstLength": 8, - "dataRate": 2, - "nbrOfBanks": 8, - "nbrOfColumns": 1024, - "nbrOfRanks": 2, - "nbrOfRows": 16384, - "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 - }, - "memoryId": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM", - "memoryType": "DDR3", - "mempowerspec": { - "idd0": 720.0, - "idd2n": 400.0, - "idd2p0": 80.0, - "idd2p1": 200.0, - "idd3n": 440.0, - "idd3p0": 240.0, - "idd3p1": 240.0, - "idd4r": 1200.0, - "idd4w": 1200.0, - "idd5": 1760.0, - "idd6": 48.0, - "vdd": 1.5 - }, - "memtimingspec": { - "AL": 0, - "CCD": 4, - "CKE": 3, - "CKESR": 4, - "CL": 7, - "DQSCK": 0, - "FAW": 20, - "RAS": 20, - "RC": 27, - "RCD": 7, - "REFI": 4160, - "RFC": 59, - "RL": 7, - "RP": 7, - "RRD": 4, - "RTP": 4, - "WL": 6, - "WR": 8, - "WTR": 4, - "XP": 4, - "XPDLL": 13, - "XS": 64, - "XSDLL": 512, - "clkMhz": 533, - - "ACTPDEN": 1, - "PRPDEN": 1, - "REFPDEN": 1, - "RTRS": 1 - } - } -} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/simulator/ddr3.json b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/simulator/ddr3.json deleted file mode 100644 index 99ccdb45..00000000 --- a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/simulator/ddr3.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "simconfig": { - "AddressOffset": 0, - "CheckTLM2Protocol": false, - "DatabaseRecording": true, - "Debug": false, - "ECCControllerMode": "Disabled", - "EnableWindowing": false, - "ErrorCSVFile": "", - "ErrorChipSeed": 42, - "PowerAnalysis": false, - "SimulationName": "ddr3", - "SimulationProgressBar": true, - "StoreMode": "NoStorage", - "ThermalSimulation": false, - "UseMalloc": false, - "WindowSize": 1000 - } -} diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/core.flp b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/core.flp deleted file mode 100755 index e85e6801..00000000 --- a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/core.flp +++ /dev/null @@ -1,45 +0,0 @@ -CPUs : - - position 0, 0 ; - dimension 2750, 4300 ; - -GPU : - - position 3350, 0 ; - dimension 2750, 4000 ; - -BASEBAND1 : - - position 4250, 4000 ; - dimension 1850, 3300 ; - -BASEBAND2 : - - position 3350, 7300 ; - dimension 2750, 3300 ; - -LLCACHE : - - position 0, 4300 ; - dimension 1900, 3000 ; - -DRAMCTRL1 : - - position 1900, 4300 ; - dimension 850, 3000 ; - -DRAMCTRL2 : - - position 3350, 4000 ; - dimension 900, 3300 ; - -TSVS : - - position 2750, 2300 ; - dimension 600, 6000 ; - -ACELLERATORS : - - position 0, 7300 ; - dimension 2750, 3300 ; - diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/mem.flp b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/mem.flp deleted file mode 100755 index 29d02254..00000000 --- a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/mem.flp +++ /dev/null @@ -1,16 +0,0 @@ -channel0 : - position 150, 100 ; - dimension 2600, 5200 ; - -channel1 : - position 3350, 100 ; - dimension 2600, 5200 ; - -channel2 : - position 150, 5300 ; - dimension 2600, 5200 ; - -channel3 : - position 3350, 5300 ; - dimension 2600, 5200 ; - diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/stack.stk b/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/stack.stk deleted file mode 100755 index ec74f020..00000000 --- a/DRAMSys/tests/ddr3_parametersAtMemspec/configs/thermalsim/stack.stk +++ /dev/null @@ -1,49 +0,0 @@ -material SILICON : - thermal conductivity 1.30e-4 ; - volumetric heat capacity 1.628e-12 ; - -material BEOL : - thermal conductivity 2.25e-6 ; - volumetric heat capacity 2.175e-12 ; - -material COPPER : - thermal conductivity 4.01e-04 ; - volumetric heat capacity 3.37e-12 ; - -top heat sink : - //sink height 1e03, area 100e06, material COPPER ; - //spreader height 0.5e03, area 70e06, material SILICON ; - heat transfer coefficient 1.3e-09 ; - temperature 318.15 ; -dimensions : - chip length 6100, width 10600 ; - cell length 100, width 100 ; - - -layer PCB : - height 10 ; - material BEOL ; - -die DRAM : - layer 58.5 SILICON ; - source 2 SILICON ; - layer 1.5 BEOL ; - layer 58.5 SILICON ; - - -stack: - die DRAM_DIE DRAM floorplan "./mem.flp" ; - layer CONN_TO_PCB PCB ; - -solver: - transient step 0.01, slot 0.05 ; - initial temperature 300.0 ; - -output: - Tflpel(DRAM_DIE.channel0 , "temp_flp_element_ch0.txt" , average , slot ); - Tflpel(DRAM_DIE.channel1 , "temp_flp_element_ch1.txt" , average , slot ); - Tflpel(DRAM_DIE.channel2 , "temp_flp_element_ch2.txt" , average , slot ); - Tflpel(DRAM_DIE.channel3 , "temp_flp_element_ch3.txt" , average , slot ); - Tmap (DRAM_DIE, "output1.txt", slot) ; - Pmap (DRAM_DIE, "output2.txt", slot) ; - diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/scripts/createTraceDB.sql b/DRAMSys/tests/ddr3_parametersAtMemspec/scripts/createTraceDB.sql deleted file mode 100644 index 7a127fac..00000000 --- a/DRAMSys/tests/ddr3_parametersAtMemspec/scripts/createTraceDB.sql +++ /dev/null @@ -1,94 +0,0 @@ -DROP TABLE IF EXISTS Phases; -DROP TABLE IF EXISTS GeneralInfo; -DROP TABLE IF EXISTS CommandLengths; -DROP TABLE IF EXISTS Comments; -DROP TABLE IF EXISTS ranges; -DROP TABLE IF EXISTS Transactions; -DROP TABLE IF EXISTS DebugMessages; -DROP TABLE IF EXISTS Power; - -CREATE TABLE Phases( - ID INTEGER PRIMARY KEY, - PhaseName TEXT, - PhaseBegin INTEGER, - PhaseEnd INTEGER, - Transact INTEGER -); - -CREATE TABLE GeneralInfo( - NumberOfTransactions INTEGER, - TraceEnd INTEGER, - NumberOfRanks INTEGER, - NumberOfBanks INTEGER, - clk INTEGER, - UnitOfTime TEXT, - MCconfig TEXT, - Memspec TEXT, - Traces TEXT, - WindowSize INTEGER, - FlexibleRefresh INTEGER, - MaxRefBurst INTEGER, - ControllerThread INTEGER -); - -CREATE TABLE CommandLengths( - ACT INTEGER, - PRE INTEGER, - PREA INTEGER, - RD INTEGER, - RDA INTEGER, - WR INTEGER, - WRA INTEGER, - REFA INTEGER, - REFB INTEGER, - PDEA INTEGER, - PDXA INTEGER, - PDEP INTEGER, - PDXP INTEGER, - SREFEN INTEGER, - SREFEX INTEGER -); - -CREATE TABLE Power( - time DOUBLE, - AveragePower DOUBLE -); - - -CREATE TABLE Comments( - Time INTEGER, - Text TEXT -); - -CREATE TABLE DebugMessages( - Time INTEGER, - Message TEXT -); - --- use SQLITE R* TREE Module to make queries on timespans effecient (see http://www.sqlite.org/rtree.html) -CREATE VIRTUAL TABLE ranges USING rtree( - id, - begin, end -); - -CREATE TABLE Transactions( - ID INTEGER, - Range INTEGER, - Address INTEGER, - Burstlength INTEGER, - TThread INTEGER, - TChannel INTEGER, - TRank INTEGER, - TBankgroup INTEGER, - TBank INTEGER, - TRow INTEGER, - TColumn INTEGER, - DataStrobeBegin INTEGER, - DataStrobeEnd INTEGER, - TimeOfGeneration INTEGER, - Command TEXT - ); - -CREATE INDEX ranges_index ON Transactions(Range); -CREATE INDEX "phasesTransactions" ON "Phases" ("Transact" ASC); -CREATE INDEX "messageTimes" ON "DebugMessages" ("Time" ASC); diff --git a/DRAMSys/tests/ddr3_parametersAtMemspec/simulations/ddr3-example.json b/DRAMSys/tests/ddr3_parametersAtMemspec/simulations/ddr3-example.json deleted file mode 100644 index e3d4a4c3..00000000 --- a/DRAMSys/tests/ddr3_parametersAtMemspec/simulations/ddr3-example.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "simulation": { - "addressmapping": "am_ddr3_8x2Gbx8_dimm_p1KB_dual_rank_rbc.json", - "mcconfig": "fr_fcfs_grp.json", - "memspec": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json", - "simconfig": "ddr3.json", - "simulationid": "ddr3-example-dual-rank-json", - "thermalconfig": "config.json", - "tracesetup": [ - { - "clkMhz": 533, - "name": "trace_test2.stl" - } - ] - } -} diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/config.json b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/config.json deleted file mode 100644 index b88ed84c..00000000 --- a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/config.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "thermalsimconfig": { - "TemperatureScale": "Celsius", - "StaticTemperatureDefaultValue": 89, - "ThermalSimPeriod":100, - "ThermalSimUnit":"us", - "PowerInfoFile": "powerInfo.json", - "IceServerIp": "127.0.0.1", - "IceServerPort": 11880, - "SimPeriodAdjustFactor" : 10, - "NPowStableCyclesToIncreasePeriod": 5, - "GenerateTemperatureMap": true, - "GeneratePowerMap": true - } -} diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/core.flp b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/core.flp deleted file mode 100755 index e85e6801..00000000 --- a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/core.flp +++ /dev/null @@ -1,45 +0,0 @@ -CPUs : - - position 0, 0 ; - dimension 2750, 4300 ; - -GPU : - - position 3350, 0 ; - dimension 2750, 4000 ; - -BASEBAND1 : - - position 4250, 4000 ; - dimension 1850, 3300 ; - -BASEBAND2 : - - position 3350, 7300 ; - dimension 2750, 3300 ; - -LLCACHE : - - position 0, 4300 ; - dimension 1900, 3000 ; - -DRAMCTRL1 : - - position 1900, 4300 ; - dimension 850, 3000 ; - -DRAMCTRL2 : - - position 3350, 4000 ; - dimension 900, 3300 ; - -TSVS : - - position 2750, 2300 ; - dimension 600, 6000 ; - -ACELLERATORS : - - position 0, 7300 ; - dimension 2750, 3300 ; - diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/mem.flp b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/mem.flp deleted file mode 100755 index 29d02254..00000000 --- a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/mem.flp +++ /dev/null @@ -1,16 +0,0 @@ -channel0 : - position 150, 100 ; - dimension 2600, 5200 ; - -channel1 : - position 3350, 100 ; - dimension 2600, 5200 ; - -channel2 : - position 150, 5300 ; - dimension 2600, 5200 ; - -channel3 : - position 3350, 5300 ; - dimension 2600, 5200 ; - diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/powerInfo.json b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/powerInfo.json deleted file mode 100644 index 524f690f..00000000 --- a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/powerInfo.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "powerInfo": { - "dram_die_channel0": { - "init_pow": 0, - "threshold": 1.0 - }, - "dram_die_channel1": { - "init_pow": 0, - "threshold": 1.0 - }, - "dram_die_channel2": { - "init_pow": 0, - "threshold": 1.0 - }, - "dram_die_channel3": { - "init_pow": 0, - "threshold": 1.0 - } - } -} diff --git a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/stack.stk b/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/stack.stk deleted file mode 100755 index ec74f020..00000000 --- a/DRAMSys/tests/ddr4_bankgroups/configs/thermalsim/stack.stk +++ /dev/null @@ -1,49 +0,0 @@ -material SILICON : - thermal conductivity 1.30e-4 ; - volumetric heat capacity 1.628e-12 ; - -material BEOL : - thermal conductivity 2.25e-6 ; - volumetric heat capacity 2.175e-12 ; - -material COPPER : - thermal conductivity 4.01e-04 ; - volumetric heat capacity 3.37e-12 ; - -top heat sink : - //sink height 1e03, area 100e06, material COPPER ; - //spreader height 0.5e03, area 70e06, material SILICON ; - heat transfer coefficient 1.3e-09 ; - temperature 318.15 ; -dimensions : - chip length 6100, width 10600 ; - cell length 100, width 100 ; - - -layer PCB : - height 10 ; - material BEOL ; - -die DRAM : - layer 58.5 SILICON ; - source 2 SILICON ; - layer 1.5 BEOL ; - layer 58.5 SILICON ; - - -stack: - die DRAM_DIE DRAM floorplan "./mem.flp" ; - layer CONN_TO_PCB PCB ; - -solver: - transient step 0.01, slot 0.05 ; - initial temperature 300.0 ; - -output: - Tflpel(DRAM_DIE.channel0 , "temp_flp_element_ch0.txt" , average , slot ); - Tflpel(DRAM_DIE.channel1 , "temp_flp_element_ch1.txt" , average , slot ); - Tflpel(DRAM_DIE.channel2 , "temp_flp_element_ch2.txt" , average , slot ); - Tflpel(DRAM_DIE.channel3 , "temp_flp_element_ch3.txt" , average , slot ); - Tmap (DRAM_DIE, "output1.txt", slot) ; - Pmap (DRAM_DIE, "output2.txt", slot) ; - diff --git a/DRAMSys/tests/ddr4_bankgroups/scripts/createTraceDB.sql b/DRAMSys/tests/ddr4_bankgroups/scripts/createTraceDB.sql deleted file mode 100644 index 7a127fac..00000000 --- a/DRAMSys/tests/ddr4_bankgroups/scripts/createTraceDB.sql +++ /dev/null @@ -1,94 +0,0 @@ -DROP TABLE IF EXISTS Phases; -DROP TABLE IF EXISTS GeneralInfo; -DROP TABLE IF EXISTS CommandLengths; -DROP TABLE IF EXISTS Comments; -DROP TABLE IF EXISTS ranges; -DROP TABLE IF EXISTS Transactions; -DROP TABLE IF EXISTS DebugMessages; -DROP TABLE IF EXISTS Power; - -CREATE TABLE Phases( - ID INTEGER PRIMARY KEY, - PhaseName TEXT, - PhaseBegin INTEGER, - PhaseEnd INTEGER, - Transact INTEGER -); - -CREATE TABLE GeneralInfo( - NumberOfTransactions INTEGER, - TraceEnd INTEGER, - NumberOfRanks INTEGER, - NumberOfBanks INTEGER, - clk INTEGER, - UnitOfTime TEXT, - MCconfig TEXT, - Memspec TEXT, - Traces TEXT, - WindowSize INTEGER, - FlexibleRefresh INTEGER, - MaxRefBurst INTEGER, - ControllerThread INTEGER -); - -CREATE TABLE CommandLengths( - ACT INTEGER, - PRE INTEGER, - PREA INTEGER, - RD INTEGER, - RDA INTEGER, - WR INTEGER, - WRA INTEGER, - REFA INTEGER, - REFB INTEGER, - PDEA INTEGER, - PDXA INTEGER, - PDEP INTEGER, - PDXP INTEGER, - SREFEN INTEGER, - SREFEX INTEGER -); - -CREATE TABLE Power( - time DOUBLE, - AveragePower DOUBLE -); - - -CREATE TABLE Comments( - Time INTEGER, - Text TEXT -); - -CREATE TABLE DebugMessages( - Time INTEGER, - Message TEXT -); - --- use SQLITE R* TREE Module to make queries on timespans effecient (see http://www.sqlite.org/rtree.html) -CREATE VIRTUAL TABLE ranges USING rtree( - id, - begin, end -); - -CREATE TABLE Transactions( - ID INTEGER, - Range INTEGER, - Address INTEGER, - Burstlength INTEGER, - TThread INTEGER, - TChannel INTEGER, - TRank INTEGER, - TBankgroup INTEGER, - TBank INTEGER, - TRow INTEGER, - TColumn INTEGER, - DataStrobeBegin INTEGER, - DataStrobeEnd INTEGER, - TimeOfGeneration INTEGER, - Command TEXT - ); - -CREATE INDEX ranges_index ON Transactions(Range); -CREATE INDEX "phasesTransactions" ON "Phases" ("Transact" ASC); -CREATE INDEX "messageTimes" ON "DebugMessages" ("Time" ASC); diff --git a/DRAMSys/tests/lpddr4/ci.yml b/DRAMSys/tests/lpddr4/ci.yml new file mode 100644 index 00000000..40860f3f --- /dev/null +++ b/DRAMSys/tests/lpddr4/ci.yml @@ -0,0 +1,28 @@ +# LPDDR4 with Bankwise Flexible Refresh and FIFO Scheduler: +example_lpddr4: + stage: LPDDR4 + script: + - export GCOV_PREFIX=$(pwd) + - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') + - cd build/simulator + - ./DRAMSys ../../DRAMSys/tests/lpddr4/simulations/lpddr4-example.json ../../DRAMSys/tests/lpddr4/ + - ls -lah + - ls -lah ../../DRAMSys/tests/lpddr4/expected/ + - sqldiff ../../DRAMSys/tests/lpddr4/expected/lpddr4-example_lpddr4_ch0.tdb lpddr4-example_lpddr4_ch0.tdb + - perl -e 'if(`sqldiff ../../DRAMSys/tests/lpddr4/expected/lpddr4-example_lpddr4_ch0.tdb lpddr4-example_lpddr4_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' + - cd ../traceAnalyzer + - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/lpddr4-example_lpddr4_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi + # Run Code Coverage + - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out + + cache: + key: build + paths: + - build/ + policy: pull + + artifacts: + paths: + - build/simulator/lpddr4-example_lpddr4_ch0.tdb + - coverage/${CI_JOB_NAME}.out + expire_in: 2 days diff --git a/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json b/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json index 97a8cc3e..fce6c632 100644 --- a/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json +++ b/DRAMSys/tests/lpddr4/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 65536, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 1, + "NumberOfMemChannels": 1, }, "memoryId": "JEDEC_8Gb_LPDDR4-3200_16bit", "memoryType": "LPDDR4", @@ -40,7 +42,11 @@ "WTR": 16, "XP": 12, "XSR": 460, + "ACTPDEN": 1, + "PRPDEN": 1, + "REFPDEN": 1, + "RTRS": 1, "clkMhz": 1600 } } -} \ No newline at end of file +} diff --git a/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json b/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json index fd8fe855..6ea5b1bd 100644 --- a/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json +++ b/DRAMSys/tests/lpddr4/configs/simulator/lpddr4.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "lpddr4", "SimulationProgressBar": true, @@ -18,4 +16,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} From ab206aa68839e7c245be317c78cb53b98564f644 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 16 Jun 2020 11:50:11 +0200 Subject: [PATCH 06/53] ci.yml edited --- .gitlab-ci.yml | 11 +++++---- .gitlab-ci_old.yml | 56 ---------------------------------------------- 2 files changed, 7 insertions(+), 60 deletions(-) delete mode 100644 .gitlab-ci_old.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9011e4ab..800215b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,9 +6,10 @@ variables: stages: - build - - dramsys-gem5-build - - WIDEIO + - LPDDR4 - DDR3 + - DDR4 + - HBM2 - Coverage build: @@ -51,6 +52,8 @@ coverage: include: - - '/DRAMSys/tests/DDR3/ci.yml' - - '/DRAMSys/tests/WIDEIO/ci.yml' + - '/DRAMSys/tests/lpddr4/ci.yml' + - '/DRAMSys/tests/ddr3_multirank/ci.yml' + - '/DRAMSys/tests/DDR4/ci.yml' + - '/DRAMSys/tests/HBM2/ci.yml' #- '/DRAMSys/tests/dramsys-gem5/ci.yml' # Should be activated again when a new gitlab runner with right dependencies is used diff --git a/.gitlab-ci_old.yml b/.gitlab-ci_old.yml deleted file mode 100644 index 9011e4ab..00000000 --- a/.gitlab-ci_old.yml +++ /dev/null @@ -1,56 +0,0 @@ -# vim: set ts=4 sw=4 expandtab: -image: gcc - -variables: - GIT_STRATEGY: clone - -stages: - - build - - dramsys-gem5-build - - WIDEIO - - DDR3 - - Coverage - -build: - stage: build - script: - - git submodule sync - - git submodule update --init --recursive - - rm -rf build - - mkdir -p build - - cd build - - cmake ../DRAMSys - - make -j16 - - find . -name "*.o" -type f -delete - - rm -rf ${CI_PROJECT_DIR}/coverage - - mkdir -p ${CI_PROJECT_DIR}/coverage - - cache: - key: build - paths: - - build/ - policy: push - - artifacts: - paths: - - coverage/ - -coverage: - stage: Coverage - coverage: '/Total:\|(\d+\.?\d+\%)/' - script: - # delete all empty files since they produce errors - - find coverage -size 0 -type f -delete - - ls coverage/ -lah - - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out - - lcov --list coverage/final.out - - artifacts: - paths: - - coverage/final.out - - -include: - - '/DRAMSys/tests/DDR3/ci.yml' - - '/DRAMSys/tests/WIDEIO/ci.yml' - #- '/DRAMSys/tests/dramsys-gem5/ci.yml' # Should be activated again when a new gitlab runner with right dependencies is used From 5f57c29224a27aa279d8b11cf632a636d1e7adb8 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Tue, 16 Jun 2020 13:24:20 +0200 Subject: [PATCH 07/53] Per-bank refresh fix. --- .../src/controller/checker/CheckerLPDDR4.cpp | 2 +- .../refresh/RefreshManagerBankwise.cpp | 25 ++++++++++++++----- .../refresh/RefreshManagerBankwise.h | 1 + 3 files changed, 21 insertions(+), 7 deletions(-) diff --git a/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp b/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp index 09adc6d1..98e304fc 100644 --- a/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp +++ b/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp @@ -164,7 +164,7 @@ sc_time CheckerLPDDR4::timeToSatisfyConstraints(Command command, Rank rank, Bank } else if (command == Command::ACT) { - lastCommandStart = lastScheduledByCommandAndBank[Command::ACT][rank.ID()]; + lastCommandStart = lastScheduledByCommandAndBank[Command::ACT][bank.ID()]; if (lastCommandStart != SC_ZERO_TIME) earliestTimeToStart = std::max(earliestTimeToStart, lastCommandStart + memSpec->tRCpb); diff --git a/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp b/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp index 349bef14..84429e4c 100644 --- a/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp +++ b/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp @@ -91,14 +91,17 @@ sc_time RefreshManagerBankwise::start() bool forcedRefresh = (flexibilityCounter == maxPostponed); bool allBanksBusy = true; - for (auto it = remainingBankMachines.begin(); it != remainingBankMachines.end(); it++) + if (!skipSelection) { - if ((*it)->isIdle()) + for (auto it = remainingBankMachines.begin(); it != remainingBankMachines.end(); it++) { - currentIterator = it; - currentBankMachine = *it; - allBanksBusy = false; - break; + if ((*it)->isIdle()) + { + currentIterator = it; + currentBankMachine = *it; + allBanksBusy = false; + break; + } } } @@ -113,7 +116,16 @@ sc_time RefreshManagerBankwise::start() if (currentBankMachine->getState() == BmState::Activated) nextCommand = Command::PRE; else + { nextCommand = Command::REFB; + + if (forcedRefresh) + { + currentBankMachine->block(); + skipSelection = true; + } + } + timeToSchedule = checker->timeToSatisfyConstraints(nextCommand, rank, currentBankMachine->getBankGroup(), currentBankMachine->getBank()); return timeToSchedule; @@ -161,6 +173,7 @@ void RefreshManagerBankwise::updateState(Command command, tlm_generic_payload *p switch (command) { case Command::REFB: + skipSelection = false; remainingBankMachines.erase(currentIterator); if (remainingBankMachines.empty()) remainingBankMachines = allBankMachines; diff --git a/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h b/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h index 285329b5..252a4b9e 100644 --- a/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h +++ b/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h @@ -74,6 +74,7 @@ private: int maxPulledin = 0; bool sleeping = false; + bool skipSelection = false; }; #endif // REFRESHMANAGERBANKWISE_H From 295810ac1b69fe0da354e2f4131a28e810ae3779 Mon Sep 17 00:00:00 2001 From: scorrea Date: Thu, 18 Jun 2020 10:40:37 +0200 Subject: [PATCH 08/53] ci tests traces and memspec modified --- DRAMSys/library/resources/configs/memspecs/HBM2.json | 5 +++-- .../configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json | 5 +++-- .../configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json | 5 +++-- .../configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json | 6 ++++-- .../configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json | 6 ++++-- .../configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json | 5 +++-- .../configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json | 5 +++-- .../configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json | 5 +++-- .../configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json | 5 +++-- .../configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json | 5 +++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json | 4 +++- .../configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json | 6 ++++-- .../memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json | 6 ++++-- .../configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json | 6 ++++-- .../memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json | 6 ++++-- .../memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json | 6 ++++-- .../memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json | 6 ++++-- .../memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json | 6 ++++-- .../configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json | 6 ++++-- .../configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json | 6 ++++-- .../configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json | 6 ++++-- .../configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json | 6 ++++-- .../configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json | 6 ++++-- .../configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json | 6 ++++-- .../configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json | 6 ++++-- .../configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json | 6 ++++-- .../configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json | 5 +++-- .../configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json | 5 +++-- .../configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json | 5 +++-- .../configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json | 5 +++-- .../configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json | 6 ++++-- .../configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json | 6 ++++-- .../configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json | 5 +++-- .../configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json | 5 +++-- .../configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json | 5 +++-- .../memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json | 6 ++++-- .../memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json | 6 ++++-- .../resources/configs/memspecs/memspec_ranktest.json | 5 +++-- .../resources/configs/simulator/ddr3-single-device.json | 4 +--- DRAMSys/library/resources/configs/simulator/ddr3.json | 2 -- .../resources/configs/simulator/ddr3_boot_linux.json | 4 +--- DRAMSys/library/resources/configs/simulator/ddr3_ecc.json | 4 +--- .../library/resources/configs/simulator/ddr3_gem5_se.json | 4 +--- DRAMSys/library/resources/configs/simulator/ddr4.json | 4 +--- DRAMSys/library/resources/configs/simulator/hbm2.json | 4 +--- DRAMSys/library/resources/configs/simulator/lpddr4.json | 3 +-- DRAMSys/library/resources/configs/simulator/wideio.json | 4 +--- DRAMSys/library/resources/configs/simulator/wideio_ecc.json | 4 +--- .../library/resources/configs/simulator/wideio_thermal.json | 4 +--- DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json | 4 ++-- DRAMSys/tests/HBM2/configs/memspecs/HBM2.json | 1 - .../memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json | 4 ++-- 62 files changed, 189 insertions(+), 131 deletions(-) diff --git a/DRAMSys/library/resources/configs/memspecs/HBM2.json b/DRAMSys/library/resources/configs/memspecs/HBM2.json index efa8ee9e..bc9faa23 100644 --- a/DRAMSys/library/resources/configs/memspecs/HBM2.json +++ b/DRAMSys/library/resources/configs/memspecs/HBM2.json @@ -8,7 +8,8 @@ "nbrOfColumns": 128, "nbrOfRanks": 2, "nbrOfRows": 32768, - "width": 64 + "width": 64, + "NumberOfMemChannels": 1 }, "memoryId": "https://www.computerbase.de/2019-05/amd-memory-tweak-vram-oc/#bilder", "memoryType": "HBM2", @@ -43,4 +44,4 @@ "clkMhz": 1000 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json index 64256e3c..17630099 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json @@ -7,7 +7,8 @@ "nbrOfColumns": 128, "nbrOfRanks": 1, "nbrOfRows": 4096, - "width": 128 + "width": 128, + "NumberOfMemChannels": 4 }, "memoryId": "JEDEC_256Mb_WIDEIO_SDR-200_128bit", "memoryType": "WIDEIO_SDR", @@ -62,4 +63,4 @@ "clkMhz": 200 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json index c2d60cd9..7f576e12 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json @@ -7,7 +7,8 @@ "nbrOfColumns": 128, "nbrOfRanks": 1, "nbrOfRows": 4096, - "width": 128 + "width": 128, + "NumberOfMemChannels": 4 }, "memoryId": "JEDEC_256Mb_WIDEIO_SDR-266_128bit", "memoryType": "WIDEIO_SDR", @@ -62,4 +63,4 @@ "clkMhz": 266 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json index c7c0e7a0..db212fc7 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json @@ -8,7 +8,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_4Gb_DDR4-1866_8bit_A", "memoryType": "DDR4", @@ -65,4 +67,4 @@ "clkMhz": 933 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json index 51ac9635..9ea5ca87 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json @@ -8,7 +8,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_4Gb_DDR4-2400_8bit_A", "memoryType": "DDR4", @@ -65,4 +67,4 @@ "clkMhz": 1200 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json index 65be78a0..29e9f3d6 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json @@ -7,7 +7,8 @@ "nbrOfColumns": 512, "nbrOfRanks": 1, "nbrOfRows": 8192, - "width": 64 + "width": 64, + "NumberOfMemChannels": 4 }, "memoryId": "JEDEC_4x64_2Gb_WIDEIO2-400_64bit", "memoryType": "WIDEIO2", @@ -39,4 +40,4 @@ "clkMhz": 400 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json index a01fedb0..16f3546f 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json @@ -7,7 +7,8 @@ "nbrOfColumns": 512, "nbrOfRanks": 1, "nbrOfRows": 8192, - "width": 64 + "width": 64, + "NumberOfMemChannels": 4 }, "memoryId": "JEDEC_4x64_2Gb_WIDEIO2-533_64bit", "memoryType": "WIDEIO2", @@ -39,4 +40,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json index c41d427f..6504cd54 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json @@ -7,7 +7,8 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 65536, - "width": 16 + "width": 16, + "NumberOfMemChannels": 1 }, "memoryId": "JEDEC_8Gb_LPDDR4-3200_16bit", "memoryType": "LPDDR4", @@ -93,4 +94,4 @@ "clkMhz": 1600 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json index aaecf874..42692386 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json @@ -7,7 +7,8 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 8192, - "width": 16 + "width": 16, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR2-1066_16bit_H", "memoryType": "DDR2", @@ -52,4 +53,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json index 33f80da5..3cbdec2d 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json @@ -7,7 +7,8 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 8192, - "width": 16 + "width": 16, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR2-800_16bit_H", "memoryType": "DDR2", @@ -52,4 +53,4 @@ "clkMhz": 400 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json index 467c599b..0e15b9b3 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 8192, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 4, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_16bit_G", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json index 6ff10023..f6557d3d 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 8192, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 4, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_16bit_G_2s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json index 9b4a0ad8..f8b477bb 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 8192, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 4, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_16bit_G_3s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json index 9459ab49..fe0feff6 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 8192, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 4, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_16bit_G_mu", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json index 5dd17ce0..549f79ae 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_8bit_G", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json index 8f7e730b..fb5a2a58 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_8bit_G_2s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json index 315c3fce..378722ed 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_8bit_G_3s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json index ae39db63..a79e2ea0 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_8bit_G_mu", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json index 3020b53b..fca362ca 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json index 6867118b..f193410e 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G_2s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json index 2988bf90..69084ebe 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G_3s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json index c6dabf1d..9515ac0d 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json index 9aaa2c4c..eed0f3b5 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G_mu", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json index 0aef9bf9..9be74831 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-800_8bit_G", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 400 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json index b8cd6ba9..8d85c957 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 2, "nbrOfRows": 16384, - "width": 64 + "width": 64, + "NumberOfDevicesOnDIMM": 1, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json index d19953e5..589c2ef7 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 2, "nbrOfRows": 16384, - "width": 64 + "width": 64, + "NumberOfDevicesOnDIMM": 1, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2GB_DDR3-1066_64bit_G_UDIMM", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json index 2b954795..4b665ba4 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 2, "nbrOfRows": 16384, - "width": 64 + "width": 64, + "NumberOfDevicesOnDIMM": 1, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2GB_DDR3-1333_64bit_D_SODIMM", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 666 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json index ef9a59b8..f52937e5 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 2, "nbrOfRows": 16384, - "width": 64 + "width": 64, + "NumberOfDevicesOnDIMM": 1, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2GB_DDR3-1600_64bit_G_UDIMM", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json index f135a2e6..8247a00d 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1066_8bit_D", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json index 0cd99819..067f826b 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1066_8bit_D_2s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json index 647e8938..2fba0c69 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1066_8bit_D_3s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json index 1273f6e2..ada0ddbd 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1066_8bit_D_mu", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json index a6a5a43a..c52f37bf 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 4, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1600_16bit_D", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json index 768b1cae..a0a6e4ea 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 4, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1600_16bit_D_2s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json index a5b3a676..14bf56fa 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 4, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1600_16bit_D_3s", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json index a6b86516..2809f069 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 4, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1600_16bit_D_mu", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json index a75ff24b..579d540d 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json @@ -7,7 +7,8 @@ "nbrOfColumns": 2048, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 16 + "width": 16, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_LPDDR-266_16bit_A", "memoryType": "LPDDR", @@ -51,4 +52,4 @@ "clkMhz": 133 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json index 8b17dc3f..6038029c 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json @@ -7,7 +7,8 @@ "nbrOfColumns": 2048, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 16 + "width": 16, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_LPDDR-333_16bit_A", "memoryType": "LPDDR", @@ -51,4 +52,4 @@ "clkMhz": 166 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json index 8aadde0a..bb424df9 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json @@ -7,7 +7,8 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 16 + "width": 16, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_LPDDR2-1066-S4_16bit_A", "memoryType": "LPDDR2", @@ -64,4 +65,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json index ebe11f7a..4b6dbcf8 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json @@ -7,7 +7,8 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 16 + "width": 16, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_2Gb_LPDDR2-800-S4_16bit_A", "memoryType": "LPDDR2", @@ -64,4 +65,4 @@ "clkMhz": 400 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json index 11700aaf..9d837139 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json @@ -8,7 +8,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_4Gb_DDR4-1866_8bit_A", "memoryType": "DDR4", @@ -63,4 +65,4 @@ "clkMhz": 933 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json index ed4906cd..b1160755 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json @@ -8,7 +8,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 8 + "width": 8, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_4Gb_DDR4-2400_8bit_A", "memoryType": "DDR4", @@ -63,4 +65,4 @@ "clkMhz": 1200 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json index 35e1fe35..025531d1 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json @@ -7,7 +7,8 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 32 + "width": 32, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_4Gb_LPDDR3-1333_32bit_A", "memoryType": "LPDDR3", @@ -64,4 +65,4 @@ "clkMhz": 667 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json index 60d40c43..a9e32fdd 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json @@ -7,7 +7,8 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 16384, - "width": 32 + "width": 32, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_4Gb_LPDDR3-1600_32bit_A", "memoryType": "LPDDR3", @@ -64,4 +65,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json index 17638bb1..9faeea25 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json @@ -7,7 +7,8 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 49152, - "width": 16 + "width": 16, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_6Gb_LPDDR3-3200_16bit_A", "memoryType": "LPDDR4", @@ -92,4 +93,4 @@ "clkMhz": 1600 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json b/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json index 41f5cef2..628077a9 100644 --- a/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json +++ b/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 8192, - "width": 16 + "width": 16, + "NumberOfMemChannels": 1, + "NumberOfDevicesOnDIMM": 1, }, "memoryId": "SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json b/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json index ca86b2d5..7cb2625c 100644 --- a/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json +++ b/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json @@ -7,7 +7,9 @@ "nbrOfColumns": 1024, "nbrOfRanks": 1, "nbrOfRows": 32768, - "width": 16 + "width": 16, + "NumberOfDevicesOnDIMM": 1, + "NumberOfMemChannels": 1 }, "memoryId": "SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit", "memoryType": "DDR3", @@ -56,4 +58,4 @@ "clkMhz": 533 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/memspecs/memspec_ranktest.json b/DRAMSys/library/resources/configs/memspecs/memspec_ranktest.json index 88044fdd..b7d49c2a 100644 --- a/DRAMSys/library/resources/configs/memspecs/memspec_ranktest.json +++ b/DRAMSys/library/resources/configs/memspecs/memspec_ranktest.json @@ -7,7 +7,8 @@ "nbrOfColumns": 1024, "nbrOfRanks": 4, "nbrOfRows": 16384, - "width": 8 + "width": 8, + "NumberOfMemChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G", "memoryType": "DDR3", @@ -56,4 +57,4 @@ "clkMhz": 800 } } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/ddr3-single-device.json b/DRAMSys/library/resources/configs/simulator/ddr3-single-device.json index a1621422..de1a1bec 100644 --- a/DRAMSys/library/resources/configs/simulator/ddr3-single-device.json +++ b/DRAMSys/library/resources/configs/simulator/ddr3-single-device.json @@ -8,8 +8,6 @@ "EnableWindowing": true, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1, "PowerAnalysis": true, "SimulationName": "ddr3_single_dev", "SimulationProgressBar": true, @@ -18,4 +16,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/ddr3.json b/DRAMSys/library/resources/configs/simulator/ddr3.json index 4e9faadc..99ccdb45 100644 --- a/DRAMSys/library/resources/configs/simulator/ddr3.json +++ b/DRAMSys/library/resources/configs/simulator/ddr3.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "ddr3", "SimulationProgressBar": true, diff --git a/DRAMSys/library/resources/configs/simulator/ddr3_boot_linux.json b/DRAMSys/library/resources/configs/simulator/ddr3_boot_linux.json index fd35bdee..d885c677 100644 --- a/DRAMSys/library/resources/configs/simulator/ddr3_boot_linux.json +++ b/DRAMSys/library/resources/configs/simulator/ddr3_boot_linux.json @@ -8,8 +8,6 @@ "EnableWindowing": true, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, "PowerAnalysis": true, "SimulationName": "ddr3", "SimulationProgressBar": true, @@ -18,4 +16,4 @@ "UseMalloc": true, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/ddr3_ecc.json b/DRAMSys/library/resources/configs/simulator/ddr3_ecc.json index 2b813f99..e148c3aa 100644 --- a/DRAMSys/library/resources/configs/simulator/ddr3_ecc.json +++ b/DRAMSys/library/resources/configs/simulator/ddr3_ecc.json @@ -8,8 +8,6 @@ "EnableWindowing": true, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, "PowerAnalysis": true, "SimulationName": "ddr3", "SimulationProgressBar": true, @@ -18,4 +16,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/ddr3_gem5_se.json b/DRAMSys/library/resources/configs/simulator/ddr3_gem5_se.json index 72ebcf9b..c0b12f97 100644 --- a/DRAMSys/library/resources/configs/simulator/ddr3_gem5_se.json +++ b/DRAMSys/library/resources/configs/simulator/ddr3_gem5_se.json @@ -8,8 +8,6 @@ "EnableWindowing": true, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, "PowerAnalysis": true, "SimulationName": "ddr3", "SimulationProgressBar": true, @@ -18,4 +16,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/ddr4.json b/DRAMSys/library/resources/configs/simulator/ddr4.json index 8e62e680..05cd86e2 100644 --- a/DRAMSys/library/resources/configs/simulator/ddr4.json +++ b/DRAMSys/library/resources/configs/simulator/ddr4.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "ddr4", "SimulationProgressBar": true, @@ -18,4 +16,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/hbm2.json b/DRAMSys/library/resources/configs/simulator/hbm2.json index 9589611f..608aec41 100644 --- a/DRAMSys/library/resources/configs/simulator/hbm2.json +++ b/DRAMSys/library/resources/configs/simulator/hbm2.json @@ -8,8 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "hbm2", "SimulationProgressBar": true, @@ -18,4 +16,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/lpddr4.json b/DRAMSys/library/resources/configs/simulator/lpddr4.json index fd8fe855..ee38bd66 100644 --- a/DRAMSys/library/resources/configs/simulator/lpddr4.json +++ b/DRAMSys/library/resources/configs/simulator/lpddr4.json @@ -8,7 +8,6 @@ "EnableWindowing": false, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, "NumberOfMemChannels": 1, "PowerAnalysis": false, "SimulationName": "lpddr4", @@ -18,4 +17,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/wideio.json b/DRAMSys/library/resources/configs/simulator/wideio.json index 4a0bd0ee..0c285f79 100644 --- a/DRAMSys/library/resources/configs/simulator/wideio.json +++ b/DRAMSys/library/resources/configs/simulator/wideio.json @@ -7,8 +7,6 @@ "EnableWindowing": true, "ErrorCSVFile": "../../DRAMSys/library/resources/error/wideio.csv", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 4, "PowerAnalysis": true, "SimulationName": "wideio", "SimulationProgressBar": true, @@ -17,4 +15,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/wideio_ecc.json b/DRAMSys/library/resources/configs/simulator/wideio_ecc.json index 216d3623..80acc3be 100644 --- a/DRAMSys/library/resources/configs/simulator/wideio_ecc.json +++ b/DRAMSys/library/resources/configs/simulator/wideio_ecc.json @@ -7,8 +7,6 @@ "EnableWindowing": true, "ErrorCSVFile": "../../DRAMSys/library/resources/error/wideio.csv", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1, "PowerAnalysis": true, "SimulationName": "wideio_ecc", "SimulationProgressBar": true, @@ -17,4 +15,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/library/resources/configs/simulator/wideio_thermal.json b/DRAMSys/library/resources/configs/simulator/wideio_thermal.json index 6a47ff5b..b37cda4f 100644 --- a/DRAMSys/library/resources/configs/simulator/wideio_thermal.json +++ b/DRAMSys/library/resources/configs/simulator/wideio_thermal.json @@ -7,8 +7,6 @@ "EnableWindowing": true, "ErrorCSVFile": "../../DRAMSys/library/resources/error/wideio.csv", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 4, "PowerAnalysis": true, "SimulationName": "wideio", "SimulationProgressBar": true, @@ -17,4 +15,4 @@ "UseMalloc": false, "WindowSize": 1000 } -} \ No newline at end of file +} diff --git a/DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json b/DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json index 2da01ceb..5eea8b88 100644 --- a/DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json +++ b/DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json @@ -6,7 +6,7 @@ "RespQueue": "Fifo", "RefreshPolicy": "Rankwise", "RefreshMode": 1, - "RefreshMaxPostponed": 128, - "RefreshMaxPulledin": 128, + "RefreshMaxPostponed": 8, + "RefreshMaxPulledin": 8, "PowerDownPolicy": "NoPowerDown", "PowerDownTimeout": 100}} diff --git a/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json index 5014ff9a..933baeba 100644 --- a/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json +++ b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json @@ -10,7 +10,6 @@ "nbrOfChannels": 1, "nbrOfRows": 32768, "width": 64, - "NumberOfDevicesOnDIMM": 1, "NumberOfMemChannels": 1 }, "memoryId": "https://www.computerbase.de/2019-05/amd-memory-tweak-vram-oc/#bilder", diff --git a/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json b/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json index 08e13043..0c90c3ca 100644 --- a/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json +++ b/DRAMSys/tests/ddr3_multirank/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json @@ -8,8 +8,8 @@ "nbrOfRanks": 2, "nbrOfChannels": 1, "nbrOfRows": 16384, - "width": 8, - "nbrOfDevicesOnDIMM": 8 + "width": 64, + "nbrOfDevicesOnDIMM": 1 }, "memoryId": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM", "memoryType": "DDR3", From 5cbfa36339d5b73788e0b330d490b3c30104784e Mon Sep 17 00:00:00 2001 From: scorrea Date: Thu, 18 Jun 2020 12:39:50 +0200 Subject: [PATCH 09/53] PAGE POLICIES AND TRACES MODIFIED --- DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json | 2 +- DRAMSys/tests/lpddr4/configs/mcconfigs/fifo.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json b/DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json index 5eea8b88..01603197 100644 --- a/DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json +++ b/DRAMSys/tests/DDR4/configs/mcconfigs/fr_fcfs.json @@ -1,5 +1,5 @@ {"mcconfig": { - "PagePolicy": "Open", + "PagePolicy": "ClosedAdaptive", "Scheduler": "FrFcfs", "RequestBufferSize": 8, "CmdMux": "Oldest", diff --git a/DRAMSys/tests/lpddr4/configs/mcconfigs/fifo.json b/DRAMSys/tests/lpddr4/configs/mcconfigs/fifo.json index 712e1c96..59b55965 100644 --- a/DRAMSys/tests/lpddr4/configs/mcconfigs/fifo.json +++ b/DRAMSys/tests/lpddr4/configs/mcconfigs/fifo.json @@ -1,4 +1,4 @@ -{"mcconfig": {"PagePolicy": "Open", +{"mcconfig": {"PagePolicy": "OpenAdaptive", "Scheduler": "Fifo", "RequestBufferSize": 8, "CmdMux": "Oldest", From 81c67fb1d3491ba983029f949fa9e7d41f0bf7b1 Mon Sep 17 00:00:00 2001 From: scorrea Date: Thu, 18 Jun 2020 15:45:27 +0200 Subject: [PATCH 10/53] NumberOfMemChannels to nbrOfChannels --- DRAMSys/library/resources/configs/memspecs/HBM2.json | 2 +- .../configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json | 2 +- .../configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json | 2 +- .../configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json | 4 ++-- .../configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json | 4 ++-- .../configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json | 2 +- .../configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json | 2 +- .../configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json | 2 +- .../configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json | 2 +- .../configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json | 2 +- .../configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json | 4 ++-- .../memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json | 4 ++-- .../configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json | 4 ++-- .../configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json | 4 ++-- .../configs/memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json | 4 ++-- .../configs/memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json | 4 ++-- .../configs/memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json | 4 ++-- .../configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json | 4 ++-- .../configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json | 4 ++-- .../configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json | 4 ++-- .../configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json | 4 ++-- .../configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json | 4 ++-- .../configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json | 4 ++-- .../configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json | 4 ++-- .../configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json | 4 ++-- .../configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json | 2 +- .../configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json | 2 +- .../configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json | 2 +- .../configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json | 2 +- .../configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json | 4 ++-- .../configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json | 4 ++-- .../configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json | 2 +- .../configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json | 2 +- .../configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json | 2 +- .../memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json | 4 ++-- .../memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json | 4 ++-- .../library/resources/configs/memspecs/memspec_ranktest.json | 2 +- 48 files changed, 80 insertions(+), 80 deletions(-) diff --git a/DRAMSys/library/resources/configs/memspecs/HBM2.json b/DRAMSys/library/resources/configs/memspecs/HBM2.json index bc9faa23..0f60243d 100644 --- a/DRAMSys/library/resources/configs/memspecs/HBM2.json +++ b/DRAMSys/library/resources/configs/memspecs/HBM2.json @@ -9,7 +9,7 @@ "nbrOfRanks": 2, "nbrOfRows": 32768, "width": 64, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "https://www.computerbase.de/2019-05/amd-memory-tweak-vram-oc/#bilder", "memoryType": "HBM2", diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json index 17630099..114a76fb 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-200_128bit.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 4096, "width": 128, - "NumberOfMemChannels": 4 + "nbrOfChannels": 4 }, "memoryId": "JEDEC_256Mb_WIDEIO_SDR-200_128bit", "memoryType": "WIDEIO_SDR", diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json index 7f576e12..8ef5ffe8 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_256Mb_WIDEIO-266_128bit.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 4096, "width": 128, - "NumberOfMemChannels": 4 + "nbrOfChannels": 4 }, "memoryId": "JEDEC_256Mb_WIDEIO_SDR-266_128bit", "memoryType": "WIDEIO_SDR", diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json index db212fc7..8343c6f8 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-1866_8bit_A.json @@ -9,8 +9,8 @@ "nbrOfRanks": 1, "nbrOfRows": 32768, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_4Gb_DDR4-1866_8bit_A", "memoryType": "DDR4", diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json index 9ea5ca87..1e16ea82 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_4Gb_DDR4-2400_8bit_A.json @@ -9,8 +9,8 @@ "nbrOfRanks": 1, "nbrOfRows": 32768, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_4Gb_DDR4-2400_8bit_A", "memoryType": "DDR4", diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json index 29e9f3d6..04886e6b 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-400_64bit.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 64, - "NumberOfMemChannels": 4 + "nbrOfChannels": 4 }, "memoryId": "JEDEC_4x64_2Gb_WIDEIO2-400_64bit", "memoryType": "WIDEIO2", diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json index 16f3546f..fc6aab68 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_4x64_2Gb_WIDEIO2-533_64bit.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 64, - "NumberOfMemChannels": 4 + "nbrOfChannels": 4 }, "memoryId": "JEDEC_4x64_2Gb_WIDEIO2-533_64bit", "memoryType": "WIDEIO2", diff --git a/DRAMSys/library/resources/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json b/DRAMSys/library/resources/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json index 6504cd54..03008970 100644 --- a/DRAMSys/library/resources/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json +++ b/DRAMSys/library/resources/configs/memspecs/JEDEC_8Gb_LPDDR4-3200_16bit.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 65536, "width": 16, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "JEDEC_8Gb_LPDDR4-3200_16bit", "memoryType": "LPDDR4", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json index 42692386..60ef5c90 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 16, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR2-1066_16bit_H", "memoryType": "DDR2", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json index 3cbdec2d..77317ff8 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 16, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR2-800_16bit_H", "memoryType": "DDR2", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json index 0e15b9b3..06f79649 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 16, - "NumberOfDevicesOnDIMM": 4, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 4, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_16bit_G", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json index f6557d3d..dfd064bf 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_2s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 16, - "NumberOfDevicesOnDIMM": 4, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 4, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_16bit_G_2s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json index f8b477bb..8a40d4d0 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_3s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 16, - "NumberOfDevicesOnDIMM": 4, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 4, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_16bit_G_3s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json index fe0feff6..989c7697 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_16bit_G_mu.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 16, - "NumberOfDevicesOnDIMM": 4, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 4, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_16bit_G_mu", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json index 549f79ae..5a96131d 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_8bit_G", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json index fb5a2a58..4ef0bc5b 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_2s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_8bit_G_2s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json index 378722ed..c28ed4b3 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_3s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_8bit_G_3s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json index a79e2ea0..16d6d572 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1066_8bit_G_mu.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1066_8bit_G_mu", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json index fca362ca..9d4d682c 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json index f193410e..379cd55d 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_2s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G_2s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json index 69084ebe..e3a00e86 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_3s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G_3s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json index 9515ac0d..fd672487 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_less_refresh.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json index eed0f3b5..061219e6 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-1600_8bit_G_mu.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G_mu", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json index 9be74831..ceace84b 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR3-800_8bit_G.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-800_8bit_G", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json index 8d85c957..947f6aa4 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_D_SODIMM.json @@ -8,8 +8,8 @@ "nbrOfRanks": 2, "nbrOfRows": 16384, "width": 64, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 1, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2GB_DDR3-1066_64bit_D_SODIMM", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json index 589c2ef7..4a249d45 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1066_64bit_G_UDIMM.json @@ -8,8 +8,8 @@ "nbrOfRanks": 2, "nbrOfRows": 16384, "width": 64, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 1, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2GB_DDR3-1066_64bit_G_UDIMM", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json index 4b665ba4..c9927028 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1333_64bit_D_SODIMM.json @@ -8,8 +8,8 @@ "nbrOfRanks": 2, "nbrOfRows": 16384, "width": 64, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 1, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2GB_DDR3-1333_64bit_D_SODIMM", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json index f52937e5..cfca2ccd 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2GB_DDR3-1600_64bit_G_UDIMM.json @@ -8,8 +8,8 @@ "nbrOfRanks": 2, "nbrOfRows": 16384, "width": 64, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 1, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2GB_DDR3-1600_64bit_G_UDIMM", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json index 8247a00d..bb451167 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 32768, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1066_8bit_D", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json index 067f826b..7ac094bc 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_2s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 32768, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1066_8bit_D_2s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json index 2fba0c69..f16c8d27 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_3s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 32768, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1066_8bit_D_3s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json index ada0ddbd..e962654a 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1066_8bit_D_mu.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 32768, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1066_8bit_D_mu", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json index c52f37bf..d404eba9 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 16, - "NumberOfDevicesOnDIMM": 4, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 4, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1600_16bit_D", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json index a0a6e4ea..949cd56e 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_2s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 16, - "NumberOfDevicesOnDIMM": 4, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 4, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1600_16bit_D_2s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json index 14bf56fa..2da4909c 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_3s.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 16, - "NumberOfDevicesOnDIMM": 4, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 4, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1600_16bit_D_3s", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json index 2809f069..dfc21103 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_DDR3-1600_16bit_D_mu.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 16, - "NumberOfDevicesOnDIMM": 4, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 4, + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_DDR3-1600_16bit_D_mu", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json index 579d540d..f7c989f9 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-266_16bit_A.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 16, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_LPDDR-266_16bit_A", "memoryType": "LPDDR", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json index 6038029c..2e271810 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR-333_16bit_A.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 16, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_LPDDR-333_16bit_A", "memoryType": "LPDDR", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json index bb424df9..638afb58 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-1066-S4_16bit_A.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 16, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_LPDDR2-1066-S4_16bit_A", "memoryType": "LPDDR2", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json index 4b6dbcf8..fa1a357c 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_2Gb_LPDDR2-800-S4_16bit_A.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 16, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_2Gb_LPDDR2-800-S4_16bit_A", "memoryType": "LPDDR2", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json index 9d837139..7afe6d81 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-1866_8bit_A.json @@ -9,8 +9,8 @@ "nbrOfRanks": 1, "nbrOfRows": 32768, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_4Gb_DDR4-1866_8bit_A", "memoryType": "DDR4", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json index b1160755..0406d803 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_DDR4-2400_8bit_A.json @@ -9,8 +9,8 @@ "nbrOfRanks": 1, "nbrOfRows": 32768, "width": 8, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 8, + "nbrOfChannels": 1 }, "memoryId": "MICRON_4Gb_DDR4-2400_8bit_A", "memoryType": "DDR4", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json index 025531d1..9bee9f8b 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1333_32bit_A.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 32, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_4Gb_LPDDR3-1333_32bit_A", "memoryType": "LPDDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json index a9e32fdd..87f5047e 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_4Gb_LPDDR3-1600_32bit_A.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 16384, "width": 32, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_4Gb_LPDDR3-1600_32bit_A", "memoryType": "LPDDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json b/DRAMSys/library/resources/configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json index 9faeea25..1d61ae45 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_6Gb_LPDDR4-3200_32bit_A.json @@ -8,7 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 49152, "width": 16, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_6Gb_LPDDR3-3200_16bit_A", "memoryType": "LPDDR4", diff --git a/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json b/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json index 628077a9..2706f93d 100644 --- a/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json +++ b/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 16, - "NumberOfMemChannels": 1, - "NumberOfDevicesOnDIMM": 1, + "nbrOfChannels": 1, + "nbrOfDevicesOnDIMM": 1, }, "memoryId": "SAMSUNG_K4B1G1646E_1Gb_DDR3-1600_16bit", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json b/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json index 7cb2625c..a58d953a 100644 --- a/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json +++ b/DRAMSys/library/resources/configs/memspecs/SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit.json @@ -8,8 +8,8 @@ "nbrOfRanks": 1, "nbrOfRows": 32768, "width": 16, - "NumberOfDevicesOnDIMM": 1, - "NumberOfMemChannels": 1 + "nbrOfDevicesOnDIMM": 1, + "nbrOfChannels": 1 }, "memoryId": "SAMSUNG_K4B4G1646Q_4Gb_DDR3-1066_16bit", "memoryType": "DDR3", diff --git a/DRAMSys/library/resources/configs/memspecs/memspec_ranktest.json b/DRAMSys/library/resources/configs/memspecs/memspec_ranktest.json index b7d49c2a..3faa3399 100644 --- a/DRAMSys/library/resources/configs/memspecs/memspec_ranktest.json +++ b/DRAMSys/library/resources/configs/memspecs/memspec_ranktest.json @@ -8,7 +8,7 @@ "nbrOfRanks": 4, "nbrOfRows": 16384, "width": 8, - "NumberOfMemChannels": 1 + "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR3-1600_8bit_G", "memoryType": "DDR3", From 54f3285b17bebbf28580f00034edc6f36c653891 Mon Sep 17 00:00:00 2001 From: scorrea Date: Sat, 20 Jun 2020 16:12:35 +0200 Subject: [PATCH 11/53] HBM2 test to dual-channel/ DDR2 memspecs updated --- .../MICRON_1Gb_DDR2-1066_16bit_H.json | 1 + .../memspecs/MICRON_1Gb_DDR2-800_16bit_H.json | 1 + .../configs/amconfigs/am_hbm2_8Gb_pc_brc.json | 23 ++++++++++--------- DRAMSys/tests/HBM2/configs/memspecs/HBM2.json | 7 +++--- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json index 60ef5c90..0554838d 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-1066_16bit_H.json @@ -8,6 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 16, + "nbrOfDevicesOnDIMM": 4, "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR2-1066_16bit_H", diff --git a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json index 77317ff8..d54ddb75 100644 --- a/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json +++ b/DRAMSys/library/resources/configs/memspecs/MICRON_1Gb_DDR2-800_16bit_H.json @@ -8,6 +8,7 @@ "nbrOfRanks": 1, "nbrOfRows": 8192, "width": 16, + "nbrOfDevicesOnDIMM": 4, "nbrOfChannels": 1 }, "memoryId": "MICRON_1Gb_DDR2-800_16bit_H", diff --git a/DRAMSys/tests/HBM2/configs/amconfigs/am_hbm2_8Gb_pc_brc.json b/DRAMSys/tests/HBM2/configs/amconfigs/am_hbm2_8Gb_pc_brc.json index 354217a5..c9362ea4 100644 --- a/DRAMSys/tests/HBM2/configs/amconfigs/am_hbm2_8Gb_pc_brc.json +++ b/DRAMSys/tests/HBM2/configs/amconfigs/am_hbm2_8Gb_pc_brc.json @@ -1,32 +1,32 @@ { "CONGEN": { - "RANK_BIT":[ - 29 + "CHANNEL_BIT":[ + 30 ], "BANKGROUP_BIT":[ - 27, - 28 + 28, + 29 ], "BANK_BIT": [ - 25, - 26 + 26, + 27 ], "BYTE_BIT": [ 0, 1, - 2 + 2, + 3 ], "COLUMN_BIT": [ - 3, 4, 5, 6, 7, 8, - 9 + 9, + 10 ], "ROW_BIT": [ - 10, 11, 12, 13, @@ -40,7 +40,8 @@ 21, 22, 23, - 24 + 24, + 25 ] } } diff --git a/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json index 933baeba..c10d1242 100644 --- a/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json +++ b/DRAMSys/tests/HBM2/configs/memspecs/HBM2.json @@ -6,11 +6,10 @@ "nbrOfBankGroups": 4, "nbrOfBanks": 16, "nbrOfColumns": 128, - "nbrOfRanks": 2, - "nbrOfChannels": 1, + "nbrOfRanks": 1, + "nbrOfChannels": 2, "nbrOfRows": 32768, - "width": 64, - "NumberOfMemChannels": 1 + "width": 128 }, "memoryId": "https://www.computerbase.de/2019-05/amd-memory-tweak-vram-oc/#bilder", "memoryType": "HBM2", From c016959d50498e706857fd70b51c5536c00eb5c5 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 23 Jun 2020 11:09:17 +0200 Subject: [PATCH 12/53] traceAnalyzer tests excluded from ci tests --- DRAMSys/tests/DDR4/ci.yml | 4 ++-- DRAMSys/tests/HBM2/ci.yml | 6 ++++-- DRAMSys/tests/ddr3_multirank/ci.yml | 4 ++-- DRAMSys/tests/lpddr4/ci.yml | 4 ++-- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/DRAMSys/tests/DDR4/ci.yml b/DRAMSys/tests/DDR4/ci.yml index d6226908..94dc5d4c 100644 --- a/DRAMSys/tests/DDR4/ci.yml +++ b/DRAMSys/tests/DDR4/ci.yml @@ -10,8 +10,8 @@ example_ddr4: - ls -lah ../../DRAMSys/tests/DDR4/expected/ - sqldiff ../../DRAMSys/tests/DDR4/expected/ddr4-bankgrp_ddr4_ch0.tdb ddr4-bankgrp_ddr4_ch0.tdb - perl -e 'if(`sqldiff ../../DRAMSys/tests/DDR4/expected/ddr4-bankgrp_ddr4_ch0.tdb ddr4-bankgrp_ddr4_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' - - cd ../traceAnalyzer - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/ddr4-bankgrp_ddr4_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi + #- cd ../traceAnalyzer + #- python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/ddr4-bankgrp_ddr4_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi # Run Code Coverage - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out diff --git a/DRAMSys/tests/HBM2/ci.yml b/DRAMSys/tests/HBM2/ci.yml index fb9474a1..80a4b981 100644 --- a/DRAMSys/tests/HBM2/ci.yml +++ b/DRAMSys/tests/HBM2/ci.yml @@ -10,8 +10,10 @@ example_HBM2: - ls -lah ../../DRAMSys/tests/HBM2/expected/ - sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch0.tdb hbm2-example_hbm2_ch0.tdb - perl -e 'if(`sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch0.tdb hbm2-example_hbm2_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' - - cd ../traceAnalyzer - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/hbm2-example_hbm2_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi + - sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch1.tdb hbm2-example_hbm2_ch1.tdb + - perl -e 'if(`sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch1.tdb hbm2-example_hbm2_ch1.tdb` eq "") {exit(0)} else {exit(-1)}' + #- cd ../traceAnalyzer + #- python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/hbm2-example_hbm2_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi # Run Code Coverage - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out diff --git a/DRAMSys/tests/ddr3_multirank/ci.yml b/DRAMSys/tests/ddr3_multirank/ci.yml index da90393a..941a2aee 100644 --- a/DRAMSys/tests/ddr3_multirank/ci.yml +++ b/DRAMSys/tests/ddr3_multirank/ci.yml @@ -10,8 +10,8 @@ example_ddr3: - ls -lah ../../DRAMSys/tests/ddr3_multirank/expected/ - sqldiff ../../DRAMSys/tests/ddr3_multirank/expected/ddr3-dual-rank_ddr3_ch0.tdb ddr3-dual-rank_ddr3_ch0.tdb - perl -e 'if(`sqldiff ../../DRAMSys/tests/ddr3_multirank/expected/ddr3-dual-rank_ddr3_ch0.tdb ddr3-dual-rank_ddr3_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' - - cd ../traceAnalyzer - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/ddr3_multirank_ddr3_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi + #- cd ../traceAnalyzer + #- python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/ddr3_multirank_ddr3_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi # Run Code Coverage - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out diff --git a/DRAMSys/tests/lpddr4/ci.yml b/DRAMSys/tests/lpddr4/ci.yml index 40860f3f..ff811142 100644 --- a/DRAMSys/tests/lpddr4/ci.yml +++ b/DRAMSys/tests/lpddr4/ci.yml @@ -10,8 +10,8 @@ example_lpddr4: - ls -lah ../../DRAMSys/tests/lpddr4/expected/ - sqldiff ../../DRAMSys/tests/lpddr4/expected/lpddr4-example_lpddr4_ch0.tdb lpddr4-example_lpddr4_ch0.tdb - perl -e 'if(`sqldiff ../../DRAMSys/tests/lpddr4/expected/lpddr4-example_lpddr4_ch0.tdb lpddr4-example_lpddr4_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' - - cd ../traceAnalyzer - - python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/lpddr4-example_lpddr4_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi + #- cd ../traceAnalyzer + #- python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/lpddr4-example_lpddr4_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi # Run Code Coverage - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out From 26c2c7f66fe3aa78ca2adaa942edc5cb140d2684 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 23 Jun 2020 11:45:54 +0200 Subject: [PATCH 13/53] HBM2 ci.yml correction --- DRAMSys/tests/HBM2/ci.yml | 54 +++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 30 deletions(-) diff --git a/DRAMSys/tests/HBM2/ci.yml b/DRAMSys/tests/HBM2/ci.yml index 80a4b981..1f34b6d1 100644 --- a/DRAMSys/tests/HBM2/ci.yml +++ b/DRAMSys/tests/HBM2/ci.yml @@ -1,31 +1,25 @@ -# HBM2 test with 4 bank groups, 2 trace players, fifo strict scheduler and closed pg policy.: -example_HBM2: - stage: HBM2 - script: - - export GCOV_PREFIX=$(pwd) - - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - - cd build/simulator - - ./DRAMSys ../../DRAMSys/tests/HBM2/simulations/hbm2-example.json ../../DRAMSys/tests/HBM2/ - - ls -lah - - ls -lah ../../DRAMSys/tests/HBM2/expected/ - - sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch0.tdb hbm2-example_hbm2_ch0.tdb - - perl -e 'if(`sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch0.tdb hbm2-example_hbm2_ch0.tdb` eq "") {exit(0)} else {exit(-1)}' - - sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch1.tdb hbm2-example_hbm2_ch1.tdb - - perl -e 'if(`sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch1.tdb hbm2-example_hbm2_ch1.tdb` eq "") {exit(0)} else {exit(-1)}' - #- cd ../traceAnalyzer - #- python3 ../../DRAMSys/traceAnalyzer/scripts/tests.py ../simulator/hbm2-example_hbm2_ch0.tdb | if ! grep "failed"; then exit 0; else exit 1; fi - # Run Code Coverage - - lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out - - cache: - key: build - paths: - - build/ - policy: pull - - artifacts: - paths: - - build/simulator/hbm2-example_hbm2_ch0.tdb - - coverage/${CI_JOB_NAME}.out - expire_in: 2 days +example_HBM2: + artifacts: + expire_in: "2 days" + paths: + - build/simulator/hbm2-example_hbm2_ch0.tdb + - "coverage/${CI_JOB_NAME}.out" + cache: + key: build + paths: + - build/ + policy: pull + script: + - "export GCOV_PREFIX=$(pwd)" + - "export GCOV_PREFIX_STRIP=$(pwd | awk -F\"/\" '{print NF-1}')" + - "cd build/simulator" + - "./DRAMSys ../../DRAMSys/tests/HBM2/simulations/hbm2-example.json ../../DRAMSys/tests/HBM2/" + - "ls -lah" + - "ls -lah ../../DRAMSys/tests/HBM2/expected/" + - "sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch0.tdb hbm2-example_hbm2_ch0.tdb" + - "perl -e 'if(`sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch0.tdb hbm2-example_hbm2_ch0.tdb` eq \"\") {exit(0)} else {exit(-1)}'" + - "sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch1.tdb hbm2-example_hbm2_ch1.tdb" + - "perl -e 'if(`sqldiff ../../DRAMSys/tests/HBM2/expected/hbm2-example_hbm2_ch1.tdb hbm2-example_hbm2_ch1.tdb` eq \"\") {exit(0)} else {exit(-1)}'" + - "lcov -q -c --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR}/build/ -o ${CI_PROJECT_DIR}/coverage/${CI_JOB_NAME}.out" + stage: HBM2 From 4cf1f2c0b4cebee0d80d81870e72247ba0627d19 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 23 Jun 2020 12:07:02 +0200 Subject: [PATCH 14/53] .tdb in expected folders excluded from gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 99b20805..118c019c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ /dram/build *.user *.tdb +!/DRAMSys/tests/*/expected/*.tdb *.tdb-journal *.out /build-simulation From 2e5483e122f7b3b24b9fb2e8c750208bb057f22b Mon Sep 17 00:00:00 2001 From: scorrea Date: Wed, 24 Jun 2020 16:15:43 +0200 Subject: [PATCH 15/53] ddr3 ci.yml file corrected --- DRAMSys/tests/ddr3_multirank/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DRAMSys/tests/ddr3_multirank/ci.yml b/DRAMSys/tests/ddr3_multirank/ci.yml index 941a2aee..ea32584e 100644 --- a/DRAMSys/tests/ddr3_multirank/ci.yml +++ b/DRAMSys/tests/ddr3_multirank/ci.yml @@ -5,7 +5,7 @@ example_ddr3: - export GCOV_PREFIX=$(pwd) - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - cd build/simulator - - ./DRAMSys ../../DRAMSys/tests/ddr3_multirank/ddr3-example.json ../../DRAMSys/tests/ddr3_multirank/ + - ./DRAMSys ../../DRAMSys/tests/ddr3_multirank/simulations/ddr3-example.json ../../DRAMSys/tests/ddr3_multirank/ - ls -lah - ls -lah ../../DRAMSys/tests/ddr3_multirank/expected/ - sqldiff ../../DRAMSys/tests/ddr3_multirank/expected/ddr3-dual-rank_ddr3_ch0.tdb ddr3-dual-rank_ddr3_ch0.tdb From 542a7d9f3216f289ae6696f24a3df605cbb598fe Mon Sep 17 00:00:00 2001 From: scorrea Date: Wed, 24 Jun 2020 17:53:56 +0200 Subject: [PATCH 16/53] gcov option passed to GCC --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 800215b0..76dbafb4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ build: - rm -rf build - mkdir -p build - cd build - - cmake ../DRAMSys + - cmake -Wl,-fprofile-arcs,-ftest-coverage ../DRAMSys - make -j16 - find . -name "*.o" -type f -delete - rm -rf ${CI_PROJECT_DIR}/coverage From 8ed64a85cfa05f161692a72b8bc882e77fbd7422 Mon Sep 17 00:00:00 2001 From: scorrea Date: Wed, 24 Jun 2020 18:05:01 +0200 Subject: [PATCH 17/53] --coverage option --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 76dbafb4..ae825116 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ build: - rm -rf build - mkdir -p build - cd build - - cmake -Wl,-fprofile-arcs,-ftest-coverage ../DRAMSys + - cmake --coverage ../DRAMSys - make -j16 - find . -name "*.o" -type f -delete - rm -rf ${CI_PROJECT_DIR}/coverage From 5a75a627609afa9263360747786ad9cf740b56a0 Mon Sep 17 00:00:00 2001 From: scorrea Date: Wed, 24 Jun 2020 18:35:50 +0200 Subject: [PATCH 18/53] coverage flags changed --- .gitlab-ci.yml | 2 +- DRAMSys/CMakeLists.txt | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ae825116..800215b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ build: - rm -rf build - mkdir -p build - cd build - - cmake --coverage ../DRAMSys + - cmake ../DRAMSys - make -j16 - find . -name "*.o" -type f -delete - rm -rf ${CI_PROJECT_DIR}/coverage diff --git a/DRAMSys/CMakeLists.txt b/DRAMSys/CMakeLists.txt index 6a50c48c..f5cb1045 100644 --- a/DRAMSys/CMakeLists.txt +++ b/DRAMSys/CMakeLists.txt @@ -39,6 +39,11 @@ project(DRAMSys) set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ Version") set(DCMAKE_SH "CMAKE_SH-NOTFOUND" CACHE STRING "Ignore sh.exe error on Windows") +SET(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") +SET(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") +SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}" ) +SET( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") + # Add DRAMSysLibrary: add_subdirectory(library) @@ -54,3 +59,4 @@ add_subdirectory(simulator) if(DEFINED ENV{GEM5}) add_subdirectory(gem5) endif() + From 416b1bbcc717d8b447fbe76d16753b3ff0e44510 Mon Sep 17 00:00:00 2001 From: scorrea Date: Fri, 26 Jun 2020 09:43:13 +0200 Subject: [PATCH 19/53] coverage added to CMakelists --- DRAMSys/CMakeLists.txt | 2 +- DRAMSys/library/CMakeLists.txt | 6 ++++++ DRAMSys/simulator/CMakeLists.txt | 5 +++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/DRAMSys/CMakeLists.txt b/DRAMSys/CMakeLists.txt index f5cb1045..ec99b946 100644 --- a/DRAMSys/CMakeLists.txt +++ b/DRAMSys/CMakeLists.txt @@ -38,12 +38,12 @@ project(DRAMSys) # Configuration: set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ Version") set(DCMAKE_SH "CMAKE_SH-NOTFOUND" CACHE STRING "Ignore sh.exe error on Windows") - SET(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") SET(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}" ) SET( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") + # Add DRAMSysLibrary: add_subdirectory(library) diff --git a/DRAMSys/library/CMakeLists.txt b/DRAMSys/library/CMakeLists.txt index d15862ed..a8301da7 100644 --- a/DRAMSys/library/CMakeLists.txt +++ b/DRAMSys/library/CMakeLists.txt @@ -38,6 +38,12 @@ project(DRAMSysLibrary) # Configuration: set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ Version") set(DCMAKE_SH="CMAKE_SH-NOTFOUND") +SET(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") +SET(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") +SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}" ) +SET( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") + + # Add DRAMPower: add_subdirectory(src/common/third_party/DRAMPower) diff --git a/DRAMSys/simulator/CMakeLists.txt b/DRAMSys/simulator/CMakeLists.txt index 23c68f3a..fad8af38 100644 --- a/DRAMSys/simulator/CMakeLists.txt +++ b/DRAMSys/simulator/CMakeLists.txt @@ -38,6 +38,11 @@ project(DRAMSysSimulator) # Configuration: set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ Version") set(DCMAKE_SH="CMAKE_SH-NOTFOUND") +SET(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") +SET(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") +SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}" ) +SET( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") + if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/../library/src/simulation/DRAMSysRecordable.cpp) add_definitions(-DRECORDING) From 1751e0c6cd92a6f4171471a0e85607398e2967a8 Mon Sep 17 00:00:00 2001 From: scorrea Date: Fri, 26 Jun 2020 11:22:53 +0200 Subject: [PATCH 20/53] ci build and path updated --- .gitlab-ci.yml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 800215b0..e77b5f89 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,6 +25,12 @@ build: - find . -name "*.o" -type f -delete - rm -rf ${CI_PROJECT_DIR}/coverage - mkdir -p ${CI_PROJECT_DIR}/coverage + - cd ${CI_PROJECT_DIR} + - export GCOV_PREFIX=$(pwd) + - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') + - lcov -q -c --initial --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR} -o ${CI_PROJECT_DIR}/coverage/base.out + + cache: key: build @@ -34,21 +40,28 @@ build: artifacts: paths: - - coverage/ + - coverage/base.out coverage: stage: Coverage coverage: '/Total:\|(\d+\.?\d+\%)/' script: - # delete all empty files since they produce errors + # delete all empty files since they produce errors - find coverage -size 0 -type f -delete - ls coverage/ -lah - - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out - - lcov --list coverage/final.out + - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out + - lcov --remove coverage/final.out '*/systemc*/include/*' '*/gcc*/include/*' '/usr/include/*' '*/third_party/*' -o coverage/final_dramsys.out + - lcov --list coverage/final_dramsys.out + # Create html + - mkdir ${CI_PROJECT_DIR}/html + - genhtml --prefix ${CI_PROJECT_DIR} --ignore-errors source coverage/final_dramsys.out --legend --title "`git log | head | grep commit`" --output-directory=html/ + artifacts: paths: - coverage/final.out + - coverage/final_drasys.out + -html/ include: From 3c00374d39a81c15206f97275d4228b28798b885 Mon Sep 17 00:00:00 2001 From: scorrea Date: Fri, 26 Jun 2020 11:29:22 +0200 Subject: [PATCH 21/53] ci build and path updated --- .gitlab-ci.yml => gitlab-ci.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) rename .gitlab-ci.yml => gitlab-ci.yml (89%) diff --git a/.gitlab-ci.yml b/gitlab-ci.yml similarity index 89% rename from .gitlab-ci.yml rename to gitlab-ci.yml index e77b5f89..5ca5a2f2 100644 --- a/.gitlab-ci.yml +++ b/gitlab-ci.yml @@ -20,18 +20,16 @@ build: - rm -rf build - mkdir -p build - cd build - - cmake ../DRAMSys - - make -j16 + - qmake ../DRAMSys/DRAMSys.pro + - make -j4 - find . -name "*.o" -type f -delete - - rm -rf ${CI_PROJECT_DIR}/coverage + # Create Base file to cover all lines - mkdir -p ${CI_PROJECT_DIR}/coverage - cd ${CI_PROJECT_DIR} - export GCOV_PREFIX=$(pwd) - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - lcov -q -c --initial --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR} -o ${CI_PROJECT_DIR}/coverage/base.out - - cache: key: build paths: @@ -41,12 +39,12 @@ build: artifacts: paths: - coverage/base.out - + coverage: stage: Coverage coverage: '/Total:\|(\d+\.?\d+\%)/' script: - # delete all empty files since they produce errors + # delete all empty files since they produce errors - find coverage -size 0 -type f -delete - ls coverage/ -lah - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out @@ -56,13 +54,11 @@ coverage: - mkdir ${CI_PROJECT_DIR}/html - genhtml --prefix ${CI_PROJECT_DIR} --ignore-errors source coverage/final_dramsys.out --legend --title "`git log | head | grep commit`" --output-directory=html/ - artifacts: paths: - coverage/final.out - - coverage/final_drasys.out - -html/ - + - coverage/final_dramsys.out + - html/ include: - '/DRAMSys/tests/lpddr4/ci.yml' From 79574c83ecf66fb0668b26a470e55fba9d519b05 Mon Sep 17 00:00:00 2001 From: scorrea Date: Fri, 26 Jun 2020 11:31:55 +0200 Subject: [PATCH 22/53] ci build and path updated2 --- gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab-ci.yml b/gitlab-ci.yml index 5ca5a2f2..070986b1 100644 --- a/gitlab-ci.yml +++ b/gitlab-ci.yml @@ -65,4 +65,4 @@ include: - '/DRAMSys/tests/ddr3_multirank/ci.yml' - '/DRAMSys/tests/DDR4/ci.yml' - '/DRAMSys/tests/HBM2/ci.yml' - #- '/DRAMSys/tests/dramsys-gem5/ci.yml' # Should be activated again when a new gitlab runner with right dependencies is used + #- '/DRAMSys/tests/dramsys-gem5/ci.yml' # Should be activated again when a new gitlab runner with right dependencies is used From c97c3b87f69fd0d2ba7286ae4b4b1d8a3567e35f Mon Sep 17 00:00:00 2001 From: scorrea Date: Fri, 26 Jun 2020 11:34:35 +0200 Subject: [PATCH 23/53] ci build and path updated3 --- gitlab-ci.yml => .gitlab-ci.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename gitlab-ci.yml => .gitlab-ci.yml (100%) diff --git a/gitlab-ci.yml b/.gitlab-ci.yml similarity index 100% rename from gitlab-ci.yml rename to .gitlab-ci.yml From bc8f2aaecaafb378f65f59e509938e4c98cf424e Mon Sep 17 00:00:00 2001 From: scorrea Date: Fri, 26 Jun 2020 11:44:10 +0200 Subject: [PATCH 24/53] ci build and path updated4 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 070986b1..3acd0825 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ build: - rm -rf build - mkdir -p build - cd build - - qmake ../DRAMSys/DRAMSys.pro + - cmake ../DRAMSys - make -j4 - find . -name "*.o" -type f -delete # Create Base file to cover all lines From 066f22c798271321a945fbc04637b5598cfed0d6 Mon Sep 17 00:00:00 2001 From: scorrea Date: Fri, 26 Jun 2020 15:56:22 +0200 Subject: [PATCH 25/53] cov path modified --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3acd0825..7d147bbc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ build: - find . -name "*.o" -type f -delete # Create Base file to cover all lines - mkdir -p ${CI_PROJECT_DIR}/coverage - - cd ${CI_PROJECT_DIR} + - cd ${CI_PROJECT_DIR}/coverage - export GCOV_PREFIX=$(pwd) - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - lcov -q -c --initial --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR} -o ${CI_PROJECT_DIR}/coverage/base.out From 117937f4aaddeacbe47427f6958c3093b4e89512 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Tue, 30 Jun 2020 11:15:46 +0200 Subject: [PATCH 26/53] Includes flag for coverage build. --- .gitlab-ci.yml | 3 ++- DRAMSys/CMakeLists.txt | 12 +++++++----- DRAMSys/library/CMakeLists.txt | 12 ++++++------ DRAMSys/simulator/CMakeLists.txt | 11 ++++++----- DRAMSys/tests/ddr3_multirank/ci.yml | 2 +- 5 files changed, 22 insertions(+), 18 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d147bbc..8cee2556 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,8 +20,9 @@ build: - rm -rf build - mkdir -p build - cd build + - export COVERAGE=true - cmake ../DRAMSys - - make -j4 + - make -j 24 - find . -name "*.o" -type f -delete # Create Base file to cover all lines - mkdir -p ${CI_PROJECT_DIR}/coverage diff --git a/DRAMSys/CMakeLists.txt b/DRAMSys/CMakeLists.txt index ec99b946..ccb2df9f 100644 --- a/DRAMSys/CMakeLists.txt +++ b/DRAMSys/CMakeLists.txt @@ -38,11 +38,13 @@ project(DRAMSys) # Configuration: set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ Version") set(DCMAKE_SH "CMAKE_SH-NOTFOUND" CACHE STRING "Ignore sh.exe error on Windows") -SET(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") -SET(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") -SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}" ) -SET( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") - +if(DEFINED ENV{COVERAGE}) + set(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") + set(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") + message("-- Coverage check enabled") +endif() # Add DRAMSysLibrary: add_subdirectory(library) diff --git a/DRAMSys/library/CMakeLists.txt b/DRAMSys/library/CMakeLists.txt index a8301da7..a84e0f29 100644 --- a/DRAMSys/library/CMakeLists.txt +++ b/DRAMSys/library/CMakeLists.txt @@ -38,12 +38,12 @@ project(DRAMSysLibrary) # Configuration: set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ Version") set(DCMAKE_SH="CMAKE_SH-NOTFOUND") -SET(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") -SET(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") -SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}" ) -SET( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") - - +if(DEFINED ENV{COVERAGE}) + set(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") + set(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") +endif() # Add DRAMPower: add_subdirectory(src/common/third_party/DRAMPower) diff --git a/DRAMSys/simulator/CMakeLists.txt b/DRAMSys/simulator/CMakeLists.txt index fad8af38..3018a14f 100644 --- a/DRAMSys/simulator/CMakeLists.txt +++ b/DRAMSys/simulator/CMakeLists.txt @@ -38,11 +38,12 @@ project(DRAMSysSimulator) # Configuration: set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ Version") set(DCMAKE_SH="CMAKE_SH-NOTFOUND") -SET(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") -SET(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") -SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}" ) -SET( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") - +if(DEFINED ENV{COVERAGE}) + set(GCC_COVERAGE_COMPILE_FLAGS "-g -O0 -coverage -fprofile-arcs -ftest-coverage") + set(GCC_COVERAGE_LINK_FLAGS "-coverage -lgcov") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") +endif() if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/../library/src/simulation/DRAMSysRecordable.cpp) add_definitions(-DRECORDING) diff --git a/DRAMSys/tests/ddr3_multirank/ci.yml b/DRAMSys/tests/ddr3_multirank/ci.yml index ea32584e..254c0e62 100644 --- a/DRAMSys/tests/ddr3_multirank/ci.yml +++ b/DRAMSys/tests/ddr3_multirank/ci.yml @@ -23,7 +23,7 @@ example_ddr3: artifacts: paths: - - build/simulator/ddr3_multirank_ddr3_ch0.tdb + - build/simulator/ddr3-dual-rank_ddr3_ch0.tdb - coverage/${CI_JOB_NAME}.out expire_in: 2 days From 9241689b99552d2610bbf0fc02bb0a5cce28db24 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 30 Jun 2020 12:33:12 +0200 Subject: [PATCH 27/53] cov test updated --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d147bbc..04fdd89e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,18 +47,18 @@ coverage: # delete all empty files since they produce errors - find coverage -size 0 -type f -delete - ls coverage/ -lah - - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out - - lcov --remove coverage/final.out '*/systemc*/include/*' '*/gcc*/include/*' '/usr/include/*' '*/third_party/*' -o coverage/final_dramsys.out + - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final_dramsys.out + - lcov --remove coverage/final.out '*/systemc*/include/*' '*/traceAnalyzer/*' '*/gcc*/include/*' '/usr/include/*' '*/third_party/*' -o coverage/final_dramsys.out - lcov --list coverage/final_dramsys.out # Create html - - mkdir ${CI_PROJECT_DIR}/html - - genhtml --prefix ${CI_PROJECT_DIR} --ignore-errors source coverage/final_dramsys.out --legend --title "`git log | head | grep commit`" --output-directory=html/ + #- mkdir ${CI_PROJECT_DIR}/html + #- genhtml --prefix ${CI_PROJECT_DIR} --ignore-errors source coverage/final_dramsys.out --legend --title "`git log | head | grep commit`" --output-directory=html/ artifacts: paths: - - coverage/final.out + #- coverage/final.out - coverage/final_dramsys.out - - html/ + #- html/ include: - '/DRAMSys/tests/lpddr4/ci.yml' From 5db27a8b17dbf1bd33fc5cd571485d6805547477 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 30 Jun 2020 12:59:24 +0200 Subject: [PATCH 28/53] undone changes to cov test --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 83ae3ce9..72a8088a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,18 +48,18 @@ coverage: # delete all empty files since they produce errors - find coverage -size 0 -type f -delete - ls coverage/ -lah - - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final_dramsys.out + - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out - lcov --remove coverage/final.out '*/systemc*/include/*' '*/traceAnalyzer/*' '*/gcc*/include/*' '/usr/include/*' '*/third_party/*' -o coverage/final_dramsys.out - lcov --list coverage/final_dramsys.out # Create html - #- mkdir ${CI_PROJECT_DIR}/html - #- genhtml --prefix ${CI_PROJECT_DIR} --ignore-errors source coverage/final_dramsys.out --legend --title "`git log | head | grep commit`" --output-directory=html/ + - mkdir ${CI_PROJECT_DIR}/html + - genhtml --prefix ${CI_PROJECT_DIR} --ignore-errors source coverage/final_dramsys.out --legend --title "`git log | head | grep commit`" --output-directory=html/ artifacts: paths: - #- coverage/final.out + - coverage/final.out - coverage/final_dramsys.out - #- html/ + - html/ include: - '/DRAMSys/tests/lpddr4/ci.yml' From 153d68dee8fbbb0ab61a80d88dbe591a33ecf0b5 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 30 Jun 2020 15:58:23 +0200 Subject: [PATCH 29/53] base file removed --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 72a8088a..a54fbd85 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,6 @@ build: - cd ${CI_PROJECT_DIR}/coverage - export GCOV_PREFIX=$(pwd) - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - - lcov -q -c --initial --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR} -o ${CI_PROJECT_DIR}/coverage/base.out cache: key: build From 6e8ea831c62701c2f620e9294a7eaad3969c721b Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 30 Jun 2020 16:12:48 +0200 Subject: [PATCH 30/53] removed base.out before coverage eval --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a54fbd85..0160fe3b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,6 +29,7 @@ build: - cd ${CI_PROJECT_DIR}/coverage - export GCOV_PREFIX=$(pwd) - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') + - lcov -q -c --initial --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR} -o ${CI_PROJECT_DIR}/coverage/base.out cache: key: build @@ -46,6 +47,7 @@ coverage: script: # delete all empty files since they produce errors - find coverage -size 0 -type f -delete + - rm coverage/base.out - ls coverage/ -lah - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out - lcov --remove coverage/final.out '*/systemc*/include/*' '*/traceAnalyzer/*' '*/gcc*/include/*' '/usr/include/*' '*/third_party/*' -o coverage/final_dramsys.out From f0d3a081c85287dd0097b4169d01232a3132dafa Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 30 Jun 2020 17:07:51 +0200 Subject: [PATCH 31/53] .gitlab-ci.yml back to older version --- .gitlab-ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0160fe3b..30aa8890 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,12 +24,9 @@ build: - cmake ../DRAMSys - make -j 24 - find . -name "*.o" -type f -delete - # Create Base file to cover all lines + - rm -rf ${CI_PROJECT_DIR}/coverage - mkdir -p ${CI_PROJECT_DIR}/coverage - - cd ${CI_PROJECT_DIR}/coverage - - export GCOV_PREFIX=$(pwd) - - export GCOV_PREFIX_STRIP=$(pwd | awk -F"/" '{print NF-1}') - - lcov -q -c --initial --rc geninfo_adjust_src_path=$GCOV_PREFIX -d ${CI_PROJECT_DIR} -o ${CI_PROJECT_DIR}/coverage/base.out + cache: key: build @@ -39,7 +36,7 @@ build: artifacts: paths: - - coverage/base.out + - coverage/ coverage: stage: Coverage @@ -47,7 +44,6 @@ coverage: script: # delete all empty files since they produce errors - find coverage -size 0 -type f -delete - - rm coverage/base.out - ls coverage/ -lah - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out - lcov --remove coverage/final.out '*/systemc*/include/*' '*/traceAnalyzer/*' '*/gcc*/include/*' '/usr/include/*' '*/third_party/*' -o coverage/final_dramsys.out From e98e1c49aaaf83815c1bb8416f6db30bc891af60 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 30 Jun 2020 17:42:08 +0200 Subject: [PATCH 32/53] html removed --- .gitlab-ci.yml | 7 +- .../AddressDecoder.cpp.func-sort-c.html | 93 ++ .../src/common/AddressDecoder.cpp.func.html | 93 ++ .../src/common/AddressDecoder.cpp.gcov.html | 367 ++++++ .../common/AddressDecoder.h.func-sort-c.html | 81 ++ .../src/common/AddressDecoder.h.func.html | 81 ++ .../src/common/AddressDecoder.h.gcov.html | 144 +++ .../common/TlmRecorder.cpp.func-sort-c.html | 153 +++ .../src/common/TlmRecorder.cpp.func.html | 153 +++ .../src/common/TlmRecorder.cpp.gcov.html | 557 ++++++++ .../src/common/TlmRecorder.h.func-sort-c.html | 81 ++ .../src/common/TlmRecorder.h.func.html | 81 ++ .../src/common/TlmRecorder.h.gcov.html | 184 +++ .../dramExtensions.cpp.func-sort-c.html | 309 +++++ .../src/common/dramExtensions.cpp.func.html | 309 +++++ .../src/common/dramExtensions.cpp.gcov.html | 434 +++++++ .../common/dramExtensions.h.func-sort-c.html | 97 ++ .../src/common/dramExtensions.h.func.html | 97 ++ .../src/common/dramExtensions.h.gcov.html | 321 +++++ .../library/src/common/index-sort-f.html | 183 +++ .../library/src/common/index-sort-l.html | 183 +++ html/DRAMSys/library/src/common/index.html | 183 +++ ...2_base_protocol_checker.h.func-sort-c.html | 181 +++ .../tlm2_base_protocol_checker.h.func.html | 181 +++ .../tlm2_base_protocol_checker.h.gcov.html | 1128 +++++++++++++++++ .../src/common/utils.cpp.func-sort-c.html | 109 ++ .../library/src/common/utils.cpp.func.html | 109 ++ .../library/src/common/utils.cpp.gcov.html | 239 ++++ .../src/common/utils.h.func-sort-c.html | 85 ++ .../library/src/common/utils.h.func.html | 85 ++ .../library/src/common/utils.h.gcov.html | 187 +++ .../Configuration.cpp.func-sort-c.html | 113 ++ .../configuration/Configuration.cpp.func.html | 113 ++ .../configuration/Configuration.cpp.gcov.html | 397 ++++++ .../Configuration.h.func-sort-c.html | 93 ++ .../configuration/Configuration.h.func.html | 93 ++ .../configuration/Configuration.h.gcov.html | 147 +++ .../TemperatureSimConfig.h.func-sort-c.html | 85 ++ .../TemperatureSimConfig.h.func.html | 85 ++ .../TemperatureSimConfig.h.gcov.html | 207 +++ .../src/configuration/index-sort-f.html | 123 ++ .../src/configuration/index-sort-l.html | 123 ++ .../library/src/configuration/index.html | 123 ++ .../memspec/MemSpec.cpp.func-sort-c.html | 97 ++ .../memspec/MemSpec.cpp.func.html | 97 ++ .../memspec/MemSpec.cpp.gcov.html | 161 +++ .../memspec/MemSpec.h.func-sort-c.html | 89 ++ .../configuration/memspec/MemSpec.h.func.html | 89 ++ .../configuration/memspec/MemSpec.h.gcov.html | 157 +++ .../memspec/MemSpecDDR3.cpp.func-sort-c.html | 109 ++ .../memspec/MemSpecDDR3.cpp.func.html | 109 ++ .../memspec/MemSpecDDR3.cpp.gcov.html | 225 ++++ .../memspec/MemSpecDDR3.h.func-sort-c.html | 89 ++ .../memspec/MemSpecDDR3.h.func.html | 89 ++ .../memspec/MemSpecDDR3.h.gcov.html | 127 ++ .../memspec/MemSpecDDR4.cpp.func-sort-c.html | 105 ++ .../memspec/MemSpecDDR4.cpp.func.html | 105 ++ .../memspec/MemSpecDDR4.cpp.gcov.html | 242 ++++ .../memspec/MemSpecDDR4.h.func-sort-c.html | 89 ++ .../memspec/MemSpecDDR4.h.func.html | 89 ++ .../memspec/MemSpecDDR4.h.gcov.html | 127 ++ .../memspec/MemSpecGDDR5.cpp.func-sort-c.html | 109 ++ .../memspec/MemSpecGDDR5.cpp.func.html | 109 ++ .../memspec/MemSpecGDDR5.cpp.gcov.html | 229 ++++ .../memspec/MemSpecGDDR5.h.func-sort-c.html | 89 ++ .../memspec/MemSpecGDDR5.h.func.html | 89 ++ .../memspec/MemSpecGDDR5.h.gcov.html | 127 ++ .../MemSpecGDDR5X.cpp.func-sort-c.html | 109 ++ .../memspec/MemSpecGDDR5X.cpp.func.html | 109 ++ .../memspec/MemSpecGDDR5X.cpp.gcov.html | 229 ++++ .../memspec/MemSpecGDDR5X.h.func-sort-c.html | 89 ++ .../memspec/MemSpecGDDR5X.h.func.html | 89 ++ .../memspec/MemSpecGDDR5X.h.gcov.html | 127 ++ .../memspec/MemSpecGDDR6.cpp.func-sort-c.html | 109 ++ .../memspec/MemSpecGDDR6.cpp.func.html | 109 ++ .../memspec/MemSpecGDDR6.cpp.gcov.html | 231 ++++ .../memspec/MemSpecGDDR6.h.func-sort-c.html | 89 ++ .../memspec/MemSpecGDDR6.h.func.html | 89 ++ .../memspec/MemSpecGDDR6.h.gcov.html | 127 ++ .../memspec/MemSpecHBM2.cpp.func-sort-c.html | 109 ++ .../memspec/MemSpecHBM2.cpp.func.html | 109 ++ .../memspec/MemSpecHBM2.cpp.gcov.html | 226 ++++ .../memspec/MemSpecHBM2.h.func-sort-c.html | 89 ++ .../memspec/MemSpecHBM2.h.func.html | 89 ++ .../memspec/MemSpecHBM2.h.gcov.html | 127 ++ .../MemSpecLPDDR4.cpp.func-sort-c.html | 109 ++ .../memspec/MemSpecLPDDR4.cpp.func.html | 109 ++ .../memspec/MemSpecLPDDR4.cpp.gcov.html | 233 ++++ .../memspec/MemSpecLPDDR4.h.func-sort-c.html | 89 ++ .../memspec/MemSpecLPDDR4.h.func.html | 89 ++ .../memspec/MemSpecLPDDR4.h.gcov.html | 127 ++ .../MemSpecWideIO.cpp.func-sort-c.html | 109 ++ .../memspec/MemSpecWideIO.cpp.func.html | 109 ++ .../memspec/MemSpecWideIO.cpp.gcov.html | 233 ++++ .../memspec/MemSpecWideIO.h.func-sort-c.html | 89 ++ .../memspec/MemSpecWideIO.h.func.html | 89 ++ .../memspec/MemSpecWideIO.h.gcov.html | 127 ++ .../MemSpecWideIO2.cpp.func-sort-c.html | 109 ++ .../memspec/MemSpecWideIO2.cpp.func.html | 109 ++ .../memspec/MemSpecWideIO2.cpp.gcov.html | 218 ++++ .../memspec/MemSpecWideIO2.h.func-sort-c.html | 89 ++ .../memspec/MemSpecWideIO2.h.func.html | 89 ++ .../memspec/MemSpecWideIO2.h.gcov.html | 127 ++ .../configuration/memspec/index-sort-f.html | 293 +++++ .../configuration/memspec/index-sort-l.html | 293 +++++ .../src/configuration/memspec/index.html | 293 +++++ .../BankMachine.cpp.func-sort-c.html | 161 +++ .../src/controller/BankMachine.cpp.func.html | 161 +++ .../src/controller/BankMachine.cpp.gcov.html | 413 ++++++ .../controller/BankMachine.h.func-sort-c.html | 113 ++ .../src/controller/BankMachine.h.func.html | 113 ++ .../src/controller/BankMachine.h.gcov.html | 194 +++ .../controller/Command.cpp.func-sort-c.html | 133 ++ .../src/controller/Command.cpp.func.html | 133 ++ .../src/controller/Command.cpp.gcov.html | 257 ++++ .../src/controller/Command.h.func-sort-c.html | 81 ++ .../src/controller/Command.h.func.html | 81 ++ .../src/controller/Command.h.gcov.html | 155 +++ .../Controller.cpp.func-sort-c.html | 125 ++ .../src/controller/Controller.cpp.func.html | 125 ++ .../src/controller/Controller.cpp.gcov.html | 528 ++++++++ .../ControllerIF.h.func-sort-c.html | 97 ++ .../src/controller/ControllerIF.h.func.html | 97 ++ .../src/controller/ControllerIF.h.gcov.html | 186 +++ .../ControllerRecordable.cpp.func-sort-c.html | 109 ++ .../ControllerRecordable.cpp.func.html | 109 ++ .../ControllerRecordable.cpp.gcov.html | 174 +++ .../ControllerRecordable.h.func-sort-c.html | 93 ++ .../ControllerRecordable.h.func.html | 93 ++ .../ControllerRecordable.h.gcov.html | 130 ++ .../checker/CheckerDDR3.cpp.func-sort-c.html | 97 ++ .../checker/CheckerDDR3.cpp.func.html | 97 ++ .../checker/CheckerDDR3.cpp.gcov.html | 516 ++++++++ .../checker/CheckerDDR3.h.func-sort-c.html | 85 ++ .../checker/CheckerDDR3.h.func.html | 85 ++ .../checker/CheckerDDR3.h.gcov.html | 129 ++ .../checker/CheckerDDR4.cpp.func-sort-c.html | 97 ++ .../checker/CheckerDDR4.cpp.func.html | 97 ++ .../checker/CheckerDDR4.cpp.gcov.html | 547 ++++++++ .../checker/CheckerDDR4.h.func-sort-c.html | 85 ++ .../checker/CheckerDDR4.h.func.html | 85 ++ .../checker/CheckerDDR4.h.gcov.html | 129 ++ .../checker/CheckerGDDR5.cpp.func-sort-c.html | 97 ++ .../checker/CheckerGDDR5.cpp.func.html | 97 ++ .../checker/CheckerGDDR5.cpp.gcov.html | 636 ++++++++++ .../checker/CheckerGDDR5.h.func-sort-c.html | 85 ++ .../checker/CheckerGDDR5.h.func.html | 85 ++ .../checker/CheckerGDDR5.h.gcov.html | 129 ++ .../CheckerGDDR5X.cpp.func-sort-c.html | 97 ++ .../checker/CheckerGDDR5X.cpp.func.html | 97 ++ .../checker/CheckerGDDR5X.cpp.gcov.html | 636 ++++++++++ .../checker/CheckerGDDR5X.h.func-sort-c.html | 85 ++ .../checker/CheckerGDDR5X.h.func.html | 85 ++ .../checker/CheckerGDDR5X.h.gcov.html | 129 ++ .../checker/CheckerGDDR6.cpp.func-sort-c.html | 97 ++ .../checker/CheckerGDDR6.cpp.func.html | 97 ++ .../checker/CheckerGDDR6.cpp.gcov.html | 653 ++++++++++ .../checker/CheckerGDDR6.h.func-sort-c.html | 85 ++ .../checker/CheckerGDDR6.h.func.html | 85 ++ .../checker/CheckerGDDR6.h.gcov.html | 129 ++ .../checker/CheckerHBM2.cpp.func-sort-c.html | 97 ++ .../checker/CheckerHBM2.cpp.func.html | 97 ++ .../checker/CheckerHBM2.cpp.gcov.html | 601 +++++++++ .../checker/CheckerHBM2.h.func-sort-c.html | 85 ++ .../checker/CheckerHBM2.h.func.html | 85 ++ .../checker/CheckerHBM2.h.gcov.html | 129 ++ .../CheckerLPDDR4.cpp.func-sort-c.html | 97 ++ .../checker/CheckerLPDDR4.cpp.func.html | 97 ++ .../checker/CheckerLPDDR4.cpp.gcov.html | 600 +++++++++ .../checker/CheckerLPDDR4.h.func-sort-c.html | 85 ++ .../checker/CheckerLPDDR4.h.func.html | 85 ++ .../checker/CheckerLPDDR4.h.gcov.html | 129 ++ .../CheckerWideIO.cpp.func-sort-c.html | 97 ++ .../checker/CheckerWideIO.cpp.func.html | 97 ++ .../checker/CheckerWideIO.cpp.gcov.html | 488 +++++++ .../checker/CheckerWideIO.h.func-sort-c.html | 85 ++ .../checker/CheckerWideIO.h.func.html | 85 ++ .../checker/CheckerWideIO.h.gcov.html | 129 ++ .../CheckerWideIO2.cpp.func-sort-c.html | 97 ++ .../checker/CheckerWideIO2.cpp.func.html | 97 ++ .../checker/CheckerWideIO2.cpp.gcov.html | 566 +++++++++ .../checker/CheckerWideIO2.h.func-sort-c.html | 85 ++ .../checker/CheckerWideIO2.h.func.html | 85 ++ .../checker/CheckerWideIO2.h.gcov.html | 129 ++ .../src/controller/checker/index-sort-f.html | 273 ++++ .../src/controller/checker/index-sort-l.html | 273 ++++ .../library/src/controller/checker/index.html | 273 ++++ .../cmdmux/CmdMuxOldest.cpp.func-sort-c.html | 89 ++ .../cmdmux/CmdMuxOldest.cpp.func.html | 89 ++ .../cmdmux/CmdMuxOldest.cpp.gcov.html | 145 +++ .../cmdmux/CmdMuxOldest.h.func-sort-c.html | 89 ++ .../cmdmux/CmdMuxOldest.h.func.html | 89 ++ .../cmdmux/CmdMuxOldest.h.gcov.html | 125 ++ .../cmdmux/CmdMuxStrict.cpp.func-sort-c.html | 89 ++ .../cmdmux/CmdMuxStrict.cpp.func.html | 89 ++ .../cmdmux/CmdMuxStrict.cpp.gcov.html | 146 +++ .../cmdmux/CmdMuxStrict.h.func-sort-c.html | 89 ++ .../cmdmux/CmdMuxStrict.h.func.html | 89 ++ .../cmdmux/CmdMuxStrict.h.gcov.html | 125 ++ .../src/controller/cmdmux/index-sort-f.html | 133 ++ .../src/controller/cmdmux/index-sort-l.html | 133 ++ .../library/src/controller/cmdmux/index.html | 133 ++ .../library/src/controller/index-sort-f.html | 173 +++ .../library/src/controller/index-sort-l.html | 173 +++ .../DRAMSys/library/src/controller/index.html | 173 +++ ...PowerDownManagerDummy.cpp.func-sort-c.html | 93 ++ .../PowerDownManagerDummy.cpp.func.html | 93 ++ .../PowerDownManagerDummy.cpp.gcov.html | 132 ++ .../PowerDownManagerDummy.h.func-sort-c.html | 105 ++ .../PowerDownManagerDummy.h.func.html | 105 ++ .../PowerDownManagerDummy.h.gcov.html | 135 ++ ...rDownManagerStaggered.cpp.func-sort-c.html | 117 ++ .../PowerDownManagerStaggered.cpp.func.html | 117 ++ .../PowerDownManagerStaggered.cpp.gcov.html | 253 ++++ ...werDownManagerStaggered.h.func-sort-c.html | 89 ++ .../PowerDownManagerStaggered.h.func.html | 89 ++ .../PowerDownManagerStaggered.h.gcov.html | 127 ++ .../controller/powerdown/index-sort-f.html | 133 ++ .../controller/powerdown/index-sort-l.html | 133 ++ .../src/controller/powerdown/index.html | 133 ++ ...efreshManagerBankwise.cpp.func-sort-c.html | 97 ++ .../RefreshManagerBankwise.cpp.func.html | 97 ++ .../RefreshManagerBankwise.cpp.gcov.html | 294 +++++ .../RefreshManagerBankwise.h.func-sort-c.html | 85 ++ .../RefreshManagerBankwise.h.func.html | 85 ++ .../RefreshManagerBankwise.h.gcov.html | 131 ++ .../RefreshManagerDummy.cpp.func-sort-c.html | 93 ++ .../refresh/RefreshManagerDummy.cpp.func.html | 93 ++ .../refresh/RefreshManagerDummy.cpp.gcov.html | 132 ++ .../RefreshManagerDummy.h.func-sort-c.html | 93 ++ .../refresh/RefreshManagerDummy.h.func.html | 93 ++ .../refresh/RefreshManagerDummy.h.gcov.html | 134 ++ ...efreshManagerRankwise.cpp.func-sort-c.html | 101 ++ .../RefreshManagerRankwise.cpp.func.html | 101 ++ .../RefreshManagerRankwise.cpp.gcov.html | 274 ++++ .../RefreshManagerRankwise.h.func-sort-c.html | 89 ++ .../RefreshManagerRankwise.h.func.html | 89 ++ .../RefreshManagerRankwise.h.gcov.html | 129 ++ .../src/controller/refresh/index-sort-f.html | 153 +++ .../src/controller/refresh/index-sort-l.html | 153 +++ .../library/src/controller/refresh/index.html | 153 +++ .../RespQueueFifo.cpp.func-sort-c.html | 101 ++ .../respqueue/RespQueueFifo.cpp.func.html | 101 ++ .../respqueue/RespQueueFifo.cpp.gcov.html | 152 +++ .../RespQueueFifo.h.func-sort-c.html | 81 ++ .../respqueue/RespQueueFifo.h.func.html | 81 ++ .../respqueue/RespQueueFifo.h.gcov.html | 129 ++ .../RespQueueReorder.cpp.func-sort-c.html | 93 ++ .../respqueue/RespQueueReorder.cpp.func.html | 93 ++ .../respqueue/RespQueueReorder.cpp.gcov.html | 159 +++ .../RespQueueReorder.h.func-sort-c.html | 81 ++ .../respqueue/RespQueueReorder.h.func.html | 81 ++ .../respqueue/RespQueueReorder.h.gcov.html | 128 ++ .../controller/respqueue/index-sort-f.html | 133 ++ .../controller/respqueue/index-sort-l.html | 133 ++ .../src/controller/respqueue/index.html | 133 ++ .../SchedulerFifo.cpp.func-sort-c.html | 101 ++ .../scheduler/SchedulerFifo.cpp.func.html | 101 ++ .../scheduler/SchedulerFifo.cpp.gcov.html | 176 +++ .../SchedulerFifo.h.func-sort-c.html | 89 ++ .../scheduler/SchedulerFifo.h.func.html | 89 ++ .../scheduler/SchedulerFifo.h.gcov.html | 130 ++ .../SchedulerFrFcfs.cpp.func-sort-c.html | 89 ++ .../scheduler/SchedulerFrFcfs.cpp.func.html | 89 ++ .../scheduler/SchedulerFrFcfs.cpp.gcov.html | 203 +++ .../SchedulerFrFcfs.h.func-sort-c.html | 89 ++ .../scheduler/SchedulerFrFcfs.h.func.html | 89 ++ .../scheduler/SchedulerFrFcfs.h.gcov.html | 130 ++ .../SchedulerFrFcfsGrp.cpp.func-sort-c.html | 89 ++ .../SchedulerFrFcfsGrp.cpp.func.html | 89 ++ .../SchedulerFrFcfsGrp.cpp.gcov.html | 226 ++++ .../SchedulerFrFcfsGrp.h.func-sort-c.html | 89 ++ .../scheduler/SchedulerFrFcfsGrp.h.func.html | 89 ++ .../scheduler/SchedulerFrFcfsGrp.h.gcov.html | 131 ++ .../controller/scheduler/index-sort-f.html | 153 +++ .../controller/scheduler/index-sort-l.html | 153 +++ .../src/controller/scheduler/index.html | 153 +++ .../src/error/ECC/Bit.cpp.func-sort-c.html | 101 ++ .../library/src/error/ECC/Bit.cpp.func.html | 101 ++ .../library/src/error/ECC/Bit.cpp.gcov.html | 109 ++ .../src/error/ECC/Bit.h.func-sort-c.html | 81 ++ .../library/src/error/ECC/Bit.h.func.html | 81 ++ .../library/src/error/ECC/Bit.h.gcov.html | 144 +++ .../src/error/ECC/ECC.cpp.func-sort-c.html | 113 ++ .../library/src/error/ECC/ECC.cpp.func.html | 113 ++ .../library/src/error/ECC/ECC.cpp.gcov.html | 210 +++ .../src/error/ECC/Word.cpp.func-sort-c.html | 113 ++ .../library/src/error/ECC/Word.cpp.func.html | 113 ++ .../library/src/error/ECC/Word.cpp.gcov.html | 229 ++++ .../src/error/ECC/Word.h.func-sort-c.html | 81 ++ .../library/src/error/ECC/Word.h.func.html | 81 ++ .../library/src/error/ECC/Word.h.gcov.html | 135 ++ .../library/src/error/ECC/index-sort-f.html | 143 +++ .../library/src/error/ECC/index-sort-l.html | 143 +++ html/DRAMSys/library/src/error/ECC/index.html | 143 +++ .../error/eccbaseclass.cpp.func-sort-c.html | 97 ++ .../src/error/eccbaseclass.cpp.func.html | 97 ++ .../src/error/eccbaseclass.cpp.gcov.html | 168 +++ .../src/error/eccbaseclass.h.func-sort-c.html | 93 ++ .../src/error/eccbaseclass.h.func.html | 93 ++ .../src/error/eccbaseclass.h.gcov.html | 141 +++ .../src/error/ecchamming.cpp.func-sort-c.html | 101 ++ .../src/error/ecchamming.cpp.func.html | 101 ++ .../src/error/ecchamming.cpp.gcov.html | 215 ++++ .../src/error/ecchamming.h.func-sort-c.html | 93 ++ .../library/src/error/ecchamming.h.func.html | 93 ++ .../library/src/error/ecchamming.h.gcov.html | 128 ++ .../src/error/errormodel.cpp.func-sort-c.html | 125 ++ .../src/error/errormodel.cpp.func.html | 125 ++ .../src/error/errormodel.cpp.gcov.html | 828 ++++++++++++ .../src/error/errormodel.h.func-sort-c.html | 81 ++ .../library/src/error/errormodel.h.func.html | 81 ++ .../library/src/error/errormodel.h.gcov.html | 209 +++ .../library/src/error/index-sort-f.html | 153 +++ .../library/src/error/index-sort-l.html | 153 +++ html/DRAMSys/library/src/error/index.html | 153 +++ .../simulation/Arbiter.cpp.func-sort-c.html | 97 ++ .../src/simulation/Arbiter.cpp.func.html | 97 ++ .../src/simulation/Arbiter.cpp.gcov.html | 330 +++++ .../src/simulation/Arbiter.h.func-sort-c.html | 85 ++ .../src/simulation/Arbiter.h.func.html | 85 ++ .../src/simulation/Arbiter.h.gcov.html | 137 ++ .../simulation/DRAMSys.cpp.func-sort-c.html | 109 ++ .../src/simulation/DRAMSys.cpp.func.html | 109 ++ .../src/simulation/DRAMSys.cpp.gcov.html | 360 ++++++ .../DRAMSysRecordable.cpp.func-sort-c.html | 101 ++ .../DRAMSysRecordable.cpp.func.html | 101 ++ .../DRAMSysRecordable.cpp.gcov.html | 302 +++++ ...TemperatureController.cpp.func-sort-c.html | 113 ++ .../TemperatureController.cpp.func.html | 113 ++ .../TemperatureController.cpp.gcov.html | 261 ++++ .../TemperatureController.h.func-sort-c.html | 97 ++ .../TemperatureController.h.func.html | 97 ++ .../TemperatureController.h.gcov.html | 198 +++ .../simulation/dram/Dram.cpp.func-sort-c.html | 105 ++ .../src/simulation/dram/Dram.cpp.func.html | 105 ++ .../src/simulation/dram/Dram.cpp.gcov.html | 307 +++++ .../simulation/dram/Dram.h.func-sort-c.html | 81 ++ .../src/simulation/dram/Dram.h.func.html | 81 ++ .../src/simulation/dram/Dram.h.gcov.html | 144 +++ .../dram/DramDDR3.cpp.func-sort-c.html | 89 ++ .../simulation/dram/DramDDR3.cpp.func.html | 89 ++ .../simulation/dram/DramDDR3.cpp.gcov.html | 229 ++++ .../dram/DramDDR3.h.func-sort-c.html | 89 ++ .../src/simulation/dram/DramDDR3.h.func.html | 89 ++ .../src/simulation/dram/DramDDR3.h.gcov.html | 132 ++ .../dram/DramDDR4.cpp.func-sort-c.html | 89 ++ .../simulation/dram/DramDDR4.cpp.func.html | 89 ++ .../simulation/dram/DramDDR4.cpp.gcov.html | 229 ++++ .../dram/DramDDR4.h.func-sort-c.html | 89 ++ .../src/simulation/dram/DramDDR4.h.func.html | 89 ++ .../src/simulation/dram/DramDDR4.h.gcov.html | 132 ++ .../dram/DramGDDR5.cpp.func-sort-c.html | 89 ++ .../simulation/dram/DramGDDR5.cpp.func.html | 89 ++ .../simulation/dram/DramGDDR5.cpp.gcov.html | 135 ++ .../dram/DramGDDR5.h.func-sort-c.html | 89 ++ .../src/simulation/dram/DramGDDR5.h.func.html | 89 ++ .../src/simulation/dram/DramGDDR5.h.gcov.html | 132 ++ .../dram/DramGDDR5X.cpp.func-sort-c.html | 89 ++ .../simulation/dram/DramGDDR5X.cpp.func.html | 89 ++ .../simulation/dram/DramGDDR5X.cpp.gcov.html | 135 ++ .../dram/DramGDDR5X.h.func-sort-c.html | 89 ++ .../simulation/dram/DramGDDR5X.h.func.html | 89 ++ .../simulation/dram/DramGDDR5X.h.gcov.html | 132 ++ .../dram/DramGDDR6.cpp.func-sort-c.html | 89 ++ .../simulation/dram/DramGDDR6.cpp.func.html | 89 ++ .../simulation/dram/DramGDDR6.cpp.gcov.html | 135 ++ .../dram/DramGDDR6.h.func-sort-c.html | 89 ++ .../src/simulation/dram/DramGDDR6.h.func.html | 89 ++ .../src/simulation/dram/DramGDDR6.h.gcov.html | 132 ++ .../dram/DramHBM2.cpp.func-sort-c.html | 89 ++ .../simulation/dram/DramHBM2.cpp.func.html | 89 ++ .../simulation/dram/DramHBM2.cpp.gcov.html | 135 ++ .../dram/DramHBM2.h.func-sort-c.html | 89 ++ .../src/simulation/dram/DramHBM2.h.func.html | 89 ++ .../src/simulation/dram/DramHBM2.h.gcov.html | 132 ++ .../dram/DramLPDDR4.cpp.func-sort-c.html | 89 ++ .../simulation/dram/DramLPDDR4.cpp.func.html | 89 ++ .../simulation/dram/DramLPDDR4.cpp.gcov.html | 135 ++ .../dram/DramLPDDR4.h.func-sort-c.html | 89 ++ .../simulation/dram/DramLPDDR4.h.func.html | 89 ++ .../simulation/dram/DramLPDDR4.h.gcov.html | 132 ++ .../dram/DramRecordable.cpp.func-sort-c.html | 269 ++++ .../dram/DramRecordable.cpp.func.html | 269 ++++ .../dram/DramRecordable.cpp.gcov.html | 241 ++++ .../dram/DramRecordable.h.func-sort-c.html | 189 +++ .../dram/DramRecordable.h.func.html | 189 +++ .../dram/DramRecordable.h.gcov.html | 155 +++ .../dram/DramWideIO.cpp.func-sort-c.html | 97 ++ .../simulation/dram/DramWideIO.cpp.func.html | 97 ++ .../simulation/dram/DramWideIO.cpp.gcov.html | 304 +++++ .../dram/DramWideIO2.cpp.func-sort-c.html | 89 ++ .../simulation/dram/DramWideIO2.cpp.func.html | 89 ++ .../simulation/dram/DramWideIO2.cpp.gcov.html | 135 ++ .../dram/DramWideIO2.h.func-sort-c.html | 89 ++ .../simulation/dram/DramWideIO2.h.func.html | 89 ++ .../simulation/dram/DramWideIO2.h.gcov.html | 132 ++ .../src/simulation/dram/index-sort-f.html | 303 +++++ .../src/simulation/dram/index-sort-l.html | 303 +++++ .../library/src/simulation/dram/index.html | 303 +++++ .../library/src/simulation/index-sort-f.html | 153 +++ .../library/src/simulation/index-sort-l.html | 153 +++ .../DRAMSys/library/src/simulation/index.html | 153 +++ .../MemoryManager.cpp.func-sort-c.html | 109 ++ .../simulator/MemoryManager.cpp.func.html | 109 ++ .../simulator/MemoryManager.cpp.gcov.html | 169 +++ .../simulator/StlPlayer.h.func-sort-c.html | 97 ++ html/DRAMSys/simulator/StlPlayer.h.func.html | 97 ++ html/DRAMSys/simulator/StlPlayer.h.gcov.html | 259 ++++ .../TracePlayer.cpp.func-sort-c.html | 125 ++ .../simulator/TracePlayer.cpp.func.html | 125 ++ .../simulator/TracePlayer.cpp.gcov.html | 217 ++++ .../simulator/TracePlayer.h.func-sort-c.html | 89 ++ .../DRAMSys/simulator/TracePlayer.h.func.html | 89 ++ .../DRAMSys/simulator/TracePlayer.h.gcov.html | 139 ++ .../TracePlayerListener.h.func-sort-c.html | 81 ++ .../simulator/TracePlayerListener.h.func.html | 81 ++ .../simulator/TracePlayerListener.h.gcov.html | 131 ++ .../simulator/TraceSetup.cpp.func-sort-c.html | 97 ++ .../simulator/TraceSetup.cpp.func.html | 97 ++ .../simulator/TraceSetup.cpp.gcov.html | 199 +++ .../simulator/TraceSetup.h.func-sort-c.html | 89 ++ html/DRAMSys/simulator/TraceSetup.h.func.html | 89 ++ html/DRAMSys/simulator/TraceSetup.h.gcov.html | 141 +++ html/DRAMSys/simulator/index-sort-f.html | 173 +++ html/DRAMSys/simulator/index-sort-l.html | 173 +++ html/DRAMSys/simulator/index.html | 173 +++ .../simulator/main.cpp.func-sort-c.html | 101 ++ html/DRAMSys/simulator/main.cpp.func.html | 101 ++ html/DRAMSys/simulator/main.cpp.gcov.html | 232 ++++ html/gcov.css | 519 ++++++++ html/index-sort-f.html | 243 ++++ html/index-sort-l.html | 243 ++++ html/index.html | 243 ++++ 434 files changed, 64162 insertions(+), 6 deletions(-) create mode 100644 html/DRAMSys/library/src/common/AddressDecoder.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/common/AddressDecoder.cpp.func.html create mode 100644 html/DRAMSys/library/src/common/AddressDecoder.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/common/AddressDecoder.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/common/AddressDecoder.h.func.html create mode 100644 html/DRAMSys/library/src/common/AddressDecoder.h.gcov.html create mode 100644 html/DRAMSys/library/src/common/TlmRecorder.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/common/TlmRecorder.cpp.func.html create mode 100644 html/DRAMSys/library/src/common/TlmRecorder.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/common/TlmRecorder.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/common/TlmRecorder.h.func.html create mode 100644 html/DRAMSys/library/src/common/TlmRecorder.h.gcov.html create mode 100644 html/DRAMSys/library/src/common/dramExtensions.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/common/dramExtensions.cpp.func.html create mode 100644 html/DRAMSys/library/src/common/dramExtensions.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/common/dramExtensions.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/common/dramExtensions.h.func.html create mode 100644 html/DRAMSys/library/src/common/dramExtensions.h.gcov.html create mode 100644 html/DRAMSys/library/src/common/index-sort-f.html create mode 100644 html/DRAMSys/library/src/common/index-sort-l.html create mode 100644 html/DRAMSys/library/src/common/index.html create mode 100644 html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func.html create mode 100644 html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.gcov.html create mode 100644 html/DRAMSys/library/src/common/utils.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/common/utils.cpp.func.html create mode 100644 html/DRAMSys/library/src/common/utils.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/common/utils.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/common/utils.h.func.html create mode 100644 html/DRAMSys/library/src/common/utils.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/Configuration.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/Configuration.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/Configuration.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/Configuration.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/Configuration.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/Configuration.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/index-sort-f.html create mode 100644 html/DRAMSys/library/src/configuration/index-sort-l.html create mode 100644 html/DRAMSys/library/src/configuration/index.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.gcov.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/index-sort-f.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/index-sort-l.html create mode 100644 html/DRAMSys/library/src/configuration/memspec/index.html create mode 100644 html/DRAMSys/library/src/controller/BankMachine.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/BankMachine.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/BankMachine.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/BankMachine.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/BankMachine.h.func.html create mode 100644 html/DRAMSys/library/src/controller/BankMachine.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/Command.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/Command.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/Command.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/Command.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/Command.h.func.html create mode 100644 html/DRAMSys/library/src/controller/Command.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/Controller.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/Controller.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/Controller.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/ControllerIF.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/ControllerIF.h.func.html create mode 100644 html/DRAMSys/library/src/controller/ControllerIF.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.h.func.html create mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func.html create mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/checker/index-sort-f.html create mode 100644 html/DRAMSys/library/src/controller/checker/index-sort-l.html create mode 100644 html/DRAMSys/library/src/controller/checker/index.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/index-sort-f.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/index-sort-l.html create mode 100644 html/DRAMSys/library/src/controller/cmdmux/index.html create mode 100644 html/DRAMSys/library/src/controller/index-sort-f.html create mode 100644 html/DRAMSys/library/src/controller/index-sort-l.html create mode 100644 html/DRAMSys/library/src/controller/index.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/index-sort-f.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/index-sort-l.html create mode 100644 html/DRAMSys/library/src/controller/powerdown/index.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func.html create mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/refresh/index-sort-f.html create mode 100644 html/DRAMSys/library/src/controller/refresh/index-sort-l.html create mode 100644 html/DRAMSys/library/src/controller/refresh/index.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/index-sort-f.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/index-sort-l.html create mode 100644 html/DRAMSys/library/src/controller/respqueue/index.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.gcov.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/index-sort-f.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/index-sort-l.html create mode 100644 html/DRAMSys/library/src/controller/scheduler/index.html create mode 100644 html/DRAMSys/library/src/error/ECC/Bit.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/ECC/Bit.cpp.func.html create mode 100644 html/DRAMSys/library/src/error/ECC/Bit.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/error/ECC/Bit.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/ECC/Bit.h.func.html create mode 100644 html/DRAMSys/library/src/error/ECC/Bit.h.gcov.html create mode 100644 html/DRAMSys/library/src/error/ECC/ECC.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/ECC/ECC.cpp.func.html create mode 100644 html/DRAMSys/library/src/error/ECC/ECC.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/error/ECC/Word.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/ECC/Word.cpp.func.html create mode 100644 html/DRAMSys/library/src/error/ECC/Word.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/error/ECC/Word.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/ECC/Word.h.func.html create mode 100644 html/DRAMSys/library/src/error/ECC/Word.h.gcov.html create mode 100644 html/DRAMSys/library/src/error/ECC/index-sort-f.html create mode 100644 html/DRAMSys/library/src/error/ECC/index-sort-l.html create mode 100644 html/DRAMSys/library/src/error/ECC/index.html create mode 100644 html/DRAMSys/library/src/error/eccbaseclass.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/eccbaseclass.cpp.func.html create mode 100644 html/DRAMSys/library/src/error/eccbaseclass.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/error/eccbaseclass.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/eccbaseclass.h.func.html create mode 100644 html/DRAMSys/library/src/error/eccbaseclass.h.gcov.html create mode 100644 html/DRAMSys/library/src/error/ecchamming.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/ecchamming.cpp.func.html create mode 100644 html/DRAMSys/library/src/error/ecchamming.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/error/ecchamming.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/ecchamming.h.func.html create mode 100644 html/DRAMSys/library/src/error/ecchamming.h.gcov.html create mode 100644 html/DRAMSys/library/src/error/errormodel.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/errormodel.cpp.func.html create mode 100644 html/DRAMSys/library/src/error/errormodel.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/error/errormodel.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/error/errormodel.h.func.html create mode 100644 html/DRAMSys/library/src/error/errormodel.h.gcov.html create mode 100644 html/DRAMSys/library/src/error/index-sort-f.html create mode 100644 html/DRAMSys/library/src/error/index-sort-l.html create mode 100644 html/DRAMSys/library/src/error/index.html create mode 100644 html/DRAMSys/library/src/simulation/Arbiter.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/Arbiter.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/Arbiter.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/Arbiter.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/Arbiter.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/Arbiter.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/DRAMSys.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/DRAMSys.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/DRAMSys.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func-sort-c.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func.html create mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.gcov.html create mode 100644 html/DRAMSys/library/src/simulation/dram/index-sort-f.html create mode 100644 html/DRAMSys/library/src/simulation/dram/index-sort-l.html create mode 100644 html/DRAMSys/library/src/simulation/dram/index.html create mode 100644 html/DRAMSys/library/src/simulation/index-sort-f.html create mode 100644 html/DRAMSys/library/src/simulation/index-sort-l.html create mode 100644 html/DRAMSys/library/src/simulation/index.html create mode 100644 html/DRAMSys/simulator/MemoryManager.cpp.func-sort-c.html create mode 100644 html/DRAMSys/simulator/MemoryManager.cpp.func.html create mode 100644 html/DRAMSys/simulator/MemoryManager.cpp.gcov.html create mode 100644 html/DRAMSys/simulator/StlPlayer.h.func-sort-c.html create mode 100644 html/DRAMSys/simulator/StlPlayer.h.func.html create mode 100644 html/DRAMSys/simulator/StlPlayer.h.gcov.html create mode 100644 html/DRAMSys/simulator/TracePlayer.cpp.func-sort-c.html create mode 100644 html/DRAMSys/simulator/TracePlayer.cpp.func.html create mode 100644 html/DRAMSys/simulator/TracePlayer.cpp.gcov.html create mode 100644 html/DRAMSys/simulator/TracePlayer.h.func-sort-c.html create mode 100644 html/DRAMSys/simulator/TracePlayer.h.func.html create mode 100644 html/DRAMSys/simulator/TracePlayer.h.gcov.html create mode 100644 html/DRAMSys/simulator/TracePlayerListener.h.func-sort-c.html create mode 100644 html/DRAMSys/simulator/TracePlayerListener.h.func.html create mode 100644 html/DRAMSys/simulator/TracePlayerListener.h.gcov.html create mode 100644 html/DRAMSys/simulator/TraceSetup.cpp.func-sort-c.html create mode 100644 html/DRAMSys/simulator/TraceSetup.cpp.func.html create mode 100644 html/DRAMSys/simulator/TraceSetup.cpp.gcov.html create mode 100644 html/DRAMSys/simulator/TraceSetup.h.func-sort-c.html create mode 100644 html/DRAMSys/simulator/TraceSetup.h.func.html create mode 100644 html/DRAMSys/simulator/TraceSetup.h.gcov.html create mode 100644 html/DRAMSys/simulator/index-sort-f.html create mode 100644 html/DRAMSys/simulator/index-sort-l.html create mode 100644 html/DRAMSys/simulator/index.html create mode 100644 html/DRAMSys/simulator/main.cpp.func-sort-c.html create mode 100644 html/DRAMSys/simulator/main.cpp.func.html create mode 100644 html/DRAMSys/simulator/main.cpp.gcov.html create mode 100644 html/gcov.css create mode 100644 html/index-sort-f.html create mode 100644 html/index-sort-l.html create mode 100644 html/index.html diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 30aa8890..bb478fa4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,9 +20,8 @@ build: - rm -rf build - mkdir -p build - cd build - - export COVERAGE=true - cmake ../DRAMSys - - make -j 24 + - make -j 16 - find . -name "*.o" -type f -delete - rm -rf ${CI_PROJECT_DIR}/coverage - mkdir -p ${CI_PROJECT_DIR}/coverage @@ -48,15 +47,11 @@ coverage: - lcov `find coverage -type f -exec echo "-a {}" \;` -o coverage/final.out - lcov --remove coverage/final.out '*/systemc*/include/*' '*/traceAnalyzer/*' '*/gcc*/include/*' '/usr/include/*' '*/third_party/*' -o coverage/final_dramsys.out - lcov --list coverage/final_dramsys.out - # Create html - - mkdir ${CI_PROJECT_DIR}/html - - genhtml --prefix ${CI_PROJECT_DIR} --ignore-errors source coverage/final_dramsys.out --legend --title "`git log | head | grep commit`" --output-directory=html/ artifacts: paths: - coverage/final.out - coverage/final_dramsys.out - - html/ include: - '/DRAMSys/tests/lpddr4/ci.yml' diff --git a/html/DRAMSys/library/src/common/AddressDecoder.cpp.func-sort-c.html b/html/DRAMSys/library/src/common/AddressDecoder.cpp.func-sort-c.html new file mode 100644 index 00000000..a49c5700 --- /dev/null +++ b/html/DRAMSys/library/src/common/AddressDecoder.cpp.func-sort-c.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - AddressDecoder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11313782.5 %
Date:2020-06-30 17:34:44Functions:77100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN14AddressDecoder23getUnsignedAttrFromJsonEN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEES9_30
_Z41__static_initialization_and_destruction_0ii30
_ZN14AddressDecoder5printEv30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/AddressDecoder.cpp.func.html b/html/DRAMSys/library/src/common/AddressDecoder.cpp.func.html new file mode 100644 index 00000000..08e0325a --- /dev/null +++ b/html/DRAMSys/library/src/common/AddressDecoder.cpp.func.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - AddressDecoder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11313782.5 %
Date:2020-06-30 17:34:44Functions:77100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN14AddressDecoder23getUnsignedAttrFromJsonEN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEES9_30
_Z41__static_initialization_and_destruction_0ii30
_ZN14AddressDecoder5printEv30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/AddressDecoder.cpp.gcov.html b/html/DRAMSys/library/src/common/AddressDecoder.cpp.gcov.html new file mode 100644 index 00000000..9316d48d --- /dev/null +++ b/html/DRAMSys/library/src/common/AddressDecoder.cpp.gcov.html @@ -0,0 +1,367 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - AddressDecoder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11313782.5 %
Date:2020-06-30 17:34:44Functions:77100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47          10 : /* EOF */
+      48             : /* EOF */
+      49          10 : /* EOF */
+      50             : /* EOF */
+      51          10 : /* EOF */
+      52             : /* EOF */
+      53          20 : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68         210 : /* EOF */
+      69             : /* EOF */
+      70         210 : /* EOF */
+      71         355 : /* EOF */
+      72             : /* EOF */
+      73        2573 : /* EOF */
+      74             : /* EOF */
+      75        1848 : /* EOF */
+      76         924 : /* EOF */
+      77        2772 : /* EOF */
+      78             : /* EOF */
+      79           0 : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82         210 : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85         270 : /* EOF */
+      86             : /* EOF */
+      87          90 : /* EOF */
+      88          60 : /* EOF */
+      89          60 : /* EOF */
+      90           0 : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93          30 : /* EOF */
+      94             : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97             : /* EOF */
+      98           0 : /* EOF */
+      99             : /* EOF */
+     100           0 : /* EOF */
+     101           0 : /* EOF */
+     102           0 : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109          90 : /* EOF */
+     110             : /* EOF */
+     111         160 : /* EOF */
+     112             : /* EOF */
+     113          10 : /* EOF */
+     114          10 : /* EOF */
+     115          30 : /* EOF */
+     116          25 : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119         180 : /* EOF */
+     120         180 : /* EOF */
+     121         180 : /* EOF */
+     122         180 : /* EOF */
+     123         180 : /* EOF */
+     124         180 : /* EOF */
+     125         180 : /* EOF */
+     126             : /* EOF */
+     127          60 : /* EOF */
+     128          60 : /* EOF */
+     129          60 : /* EOF */
+     130          60 : /* EOF */
+     131          60 : /* EOF */
+     132          60 : /* EOF */
+     133          60 : /* EOF */
+     134             : /* EOF */
+     135          30 : /* EOF */
+     136             : /* EOF */
+     137          30 : /* EOF */
+     138          30 : /* EOF */
+     139             : /* EOF */
+     140          30 : /* EOF */
+     141          30 : /* EOF */
+     142             : /* EOF */
+     143          30 : /* EOF */
+     144          30 : /* EOF */
+     145             : /* EOF */
+     146          30 : /* EOF */
+     147          30 : /* EOF */
+     148          30 : /* EOF */
+     149          30 : /* EOF */
+     150           0 : /* EOF */
+     151          30 : /* EOF */
+     152             : /* EOF */
+     153      252938 : /* EOF */
+     154             : /* EOF */
+     155      252938 : /* EOF */
+     156           0 : /* EOF */
+     157             : /* EOF */
+     158             : /* EOF */
+     159             : /* EOF */
+     160             : /* EOF */
+     161     1015742 : /* EOF */
+     162             : /* EOF */
+     163             : /* EOF */
+     164        1330 : /* EOF */
+     165        1330 : /* EOF */
+     166        1330 : /* EOF */
+     167             : /* EOF */
+     168             : /* EOF */
+     169      252938 : /* EOF */
+     170             : /* EOF */
+     171      563220 : /* EOF */
+     172       57344 : /* EOF */
+     173             : /* EOF */
+     174      509866 : /* EOF */
+     175        2660 : /* EOF */
+     176             : /* EOF */
+     177     1295380 : /* EOF */
+     178      526336 : /* EOF */
+     179             : /* EOF */
+     180     2387566 : /* EOF */
+     181     1254460 : /* EOF */
+     182             : /* EOF */
+     183    12244168 : /* EOF */
+     184     7825528 : /* EOF */
+     185             : /* EOF */
+     186     7835968 : /* EOF */
+     187     4886728 : /* EOF */
+     188             : /* EOF */
+     189     2148190 : /* EOF */
+     190     1094876 : /* EOF */
+     191             : /* EOF */
+     192      252938 : /* EOF */
+     193      252938 : /* EOF */
+     194             : /* EOF */
+     195      252938 : /* EOF */
+     196             : /* EOF */
+     197             : /* EOF */
+     198          30 : /* EOF */
+     199             : /* EOF */
+     200          60 : /* EOF */
+     201          60 : /* EOF */
+     202          30 : /* EOF */
+     203             : /* EOF */
+     204          67 : /* EOF */
+     205             : /* EOF */
+     206          14 : /* EOF */
+     207          28 : /* EOF */
+     208             : /* EOF */
+     209           0 : /* EOF */
+     210           0 : /* EOF */
+     211             : /* EOF */
+     212          35 : /* EOF */
+     213             : /* EOF */
+     214             : /* EOF */
+     215          65 : /* EOF */
+     216             : /* EOF */
+     217          10 : /* EOF */
+     218          25 : /* EOF */
+     219             : /* EOF */
+     220           5 : /* EOF */
+     221           0 : /* EOF */
+     222             : /* EOF */
+     223          25 : /* EOF */
+     224             : /* EOF */
+     225             : /* EOF */
+     226          86 : /* EOF */
+     227             : /* EOF */
+     228          52 : /* EOF */
+     229         104 : /* EOF */
+     230             : /* EOF */
+     231           0 : /* EOF */
+     232           0 : /* EOF */
+     233             : /* EOF */
+     234         130 : /* EOF */
+     235             : /* EOF */
+     236             : /* EOF */
+     237         137 : /* EOF */
+     238             : /* EOF */
+     239         154 : /* EOF */
+     240         323 : /* EOF */
+     241             : /* EOF */
+     242          15 : /* EOF */
+     243           5 : /* EOF */
+     244             : /* EOF */
+     245         385 : /* EOF */
+     246             : /* EOF */
+     247             : /* EOF */
+     248         517 : /* EOF */
+     249             : /* EOF */
+     250         914 : /* EOF */
+     251        1898 : /* EOF */
+     252             : /* EOF */
+     253          70 : /* EOF */
+     254           0 : /* EOF */
+     255             : /* EOF */
+     256        2285 : /* EOF */
+     257             : /* EOF */
+     258             : /* EOF */
+     259         339 : /* EOF */
+     260             : /* EOF */
+     261         558 : /* EOF */
+     262        1166 : /* EOF */
+     263             : /* EOF */
+     264          50 : /* EOF */
+     265           0 : /* EOF */
+     266             : /* EOF */
+     267        1395 : /* EOF */
+     268             : /* EOF */
+     269             : /* EOF */
+     270         133 : /* EOF */
+     271             : /* EOF */
+     272         146 : /* EOF */
+     273         307 : /* EOF */
+     274             : /* EOF */
+     275          15 : /* EOF */
+     276           0 : /* EOF */
+     277             : /* EOF */
+     278         365 : /* EOF */
+     279             : /* EOF */
+     280             : /* EOF */
+     281          30 : /* EOF */
+     282         120 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/AddressDecoder.h.func-sort-c.html b/html/DRAMSys/library/src/common/AddressDecoder.h.func-sort-c.html new file mode 100644 index 00000000..6b6b1b19 --- /dev/null +++ b/html/DRAMSys/library/src/common/AddressDecoder.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - AddressDecoder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2450.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/AddressDecoder.h.func.html b/html/DRAMSys/library/src/common/AddressDecoder.h.func.html new file mode 100644 index 00000000..a738edb3 --- /dev/null +++ b/html/DRAMSys/library/src/common/AddressDecoder.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - AddressDecoder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2450.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/AddressDecoder.h.gcov.html b/html/DRAMSys/library/src/common/AddressDecoder.h.gcov.html new file mode 100644 index 00000000..46d860b8 --- /dev/null +++ b/html/DRAMSys/library/src/common/AddressDecoder.h.gcov.html @@ -0,0 +1,144 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - AddressDecoder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2450.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58      252938 : /* EOF */
+      59      252938 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/TlmRecorder.cpp.func-sort-c.html b/html/DRAMSys/library/src/common/TlmRecorder.cpp.func-sort-c.html new file mode 100644 index 00000000..2f95ce2b --- /dev/null +++ b/html/DRAMSys/library/src/common/TlmRecorder.cpp.func-sort-c.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - TlmRecorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25227791.0 %
Date:2020-06-30 17:34:44Functions:232688.5 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11TlmRecorder11recordPowerEdd0
_ZN11TlmRecorder22insertDebugMessageInDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKN7sc_core7sc_timeE0
_GLOBAL__sub_I__ZN11TlmRecorderC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_S5_30
_Z41__static_initialization_and_destruction_0ii30
_ZN11TlmRecorder15closeConnectionEv37
_ZN11TlmRecorder17executeSqlCommandENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TlmRecorder17insertGeneralInfoEv37
_ZN11TlmRecorder20insertCommandLengthsEv37
_ZN11TlmRecorder20prepareSqlStatementsEv37
_ZN11TlmRecorder33setUpTransactionTerminatingPhasesEv37
_ZN11TlmRecorder6openDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TlmRecorder16updateDataStrobeERKN7sc_core7sc_timeES3_RN3tlm19tlm_generic_payloadE252938
_ZN11TlmRecorder15insertRangeInDBEjRKN7sc_core7sc_timeES3_254719
_ZN11TlmRecorder21insertTransactionInDBERNS_11TransactionE254719
_ZN11TlmRecorder27removeTransactionFromSystemERN3tlm19tlm_generic_payloadE254719
_ZN11TlmRecorder26introduceTransactionSystemERN3tlm19tlm_generic_payloadE254778
_ZN11TlmRecorder15insertPhaseInDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKN7sc_core7sc_timeES9_j924402
_ZN11TlmRecorder11Transaction11setPhaseEndENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN7sc_core7sc_timeE924511
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/TlmRecorder.cpp.func.html b/html/DRAMSys/library/src/common/TlmRecorder.cpp.func.html new file mode 100644 index 00000000..df73c4c7 --- /dev/null +++ b/html/DRAMSys/library/src/common/TlmRecorder.cpp.func.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - TlmRecorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25227791.0 %
Date:2020-06-30 17:34:44Functions:232688.5 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11TlmRecorderC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_S5_30
_Z41__static_initialization_and_destruction_0ii30
_ZN11TlmRecorder11Transaction11setPhaseEndENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN7sc_core7sc_timeE924511
_ZN11TlmRecorder11recordPowerEdd0
_ZN11TlmRecorder15closeConnectionEv37
_ZN11TlmRecorder15insertPhaseInDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKN7sc_core7sc_timeES9_j924402
_ZN11TlmRecorder15insertRangeInDBEjRKN7sc_core7sc_timeES3_254719
_ZN11TlmRecorder16updateDataStrobeERKN7sc_core7sc_timeES3_RN3tlm19tlm_generic_payloadE252938
_ZN11TlmRecorder17executeSqlCommandENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TlmRecorder17insertGeneralInfoEv37
_ZN11TlmRecorder20insertCommandLengthsEv37
_ZN11TlmRecorder20prepareSqlStatementsEv37
_ZN11TlmRecorder21insertTransactionInDBERNS_11TransactionE254719
_ZN11TlmRecorder22insertDebugMessageInDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKN7sc_core7sc_timeE0
_ZN11TlmRecorder26introduceTransactionSystemERN3tlm19tlm_generic_payloadE254778
_ZN11TlmRecorder27removeTransactionFromSystemERN3tlm19tlm_generic_payloadE254719
_ZN11TlmRecorder33setUpTransactionTerminatingPhasesEv37
_ZN11TlmRecorder6openDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/TlmRecorder.cpp.gcov.html b/html/DRAMSys/library/src/common/TlmRecorder.cpp.gcov.html new file mode 100644 index 00000000..076215c9 --- /dev/null +++ b/html/DRAMSys/library/src/common/TlmRecorder.cpp.gcov.html @@ -0,0 +1,557 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - TlmRecorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25227791.0 %
Date:2020-06-30 17:34:44Functions:232688.5 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49          37 : /* EOF */
+      50             : /* EOF */
+      51         777 : /* EOF */
+      52             : /* EOF */
+      53          37 : /* EOF */
+      54          37 : /* EOF */
+      55         148 : /* EOF */
+      56             : /* EOF */
+      57          37 : /* EOF */
+      58          37 : /* EOF */
+      59          37 : /* EOF */
+      60          37 : /* EOF */
+      61          37 : /* EOF */
+      62             : /* EOF */
+      63         111 : /* EOF */
+      64          37 : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67          37 : /* EOF */
+      68             : /* EOF */
+      69         740 : /* EOF */
+      70             : /* EOF */
+      71          37 : /* EOF */
+      72          37 : /* EOF */
+      73          37 : /* EOF */
+      74          37 : /* EOF */
+      75          37 : /* EOF */
+      76          37 : /* EOF */
+      77          37 : /* EOF */
+      78          37 : /* EOF */
+      79          37 : /* EOF */
+      80          37 : /* EOF */
+      81          37 : /* EOF */
+      82          37 : /* EOF */
+      83          37 : /* EOF */
+      84             : /* EOF */
+      85           0 : /* EOF */
+      86             : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89           0 : /* EOF */
+      90           0 : /* EOF */
+      91             : /* EOF */
+      92     1849057 : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95     2103835 : /* EOF */
+      96      254778 : /* EOF */
+      97             : /* EOF */
+      98     3698114 : /* EOF */
+      99     5547171 : /* EOF */
+     100     7396228 : /* EOF */
+     101             : /* EOF */
+     102     1849057 : /* EOF */
+     103      924546 : /* EOF */
+     104             : /* EOF */
+     105     3698184 : /* EOF */
+     106             : /* EOF */
+     107      924511 : /* EOF */
+     108             : /* EOF */
+     109     3698044 : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112     7396228 : /* EOF */
+     113     1849057 : /* EOF */
+     114     1849057 : /* EOF */
+     115      254719 : /* EOF */
+     116             : /* EOF */
+     117     3698114 : /* EOF */
+     118     1849057 : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121      252938 : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125      505876 : /* EOF */
+     126      505876 : /* EOF */
+     127      252938 : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130           0 : /* EOF */
+     131             : /* EOF */
+     132           0 : /* EOF */
+     133           0 : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136             : /* EOF */
+     137             : /* EOF */
+     138      254778 : /* EOF */
+     139             : /* EOF */
+     140      254778 : /* EOF */
+     141      254778 : /* EOF */
+     142      764334 : /* EOF */
+     143      509556 : /* EOF */
+     144      254778 : /* EOF */
+     145      254778 : /* EOF */
+     146      509556 : /* EOF */
+     147      509556 : /* EOF */
+     148             : /* EOF */
+     149      509556 : /* EOF */
+     150        3680 : /* EOF */
+     151             : /* EOF */
+     152      505876 : /* EOF */
+     153      758814 : /* EOF */
+     154             : /* EOF */
+     155             : /* EOF */
+     156             : /* EOF */
+     157             : /* EOF */
+     158      254778 : /* EOF */
+     159             : /* EOF */
+     160             : /* EOF */
+     161         250 : /* EOF */
+     162             : /* EOF */
+     163      254778 : /* EOF */
+     164             : /* EOF */
+     165      254719 : /* EOF */
+     166             : /* EOF */
+     167             : /* EOF */
+     168             : /* EOF */
+     169             : /* EOF */
+     170             : /* EOF */
+     171             : /* EOF */
+     172      254719 : /* EOF */
+     173      254719 : /* EOF */
+     174      509438 : /* EOF */
+     175      254719 : /* EOF */
+     176             : /* EOF */
+     177         287 : /* EOF */
+     178             : /* EOF */
+     179         287 : /* EOF */
+     180      255867 : /* EOF */
+     181             : /* EOF */
+     182      254719 : /* EOF */
+     183     1943278 : /* EOF */
+     184     2773206 : /* EOF */
+     185             : /* EOF */
+     186             : /* EOF */
+     187             : /* EOF */
+     188      764157 : /* EOF */
+     189      764157 : /* EOF */
+     190      254719 : /* EOF */
+     191             : /* EOF */
+     192             : /* EOF */
+     193         287 : /* EOF */
+     194         574 : /* EOF */
+     195         287 : /* EOF */
+     196             : /* EOF */
+     197             : /* EOF */
+     198      924546 : /* EOF */
+     199             : /* EOF */
+     200     6471822 : /* EOF */
+     201      924546 : /* EOF */
+     202             : /* EOF */
+     203      924511 : /* EOF */
+     204             : /* EOF */
+     205             : /* EOF */
+     206             : /* EOF */
+     207             : /* EOF */
+     208     1850652 : /* EOF */
+     209     1852282 : /* EOF */
+     210      926141 : /* EOF */
+     211      924511 : /* EOF */
+     212             : /* EOF */
+     213             : /* EOF */
+     214             : /* EOF */
+     215             : /* EOF */
+     216           0 : /* EOF */
+     217             : /* EOF */
+     218             : /* EOF */
+     219             : /* EOF */
+     220          37 : /* EOF */
+     221             : /* EOF */
+     222          74 : /* EOF */
+     223          37 : /* EOF */
+     224          17 : /* EOF */
+     225           0 : /* EOF */
+     226             : /* EOF */
+     227             : /* EOF */
+     228             : /* EOF */
+     229          74 : /* EOF */
+     230           0 : /* EOF */
+     231           0 : /* EOF */
+     232             : /* EOF */
+     233          37 : /* EOF */
+     234             : /* EOF */
+     235          37 : /* EOF */
+     236             : /* EOF */
+     237          74 : /* EOF */
+     238          74 : /* EOF */
+     239             : /* EOF */
+     240          37 : /* EOF */
+     241           0 : /* EOF */
+     242             : /* EOF */
+     243          37 : /* EOF */
+     244          74 : /* EOF */
+     245          37 : /* EOF */
+     246          74 : /* EOF */
+     247          37 : /* EOF */
+     248             : /* EOF */
+     249          74 : /* EOF */
+     250          37 : /* EOF */
+     251             : /* EOF */
+     252          37 : /* EOF */
+     253             : /* EOF */
+     254         111 : /* EOF */
+     255             : /* EOF */
+     256             : /* EOF */
+     257          37 : /* EOF */
+     258             : /* EOF */
+     259             : /* EOF */
+     260             : /* EOF */
+     261          37 : /* EOF */
+     262             : /* EOF */
+     263             : /* EOF */
+     264             : /* EOF */
+     265          37 : /* EOF */
+     266             : /* EOF */
+     267          37 : /* EOF */
+     268             : /* EOF */
+     269          37 : /* EOF */
+     270             : /* EOF */
+     271          37 : /* EOF */
+     272             : /* EOF */
+     273          37 : /* EOF */
+     274             : /* EOF */
+     275          37 : /* EOF */
+     276             : /* EOF */
+     277          37 : /* EOF */
+     278          74 : /* EOF */
+     279          74 : /* EOF */
+     280          37 : /* EOF */
+     281          37 : /* EOF */
+     282             : /* EOF */
+     283          37 : /* EOF */
+     284          37 : /* EOF */
+     285          37 : /* EOF */
+     286          37 : /* EOF */
+     287          37 : /* EOF */
+     288             : /* EOF */
+     289             : /* EOF */
+     290          37 : /* EOF */
+     291          37 : /* EOF */
+     292             : /* EOF */
+     293          37 : /* EOF */
+     294          37 : /* EOF */
+     295          37 : /* EOF */
+     296          74 : /* EOF */
+     297             : /* EOF */
+     298          74 : /* EOF */
+     299             : /* EOF */
+     300          74 : /* EOF */
+     301          74 : /* EOF */
+     302          74 : /* EOF */
+     303          74 : /* EOF */
+     304          74 : /* EOF */
+     305             : /* EOF */
+     306          74 : /* EOF */
+     307             : /* EOF */
+     308          74 : /* EOF */
+     309             : /* EOF */
+     310          74 : /* EOF */
+     311             : /* EOF */
+     312          74 : /* EOF */
+     313          37 : /* EOF */
+     314             : /* EOF */
+     315           0 : /* EOF */
+     316             : /* EOF */
+     317           0 : /* EOF */
+     318           0 : /* EOF */
+     319           0 : /* EOF */
+     320           0 : /* EOF */
+     321           0 : /* EOF */
+     322             : /* EOF */
+     323          37 : /* EOF */
+     324             : /* EOF */
+     325          37 : /* EOF */
+     326          37 : /* EOF */
+     327          74 : /* EOF */
+     328          37 : /* EOF */
+     329          37 : /* EOF */
+     330          37 : /* EOF */
+     331          37 : /* EOF */
+     332          37 : /* EOF */
+     333          74 : /* EOF */
+     334          37 : /* EOF */
+     335          74 : /* EOF */
+     336          37 : /* EOF */
+     337          74 : /* EOF */
+     338          37 : /* EOF */
+     339          74 : /* EOF */
+     340          37 : /* EOF */
+     341          37 : /* EOF */
+     342          37 : /* EOF */
+     343             : /* EOF */
+     344           0 : /* EOF */
+     345           0 : /* EOF */
+     346           0 : /* EOF */
+     347          37 : /* EOF */
+     348          37 : /* EOF */
+     349          18 : /* EOF */
+     350          18 : /* EOF */
+     351          36 : /* EOF */
+     352          54 : /* EOF */
+     353             : /* EOF */
+     354          19 : /* EOF */
+     355          19 : /* EOF */
+     356             : /* EOF */
+     357          37 : /* EOF */
+     358          37 : /* EOF */
+     359          37 : /* EOF */
+     360             : /* EOF */
+     361          37 : /* EOF */
+     362             : /* EOF */
+     363          37 : /* EOF */
+     364             : /* EOF */
+     365          74 : /* EOF */
+     366          74 : /* EOF */
+     367          74 : /* EOF */
+     368          74 : /* EOF */
+     369          74 : /* EOF */
+     370          74 : /* EOF */
+     371          74 : /* EOF */
+     372          74 : /* EOF */
+     373          74 : /* EOF */
+     374          74 : /* EOF */
+     375          74 : /* EOF */
+     376          74 : /* EOF */
+     377          74 : /* EOF */
+     378          74 : /* EOF */
+     379          74 : /* EOF */
+     380             : /* EOF */
+     381          37 : /* EOF */
+     382          37 : /* EOF */
+     383             : /* EOF */
+     384      254719 : /* EOF */
+     385             : /* EOF */
+     386      254719 : /* EOF */
+     387      254719 : /* EOF */
+     388      254719 : /* EOF */
+     389      254719 : /* EOF */
+     390      254719 : /* EOF */
+     391      764157 : /* EOF */
+     392      254719 : /* EOF */
+     393      764157 : /* EOF */
+     394      254719 : /* EOF */
+     395      764157 : /* EOF */
+     396      254719 : /* EOF */
+     397      764157 : /* EOF */
+     398      254719 : /* EOF */
+     399      764157 : /* EOF */
+     400      254719 : /* EOF */
+     401      509438 : /* EOF */
+     402      254719 : /* EOF */
+     403      764157 : /* EOF */
+     404      254719 : /* EOF */
+     405      509438 : /* EOF */
+     406      254719 : /* EOF */
+     407      509438 : /* EOF */
+     408      254719 : /* EOF */
+     409      509438 : /* EOF */
+     410      509438 : /* EOF */
+     411      254719 : /* EOF */
+     412             : /* EOF */
+     413      254719 : /* EOF */
+     414             : /* EOF */
+     415      254719 : /* EOF */
+     416             : /* EOF */
+     417      254719 : /* EOF */
+     418             : /* EOF */
+     419             : /* EOF */
+     420      254719 : /* EOF */
+     421      254719 : /* EOF */
+     422      254719 : /* EOF */
+     423      254719 : /* EOF */
+     424      254719 : /* EOF */
+     425      924402 : /* EOF */
+     426             : /* EOF */
+     427             : /* EOF */
+     428             : /* EOF */
+     429     1848804 : /* EOF */
+     430      924402 : /* EOF */
+     431      924402 : /* EOF */
+     432      924402 : /* EOF */
+     433      924402 : /* EOF */
+     434      924402 : /* EOF */
+     435      924402 : /* EOF */
+     436             : /* EOF */
+     437             : /* EOF */
+     438     1433914 : /* EOF */
+     439             : /* EOF */
+     440     1433914 : /* EOF */
+     441     1433914 : /* EOF */
+     442           0 : /* EOF */
+     443             : /* EOF */
+     444             : /* EOF */
+     445     1433914 : /* EOF */
+     446     1433914 : /* EOF */
+     447             : /* EOF */
+     448          37 : /* EOF */
+     449             : /* EOF */
+     450             : /* EOF */
+     451             : /* EOF */
+     452          37 : /* EOF */
+     453          37 : /* EOF */
+     454          37 : /* EOF */
+     455           0 : /* EOF */
+     456           0 : /* EOF */
+     457             : /* EOF */
+     458             : /* EOF */
+     459             : /* EOF */
+     460          37 : /* EOF */
+     461             : /* EOF */
+     462          37 : /* EOF */
+     463             : /* EOF */
+     464          37 : /* EOF */
+     465          37 : /* EOF */
+     466          37 : /* EOF */
+     467             : /* EOF */
+     468             : /* EOF */
+     469             : /* EOF */
+     470          37 : /* EOF */
+     471          37 : /* EOF */
+     472         127 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/TlmRecorder.h.func-sort-c.html b/html/DRAMSys/library/src/common/TlmRecorder.h.func-sort-c.html new file mode 100644 index 00000000..20ef8334 --- /dev/null +++ b/html/DRAMSys/library/src/common/TlmRecorder.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - TlmRecorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:77100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/TlmRecorder.h.func.html b/html/DRAMSys/library/src/common/TlmRecorder.h.func.html new file mode 100644 index 00000000..fc659479 --- /dev/null +++ b/html/DRAMSys/library/src/common/TlmRecorder.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - TlmRecorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:77100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/TlmRecorder.h.gcov.html b/html/DRAMSys/library/src/common/TlmRecorder.h.gcov.html new file mode 100644 index 00000000..922d76d6 --- /dev/null +++ b/html/DRAMSys/library/src/common/TlmRecorder.h.gcov.html @@ -0,0 +1,184 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - TlmRecorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:77100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66          74 : /* EOF */
+      67             : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70          74 : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74          74 : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86     2946086 : /* EOF */
+      87     1273890 : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98    15264502 : /* EOF */
+      99     3698184 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/dramExtensions.cpp.func-sort-c.html b/html/DRAMSys/library/src/common/dramExtensions.cpp.func-sort-c.html new file mode 100644 index 00000000..728812fd --- /dev/null +++ b/html/DRAMSys/library/src/common/dramExtensions.cpp.func-sort-c.html @@ -0,0 +1,309 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - dramExtensions.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4713235.6 %
Date:2020-06-30 17:34:44Functions:215736.8 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13DramExtension10getChannelEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension10getChannelERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getBankGroupERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getExtensionEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getPayloadIDERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12incrementRowEv0
_ZN13DramExtension6getRowERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension7getBankERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension7getRankERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9copy_fromERKN3tlm18tlm_extension_baseE0
_ZN13DramExtension9getColumnEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getColumnERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getThreadEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getThreadERKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension19getTimeOfGenerationEPKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension19getTimeOfGenerationERKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension9copy_fromERKN3tlm18tlm_extension_baseE0
_ZN3RowppEv0
_ZNK13DramExtension14getBurstlengthEv0
_ZNK13DramExtension5cloneEv0
_ZNK19GenerationExtension5cloneEv0
_ZeqRK4BankS1_0
_ZeqRK4RankS1_0
_ZeqRK6ColumnS1_0
_ZeqRK6ThreadS1_0
_ZeqRK7ChannelS1_0
_ZeqRK9BankGroupS1_0
_ZltRK4BankS1_0
_ZltRK6ThreadS1_0
_ZneRK3RowS1_0
_ZneRK4BankS1_0
_ZneRK4RankS1_0
_ZneRK6ColumnS1_0
_ZneRK6ThreadS1_0
_ZneRK7ChannelS1_0
_ZneRK9BankGroupS1_0
_GLOBAL__sub_I__ZN13DramExtensionC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13DramExtensionC2ERK6ThreadRK4RankRK9BankGroupRK4BankRK3RowRK6Columnjm136
_ZN13DramExtensionC2ERK6ThreadRK7ChannelRK4RankRK9BankGroupRK4BankRK3RowRK6Columnjm252938
_ZN19GenerationExtension12getExtensionEPKN3tlm19tlm_generic_payloadE252938
_ZNK13DramExtension7getRankEv254719
_ZN13DramExtensionC2Ev254778
_ZN13DramExtension12getBankGroupEPKN3tlm19tlm_generic_payloadE418705
_ZN13DramExtension7getRankEPKN3tlm19tlm_generic_payloadE671643
_ZNK13DramExtension12getPayloadIDEv1011722
_ZN13DramExtension7getBankEPKN3tlm19tlm_generic_payloadE1177519
_ZNK13DramExtension12getBankGroupEv1685146
_ZNK13DramExtension6getRowEv1685146
_ZNK13DramExtension7getBankEv1685146
_ZNK13DramExtension9getColumnEv1685146
_ZN13DramExtension12getPayloadIDEPKN3tlm19tlm_generic_payloadE2404567
_ZNK13DramExtension10getChannelEv2696868
_ZNK13DramExtension9getThreadEv2951646
_ZN13DramExtension12getExtensionERKN3tlm19tlm_generic_payloadE12127284
_ZeqRK3RowS1_18361423
_ZN13DramExtension6getRowEPKN3tlm19tlm_generic_payloadE18522627
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/dramExtensions.cpp.func.html b/html/DRAMSys/library/src/common/dramExtensions.cpp.func.html new file mode 100644 index 00000000..fc89e8a4 --- /dev/null +++ b/html/DRAMSys/library/src/common/dramExtensions.cpp.func.html @@ -0,0 +1,309 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - dramExtensions.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4713235.6 %
Date:2020-06-30 17:34:44Functions:215736.8 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13DramExtensionC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13DramExtension10getChannelEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension10getChannelERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getBankGroupEPKN3tlm19tlm_generic_payloadE418705
_ZN13DramExtension12getBankGroupERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getExtensionEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getExtensionERKN3tlm19tlm_generic_payloadE12127284
_ZN13DramExtension12getPayloadIDEPKN3tlm19tlm_generic_payloadE2404567
_ZN13DramExtension12getPayloadIDERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12incrementRowEv0
_ZN13DramExtension6getRowEPKN3tlm19tlm_generic_payloadE18522627
_ZN13DramExtension6getRowERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension7getBankEPKN3tlm19tlm_generic_payloadE1177519
_ZN13DramExtension7getBankERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension7getRankEPKN3tlm19tlm_generic_payloadE671643
_ZN13DramExtension7getRankERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9copy_fromERKN3tlm18tlm_extension_baseE0
_ZN13DramExtension9getColumnEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getColumnERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getThreadEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getThreadERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtensionC2ERK6ThreadRK4RankRK9BankGroupRK4BankRK3RowRK6Columnjm136
_ZN13DramExtensionC2ERK6ThreadRK7ChannelRK4RankRK9BankGroupRK4BankRK3RowRK6Columnjm252938
_ZN13DramExtensionC2Ev254778
_ZN19GenerationExtension12getExtensionEPKN3tlm19tlm_generic_payloadE252938
_ZN19GenerationExtension19getTimeOfGenerationEPKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension19getTimeOfGenerationERKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension9copy_fromERKN3tlm18tlm_extension_baseE0
_ZN3RowppEv0
_ZNK13DramExtension10getChannelEv2696868
_ZNK13DramExtension12getBankGroupEv1685146
_ZNK13DramExtension12getPayloadIDEv1011722
_ZNK13DramExtension14getBurstlengthEv0
_ZNK13DramExtension5cloneEv0
_ZNK13DramExtension6getRowEv1685146
_ZNK13DramExtension7getBankEv1685146
_ZNK13DramExtension7getRankEv254719
_ZNK13DramExtension9getColumnEv1685146
_ZNK13DramExtension9getThreadEv2951646
_ZNK19GenerationExtension5cloneEv0
_ZeqRK3RowS1_18361423
_ZeqRK4BankS1_0
_ZeqRK4RankS1_0
_ZeqRK6ColumnS1_0
_ZeqRK6ThreadS1_0
_ZeqRK7ChannelS1_0
_ZeqRK9BankGroupS1_0
_ZltRK4BankS1_0
_ZltRK6ThreadS1_0
_ZneRK3RowS1_0
_ZneRK4BankS1_0
_ZneRK4RankS1_0
_ZneRK6ColumnS1_0
_ZneRK6ThreadS1_0
_ZneRK7ChannelS1_0
_ZneRK9BankGroupS1_0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/dramExtensions.cpp.gcov.html b/html/DRAMSys/library/src/common/dramExtensions.cpp.gcov.html new file mode 100644 index 00000000..24492eef --- /dev/null +++ b/html/DRAMSys/library/src/common/dramExtensions.cpp.gcov.html @@ -0,0 +1,434 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - dramExtensions.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4713235.6 %
Date:2020-06-30 17:34:44Functions:215736.8 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45      254778 : /* EOF */
+      46             : /* EOF */
+      47     2038224 : /* EOF */
+      48             : /* EOF */
+      49         136 : /* EOF */
+      50             : /* EOF */
+      51         136 : /* EOF */
+      52             : /* EOF */
+      53         408 : /* EOF */
+      54             : /* EOF */
+      55      252938 : /* EOF */
+      56             : /* EOF */
+      57      252938 : /* EOF */
+      58             : /* EOF */
+      59      505876 : /* EOF */
+      60             : /* EOF */
+      61           0 : /* EOF */
+      62             : /* EOF */
+      63    35322345 : /* EOF */
+      64    35322345 : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70    12127284 : /* EOF */
+      71             : /* EOF */
+      72    12127284 : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75           0 : /* EOF */
+      76             : /* EOF */
+      77           0 : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80           0 : /* EOF */
+      81             : /* EOF */
+      82           0 : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85           0 : /* EOF */
+      86             : /* EOF */
+      87           0 : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90           0 : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95      671643 : /* EOF */
+      96             : /* EOF */
+      97     1343286 : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100           0 : /* EOF */
+     101             : /* EOF */
+     102           0 : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105      418705 : /* EOF */
+     106             : /* EOF */
+     107      837410 : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110           0 : /* EOF */
+     111             : /* EOF */
+     112           0 : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115     1177519 : /* EOF */
+     116             : /* EOF */
+     117     2355038 : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120           0 : /* EOF */
+     121             : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125    18522627 : /* EOF */
+     126             : /* EOF */
+     127    37045254 : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130           0 : /* EOF */
+     131             : /* EOF */
+     132           0 : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135           0 : /* EOF */
+     136             : /* EOF */
+     137           0 : /* EOF */
+     138             : /* EOF */
+     139             : /* EOF */
+     140           0 : /* EOF */
+     141             : /* EOF */
+     142           0 : /* EOF */
+     143             : /* EOF */
+     144             : /* EOF */
+     145     2404567 : /* EOF */
+     146             : /* EOF */
+     147     4809134 : /* EOF */
+     148             : /* EOF */
+     149             : /* EOF */
+     150           0 : /* EOF */
+     151             : /* EOF */
+     152           0 : /* EOF */
+     153             : /* EOF */
+     154             : /* EOF */
+     155           0 : /* EOF */
+     156             : /* EOF */
+     157           0 : /* EOF */
+     158             : /* EOF */
+     159             : /* EOF */
+     160           0 : /* EOF */
+     161             : /* EOF */
+     162           0 : /* EOF */
+     163           0 : /* EOF */
+     164           0 : /* EOF */
+     165           0 : /* EOF */
+     166           0 : /* EOF */
+     167           0 : /* EOF */
+     168           0 : /* EOF */
+     169           0 : /* EOF */
+     170           0 : /* EOF */
+     171           0 : /* EOF */
+     172             : /* EOF */
+     173     2951646 : /* EOF */
+     174             : /* EOF */
+     175     2951646 : /* EOF */
+     176             : /* EOF */
+     177             : /* EOF */
+     178     2696868 : /* EOF */
+     179             : /* EOF */
+     180     2696868 : /* EOF */
+     181             : /* EOF */
+     182             : /* EOF */
+     183      254719 : /* EOF */
+     184             : /* EOF */
+     185      926362 : /* EOF */
+     186             : /* EOF */
+     187             : /* EOF */
+     188     1685146 : /* EOF */
+     189             : /* EOF */
+     190     2103851 : /* EOF */
+     191             : /* EOF */
+     192             : /* EOF */
+     193     1685146 : /* EOF */
+     194             : /* EOF */
+     195     2862665 : /* EOF */
+     196             : /* EOF */
+     197             : /* EOF */
+     198     1685146 : /* EOF */
+     199             : /* EOF */
+     200    20207773 : /* EOF */
+     201             : /* EOF */
+     202             : /* EOF */
+     203     1685146 : /* EOF */
+     204             : /* EOF */
+     205     1685146 : /* EOF */
+     206             : /* EOF */
+     207             : /* EOF */
+     208           0 : /* EOF */
+     209             : /* EOF */
+     210           0 : /* EOF */
+     211             : /* EOF */
+     212             : /* EOF */
+     213     1011722 : /* EOF */
+     214             : /* EOF */
+     215     3416289 : /* EOF */
+     216             : /* EOF */
+     217             : /* EOF */
+     218           0 : /* EOF */
+     219             : /* EOF */
+     220           0 : /* EOF */
+     221           0 : /* EOF */
+     222             : /* EOF */
+     223           0 : /* EOF */
+     224             : /* EOF */
+     225           0 : /* EOF */
+     226             : /* EOF */
+     227             : /* EOF */
+     228           0 : /* EOF */
+     229             : /* EOF */
+     230           0 : /* EOF */
+     231           0 : /* EOF */
+     232             : /* EOF */
+     233           0 : /* EOF */
+     234             : /* EOF */
+     235      252938 : /* EOF */
+     236             : /* EOF */
+     237      252938 : /* EOF */
+     238      252938 : /* EOF */
+     239             : /* EOF */
+     240      252938 : /* EOF */
+     241             : /* EOF */
+     242             : /* EOF */
+     243           0 : /* EOF */
+     244             : /* EOF */
+     245           0 : /* EOF */
+     246             : /* EOF */
+     247             : /* EOF */
+     248           0 : /* EOF */
+     249             : /* EOF */
+     250           0 : /* EOF */
+     251             : /* EOF */
+     252             : /* EOF */
+     253             : /* EOF */
+     254           0 : /* EOF */
+     255             : /* EOF */
+     256           0 : /* EOF */
+     257             : /* EOF */
+     258             : /* EOF */
+     259           0 : /* EOF */
+     260             : /* EOF */
+     261           0 : /* EOF */
+     262             : /* EOF */
+     263             : /* EOF */
+     264           0 : /* EOF */
+     265             : /* EOF */
+     266           0 : /* EOF */
+     267             : /* EOF */
+     268             : /* EOF */
+     269             : /* EOF */
+     270           0 : /* EOF */
+     271             : /* EOF */
+     272           0 : /* EOF */
+     273             : /* EOF */
+     274             : /* EOF */
+     275           0 : /* EOF */
+     276             : /* EOF */
+     277           0 : /* EOF */
+     278             : /* EOF */
+     279             : /* EOF */
+     280             : /* EOF */
+     281           0 : /* EOF */
+     282             : /* EOF */
+     283           0 : /* EOF */
+     284             : /* EOF */
+     285             : /* EOF */
+     286           0 : /* EOF */
+     287             : /* EOF */
+     288           0 : /* EOF */
+     289             : /* EOF */
+     290             : /* EOF */
+     291             : /* EOF */
+     292           0 : /* EOF */
+     293             : /* EOF */
+     294           0 : /* EOF */
+     295             : /* EOF */
+     296             : /* EOF */
+     297           0 : /* EOF */
+     298             : /* EOF */
+     299           0 : /* EOF */
+     300             : /* EOF */
+     301             : /* EOF */
+     302             : /* EOF */
+     303           0 : /* EOF */
+     304             : /* EOF */
+     305           0 : /* EOF */
+     306             : /* EOF */
+     307             : /* EOF */
+     308           0 : /* EOF */
+     309             : /* EOF */
+     310           0 : /* EOF */
+     311             : /* EOF */
+     312             : /* EOF */
+     313           0 : /* EOF */
+     314             : /* EOF */
+     315           0 : /* EOF */
+     316             : /* EOF */
+     317             : /* EOF */
+     318             : /* EOF */
+     319          30 : /* EOF */
+     320             : /* EOF */
+     321    18361423 : /* EOF */
+     322             : /* EOF */
+     323    18361423 : /* EOF */
+     324             : /* EOF */
+     325    18361423 : /* EOF */
+     326             : /* EOF */
+     327             : /* EOF */
+     328           0 : /* EOF */
+     329             : /* EOF */
+     330           0 : /* EOF */
+     331             : /* EOF */
+     332             : /* EOF */
+     333           0 : /* EOF */
+     334             : /* EOF */
+     335           0 : /* EOF */
+     336           0 : /* EOF */
+     337             : /* EOF */
+     338             : /* EOF */
+     339             : /* EOF */
+     340             : /* EOF */
+     341           0 : /* EOF */
+     342             : /* EOF */
+     343           0 : /* EOF */
+     344             : /* EOF */
+     345             : /* EOF */
+     346           0 : /* EOF */
+     347             : /* EOF */
+     348           0 : /* EOF */
+     349          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/dramExtensions.h.func-sort-c.html b/html/DRAMSys/library/src/common/dramExtensions.h.func-sort-c.html new file mode 100644 index 00000000..7fd8bf7d --- /dev/null +++ b/html/DRAMSys/library/src/common/dramExtensions.h.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - dramExtensions.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1818100.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13DramExtensionD2Ev0
_ZN19GenerationExtensionD2Ev0
_ZN19GenerationExtensionD0Ev252908
_ZN13DramExtensionD0Ev253044
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/dramExtensions.h.func.html b/html/DRAMSys/library/src/common/dramExtensions.h.func.html new file mode 100644 index 00000000..9b4a65b6 --- /dev/null +++ b/html/DRAMSys/library/src/common/dramExtensions.h.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - dramExtensions.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1818100.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13DramExtensionD0Ev253044
_ZN13DramExtensionD2Ev0
_ZN19GenerationExtensionD0Ev252908
_ZN19GenerationExtensionD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/dramExtensions.h.gcov.html b/html/DRAMSys/library/src/common/dramExtensions.h.gcov.html new file mode 100644 index 00000000..9e02640b --- /dev/null +++ b/html/DRAMSys/library/src/common/dramExtensions.h.gcov.html @@ -0,0 +1,321 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - dramExtensions.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1818100.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47      253074 : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51     1521219 : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61      507852 : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65     1266441 : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75      508264 : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79      254719 : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88             : /* EOF */
+      89      513371 : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93      479713 : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103      513275 : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107    17463095 : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115             : /* EOF */
+     116             : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129         526 : /* EOF */
+     130             : /* EOF */
+     131      507852 : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136             : /* EOF */
+     137             : /* EOF */
+     138             : /* EOF */
+     139             : /* EOF */
+     140             : /* EOF */
+     141             : /* EOF */
+     142             : /* EOF */
+     143             : /* EOF */
+     144             : /* EOF */
+     145             : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148             : /* EOF */
+     149             : /* EOF */
+     150      507852 : /* EOF */
+     151             : /* EOF */
+     152             : /* EOF */
+     153             : /* EOF */
+     154      254719 : /* EOF */
+     155             : /* EOF */
+     156             : /* EOF */
+     157             : /* EOF */
+     158             : /* EOF */
+     159             : /* EOF */
+     160             : /* EOF */
+     161             : /* EOF */
+     162     2616076 : /* EOF */
+     163             : /* EOF */
+     164             : /* EOF */
+     165             : /* EOF */
+     166             : /* EOF */
+     167             : /* EOF */
+     168             : /* EOF */
+     169             : /* EOF */
+     170             : /* EOF */
+     171             : /* EOF */
+     172             : /* EOF */
+     173             : /* EOF */
+     174             : /* EOF */
+     175             : /* EOF */
+     176             : /* EOF */
+     177             : /* EOF */
+     178             : /* EOF */
+     179             : /* EOF */
+     180             : /* EOF */
+     181             : /* EOF */
+     182             : /* EOF */
+     183             : /* EOF */
+     184             : /* EOF */
+     185             : /* EOF */
+     186             : /* EOF */
+     187             : /* EOF */
+     188             : /* EOF */
+     189             : /* EOF */
+     190             : /* EOF */
+     191             : /* EOF */
+     192             : /* EOF */
+     193             : /* EOF */
+     194             : /* EOF */
+     195             : /* EOF */
+     196             : /* EOF */
+     197             : /* EOF */
+     198             : /* EOF */
+     199             : /* EOF */
+     200             : /* EOF */
+     201             : /* EOF */
+     202             : /* EOF */
+     203             : /* EOF */
+     204             : /* EOF */
+     205             : /* EOF */
+     206             : /* EOF */
+     207             : /* EOF */
+     208             : /* EOF */
+     209             : /* EOF */
+     210             : /* EOF */
+     211             : /* EOF */
+     212             : /* EOF */
+     213             : /* EOF */
+     214             : /* EOF */
+     215             : /* EOF */
+     216             : /* EOF */
+     217             : /* EOF */
+     218             : /* EOF */
+     219             : /* EOF */
+     220             : /* EOF */
+     221             : /* EOF */
+     222             : /* EOF */
+     223             : /* EOF */
+     224             : /* EOF */
+     225      505816 : /* EOF */
+     226             : /* EOF */
+     227             : /* EOF */
+     228             : /* EOF */
+     229      758814 : /* EOF */
+     230             : /* EOF */
+     231             : /* EOF */
+     232             : /* EOF */
+     233             : /* EOF */
+     234             : /* EOF */
+     235             : /* EOF */
+     236      505876 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/index-sort-f.html b/html/DRAMSys/library/src/common/index-sort-f.html new file mode 100644 index 00000000..67e0dce5 --- /dev/null +++ b/html/DRAMSys/library/src/common/index-sort-f.html @@ -0,0 +1,183 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/commonHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:500113544.1 %
Date:2020-06-30 17:34:44Functions:6513847.1 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
tlm2_base_protocol_checker.h +
0.2%0.2%
+
0.2 %1 / 4720.0 %0 / 28
dramExtensions.cpp +
35.6%35.6%
+
35.6 %47 / 13236.8 %21 / 57
dramExtensions.h +
100.0%
+
100.0 %18 / 1850.0 %2 / 4
utils.cpp +
51.7%51.7%
+
51.7 %30 / 5866.7 %8 / 12
TlmRecorder.cpp +
91.0%91.0%
+
91.0 %252 / 27788.5 %23 / 26
AddressDecoder.h +
50.0%50.0%
+
50.0 %2 / 4-0 / 0
utils.h +
100.0%
+
100.0 %30 / 30100.0 %1 / 1
TlmRecorder.h +
100.0%
+
100.0 %7 / 7100.0 %3 / 3
AddressDecoder.cpp +
82.5%82.5%
+
82.5 %113 / 137100.0 %7 / 7
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/index-sort-l.html b/html/DRAMSys/library/src/common/index-sort-l.html new file mode 100644 index 00000000..f712921d --- /dev/null +++ b/html/DRAMSys/library/src/common/index-sort-l.html @@ -0,0 +1,183 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/commonHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:500113544.1 %
Date:2020-06-30 17:34:44Functions:6513847.1 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
tlm2_base_protocol_checker.h +
0.2%0.2%
+
0.2 %1 / 4720.0 %0 / 28
dramExtensions.cpp +
35.6%35.6%
+
35.6 %47 / 13236.8 %21 / 57
AddressDecoder.h +
50.0%50.0%
+
50.0 %2 / 4-0 / 0
utils.cpp +
51.7%51.7%
+
51.7 %30 / 5866.7 %8 / 12
AddressDecoder.cpp +
82.5%82.5%
+
82.5 %113 / 137100.0 %7 / 7
TlmRecorder.cpp +
91.0%91.0%
+
91.0 %252 / 27788.5 %23 / 26
TlmRecorder.h +
100.0%
+
100.0 %7 / 7100.0 %3 / 3
dramExtensions.h +
100.0%
+
100.0 %18 / 1850.0 %2 / 4
utils.h +
100.0%
+
100.0 %30 / 30100.0 %1 / 1
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/index.html b/html/DRAMSys/library/src/common/index.html new file mode 100644 index 00000000..31d242f7 --- /dev/null +++ b/html/DRAMSys/library/src/common/index.html @@ -0,0 +1,183 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/commonHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:500113544.1 %
Date:2020-06-30 17:34:44Functions:6513847.1 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
AddressDecoder.cpp +
82.5%82.5%
+
82.5 %113 / 137100.0 %7 / 7
AddressDecoder.h +
50.0%50.0%
+
50.0 %2 / 4-0 / 0
TlmRecorder.cpp +
91.0%91.0%
+
91.0 %252 / 27788.5 %23 / 26
TlmRecorder.h +
100.0%
+
100.0 %7 / 7100.0 %3 / 3
dramExtensions.cpp +
35.6%35.6%
+
35.6 %47 / 13236.8 %21 / 57
dramExtensions.h +
100.0%
+
100.0 %18 / 1850.0 %2 / 4
tlm2_base_protocol_checker.h +
0.2%0.2%
+
0.2 %1 / 4720.0 %0 / 28
utils.cpp +
51.7%51.7%
+
51.7 %30 / 5866.7 %8 / 12
utils.h +
100.0%
+
100.0 %30 / 30100.0 %1 / 1
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func-sort-c.html b/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func-sort-c.html new file mode 100644 index 00000000..3fd62047 --- /dev/null +++ b/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func-sort-c.html @@ -0,0 +1,181 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/tlm2_base_protocol_checker.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - tlm2_base_protocol_checker.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14720.2 %
Date:2020-06-30 17:34:44Functions:0280.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE11b_transportERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE15nb_transport_bwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE18get_direct_mem_ptrERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE18remember_gp_optionERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE19check_initial_stateERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE19check_response_pathERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE22b_transport_pre_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.4600
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.5820
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.5990
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE24check_trans_not_modifiedERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE24transport_dbg_pre_checksERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE25invalidate_direct_mem_ptrEyy0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE25transport_dbg_post_checksERN3tlm19tlm_generic_payloadEj0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE26nb_transport_bw_pre_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE26nb_transport_fw_pre_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE28nb_transport_response_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeEPKcSB_SB_0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE29get_direct_mem_ptr_pre_checksERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE30get_direct_mem_ptr_post_checksERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EEC1EN7sc_core14sc_module_nameE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EED0Ev0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EED1Ev0
_ZN9tlm_utils6path_tC2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func.html b/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func.html new file mode 100644 index 00000000..c55a87b4 --- /dev/null +++ b/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func.html @@ -0,0 +1,181 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/tlm2_base_protocol_checker.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - tlm2_base_protocol_checker.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14720.2 %
Date:2020-06-30 17:34:44Functions:0280.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE11b_transportERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE15nb_transport_bwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE18get_direct_mem_ptrERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE18remember_gp_optionERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE19check_initial_stateERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE19check_response_pathERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE22b_transport_pre_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.4600
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.5820
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.5990
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE24check_trans_not_modifiedERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE24transport_dbg_pre_checksERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE25invalidate_direct_mem_ptrEyy0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE25transport_dbg_post_checksERN3tlm19tlm_generic_payloadEj0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE26nb_transport_bw_pre_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE26nb_transport_fw_pre_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE28nb_transport_response_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeEPKcSB_SB_0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE29get_direct_mem_ptr_pre_checksERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE30get_direct_mem_ptr_post_checksERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EEC1EN7sc_core14sc_module_nameE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EED0Ev0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EED1Ev0
_ZN9tlm_utils6path_tC2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.gcov.html b/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.gcov.html new file mode 100644 index 00000000..b3cf78ce --- /dev/null +++ b/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.gcov.html @@ -0,0 +1,1128 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/tlm2_base_protocol_checker.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - tlm2_base_protocol_checker.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14720.2 %
Date:2020-06-30 17:34:44Functions:0280.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115             : /* EOF */
+     116             : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136             : /* EOF */
+     137             : /* EOF */
+     138             : /* EOF */
+     139             : /* EOF */
+     140             : /* EOF */
+     141             : /* EOF */
+     142             : /* EOF */
+     143             : /* EOF */
+     144             : /* EOF */
+     145             : /* EOF */
+     146             : /* EOF */
+     147           0 : /* EOF */
+     148           0 : /* EOF */
+     149           0 : /* EOF */
+     150           0 : /* EOF */
+     151           0 : /* EOF */
+     152           0 : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155             : /* EOF */
+     156             : /* EOF */
+     157             : /* EOF */
+     158             : /* EOF */
+     159             : /* EOF */
+     160             : /* EOF */
+     161             : /* EOF */
+     162          90 : /* EOF */
+     163             : /* EOF */
+     164             : /* EOF */
+     165             : /* EOF */
+     166             : /* EOF */
+     167             : /* EOF */
+     168             : /* EOF */
+     169           0 : /* EOF */
+     170             : /* EOF */
+     171             : /* EOF */
+     172             : /* EOF */
+     173             : /* EOF */
+     174             : /* EOF */
+     175             : /* EOF */
+     176             : /* EOF */
+     177             : /* EOF */
+     178             : /* EOF */
+     179             : /* EOF */
+     180             : /* EOF */
+     181             : /* EOF */
+     182             : /* EOF */
+     183             : /* EOF */
+     184           0 : /* EOF */
+     185           0 : /* EOF */
+     186             : /* EOF */
+     187           0 : /* EOF */
+     188           0 : /* EOF */
+     189           0 : /* EOF */
+     190             : /* EOF */
+     191             : /* EOF */
+     192             : /* EOF */
+     193             : /* EOF */
+     194             : /* EOF */
+     195             : /* EOF */
+     196             : /* EOF */
+     197             : /* EOF */
+     198             : /* EOF */
+     199             : /* EOF */
+     200             : /* EOF */
+     201             : /* EOF */
+     202             : /* EOF */
+     203             : /* EOF */
+     204             : /* EOF */
+     205             : /* EOF */
+     206             : /* EOF */
+     207             : /* EOF */
+     208             : /* EOF */
+     209             : /* EOF */
+     210           0 : /* EOF */
+     211             : /* EOF */
+     212             : /* EOF */
+     213           0 : /* EOF */
+     214             : /* EOF */
+     215           0 : /* EOF */
+     216           0 : /* EOF */
+     217             : /* EOF */
+     218             : /* EOF */
+     219           0 : /* EOF */
+     220             : /* EOF */
+     221           0 : /* EOF */
+     222           0 : /* EOF */
+     223             : /* EOF */
+     224           0 : /* EOF */
+     225             : /* EOF */
+     226             : /* EOF */
+     227           0 : /* EOF */
+     228             : /* EOF */
+     229             : /* EOF */
+     230           0 : /* EOF */
+     231           0 : /* EOF */
+     232             : /* EOF */
+     233             : /* EOF */
+     234           0 : /* EOF */
+     235             : /* EOF */
+     236           0 : /* EOF */
+     237           0 : /* EOF */
+     238             : /* EOF */
+     239           0 : /* EOF */
+     240             : /* EOF */
+     241             : /* EOF */
+     242           0 : /* EOF */
+     243             : /* EOF */
+     244             : /* EOF */
+     245           0 : /* EOF */
+     246           0 : /* EOF */
+     247             : /* EOF */
+     248           0 : /* EOF */
+     249             : /* EOF */
+     250           0 : /* EOF */
+     251           0 : /* EOF */
+     252           0 : /* EOF */
+     253             : /* EOF */
+     254           0 : /* EOF */
+     255             : /* EOF */
+     256             : /* EOF */
+     257           0 : /* EOF */
+     258             : /* EOF */
+     259             : /* EOF */
+     260           0 : /* EOF */
+     261             : /* EOF */
+     262           0 : /* EOF */
+     263           0 : /* EOF */
+     264             : /* EOF */
+     265             : /* EOF */
+     266           0 : /* EOF */
+     267             : /* EOF */
+     268             : /* EOF */
+     269           0 : /* EOF */
+     270           0 : /* EOF */
+     271             : /* EOF */
+     272           0 : /* EOF */
+     273             : /* EOF */
+     274           0 : /* EOF */
+     275             : /* EOF */
+     276             : /* EOF */
+     277           0 : /* EOF */
+     278             : /* EOF */
+     279           0 : /* EOF */
+     280           0 : /* EOF */
+     281             : /* EOF */
+     282             : /* EOF */
+     283             : /* EOF */
+     284             : /* EOF */
+     285             : /* EOF */
+     286             : /* EOF */
+     287             : /* EOF */
+     288             : /* EOF */
+     289             : /* EOF */
+     290             : /* EOF */
+     291             : /* EOF */
+     292             : /* EOF */
+     293             : /* EOF */
+     294             : /* EOF */
+     295             : /* EOF */
+     296             : /* EOF */
+     297             : /* EOF */
+     298             : /* EOF */
+     299             : /* EOF */
+     300             : /* EOF */
+     301             : /* EOF */
+     302             : /* EOF */
+     303             : /* EOF */
+     304             : /* EOF */
+     305             : /* EOF */
+     306             : /* EOF */
+     307             : /* EOF */
+     308             : /* EOF */
+     309             : /* EOF */
+     310             : /* EOF */
+     311             : /* EOF */
+     312             : /* EOF */
+     313             : /* EOF */
+     314             : /* EOF */
+     315             : /* EOF */
+     316             : /* EOF */
+     317             : /* EOF */
+     318             : /* EOF */
+     319             : /* EOF */
+     320             : /* EOF */
+     321             : /* EOF */
+     322             : /* EOF */
+     323             : /* EOF */
+     324             : /* EOF */
+     325             : /* EOF */
+     326             : /* EOF */
+     327             : /* EOF */
+     328             : /* EOF */
+     329             : /* EOF */
+     330             : /* EOF */
+     331             : /* EOF */
+     332             : /* EOF */
+     333             : /* EOF */
+     334             : /* EOF */
+     335             : /* EOF */
+     336             : /* EOF */
+     337           0 : /* EOF */
+     338           0 : /* EOF */
+     339           0 : /* EOF */
+     340           0 : /* EOF */
+     341           0 : /* EOF */
+     342             : /* EOF */
+     343             : /* EOF */
+     344             : /* EOF */
+     345             : /* EOF */
+     346             : /* EOF */
+     347             : /* EOF */
+     348             : /* EOF */
+     349             : /* EOF */
+     350             : /* EOF */
+     351             : /* EOF */
+     352             : /* EOF */
+     353             : /* EOF */
+     354             : /* EOF */
+     355             : /* EOF */
+     356             : /* EOF */
+     357             : /* EOF */
+     358             : /* EOF */
+     359             : /* EOF */
+     360             : /* EOF */
+     361             : /* EOF */
+     362             : /* EOF */
+     363             : /* EOF */
+     364             : /* EOF */
+     365             : /* EOF */
+     366             : /* EOF */
+     367             : /* EOF */
+     368             : /* EOF */
+     369             : /* EOF */
+     370             : /* EOF */
+     371             : /* EOF */
+     372             : /* EOF */
+     373             : /* EOF */
+     374             : /* EOF */
+     375           0 : /* EOF */
+     376             : /* EOF */
+     377             : /* EOF */
+     378             : /* EOF */
+     379           0 : /* EOF */
+     380             : /* EOF */
+     381           0 : /* EOF */
+     382           0 : /* EOF */
+     383           0 : /* EOF */
+     384             : /* EOF */
+     385           0 : /* EOF */
+     386             : /* EOF */
+     387             : /* EOF */
+     388           0 : /* EOF */
+     389             : /* EOF */
+     390           0 : /* EOF */
+     391           0 : /* EOF */
+     392             : /* EOF */
+     393             : /* EOF */
+     394             : /* EOF */
+     395           0 : /* EOF */
+     396           0 : /* EOF */
+     397           0 : /* EOF */
+     398             : /* EOF */
+     399           0 : /* EOF */
+     400             : /* EOF */
+     401             : /* EOF */
+     402           0 : /* EOF */
+     403             : /* EOF */
+     404             : /* EOF */
+     405             : /* EOF */
+     406           0 : /* EOF */
+     407           0 : /* EOF */
+     408           0 : /* EOF */
+     409           0 : /* EOF */
+     410             : /* EOF */
+     411             : /* EOF */
+     412           0 : /* EOF */
+     413             : /* EOF */
+     414             : /* EOF */
+     415             : /* EOF */
+     416           0 : /* EOF */
+     417           0 : /* EOF */
+     418           0 : /* EOF */
+     419             : /* EOF */
+     420           0 : /* EOF */
+     421           0 : /* EOF */
+     422           0 : /* EOF */
+     423             : /* EOF */
+     424             : /* EOF */
+     425           0 : /* EOF */
+     426           0 : /* EOF */
+     427           0 : /* EOF */
+     428             : /* EOF */
+     429           0 : /* EOF */
+     430           0 : /* EOF */
+     431           0 : /* EOF */
+     432             : /* EOF */
+     433           0 : /* EOF */
+     434             : /* EOF */
+     435             : /* EOF */
+     436           0 : /* EOF */
+     437           0 : /* EOF */
+     438           0 : /* EOF */
+     439             : /* EOF */
+     440           0 : /* EOF */
+     441             : /* EOF */
+     442           0 : /* EOF */
+     443           0 : /* EOF */
+     444           0 : /* EOF */
+     445             : /* EOF */
+     446             : /* EOF */
+     447             : /* EOF */
+     448           0 : /* EOF */
+     449             : /* EOF */
+     450             : /* EOF */
+     451           0 : /* EOF */
+     452             : /* EOF */
+     453           0 : /* EOF */
+     454           0 : /* EOF */
+     455             : /* EOF */
+     456           0 : /* EOF */
+     457           0 : /* EOF */
+     458           0 : /* EOF */
+     459             : /* EOF */
+     460           0 : /* EOF */
+     461             : /* EOF */
+     462           0 : /* EOF */
+     463           0 : /* EOF */
+     464             : /* EOF */
+     465             : /* EOF */
+     466           0 : /* EOF */
+     467           0 : /* EOF */
+     468             : /* EOF */
+     469           0 : /* EOF */
+     470           0 : /* EOF */
+     471           0 : /* EOF */
+     472           0 : /* EOF */
+     473           0 : /* EOF */
+     474             : /* EOF */
+     475           0 : /* EOF */
+     476           0 : /* EOF */
+     477             : /* EOF */
+     478             : /* EOF */
+     479           0 : /* EOF */
+     480             : /* EOF */
+     481             : /* EOF */
+     482             : /* EOF */
+     483             : /* EOF */
+     484             : /* EOF */
+     485           0 : /* EOF */
+     486           0 : /* EOF */
+     487             : /* EOF */
+     488             : /* EOF */
+     489           0 : /* EOF */
+     490           0 : /* EOF */
+     491           0 : /* EOF */
+     492           0 : /* EOF */
+     493           0 : /* EOF */
+     494             : /* EOF */
+     495             : /* EOF */
+     496             : /* EOF */
+     497             : /* EOF */
+     498             : /* EOF */
+     499           0 : /* EOF */
+     500           0 : /* EOF */
+     501           0 : /* EOF */
+     502             : /* EOF */
+     503           0 : /* EOF */
+     504             : /* EOF */
+     505             : /* EOF */
+     506           0 : /* EOF */
+     507             : /* EOF */
+     508             : /* EOF */
+     509             : /* EOF */
+     510           0 : /* EOF */
+     511           0 : /* EOF */
+     512           0 : /* EOF */
+     513             : /* EOF */
+     514           0 : /* EOF */
+     515           0 : /* EOF */
+     516           0 : /* EOF */
+     517             : /* EOF */
+     518           0 : /* EOF */
+     519             : /* EOF */
+     520           0 : /* EOF */
+     521             : /* EOF */
+     522             : /* EOF */
+     523           0 : /* EOF */
+     524             : /* EOF */
+     525             : /* EOF */
+     526             : /* EOF */
+     527             : /* EOF */
+     528           0 : /* EOF */
+     529           0 : /* EOF */
+     530           0 : /* EOF */
+     531           0 : /* EOF */
+     532             : /* EOF */
+     533           0 : /* EOF */
+     534           0 : /* EOF */
+     535             : /* EOF */
+     536           0 : /* EOF */
+     537             : /* EOF */
+     538             : /* EOF */
+     539           0 : /* EOF */
+     540             : /* EOF */
+     541           0 : /* EOF */
+     542           0 : /* EOF */
+     543             : /* EOF */
+     544           0 : /* EOF */
+     545           0 : /* EOF */
+     546           0 : /* EOF */
+     547             : /* EOF */
+     548           0 : /* EOF */
+     549             : /* EOF */
+     550             : /* EOF */
+     551           0 : /* EOF */
+     552           0 : /* EOF */
+     553             : /* EOF */
+     554             : /* EOF */
+     555           0 : /* EOF */
+     556           0 : /* EOF */
+     557             : /* EOF */
+     558           0 : /* EOF */
+     559           0 : /* EOF */
+     560           0 : /* EOF */
+     561           0 : /* EOF */
+     562           0 : /* EOF */
+     563             : /* EOF */
+     564           0 : /* EOF */
+     565           0 : /* EOF */
+     566           0 : /* EOF */
+     567           0 : /* EOF */
+     568             : /* EOF */
+     569             : /* EOF */
+     570             : /* EOF */
+     571             : /* EOF */
+     572             : /* EOF */
+     573           0 : /* EOF */
+     574           0 : /* EOF */
+     575           0 : /* EOF */
+     576             : /* EOF */
+     577           0 : /* EOF */
+     578             : /* EOF */
+     579             : /* EOF */
+     580           0 : /* EOF */
+     581             : /* EOF */
+     582             : /* EOF */
+     583             : /* EOF */
+     584             : /* EOF */
+     585           0 : /* EOF */
+     586           0 : /* EOF */
+     587           0 : /* EOF */
+     588           0 : /* EOF */
+     589           0 : /* EOF */
+     590           0 : /* EOF */
+     591             : /* EOF */
+     592             : /* EOF */
+     593             : /* EOF */
+     594           0 : /* EOF */
+     595           0 : /* EOF */
+     596             : /* EOF */
+     597             : /* EOF */
+     598           0 : /* EOF */
+     599           0 : /* EOF */
+     600           0 : /* EOF */
+     601           0 : /* EOF */
+     602             : /* EOF */
+     603           0 : /* EOF */
+     604           0 : /* EOF */
+     605           0 : /* EOF */
+     606           0 : /* EOF */
+     607           0 : /* EOF */
+     608             : /* EOF */
+     609             : /* EOF */
+     610           0 : /* EOF */
+     611           0 : /* EOF */
+     612             : /* EOF */
+     613           0 : /* EOF */
+     614           0 : /* EOF */
+     615           0 : /* EOF */
+     616           0 : /* EOF */
+     617           0 : /* EOF */
+     618             : /* EOF */
+     619             : /* EOF */
+     620           0 : /* EOF */
+     621           0 : /* EOF */
+     622             : /* EOF */
+     623           0 : /* EOF */
+     624           0 : /* EOF */
+     625           0 : /* EOF */
+     626           0 : /* EOF */
+     627             : /* EOF */
+     628           0 : /* EOF */
+     629             : /* EOF */
+     630           0 : /* EOF */
+     631           0 : /* EOF */
+     632             : /* EOF */
+     633             : /* EOF */
+     634           0 : /* EOF */
+     635           0 : /* EOF */
+     636             : /* EOF */
+     637           0 : /* EOF */
+     638           0 : /* EOF */
+     639           0 : /* EOF */
+     640           0 : /* EOF */
+     641           0 : /* EOF */
+     642             : /* EOF */
+     643           0 : /* EOF */
+     644           0 : /* EOF */
+     645             : /* EOF */
+     646             : /* EOF */
+     647           0 : /* EOF */
+     648             : /* EOF */
+     649             : /* EOF */
+     650             : /* EOF */
+     651           0 : /* EOF */
+     652           0 : /* EOF */
+     653           0 : /* EOF */
+     654           0 : /* EOF */
+     655             : /* EOF */
+     656             : /* EOF */
+     657             : /* EOF */
+     658           0 : /* EOF */
+     659           0 : /* EOF */
+     660           0 : /* EOF */
+     661           0 : /* EOF */
+     662           0 : /* EOF */
+     663             : /* EOF */
+     664           0 : /* EOF */
+     665           0 : /* EOF */
+     666           0 : /* EOF */
+     667             : /* EOF */
+     668           0 : /* EOF */
+     669             : /* EOF */
+     670           0 : /* EOF */
+     671           0 : /* EOF */
+     672           0 : /* EOF */
+     673             : /* EOF */
+     674           0 : /* EOF */
+     675             : /* EOF */
+     676           0 : /* EOF */
+     677           0 : /* EOF */
+     678           0 : /* EOF */
+     679           0 : /* EOF */
+     680             : /* EOF */
+     681           0 : /* EOF */
+     682           0 : /* EOF */
+     683           0 : /* EOF */
+     684           0 : /* EOF */
+     685             : /* EOF */
+     686           0 : /* EOF */
+     687           0 : /* EOF */
+     688           0 : /* EOF */
+     689           0 : /* EOF */
+     690             : /* EOF */
+     691           0 : /* EOF */
+     692           0 : /* EOF */
+     693           0 : /* EOF */
+     694           0 : /* EOF */
+     695             : /* EOF */
+     696           0 : /* EOF */
+     697           0 : /* EOF */
+     698           0 : /* EOF */
+     699           0 : /* EOF */
+     700             : /* EOF */
+     701             : /* EOF */
+     702             : /* EOF */
+     703           0 : /* EOF */
+     704           0 : /* EOF */
+     705           0 : /* EOF */
+     706             : /* EOF */
+     707           0 : /* EOF */
+     708           0 : /* EOF */
+     709             : /* EOF */
+     710           0 : /* EOF */
+     711           0 : /* EOF */
+     712             : /* EOF */
+     713           0 : /* EOF */
+     714           0 : /* EOF */
+     715           0 : /* EOF */
+     716           0 : /* EOF */
+     717             : /* EOF */
+     718           0 : /* EOF */
+     719           0 : /* EOF */
+     720             : /* EOF */
+     721           0 : /* EOF */
+     722           0 : /* EOF */
+     723           0 : /* EOF */
+     724           0 : /* EOF */
+     725             : /* EOF */
+     726             : /* EOF */
+     727           0 : /* EOF */
+     728           0 : /* EOF */
+     729           0 : /* EOF */
+     730             : /* EOF */
+     731           0 : /* EOF */
+     732           0 : /* EOF */
+     733           0 : /* EOF */
+     734           0 : /* EOF */
+     735             : /* EOF */
+     736           0 : /* EOF */
+     737           0 : /* EOF */
+     738           0 : /* EOF */
+     739             : /* EOF */
+     740             : /* EOF */
+     741           0 : /* EOF */
+     742             : /* EOF */
+     743             : /* EOF */
+     744             : /* EOF */
+     745             : /* EOF */
+     746           0 : /* EOF */
+     747           0 : /* EOF */
+     748           0 : /* EOF */
+     749           0 : /* EOF */
+     750           0 : /* EOF */
+     751           0 : /* EOF */
+     752             : /* EOF */
+     753             : /* EOF */
+     754           0 : /* EOF */
+     755             : /* EOF */
+     756             : /* EOF */
+     757             : /* EOF */
+     758           0 : /* EOF */
+     759             : /* EOF */
+     760           0 : /* EOF */
+     761           0 : /* EOF */
+     762             : /* EOF */
+     763           0 : /* EOF */
+     764             : /* EOF */
+     765           0 : /* EOF */
+     766           0 : /* EOF */
+     767           0 : /* EOF */
+     768           0 : /* EOF */
+     769             : /* EOF */
+     770           0 : /* EOF */
+     771           0 : /* EOF */
+     772           0 : /* EOF */
+     773           0 : /* EOF */
+     774             : /* EOF */
+     775           0 : /* EOF */
+     776           0 : /* EOF */
+     777           0 : /* EOF */
+     778           0 : /* EOF */
+     779           0 : /* EOF */
+     780             : /* EOF */
+     781           0 : /* EOF */
+     782           0 : /* EOF */
+     783           0 : /* EOF */
+     784           0 : /* EOF */
+     785             : /* EOF */
+     786           0 : /* EOF */
+     787           0 : /* EOF */
+     788           0 : /* EOF */
+     789           0 : /* EOF */
+     790             : /* EOF */
+     791           0 : /* EOF */
+     792           0 : /* EOF */
+     793           0 : /* EOF */
+     794           0 : /* EOF */
+     795             : /* EOF */
+     796           0 : /* EOF */
+     797             : /* EOF */
+     798           0 : /* EOF */
+     799           0 : /* EOF */
+     800           0 : /* EOF */
+     801           0 : /* EOF */
+     802             : /* EOF */
+     803           0 : /* EOF */
+     804           0 : /* EOF */
+     805           0 : /* EOF */
+     806           0 : /* EOF */
+     807           0 : /* EOF */
+     808             : /* EOF */
+     809           0 : /* EOF */
+     810           0 : /* EOF */
+     811           0 : /* EOF */
+     812           0 : /* EOF */
+     813           0 : /* EOF */
+     814             : /* EOF */
+     815             : /* EOF */
+     816           0 : /* EOF */
+     817             : /* EOF */
+     818           0 : /* EOF */
+     819           0 : /* EOF */
+     820           0 : /* EOF */
+     821           0 : /* EOF */
+     822             : /* EOF */
+     823           0 : /* EOF */
+     824           0 : /* EOF */
+     825             : /* EOF */
+     826             : /* EOF */
+     827             : /* EOF */
+     828           0 : /* EOF */
+     829           0 : /* EOF */
+     830           0 : /* EOF */
+     831           0 : /* EOF */
+     832           0 : /* EOF */
+     833           0 : /* EOF */
+     834           0 : /* EOF */
+     835             : /* EOF */
+     836           0 : /* EOF */
+     837             : /* EOF */
+     838             : /* EOF */
+     839           0 : /* EOF */
+     840             : /* EOF */
+     841             : /* EOF */
+     842             : /* EOF */
+     843           0 : /* EOF */
+     844           0 : /* EOF */
+     845           0 : /* EOF */
+     846           0 : /* EOF */
+     847           0 : /* EOF */
+     848           0 : /* EOF */
+     849           0 : /* EOF */
+     850           0 : /* EOF */
+     851           0 : /* EOF */
+     852             : /* EOF */
+     853           0 : /* EOF */
+     854           0 : /* EOF */
+     855           0 : /* EOF */
+     856             : /* EOF */
+     857             : /* EOF */
+     858           0 : /* EOF */
+     859           0 : /* EOF */
+     860           0 : /* EOF */
+     861           0 : /* EOF */
+     862             : /* EOF */
+     863             : /* EOF */
+     864           0 : /* EOF */
+     865             : /* EOF */
+     866             : /* EOF */
+     867           0 : /* EOF */
+     868             : /* EOF */
+     869             : /* EOF */
+     870             : /* EOF */
+     871           0 : /* EOF */
+     872             : /* EOF */
+     873           0 : /* EOF */
+     874           0 : /* EOF */
+     875           0 : /* EOF */
+     876             : /* EOF */
+     877           0 : /* EOF */
+     878           0 : /* EOF */
+     879           0 : /* EOF */
+     880             : /* EOF */
+     881           0 : /* EOF */
+     882           0 : /* EOF */
+     883           0 : /* EOF */
+     884             : /* EOF */
+     885           0 : /* EOF */
+     886           0 : /* EOF */
+     887           0 : /* EOF */
+     888             : /* EOF */
+     889           0 : /* EOF */
+     890           0 : /* EOF */
+     891           0 : /* EOF */
+     892             : /* EOF */
+     893           0 : /* EOF */
+     894           0 : /* EOF */
+     895           0 : /* EOF */
+     896             : /* EOF */
+     897             : /* EOF */
+     898           0 : /* EOF */
+     899             : /* EOF */
+     900             : /* EOF */
+     901             : /* EOF */
+     902             : /* EOF */
+     903             : /* EOF */
+     904             : /* EOF */
+     905             : /* EOF */
+     906           0 : /* EOF */
+     907           0 : /* EOF */
+     908           0 : /* EOF */
+     909             : /* EOF */
+     910           0 : /* EOF */
+     911           0 : /* EOF */
+     912           0 : /* EOF */
+     913             : /* EOF */
+     914           0 : /* EOF */
+     915             : /* EOF */
+     916             : /* EOF */
+     917           0 : /* EOF */
+     918             : /* EOF */
+     919             : /* EOF */
+     920             : /* EOF */
+     921           0 : /* EOF */
+     922             : /* EOF */
+     923           0 : /* EOF */
+     924           0 : /* EOF */
+     925           0 : /* EOF */
+     926           0 : /* EOF */
+     927           0 : /* EOF */
+     928           0 : /* EOF */
+     929           0 : /* EOF */
+     930           0 : /* EOF */
+     931             : /* EOF */
+     932           0 : /* EOF */
+     933             : /* EOF */
+     934             : /* EOF */
+     935           0 : /* EOF */
+     936             : /* EOF */
+     937             : /* EOF */
+     938           0 : /* EOF */
+     939             : /* EOF */
+     940           0 : /* EOF */
+     941           0 : /* EOF */
+     942           0 : /* EOF */
+     943             : /* EOF */
+     944             : /* EOF */
+     945           0 : /* EOF */
+     946           0 : /* EOF */
+     947           0 : /* EOF */
+     948           0 : /* EOF */
+     949           0 : /* EOF */
+     950             : /* EOF */
+     951           0 : /* EOF */
+     952           0 : /* EOF */
+     953           0 : /* EOF */
+     954             : /* EOF */
+     955           0 : /* EOF */
+     956           0 : /* EOF */
+     957           0 : /* EOF */
+     958             : /* EOF */
+     959           0 : /* EOF */
+     960           0 : /* EOF */
+     961           0 : /* EOF */
+     962             : /* EOF */
+     963           0 : /* EOF */
+     964           0 : /* EOF */
+     965           0 : /* EOF */
+     966             : /* EOF */
+     967           0 : /* EOF */
+     968             : /* EOF */
+     969             : /* EOF */
+     970           0 : /* EOF */
+     971             : /* EOF */
+     972             : /* EOF */
+     973           0 : /* EOF */
+     974             : /* EOF */
+     975           0 : /* EOF */
+     976           0 : /* EOF */
+     977           0 : /* EOF */
+     978             : /* EOF */
+     979           0 : /* EOF */
+     980           0 : /* EOF */
+     981           0 : /* EOF */
+     982             : /* EOF */
+     983             : /* EOF */
+     984           0 : /* EOF */
+     985           0 : /* EOF */
+     986           0 : /* EOF */
+     987           0 : /* EOF */
+     988           0 : /* EOF */
+     989           0 : /* EOF */
+     990           0 : /* EOF */
+     991           0 : /* EOF */
+     992             : /* EOF */
+     993           0 : /* EOF */
+     994             : /* EOF */
+     995             : /* EOF */
+     996           0 : /* EOF */
+     997             : /* EOF */
+     998             : /* EOF */
+     999           0 : /* EOF */
+    1000           0 : /* EOF */
+    1001           0 : /* EOF */
+    1002           0 : /* EOF */
+    1003           0 : /* EOF */
+    1004           0 : /* EOF */
+    1005           0 : /* EOF */
+    1006           0 : /* EOF */
+    1007             : /* EOF */
+    1008           0 : /* EOF */
+    1009           0 : /* EOF */
+    1010           0 : /* EOF */
+    1011             : /* EOF */
+    1012           0 : /* EOF */
+    1013           0 : /* EOF */
+    1014           0 : /* EOF */
+    1015           0 : /* EOF */
+    1016             : /* EOF */
+    1017           0 : /* EOF */
+    1018             : /* EOF */
+    1019           0 : /* EOF */
+    1020           0 : /* EOF */
+    1021           0 : /* EOF */
+    1022             : /* EOF */
+    1023           0 : /* EOF */
+    1024             : /* EOF */
+    1025           0 : /* EOF */
+    1026             : /* EOF */
+    1027           0 : /* EOF */
+    1028           0 : /* EOF */
+    1029           0 : /* EOF */
+    1030           0 : /* EOF */
+    1031           0 : /* EOF */
+    1032           0 : /* EOF */
+    1033           0 : /* EOF */
+    1034           0 : /* EOF */
+    1035             : /* EOF */
+    1036             : /* EOF */
+    1037             : /* EOF */
+    1038           0 : /* EOF */
+    1039           0 : /* EOF */
+    1040           0 : /* EOF */
+    1041             : /* EOF */
+    1042           0 : /* EOF */
+    1043           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/utils.cpp.func-sort-c.html b/html/DRAMSys/library/src/common/utils.cpp.func-sort-c.html new file mode 100644 index 00000000..0b7b1310 --- /dev/null +++ b/html/DRAMSys/library/src/common/utils.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - utils.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:305851.7 %
Date:2020-06-30 17:34:44Functions:81266.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12TimeInterval10intersectsES_0
_ZN12TimeInterval16timeIsInIntervalEN7sc_core7sc_timeE0
_ZN12TimeInterval9getLengthEv0
_GLOBAL__sub_I__ZN12TimeInterval16timeIsInIntervalEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_Z10setUpDummyRN3tlm19tlm_generic_payloadE4Rank4Bank136
_Z12getPhaseNameB5cxx11N3tlm9tlm_phaseE1849057
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/utils.cpp.func.html b/html/DRAMSys/library/src/common/utils.cpp.func.html new file mode 100644 index 00000000..e86c3d63 --- /dev/null +++ b/html/DRAMSys/library/src/common/utils.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - utils.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:305851.7 %
Date:2020-06-30 17:34:44Functions:81266.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12TimeInterval16timeIsInIntervalEN7sc_core7sc_timeE30
_Z10setUpDummyRN3tlm19tlm_generic_payloadE4Rank4Bank136
_Z12getPhaseNameB5cxx11N3tlm9tlm_phaseE1849057
_Z41__static_initialization_and_destruction_0ii30
_ZN12TimeInterval10intersectsES_0
_ZN12TimeInterval16timeIsInIntervalEN7sc_core7sc_timeE0
_ZN12TimeInterval9getLengthEv0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/utils.cpp.gcov.html b/html/DRAMSys/library/src/common/utils.cpp.gcov.html new file mode 100644 index 00000000..6d8a3138 --- /dev/null +++ b/html/DRAMSys/library/src/common/utils.cpp.gcov.html @@ -0,0 +1,239 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - utils.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:305851.7 %
Date:2020-06-30 17:34:44Functions:81266.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49           0 : /* EOF */
+      50             : /* EOF */
+      51           0 : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+      55             : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60           0 : /* EOF */
+      61             : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64             : /* EOF */
+      65           0 : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68     1849057 : /* EOF */
+      69             : /* EOF */
+      70     3698114 : /* EOF */
+      71     1849057 : /* EOF */
+      72     3698114 : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75         330 : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80        1650 : /* EOF */
+      81         660 : /* EOF */
+      82             : /* EOF */
+      83           0 : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87           0 : /* EOF */
+      88             : /* EOF */
+      89           0 : /* EOF */
+      90             : /* EOF */
+      91           0 : /* EOF */
+      92             : /* EOF */
+      93           0 : /* EOF */
+      94             : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97             : /* EOF */
+      98           0 : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101           0 : /* EOF */
+     102           0 : /* EOF */
+     103             : /* EOF */
+     104        1275 : /* EOF */
+     105             : /* EOF */
+     106        1275 : /* EOF */
+     107             : /* EOF */
+     108        1275 : /* EOF */
+     109        1275 : /* EOF */
+     110             : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116             : /* EOF */
+     117         180 : /* EOF */
+     118             : /* EOF */
+     119         180 : /* EOF */
+     120             : /* EOF */
+     121         180 : /* EOF */
+     122         180 : /* EOF */
+     123             : /* EOF */
+     124           0 : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127           0 : /* EOF */
+     128           0 : /* EOF */
+     129             : /* EOF */
+     130          60 : /* EOF */
+     131             : /* EOF */
+     132          60 : /* EOF */
+     133             : /* EOF */
+     134          60 : /* EOF */
+     135          60 : /* EOF */
+     136             : /* EOF */
+     137           0 : /* EOF */
+     138             : /* EOF */
+     139             : /* EOF */
+     140           0 : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143         136 : /* EOF */
+     144             : /* EOF */
+     145         272 : /* EOF */
+     146         272 : /* EOF */
+     147         272 : /* EOF */
+     148         272 : /* EOF */
+     149         136 : /* EOF */
+     150         272 : /* EOF */
+     151         272 : /* EOF */
+     152         680 : /* EOF */
+     153         408 : /* EOF */
+     154         226 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/utils.h.func-sort-c.html b/html/DRAMSys/library/src/common/utils.h.func-sort-c.html new file mode 100644 index 00000000..76bdf6c9 --- /dev/null +++ b/html/DRAMSys/library/src/common/utils.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - utils.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3030100.0 %
Date:2020-06-30 17:34:44Functions:11100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZL7loadbarjjjj252938
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/utils.h.func.html b/html/DRAMSys/library/src/common/utils.h.func.html new file mode 100644 index 00000000..afcbf08b --- /dev/null +++ b/html/DRAMSys/library/src/common/utils.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - utils.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3030100.0 %
Date:2020-06-30 17:34:44Functions:11100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZL7loadbarjjjj252938
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/common/utils.h.gcov.html b/html/DRAMSys/library/src/common/utils.h.gcov.html new file mode 100644 index 00000000..1b5c8c5e --- /dev/null +++ b/html/DRAMSys/library/src/common/utils.h.gcov.html @@ -0,0 +1,187 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/common - utils.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3030100.0 %
Date:2020-06-30 17:34:44Functions:11100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53     8867403 : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57      764334 : /* EOF */
+      58     4291266 : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68      252938 : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73      252938 : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76        3204 : /* EOF */
+      77        3204 : /* EOF */
+      78        3204 : /* EOF */
+      79        9612 : /* EOF */
+      80       82551 : /* EOF */
+      81       79347 : /* EOF */
+      82             : /* EOF */
+      83        3204 : /* EOF */
+      84         150 : /* EOF */
+      85        3204 : /* EOF */
+      86         155 : /* EOF */
+      87        3204 : /* EOF */
+      88         239 : /* EOF */
+      89        3204 : /* EOF */
+      90        1036 : /* EOF */
+      91        3204 : /* EOF */
+      92         162 : /* EOF */
+      93        3204 : /* EOF */
+      94         157 : /* EOF */
+      95        3204 : /* EOF */
+      96         230 : /* EOF */
+      97        3204 : /* EOF */
+      98        1045 : /* EOF */
+      99             : /* EOF */
+     100      158562 : /* EOF */
+     101       77679 : /* EOF */
+     102        3204 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/Configuration.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/Configuration.cpp.func-sort-c.html new file mode 100644 index 00000000..adfdf791 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/Configuration.cpp.func-sort-c.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration - Configuration.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:15317587.4 %
Date:2020-06-30 17:34:44Functions:121392.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13Configuration15getDataBusWidthEv0
_GLOBAL__sub_I__ZN13Configuration10memspecUriB5cxx11E30
_Z15string2TimeUnitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13Configuration18setPathToResourcesENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_ZN13Configuration20getSimMemSizeInBytesEv37
_ZN13Configuration22adjustNumBytesAfterECCEj37
_ZN13Configuration16getBytesPerBurstEv2501
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/Configuration.cpp.func.html b/html/DRAMSys/library/src/configuration/Configuration.cpp.func.html new file mode 100644 index 00000000..81d65dff --- /dev/null +++ b/html/DRAMSys/library/src/configuration/Configuration.cpp.func.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration - Configuration.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:15317587.4 %
Date:2020-06-30 17:34:44Functions:121392.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13Configuration10memspecUriB5cxx11E30
_Z15string2TimeUnitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13Configuration15getDataBusWidthEv0
_ZN13Configuration16getBytesPerBurstEv2501
_ZN13Configuration18setPathToResourcesENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_ZN13Configuration20getSimMemSizeInBytesEv37
_ZN13Configuration22adjustNumBytesAfterECCEj37
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/Configuration.cpp.gcov.html b/html/DRAMSys/library/src/configuration/Configuration.cpp.gcov.html new file mode 100644 index 00000000..6d70895d --- /dev/null +++ b/html/DRAMSys/library/src/configuration/Configuration.cpp.gcov.html @@ -0,0 +1,397 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration - Configuration.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:15317587.4 %
Date:2020-06-30 17:34:44Functions:121392.3 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56          90 : /* EOF */
+      57          90 : /* EOF */
+      58             : /* EOF */
+      59          30 : /* EOF */
+      60             : /* EOF */
+      61          30 : /* EOF */
+      62             : /* EOF */
+      63          30 : /* EOF */
+      64             : /* EOF */
+      65          30 : /* EOF */
+      66             : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69           0 : /* EOF */
+      70             : /* EOF */
+      71           0 : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74           0 : /* EOF */
+      75             : /* EOF */
+      76           0 : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80        1110 : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83        1110 : /* EOF */
+      84          60 : /* EOF */
+      85        1080 : /* EOF */
+      86          60 : /* EOF */
+      87        1050 : /* EOF */
+      88          30 : /* EOF */
+      89        1020 : /* EOF */
+      90          60 : /* EOF */
+      91         990 : /* EOF */
+      92          60 : /* EOF */
+      93         960 : /* EOF */
+      94          60 : /* EOF */
+      95         930 : /* EOF */
+      96          30 : /* EOF */
+      97         900 : /* EOF */
+      98          30 : /* EOF */
+      99         870 : /* EOF */
+     100          30 : /* EOF */
+     101         840 : /* EOF */
+     102          60 : /* EOF */
+     103         810 : /* EOF */
+     104          30 : /* EOF */
+     105             : /* EOF */
+     106         780 : /* EOF */
+     107          60 : /* EOF */
+     108         750 : /* EOF */
+     109          30 : /* EOF */
+     110         720 : /* EOF */
+     111          30 : /* EOF */
+     112         690 : /* EOF */
+     113          30 : /* EOF */
+     114         660 : /* EOF */
+     115             : /* EOF */
+     116          30 : /* EOF */
+     117          30 : /* EOF */
+     118           0 : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122         630 : /* EOF */
+     123          30 : /* EOF */
+     124         600 : /* EOF */
+     125          30 : /* EOF */
+     126         570 : /* EOF */
+     127          30 : /* EOF */
+     128         540 : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133          30 : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136         510 : /* EOF */
+     137          30 : /* EOF */
+     138         480 : /* EOF */
+     139          30 : /* EOF */
+     140         450 : /* EOF */
+     141          60 : /* EOF */
+     142             : /* EOF */
+     143         420 : /* EOF */
+     144          30 : /* EOF */
+     145         390 : /* EOF */
+     146          60 : /* EOF */
+     147         360 : /* EOF */
+     148          60 : /* EOF */
+     149             : /* EOF */
+     150         330 : /* EOF */
+     151             : /* EOF */
+     152          30 : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155          60 : /* EOF */
+     156             : /* EOF */
+     157         300 : /* EOF */
+     158          30 : /* EOF */
+     159         270 : /* EOF */
+     160          30 : /* EOF */
+     161         240 : /* EOF */
+     162          60 : /* EOF */
+     163         210 : /* EOF */
+     164             : /* EOF */
+     165          60 : /* EOF */
+     166          30 : /* EOF */
+     167             : /* EOF */
+     168         180 : /* EOF */
+     169          60 : /* EOF */
+     170         150 : /* EOF */
+     171          30 : /* EOF */
+     172         120 : /* EOF */
+     173          30 : /* EOF */
+     174          90 : /* EOF */
+     175          30 : /* EOF */
+     176          60 : /* EOF */
+     177          30 : /* EOF */
+     178          30 : /* EOF */
+     179          30 : /* EOF */
+     180             : /* EOF */
+     181           0 : /* EOF */
+     182             : /* EOF */
+     183        1110 : /* EOF */
+     184             : /* EOF */
+     185          30 : /* EOF */
+     186             : /* EOF */
+     187          60 : /* EOF */
+     188         120 : /* EOF */
+     189          30 : /* EOF */
+     190             : /* EOF */
+     191             : /* EOF */
+     192          37 : /* EOF */
+     193             : /* EOF */
+     194             : /* EOF */
+     195         111 : /* EOF */
+     196          37 : /* EOF */
+     197          37 : /* EOF */
+     198          37 : /* EOF */
+     199          37 : /* EOF */
+     200          37 : /* EOF */
+     201          37 : /* EOF */
+     202          37 : /* EOF */
+     203             : /* EOF */
+     204          37 : /* EOF */
+     205             : /* EOF */
+     206          37 : /* EOF */
+     207             : /* EOF */
+     208          37 : /* EOF */
+     209             : /* EOF */
+     210          74 : /* EOF */
+     211         111 : /* EOF */
+     212         111 : /* EOF */
+     213         111 : /* EOF */
+     214         111 : /* EOF */
+     215         111 : /* EOF */
+     216         111 : /* EOF */
+     217         111 : /* EOF */
+     218         111 : /* EOF */
+     219         111 : /* EOF */
+     220         111 : /* EOF */
+     221         111 : /* EOF */
+     222         111 : /* EOF */
+     223          37 : /* EOF */
+     224             : /* EOF */
+     225             : /* EOF */
+     226          74 : /* EOF */
+     227             : /* EOF */
+     228             : /* EOF */
+     229             : /* EOF */
+     230             : /* EOF */
+     231             : /* EOF */
+     232             : /* EOF */
+     233           0 : /* EOF */
+     234             : /* EOF */
+     235        2501 : /* EOF */
+     236             : /* EOF */
+     237             : /* EOF */
+     238             : /* EOF */
+     239        2501 : /* EOF */
+     240             : /* EOF */
+     241        5002 : /* EOF */
+     242             : /* EOF */
+     243             : /* EOF */
+     244             : /* EOF */
+     245          37 : /* EOF */
+     246             : /* EOF */
+     247             : /* EOF */
+     248          74 : /* EOF */
+     249             : /* EOF */
+     250           0 : /* EOF */
+     251             : /* EOF */
+     252             : /* EOF */
+     253           0 : /* EOF */
+     254             : /* EOF */
+     255             : /* EOF */
+     256             : /* EOF */
+     257           0 : /* EOF */
+     258           0 : /* EOF */
+     259             : /* EOF */
+     260             : /* EOF */
+     261             : /* EOF */
+     262          30 : /* EOF */
+     263             : /* EOF */
+     264          90 : /* EOF */
+     265         600 : /* EOF */
+     266        1800 : /* EOF */
+     267          30 : /* EOF */
+     268             : /* EOF */
+     269          30 : /* EOF */
+     270             : /* EOF */
+     271          90 : /* EOF */
+     272         480 : /* EOF */
+     273        1320 : /* EOF */
+     274          30 : /* EOF */
+     275             : /* EOF */
+     276          30 : /* EOF */
+     277             : /* EOF */
+     278          30 : /* EOF */
+     279          90 : /* EOF */
+     280         480 : /* EOF */
+     281        1320 : /* EOF */
+     282          30 : /* EOF */
+     283             : /* EOF */
+     284          30 : /* EOF */
+     285             : /* EOF */
+     286          30 : /* EOF */
+     287          90 : /* EOF */
+     288          60 : /* EOF */
+     289             : /* EOF */
+     290          90 : /* EOF */
+     291             : /* EOF */
+     292          30 : /* EOF */
+     293           5 : /* EOF */
+     294          25 : /* EOF */
+     295           6 : /* EOF */
+     296          19 : /* EOF */
+     297          12 : /* EOF */
+     298           7 : /* EOF */
+     299           0 : /* EOF */
+     300           7 : /* EOF */
+     301           0 : /* EOF */
+     302           7 : /* EOF */
+     303           7 : /* EOF */
+     304           0 : /* EOF */
+     305           0 : /* EOF */
+     306           0 : /* EOF */
+     307           0 : /* EOF */
+     308           0 : /* EOF */
+     309           0 : /* EOF */
+     310             : /* EOF */
+     311           0 : /* EOF */
+     312         120 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/Configuration.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/Configuration.h.func-sort-c.html new file mode 100644 index 00000000..f3ce2547 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/Configuration.h.func-sort-c.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration - Configuration.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13ConfigurationC2Ev30
_ZN13ConfigurationD2Ev30
_ZN13Configuration11getInstanceEv2953377
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/Configuration.h.func.html b/html/DRAMSys/library/src/configuration/Configuration.h.func.html new file mode 100644 index 00000000..4fa5339d --- /dev/null +++ b/html/DRAMSys/library/src/configuration/Configuration.h.func.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration - Configuration.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13Configuration11getInstanceEv2953377
_ZN13ConfigurationC2Ev30
_ZN13ConfigurationD2Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/Configuration.h.gcov.html b/html/DRAMSys/library/src/configuration/Configuration.h.gcov.html new file mode 100644 index 00000000..1df7a769 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/Configuration.h.gcov.html @@ -0,0 +1,147 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration - Configuration.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53         360 : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56     2953377 : /* EOF */
+      57             : /* EOF */
+      58     2953377 : /* EOF */
+      59     2953377 : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62         660 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func-sort-c.html new file mode 100644 index 00000000..54f82043 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/TemperatureSimConfig.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration - TemperatureSimConfig.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:202290.9 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN20TemperatureSimConfigD2Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func.html b/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func.html new file mode 100644 index 00000000..7e1f3dd2 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/TemperatureSimConfig.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration - TemperatureSimConfig.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:202290.9 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN20TemperatureSimConfigD2Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.gcov.html b/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.gcov.html new file mode 100644 index 00000000..13f43176 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.gcov.html @@ -0,0 +1,207 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/TemperatureSimConfig.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration - TemperatureSimConfig.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:202290.9 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47         420 : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55          60 : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76          30 : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80          30 : /* EOF */
+      81          60 : /* EOF */
+      82          90 : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85         120 : /* EOF */
+      86             : /* EOF */
+      87          60 : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90           0 : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96         390 : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99         240 : /* EOF */
+     100         240 : /* EOF */
+     101         120 : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106         240 : /* EOF */
+     107         120 : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110          60 : /* EOF */
+     111          30 : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115          30 : /* EOF */
+     116         120 : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121          30 : /* EOF */
+     122         120 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/index-sort-f.html b/html/DRAMSys/library/src/configuration/index-sort-f.html new file mode 100644 index 00000000..9e49af90 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/index-sort-f.html @@ -0,0 +1,123 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/configurationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17820288.1 %
Date:2020-06-30 17:34:44Functions:171894.4 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Configuration.cpp +
87.4%87.4%
+
87.4 %153 / 17592.3 %12 / 13
TemperatureSimConfig.h +
90.9%90.9%
+
90.9 %20 / 22100.0 %2 / 2
Configuration.h +
100.0%
+
100.0 %5 / 5100.0 %3 / 3
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/index-sort-l.html b/html/DRAMSys/library/src/configuration/index-sort-l.html new file mode 100644 index 00000000..a8bf346a --- /dev/null +++ b/html/DRAMSys/library/src/configuration/index-sort-l.html @@ -0,0 +1,123 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/configurationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17820288.1 %
Date:2020-06-30 17:34:44Functions:171894.4 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Configuration.cpp +
87.4%87.4%
+
87.4 %153 / 17592.3 %12 / 13
TemperatureSimConfig.h +
90.9%90.9%
+
90.9 %20 / 22100.0 %2 / 2
Configuration.h +
100.0%
+
100.0 %5 / 5100.0 %3 / 3
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/index.html b/html/DRAMSys/library/src/configuration/index.html new file mode 100644 index 00000000..579f3385 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/index.html @@ -0,0 +1,123 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/configurationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17820288.1 %
Date:2020-06-30 17:34:44Functions:171894.4 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Configuration.cpp +
87.4%87.4%
+
87.4 %153 / 17592.3 %12 / 13
Configuration.h +
100.0%
+
100.0 %5 / 5100.0 %3 / 3
TemperatureSimConfig.h +
90.9%90.9%
+
90.9 %20 / 22100.0 %2 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func-sort-c.html new file mode 100644 index 00000000..96f6e118 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1717100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7MemSpecC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEEjjjjjjjj30
_Z41__static_initialization_and_destruction_0ii30
_ZN7MemSpecC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEEjjjjjjjj30
_ZNK7MemSpec16getCommandLengthE7Command192026
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func.html new file mode 100644 index 00000000..bdef0067 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1717100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7MemSpecC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEEjjjjjjjj30
_Z41__static_initialization_and_destruction_0ii30
_ZN7MemSpecC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEEjjjjjjjj30
_ZNK7MemSpec16getCommandLengthE7Command192026
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.gcov.html new file mode 100644 index 00000000..ddb35233 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.gcov.html @@ -0,0 +1,161 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1717100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46          30 : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50          30 : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59          90 : /* EOF */
+      60          90 : /* EOF */
+      61          90 : /* EOF */
+      62          90 : /* EOF */
+      63          90 : /* EOF */
+      64          90 : /* EOF */
+      65          30 : /* EOF */
+      66          30 : /* EOF */
+      67          30 : /* EOF */
+      68         570 : /* EOF */
+      69             : /* EOF */
+      70         120 : /* EOF */
+      71          30 : /* EOF */
+      72             : /* EOF */
+      73      192026 : /* EOF */
+      74             : /* EOF */
+      75      576078 : /* EOF */
+      76          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func-sort-c.html new file mode 100644 index 00000000..ffd065f5 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN7MemSpecD0Ev0
_ZN7MemSpecD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func.html new file mode 100644 index 00000000..c8e07b2a --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN7MemSpecD0Ev0
_ZN7MemSpecD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.gcov.html new file mode 100644 index 00000000..24133ec6 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.gcov.html @@ -0,0 +1,157 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func-sort-c.html new file mode 100644 index 00000000..642382c3 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:697690.8 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZNK11MemSpecDDR320getRefreshIntervalPBEv0
_ZN11MemSpecDDR3C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE5
_GLOBAL__sub_I__ZN11MemSpecDDR3C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK11MemSpecDDR320getRefreshIntervalABEv160
_ZNK11MemSpecDDR316getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE2200
_ZNK11MemSpecDDR323getIntervalOnDataStrobeE7Command2660
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func.html new file mode 100644 index 00000000..567f8fd6 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:697690.8 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11MemSpecDDR3C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN11MemSpecDDR3C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE5
_ZNK11MemSpecDDR316getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE2200
_ZNK11MemSpecDDR320getRefreshIntervalABEv160
_ZNK11MemSpecDDR320getRefreshIntervalPBEv0
_ZNK11MemSpecDDR323getIntervalOnDataStrobeE7Command2660
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.gcov.html new file mode 100644 index 00000000..257c3f1d --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.gcov.html @@ -0,0 +1,225 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:697690.8 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41           5 : /* EOF */
+      42             : /* EOF */
+      43           5 : /* EOF */
+      44           5 : /* EOF */
+      45           5 : /* EOF */
+      46             : /* EOF */
+      47           5 : /* EOF */
+      48          20 : /* EOF */
+      49          20 : /* EOF */
+      50           5 : /* EOF */
+      51           5 : /* EOF */
+      52          15 : /* EOF */
+      53             : /* EOF */
+      54          15 : /* EOF */
+      55          15 : /* EOF */
+      56          15 : /* EOF */
+      57          15 : /* EOF */
+      58          15 : /* EOF */
+      59          15 : /* EOF */
+      60          15 : /* EOF */
+      61          15 : /* EOF */
+      62          15 : /* EOF */
+      63          15 : /* EOF */
+      64          15 : /* EOF */
+      65          15 : /* EOF */
+      66          15 : /* EOF */
+      67          15 : /* EOF */
+      68          15 : /* EOF */
+      69          15 : /* EOF */
+      70          15 : /* EOF */
+      71          15 : /* EOF */
+      72          15 : /* EOF */
+      73          15 : /* EOF */
+      74          15 : /* EOF */
+      75          15 : /* EOF */
+      76          15 : /* EOF */
+      77          15 : /* EOF */
+      78          15 : /* EOF */
+      79          15 : /* EOF */
+      80          15 : /* EOF */
+      81          15 : /* EOF */
+      82          15 : /* EOF */
+      83          15 : /* EOF */
+      84          15 : /* EOF */
+      85          15 : /* EOF */
+      86          15 : /* EOF */
+      87          15 : /* EOF */
+      88          15 : /* EOF */
+      89          15 : /* EOF */
+      90         470 : /* EOF */
+      91           5 : /* EOF */
+      92             : /* EOF */
+      93         160 : /* EOF */
+      94             : /* EOF */
+      95         320 : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98           0 : /* EOF */
+      99             : /* EOF */
+     100           0 : /* EOF */
+     101           0 : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105        2200 : /* EOF */
+     106             : /* EOF */
+     107        2200 : /* EOF */
+     108         350 : /* EOF */
+     109        1850 : /* EOF */
+     110         500 : /* EOF */
+     111        1350 : /* EOF */
+     112         320 : /* EOF */
+     113        1030 : /* EOF */
+     114           0 : /* EOF */
+     115        1030 : /* EOF */
+     116        1010 : /* EOF */
+     117          20 : /* EOF */
+     118           0 : /* EOF */
+     119          20 : /* EOF */
+     120          20 : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123           0 : /* EOF */
+     124             : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129        2660 : /* EOF */
+     130             : /* EOF */
+     131        2660 : /* EOF */
+     132        3200 : /* EOF */
+     133        2020 : /* EOF */
+     134       10100 : /* EOF */
+     135             : /* EOF */
+     136             : /* EOF */
+     137           0 : /* EOF */
+     138             : /* EOF */
+     139             : /* EOF */
+     140          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func-sort-c.html new file mode 100644 index 00000000..0869a838 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecDDR3D0Ev0
_ZN11MemSpecDDR3D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func.html new file mode 100644 index 00000000..a77d6429 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecDDR3D0Ev0
_ZN11MemSpecDDR3D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.gcov.html new file mode 100644 index 00000000..08775fcd --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func-sort-c.html new file mode 100644 index 00000000..de51e881 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func-sort-c.html @@ -0,0 +1,105 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:859391.4 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZNK11MemSpecDDR420getRefreshIntervalPBEv0
_GLOBAL__sub_I__ZN11MemSpecDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK11MemSpecDDR420getRefreshIntervalABEv1548
_ZNK11MemSpecDDR416getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE166614
_ZNK11MemSpecDDR423getIntervalOnDataStrobeE7Command205824
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func.html new file mode 100644 index 00000000..07fc3645 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func.html @@ -0,0 +1,105 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:859391.4 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11MemSpecDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK11MemSpecDDR416getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE166614
_ZNK11MemSpecDDR420getRefreshIntervalABEv1548
_ZNK11MemSpecDDR420getRefreshIntervalPBEv0
_ZNK11MemSpecDDR423getIntervalOnDataStrobeE7Command205824
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.gcov.html new file mode 100644 index 00000000..c5ba1f9b --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.gcov.html @@ -0,0 +1,242 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:859391.4 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           6 : /* EOF */
+      43             : /* EOF */
+      44           6 : /* EOF */
+      45           6 : /* EOF */
+      46           6 : /* EOF */
+      47           6 : /* EOF */
+      48          24 : /* EOF */
+      49          24 : /* EOF */
+      50          24 : /* EOF */
+      51          24 : /* EOF */
+      52          24 : /* EOF */
+      53          24 : /* EOF */
+      54           6 : /* EOF */
+      55          18 : /* EOF */
+      56             : /* EOF */
+      57          18 : /* EOF */
+      58          18 : /* EOF */
+      59          18 : /* EOF */
+      60          18 : /* EOF */
+      61          18 : /* EOF */
+      62          18 : /* EOF */
+      63          18 : /* EOF */
+      64          18 : /* EOF */
+      65          18 : /* EOF */
+      66          18 : /* EOF */
+      67          18 : /* EOF */
+      68          18 : /* EOF */
+      69          18 : /* EOF */
+      70          18 : /* EOF */
+      71           6 : /* EOF */
+      72          24 : /* EOF */
+      73           0 : /* EOF */
+      74          12 : /* EOF */
+      75          12 : /* EOF */
+      76           6 : /* EOF */
+      77          24 : /* EOF */
+      78           0 : /* EOF */
+      79          12 : /* EOF */
+      80          12 : /* EOF */
+      81          18 : /* EOF */
+      82          18 : /* EOF */
+      83          18 : /* EOF */
+      84          18 : /* EOF */
+      85          18 : /* EOF */
+      86          18 : /* EOF */
+      87          18 : /* EOF */
+      88          18 : /* EOF */
+      89          18 : /* EOF */
+      90          18 : /* EOF */
+      91          18 : /* EOF */
+      92          18 : /* EOF */
+      93          18 : /* EOF */
+      94          18 : /* EOF */
+      95          18 : /* EOF */
+      96          18 : /* EOF */
+      97          18 : /* EOF */
+      98          18 : /* EOF */
+      99          18 : /* EOF */
+     100          18 : /* EOF */
+     101          18 : /* EOF */
+     102          18 : /* EOF */
+     103          18 : /* EOF */
+     104          18 : /* EOF */
+     105          18 : /* EOF */
+     106          18 : /* EOF */
+     107         618 : /* EOF */
+     108           6 : /* EOF */
+     109             : /* EOF */
+     110        1548 : /* EOF */
+     111             : /* EOF */
+     112        3096 : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115           0 : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122      166614 : /* EOF */
+     123             : /* EOF */
+     124      166614 : /* EOF */
+     125          48 : /* EOF */
+     126      166566 : /* EOF */
+     127       63552 : /* EOF */
+     128      103014 : /* EOF */
+     129           0 : /* EOF */
+     130      103014 : /* EOF */
+     131       60528 : /* EOF */
+     132       42486 : /* EOF */
+     133       39360 : /* EOF */
+     134        3126 : /* EOF */
+     135       12096 : /* EOF */
+     136         102 : /* EOF */
+     137         102 : /* EOF */
+     138             : /* EOF */
+     139             : /* EOF */
+     140           0 : /* EOF */
+     141             : /* EOF */
+     142             : /* EOF */
+     143             : /* EOF */
+     144             : /* EOF */
+     145             : /* EOF */
+     146      205824 : /* EOF */
+     147             : /* EOF */
+     148      205824 : /* EOF */
+     149      605280 : /* EOF */
+     150       84768 : /* EOF */
+     151      423840 : /* EOF */
+     152             : /* EOF */
+     153             : /* EOF */
+     154           0 : /* EOF */
+     155             : /* EOF */
+     156             : /* EOF */
+     157          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func-sort-c.html new file mode 100644 index 00000000..8ec9d42b --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecDDR4D0Ev0
_ZN11MemSpecDDR4D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func.html new file mode 100644 index 00000000..731c9854 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecDDR4D0Ev0
_ZN11MemSpecDDR4D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.gcov.html new file mode 100644 index 00000000..86f62152 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func-sort-c.html new file mode 100644 index 00000000..704acc9d --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR5C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK12MemSpecGDDR516getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK12MemSpecGDDR520getRefreshIntervalABEv0
_ZNK12MemSpecGDDR520getRefreshIntervalPBEv0
_ZNK12MemSpecGDDR523getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN12MemSpecGDDR5C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func.html new file mode 100644 index 00000000..b48720c7 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12MemSpecGDDR5C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN12MemSpecGDDR5C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK12MemSpecGDDR516getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK12MemSpecGDDR520getRefreshIntervalABEv0
_ZNK12MemSpecGDDR520getRefreshIntervalPBEv0
_ZNK12MemSpecGDDR523getIntervalOnDataStrobeE7Command0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.gcov.html new file mode 100644 index 00000000..2161c215 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.gcov.html @@ -0,0 +1,229 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41           0 : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51           0 : /* EOF */
+      52           0 : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67           0 : /* EOF */
+      68           0 : /* EOF */
+      69           0 : /* EOF */
+      70           0 : /* EOF */
+      71           0 : /* EOF */
+      72           0 : /* EOF */
+      73           0 : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81           0 : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85           0 : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89             : /* EOF */
+      90           0 : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95           0 : /* EOF */
+      96             : /* EOF */
+      97           0 : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100           0 : /* EOF */
+     101             : /* EOF */
+     102           0 : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105             : /* EOF */
+     106           0 : /* EOF */
+     107           0 : /* EOF */
+     108             : /* EOF */
+     109           0 : /* EOF */
+     110             : /* EOF */
+     111           0 : /* EOF */
+     112           0 : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125           0 : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131           0 : /* EOF */
+     132             : /* EOF */
+     133           0 : /* EOF */
+     134           0 : /* EOF */
+     135           0 : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139             : /* EOF */
+     140             : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143             : /* EOF */
+     144          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func-sort-c.html new file mode 100644 index 00000000..87f6ee55 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR5D0Ev0
_ZN12MemSpecGDDR5D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func.html new file mode 100644 index 00000000..2d75933b --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR5D0Ev0
_ZN12MemSpecGDDR5D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.gcov.html new file mode 100644 index 00000000..64a14179 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func-sort-c.html new file mode 100644 index 00000000..ba0be62c --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecGDDR5XC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK13MemSpecGDDR5X16getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK13MemSpecGDDR5X20getRefreshIntervalABEv0
_ZNK13MemSpecGDDR5X20getRefreshIntervalPBEv0
_ZNK13MemSpecGDDR5X23getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN13MemSpecGDDR5XC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func.html new file mode 100644 index 00000000..e8776338 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13MemSpecGDDR5XC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemSpecGDDR5XC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK13MemSpecGDDR5X16getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK13MemSpecGDDR5X20getRefreshIntervalABEv0
_ZNK13MemSpecGDDR5X20getRefreshIntervalPBEv0
_ZNK13MemSpecGDDR5X23getIntervalOnDataStrobeE7Command0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.gcov.html new file mode 100644 index 00000000..0f275061 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.gcov.html @@ -0,0 +1,229 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41           0 : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51           0 : /* EOF */
+      52           0 : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67           0 : /* EOF */
+      68           0 : /* EOF */
+      69           0 : /* EOF */
+      70           0 : /* EOF */
+      71           0 : /* EOF */
+      72           0 : /* EOF */
+      73           0 : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81           0 : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85           0 : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89             : /* EOF */
+      90           0 : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95           0 : /* EOF */
+      96             : /* EOF */
+      97           0 : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100           0 : /* EOF */
+     101             : /* EOF */
+     102           0 : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105             : /* EOF */
+     106           0 : /* EOF */
+     107           0 : /* EOF */
+     108             : /* EOF */
+     109           0 : /* EOF */
+     110             : /* EOF */
+     111           0 : /* EOF */
+     112           0 : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125           0 : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131           0 : /* EOF */
+     132             : /* EOF */
+     133           0 : /* EOF */
+     134           0 : /* EOF */
+     135           0 : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139             : /* EOF */
+     140             : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143             : /* EOF */
+     144          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func-sort-c.html new file mode 100644 index 00000000..323eefc7 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecGDDR5XD0Ev0
_ZN13MemSpecGDDR5XD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func.html new file mode 100644 index 00000000..53349eed --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecGDDR5XD0Ev0
_ZN13MemSpecGDDR5XD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.gcov.html new file mode 100644 index 00000000..74587f73 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func-sort-c.html new file mode 100644 index 00000000..4b91e552 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1811.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR6C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK12MemSpecGDDR616getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK12MemSpecGDDR620getRefreshIntervalABEv0
_ZNK12MemSpecGDDR620getRefreshIntervalPBEv0
_ZNK12MemSpecGDDR623getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN12MemSpecGDDR6C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func.html new file mode 100644 index 00000000..18bd0174 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1811.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12MemSpecGDDR6C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN12MemSpecGDDR6C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK12MemSpecGDDR616getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK12MemSpecGDDR620getRefreshIntervalABEv0
_ZNK12MemSpecGDDR620getRefreshIntervalPBEv0
_ZNK12MemSpecGDDR623getIntervalOnDataStrobeE7Command0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.gcov.html new file mode 100644 index 00000000..f9875199 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.gcov.html @@ -0,0 +1,231 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1811.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41           0 : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51           0 : /* EOF */
+      52           0 : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67           0 : /* EOF */
+      68           0 : /* EOF */
+      69           0 : /* EOF */
+      70           0 : /* EOF */
+      71           0 : /* EOF */
+      72           0 : /* EOF */
+      73           0 : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81           0 : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85           0 : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89           0 : /* EOF */
+      90           0 : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94           0 : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97           0 : /* EOF */
+      98             : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102           0 : /* EOF */
+     103             : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107             : /* EOF */
+     108           0 : /* EOF */
+     109           0 : /* EOF */
+     110             : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124           0 : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127           0 : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133           0 : /* EOF */
+     134             : /* EOF */
+     135           0 : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140           0 : /* EOF */
+     141             : /* EOF */
+     142             : /* EOF */
+     143           0 : /* EOF */
+     144             : /* EOF */
+     145             : /* EOF */
+     146          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func-sort-c.html new file mode 100644 index 00000000..20d10572 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR6D0Ev0
_ZN12MemSpecGDDR6D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func.html new file mode 100644 index 00000000..22063825 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR6D0Ev0
_ZN12MemSpecGDDR6D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.gcov.html new file mode 100644 index 00000000..163bfb6c --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func-sort-c.html new file mode 100644 index 00000000..3c3cfaaa --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:657389.0 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZNK11MemSpecHBM220getRefreshIntervalPBEv0
_ZN11MemSpecHBM2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE7
_GLOBAL__sub_I__ZN11MemSpecHBM2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK11MemSpecHBM220getRefreshIntervalABEv2562
_ZNK11MemSpecHBM223getIntervalOnDataStrobeE7Command57344
_ZNK11MemSpecHBM216getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE58380
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func.html new file mode 100644 index 00000000..2d064c06 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:657389.0 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11MemSpecHBM2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN11MemSpecHBM2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE7
_ZNK11MemSpecHBM216getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE58380
_ZNK11MemSpecHBM220getRefreshIntervalABEv2562
_ZNK11MemSpecHBM220getRefreshIntervalPBEv0
_ZNK11MemSpecHBM223getIntervalOnDataStrobeE7Command57344
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.gcov.html new file mode 100644 index 00000000..7ba0bf36 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.gcov.html @@ -0,0 +1,226 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:657389.0 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41           7 : /* EOF */
+      42             : /* EOF */
+      43           7 : /* EOF */
+      44           7 : /* EOF */
+      45           7 : /* EOF */
+      46           7 : /* EOF */
+      47          28 : /* EOF */
+      48          28 : /* EOF */
+      49          28 : /* EOF */
+      50          28 : /* EOF */
+      51          21 : /* EOF */
+      52          28 : /* EOF */
+      53             : /* EOF */
+      54          21 : /* EOF */
+      55          21 : /* EOF */
+      56          21 : /* EOF */
+      57          21 : /* EOF */
+      58          21 : /* EOF */
+      59          21 : /* EOF */
+      60          21 : /* EOF */
+      61          21 : /* EOF */
+      62          21 : /* EOF */
+      63          21 : /* EOF */
+      64          21 : /* EOF */
+      65          21 : /* EOF */
+      66          21 : /* EOF */
+      67          21 : /* EOF */
+      68          21 : /* EOF */
+      69          21 : /* EOF */
+      70          21 : /* EOF */
+      71          21 : /* EOF */
+      72          21 : /* EOF */
+      73          21 : /* EOF */
+      74          21 : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77          21 : /* EOF */
+      78          21 : /* EOF */
+      79          21 : /* EOF */
+      80          21 : /* EOF */
+      81          21 : /* EOF */
+      82         560 : /* EOF */
+      83             : /* EOF */
+      84           7 : /* EOF */
+      85           7 : /* EOF */
+      86             : /* EOF */
+      87        2562 : /* EOF */
+      88             : /* EOF */
+      89        5124 : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94           0 : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97       58380 : /* EOF */
+      98             : /* EOF */
+      99       58380 : /* EOF */
+     100         154 : /* EOF */
+     101       58226 : /* EOF */
+     102             : /* EOF */
+     103       29400 : /* EOF */
+     104       14441 : /* EOF */
+     105             : /* EOF */
+     106       14959 : /* EOF */
+     107             : /* EOF */
+     108       28826 : /* EOF */
+     109           0 : /* EOF */
+     110       28826 : /* EOF */
+     111       14336 : /* EOF */
+     112       14490 : /* EOF */
+     113           0 : /* EOF */
+     114       14490 : /* EOF */
+     115       57344 : /* EOF */
+     116         154 : /* EOF */
+     117         154 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128       57344 : /* EOF */
+     129             : /* EOF */
+     130       57344 : /* EOF */
+     131       86016 : /* EOF */
+     132      143360 : /* EOF */
+     133       28672 : /* EOF */
+     134       57344 : /* EOF */
+     135      114688 : /* EOF */
+     136             : /* EOF */
+     137             : /* EOF */
+     138           0 : /* EOF */
+     139             : /* EOF */
+     140             : /* EOF */
+     141          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func-sort-c.html new file mode 100644 index 00000000..5472fda5 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecHBM2D0Ev0
_ZN11MemSpecHBM2D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func.html new file mode 100644 index 00000000..d05a479e --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecHBM2D0Ev0
_ZN11MemSpecHBM2D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.gcov.html new file mode 100644 index 00000000..903c97b4 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func-sort-c.html new file mode 100644 index 00000000..e003ae0e --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:788492.9 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZNK13MemSpecLPDDR420getRefreshIntervalABEv0
_ZN13MemSpecLPDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE12
_GLOBAL__sub_I__ZN13MemSpecLPDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK13MemSpecLPDDR420getRefreshIntervalPBEv91668
_ZNK13MemSpecLPDDR416getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE191436
_ZNK13MemSpecLPDDR423getIntervalOnDataStrobeE7Command240048
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func.html new file mode 100644 index 00000000..8062f9dd --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:788492.9 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13MemSpecLPDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemSpecLPDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE12
_ZNK13MemSpecLPDDR416getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE191436
_ZNK13MemSpecLPDDR420getRefreshIntervalABEv0
_ZNK13MemSpecLPDDR420getRefreshIntervalPBEv91668
_ZNK13MemSpecLPDDR423getIntervalOnDataStrobeE7Command240048
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.gcov.html new file mode 100644 index 00000000..85520012 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.gcov.html @@ -0,0 +1,233 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:788492.9 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41          12 : /* EOF */
+      42             : /* EOF */
+      43          12 : /* EOF */
+      44          12 : /* EOF */
+      45          12 : /* EOF */
+      46             : /* EOF */
+      47          12 : /* EOF */
+      48          48 : /* EOF */
+      49          48 : /* EOF */
+      50          12 : /* EOF */
+      51             : /* EOF */
+      52          36 : /* EOF */
+      53          36 : /* EOF */
+      54          36 : /* EOF */
+      55          36 : /* EOF */
+      56          36 : /* EOF */
+      57          36 : /* EOF */
+      58          36 : /* EOF */
+      59          36 : /* EOF */
+      60          36 : /* EOF */
+      61          36 : /* EOF */
+      62          36 : /* EOF */
+      63          36 : /* EOF */
+      64          36 : /* EOF */
+      65          36 : /* EOF */
+      66          36 : /* EOF */
+      67          36 : /* EOF */
+      68          36 : /* EOF */
+      69          36 : /* EOF */
+      70          36 : /* EOF */
+      71          36 : /* EOF */
+      72          36 : /* EOF */
+      73          36 : /* EOF */
+      74          36 : /* EOF */
+      75          36 : /* EOF */
+      76          36 : /* EOF */
+      77          36 : /* EOF */
+      78          36 : /* EOF */
+      79          36 : /* EOF */
+      80          36 : /* EOF */
+      81          36 : /* EOF */
+      82        1032 : /* EOF */
+      83             : /* EOF */
+      84          12 : /* EOF */
+      85          12 : /* EOF */
+      86          12 : /* EOF */
+      87          12 : /* EOF */
+      88          12 : /* EOF */
+      89          12 : /* EOF */
+      90          12 : /* EOF */
+      91          12 : /* EOF */
+      92          12 : /* EOF */
+      93          12 : /* EOF */
+      94          12 : /* EOF */
+      95          12 : /* EOF */
+      96             : /* EOF */
+      97           0 : /* EOF */
+      98             : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102       91668 : /* EOF */
+     103             : /* EOF */
+     104      183336 : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107      191436 : /* EOF */
+     108             : /* EOF */
+     109      191436 : /* EOF */
+     110        2160 : /* EOF */
+     111      189276 : /* EOF */
+     112           0 : /* EOF */
+     113      189276 : /* EOF */
+     114      203256 : /* EOF */
+     115      121524 : /* EOF */
+     116       10620 : /* EOF */
+     117      119400 : /* EOF */
+     118      322380 : /* EOF */
+     119       54924 : /* EOF */
+     120      314208 : /* EOF */
+     121        2556 : /* EOF */
+     122        6336 : /* EOF */
+     123        1500 : /* EOF */
+     124           0 : /* EOF */
+     125        1500 : /* EOF */
+     126        1500 : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129           0 : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135      240048 : /* EOF */
+     136             : /* EOF */
+     137      240048 : /* EOF */
+     138      666000 : /* EOF */
+     139      932400 : /* EOF */
+     140      106848 : /* EOF */
+     141      641088 : /* EOF */
+     142      854784 : /* EOF */
+     143             : /* EOF */
+     144             : /* EOF */
+     145           0 : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func-sort-c.html new file mode 100644 index 00000000..6dca86b9 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecLPDDR4D0Ev0
_ZN13MemSpecLPDDR4D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func.html new file mode 100644 index 00000000..5a063331 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecLPDDR4D0Ev0
_ZN13MemSpecLPDDR4D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.gcov.html new file mode 100644 index 00000000..547f5192 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func-sort-c.html new file mode 100644 index 00000000..b5fa02ec --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1841.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecWideIOC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK13MemSpecWideIO16getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK13MemSpecWideIO20getRefreshIntervalABEv0
_ZNK13MemSpecWideIO20getRefreshIntervalPBEv0
_ZNK13MemSpecWideIO23getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN13MemSpecWideIOC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func.html new file mode 100644 index 00000000..9901d05a --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1841.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13MemSpecWideIOC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemSpecWideIOC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK13MemSpecWideIO16getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK13MemSpecWideIO20getRefreshIntervalABEv0
_ZNK13MemSpecWideIO20getRefreshIntervalPBEv0
_ZNK13MemSpecWideIO23getIntervalOnDataStrobeE7Command0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.gcov.html new file mode 100644 index 00000000..fba58cee --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.gcov.html @@ -0,0 +1,233 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1841.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41           0 : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67           0 : /* EOF */
+      68           0 : /* EOF */
+      69           0 : /* EOF */
+      70           0 : /* EOF */
+      71           0 : /* EOF */
+      72           0 : /* EOF */
+      73           0 : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81           0 : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85           0 : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89           0 : /* EOF */
+      90           0 : /* EOF */
+      91           0 : /* EOF */
+      92           0 : /* EOF */
+      93           0 : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97           0 : /* EOF */
+      98             : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101           0 : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104           0 : /* EOF */
+     105             : /* EOF */
+     106           0 : /* EOF */
+     107           0 : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129           0 : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135           0 : /* EOF */
+     136             : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140           0 : /* EOF */
+     141           0 : /* EOF */
+     142           0 : /* EOF */
+     143             : /* EOF */
+     144             : /* EOF */
+     145           0 : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func-sort-c.html new file mode 100644 index 00000000..a98a19ec --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecWideIOD0Ev0
_ZN13MemSpecWideIOD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func.html new file mode 100644 index 00000000..20623ddd --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecWideIOD0Ev0
_ZN13MemSpecWideIOD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.gcov.html new file mode 100644 index 00000000..7af8c24f --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func-sort-c.html new file mode 100644 index 00000000..8ae783de --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1691.4 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN14MemSpecWideIO2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK14MemSpecWideIO216getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK14MemSpecWideIO220getRefreshIntervalABEv0
_ZNK14MemSpecWideIO220getRefreshIntervalPBEv0
_ZNK14MemSpecWideIO223getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN14MemSpecWideIO2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func.html new file mode 100644 index 00000000..d6ebdf32 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1691.4 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN14MemSpecWideIO2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN14MemSpecWideIO2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK14MemSpecWideIO216getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK14MemSpecWideIO220getRefreshIntervalABEv0
_ZNK14MemSpecWideIO220getRefreshIntervalPBEv0
_ZNK14MemSpecWideIO223getIntervalOnDataStrobeE7Command0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.gcov.html new file mode 100644 index 00000000..28f02c89 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.gcov.html @@ -0,0 +1,218 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1691.4 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41           0 : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67           0 : /* EOF */
+      68           0 : /* EOF */
+      69           0 : /* EOF */
+      70           0 : /* EOF */
+      71           0 : /* EOF */
+      72           0 : /* EOF */
+      73           0 : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80             : /* EOF */
+      81           0 : /* EOF */
+      82             : /* EOF */
+      83           0 : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86           0 : /* EOF */
+      87             : /* EOF */
+      88           0 : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97           0 : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100           0 : /* EOF */
+     101           0 : /* EOF */
+     102           0 : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107           0 : /* EOF */
+     108           0 : /* EOF */
+     109           0 : /* EOF */
+     110           0 : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114           0 : /* EOF */
+     115             : /* EOF */
+     116             : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120           0 : /* EOF */
+     121             : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127           0 : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130           0 : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func-sort-c.html new file mode 100644 index 00000000..8334a6e8 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN14MemSpecWideIO2D0Ev0
_ZN14MemSpecWideIO2D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func.html new file mode 100644 index 00000000..86fbf3aa --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN14MemSpecWideIO2D0Ev0
_ZN14MemSpecWideIO2D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.gcov.html new file mode 100644 index 00000000..6190b79b --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/index-sort-f.html b/html/DRAMSys/library/src/configuration/memspec/index-sort-f.html new file mode 100644 index 00000000..cd1f2b8f --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/index-sort-f.html @@ -0,0 +1,293 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/configuration/memspecHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:31974542.8 %
Date:2020-06-30 17:34:44Functions:388743.7 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
MemSpecDDR3.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecLPDDR4.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecHBM2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5X.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpec.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR6.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecDDR4.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.cpp +
1.2%1.2%
+
1.2 %1 / 8428.6 %2 / 7
MemSpecWideIO2.cpp +
1.4%1.4%
+
1.4 %1 / 6928.6 %2 / 7
MemSpecGDDR6.cpp +
1.2%1.2%
+
1.2 %1 / 8128.6 %2 / 7
MemSpecGDDR5.cpp +
1.3%1.3%
+
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR5X.cpp +
1.3%1.3%
+
1.3 %1 / 7928.6 %2 / 7
MemSpecDDR3.cpp +
90.8%90.8%
+
90.8 %69 / 7685.7 %6 / 7
MemSpecDDR4.cpp +
91.4%91.4%
+
91.4 %85 / 9385.7 %6 / 7
MemSpecLPDDR4.cpp +
92.9%92.9%
+
92.9 %78 / 8485.7 %6 / 7
MemSpecHBM2.cpp +
89.0%89.0%
+
89.0 %65 / 7385.7 %6 / 7
MemSpec.cpp +
100.0%
+
100.0 %17 / 17100.0 %4 / 4
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/index-sort-l.html b/html/DRAMSys/library/src/configuration/memspec/index-sort-l.html new file mode 100644 index 00000000..1588841f --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/index-sort-l.html @@ -0,0 +1,293 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/configuration/memspecHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:31974542.8 %
Date:2020-06-30 17:34:44Functions:388743.7 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
MemSpecDDR3.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecLPDDR4.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecHBM2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5X.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpec.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR6.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecDDR4.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.cpp +
1.2%1.2%
+
1.2 %1 / 8428.6 %2 / 7
MemSpecGDDR5.cpp +
1.3%1.3%
+
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR5X.cpp +
1.3%1.3%
+
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR6.cpp +
1.2%1.2%
+
1.2 %1 / 8128.6 %2 / 7
MemSpecWideIO2.cpp +
1.4%1.4%
+
1.4 %1 / 6928.6 %2 / 7
MemSpecHBM2.cpp +
89.0%89.0%
+
89.0 %65 / 7385.7 %6 / 7
MemSpecDDR3.cpp +
90.8%90.8%
+
90.8 %69 / 7685.7 %6 / 7
MemSpecDDR4.cpp +
91.4%91.4%
+
91.4 %85 / 9385.7 %6 / 7
MemSpecLPDDR4.cpp +
92.9%92.9%
+
92.9 %78 / 8485.7 %6 / 7
MemSpec.cpp +
100.0%
+
100.0 %17 / 17100.0 %4 / 4
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/configuration/memspec/index.html b/html/DRAMSys/library/src/configuration/memspec/index.html new file mode 100644 index 00000000..561d4bd6 --- /dev/null +++ b/html/DRAMSys/library/src/configuration/memspec/index.html @@ -0,0 +1,293 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/configuration/memspecHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:31974542.8 %
Date:2020-06-30 17:34:44Functions:388743.7 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
MemSpec.cpp +
100.0%
+
100.0 %17 / 17100.0 %4 / 4
MemSpec.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecDDR3.cpp +
90.8%90.8%
+
90.8 %69 / 7685.7 %6 / 7
MemSpecDDR3.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecDDR4.cpp +
91.4%91.4%
+
91.4 %85 / 9385.7 %6 / 7
MemSpecDDR4.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5.cpp +
1.3%1.3%
+
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR5.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5X.cpp +
1.3%1.3%
+
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR5X.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR6.cpp +
1.2%1.2%
+
1.2 %1 / 8128.6 %2 / 7
MemSpecGDDR6.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecHBM2.cpp +
89.0%89.0%
+
89.0 %65 / 7385.7 %6 / 7
MemSpecHBM2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecLPDDR4.cpp +
92.9%92.9%
+
92.9 %78 / 8485.7 %6 / 7
MemSpecLPDDR4.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.cpp +
1.2%1.2%
+
1.2 %1 / 8428.6 %2 / 7
MemSpecWideIO.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO2.cpp +
1.4%1.4%
+
1.4 %1 / 6928.6 %2 / 7
MemSpecWideIO2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/BankMachine.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/BankMachine.cpp.func-sort-c.html new file mode 100644 index 00000000..81786ff7 --- /dev/null +++ b/html/DRAMSys/library/src/controller/BankMachine.cpp.func-sort-c.html @@ -0,0 +1,161 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - BankMachine.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14916689.8 %
Date:2020-06-30 17:34:44Functions:192095.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11BankMachine7getRankEv0
_GLOBAL__sub_I__ZN11BankMachineC2EP11SchedulerIFP9CheckerIF4Bank30
_Z41__static_initialization_and_destruction_0ii30
_ZN15BankMachineOpenC2EP11SchedulerIFP9CheckerIF4Bank80
_ZN23BankMachineOpenAdaptiveC2EP11SchedulerIFP9CheckerIF4Bank96
_ZN25BankMachineClosedAdaptiveC2EP11SchedulerIFP9CheckerIF4Bank96
_ZN17BankMachineClosedC2EP11SchedulerIFP9CheckerIF4Bank224
_ZN11BankMachineC2EP11SchedulerIFP9CheckerIF4Bank496
_ZN11BankMachine6isIdleEv29802
_ZN15BankMachineOpen5startEv71650
_ZN11BankMachine12getBankGroupEv87408
_ZN11BankMachine5blockEv133592
_ZN11BankMachine11updateStateE7Command426310
_ZN11BankMachine10getOpenRowEv2541205
_ZN17BankMachineClosed5startEv3416112
_ZN23BankMachineOpenAdaptive5startEv4507416
_ZN25BankMachineClosedAdaptive5startEv5314560
_ZN11BankMachine8getStateEv5446696
_ZN11BankMachine14getNextCommandEv13032248
_ZN11BankMachine7getBankEv13390075
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/BankMachine.cpp.func.html b/html/DRAMSys/library/src/controller/BankMachine.cpp.func.html new file mode 100644 index 00000000..96b534a6 --- /dev/null +++ b/html/DRAMSys/library/src/controller/BankMachine.cpp.func.html @@ -0,0 +1,161 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - BankMachine.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14916689.8 %
Date:2020-06-30 17:34:44Functions:192095.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11BankMachineC2EP11SchedulerIFP9CheckerIF4Bank30
_Z41__static_initialization_and_destruction_0ii30
_ZN11BankMachine10getOpenRowEv2541205
_ZN11BankMachine11updateStateE7Command426310
_ZN11BankMachine12getBankGroupEv87408
_ZN11BankMachine14getNextCommandEv13032248
_ZN11BankMachine5blockEv133592
_ZN11BankMachine6isIdleEv29802
_ZN11BankMachine7getBankEv13390075
_ZN11BankMachine7getRankEv0
_ZN11BankMachine8getStateEv5446696
_ZN11BankMachineC2EP11SchedulerIFP9CheckerIF4Bank496
_ZN15BankMachineOpen5startEv71650
_ZN15BankMachineOpenC2EP11SchedulerIFP9CheckerIF4Bank80
_ZN17BankMachineClosed5startEv3416112
_ZN17BankMachineClosedC2EP11SchedulerIFP9CheckerIF4Bank224
_ZN23BankMachineOpenAdaptive5startEv4507416
_ZN23BankMachineOpenAdaptiveC2EP11SchedulerIFP9CheckerIF4Bank96
_ZN25BankMachineClosedAdaptive5startEv5314560
_ZN25BankMachineClosedAdaptiveC2EP11SchedulerIFP9CheckerIF4Bank96
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/BankMachine.cpp.gcov.html b/html/DRAMSys/library/src/controller/BankMachine.cpp.gcov.html new file mode 100644 index 00000000..abffb038 --- /dev/null +++ b/html/DRAMSys/library/src/controller/BankMachine.cpp.gcov.html @@ -0,0 +1,413 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - BankMachine.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14916689.8 %
Date:2020-06-30 17:34:44Functions:192095.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39         496 : /* EOF */
+      40        2480 : /* EOF */
+      41             : /* EOF */
+      42         496 : /* EOF */
+      43         496 : /* EOF */
+      44         496 : /* EOF */
+      45         496 : /* EOF */
+      46             : /* EOF */
+      47    13032248 : /* EOF */
+      48             : /* EOF */
+      49    26064496 : /* EOF */
+      50     3905130 : /* EOF */
+      51             : /* EOF */
+      52    22159366 : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55      426310 : /* EOF */
+      56             : /* EOF */
+      57      426310 : /* EOF */
+      58             : /* EOF */
+      59      161204 : /* EOF */
+      60      161204 : /* EOF */
+      61      161204 : /* EOF */
+      62      161204 : /* EOF */
+      63        5812 : /* EOF */
+      64        5812 : /* EOF */
+      65        5812 : /* EOF */
+      66       95182 : /* EOF */
+      67       95182 : /* EOF */
+      68       95182 : /* EOF */
+      69      157756 : /* EOF */
+      70      157756 : /* EOF */
+      71      157756 : /* EOF */
+      72      157756 : /* EOF */
+      73         320 : /* EOF */
+      74         320 : /* EOF */
+      75         320 : /* EOF */
+      76        5756 : /* EOF */
+      77        5756 : /* EOF */
+      78        5756 : /* EOF */
+      79        5756 : /* EOF */
+      80         200 : /* EOF */
+      81         200 : /* EOF */
+      82         200 : /* EOF */
+      83             : /* EOF */
+      84      426310 : /* EOF */
+      85             : /* EOF */
+      86      133592 : /* EOF */
+      87             : /* EOF */
+      88      133592 : /* EOF */
+      89      133592 : /* EOF */
+      90             : /* EOF */
+      91           0 : /* EOF */
+      92             : /* EOF */
+      93           0 : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96       87408 : /* EOF */
+      97             : /* EOF */
+      98       87408 : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101    13390075 : /* EOF */
+     102             : /* EOF */
+     103    13390075 : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106     2541205 : /* EOF */
+     107             : /* EOF */
+     108     2541205 : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111     5446696 : /* EOF */
+     112             : /* EOF */
+     113     5446696 : /* EOF */
+     114             : /* EOF */
+     115             : /* EOF */
+     116       29802 : /* EOF */
+     117             : /* EOF */
+     118       29802 : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121          80 : /* EOF */
+     122          80 : /* EOF */
+     123             : /* EOF */
+     124       71650 : /* EOF */
+     125             : /* EOF */
+     126      143300 : /* EOF */
+     127             : /* EOF */
+     128       71650 : /* EOF */
+     129        9195 : /* EOF */
+     130             : /* EOF */
+     131       62455 : /* EOF */
+     132       62455 : /* EOF */
+     133        9405 : /* EOF */
+     134             : /* EOF */
+     135       53050 : /* EOF */
+     136             : /* EOF */
+     137       10950 : /* EOF */
+     138        5475 : /* EOF */
+     139             : /* EOF */
+     140       47575 : /* EOF */
+     141             : /* EOF */
+     142       47575 : /* EOF */
+     143             : /* EOF */
+     144       42970 : /* EOF */
+     145             : /* EOF */
+     146       21610 : /* EOF */
+     147       10805 : /* EOF */
+     148             : /* EOF */
+     149       32165 : /* EOF */
+     150             : /* EOF */
+     151       64330 : /* EOF */
+     152       32165 : /* EOF */
+     153             : /* EOF */
+     154             : /* EOF */
+     155           0 : /* EOF */
+     156             : /* EOF */
+     157        4605 : /* EOF */
+     158             : /* EOF */
+     159        9210 : /* EOF */
+     160        4605 : /* EOF */
+     161             : /* EOF */
+     162             : /* EOF */
+     163       53050 : /* EOF */
+     164             : /* EOF */
+     165             : /* EOF */
+     166         224 : /* EOF */
+     167         224 : /* EOF */
+     168             : /* EOF */
+     169     3416112 : /* EOF */
+     170             : /* EOF */
+     171     6832224 : /* EOF */
+     172             : /* EOF */
+     173     3416112 : /* EOF */
+     174           0 : /* EOF */
+     175             : /* EOF */
+     176     3416112 : /* EOF */
+     177     3416112 : /* EOF */
+     178     2164015 : /* EOF */
+     179             : /* EOF */
+     180     1252097 : /* EOF */
+     181             : /* EOF */
+     182      658756 : /* EOF */
+     183      329378 : /* EOF */
+     184             : /* EOF */
+     185      922719 : /* EOF */
+     186             : /* EOF */
+     187      919009 : /* EOF */
+     188             : /* EOF */
+     189      409066 : /* EOF */
+     190      204533 : /* EOF */
+     191             : /* EOF */
+     192      714476 : /* EOF */
+     193             : /* EOF */
+     194     1428952 : /* EOF */
+     195      714476 : /* EOF */
+     196             : /* EOF */
+     197             : /* EOF */
+     198           0 : /* EOF */
+     199             : /* EOF */
+     200     1252097 : /* EOF */
+     201             : /* EOF */
+     202             : /* EOF */
+     203          96 : /* EOF */
+     204          96 : /* EOF */
+     205             : /* EOF */
+     206     4507416 : /* EOF */
+     207             : /* EOF */
+     208     9014832 : /* EOF */
+     209             : /* EOF */
+     210     4507416 : /* EOF */
+     211           0 : /* EOF */
+     212             : /* EOF */
+     213     4507416 : /* EOF */
+     214     4507416 : /* EOF */
+     215       59676 : /* EOF */
+     216             : /* EOF */
+     217     4447740 : /* EOF */
+     218             : /* EOF */
+     219     4175280 : /* EOF */
+     220     2087640 : /* EOF */
+     221             : /* EOF */
+     222     2360100 : /* EOF */
+     223             : /* EOF */
+     224     2321532 : /* EOF */
+     225             : /* EOF */
+     226     2310144 : /* EOF */
+     227             : /* EOF */
+     228      603744 : /* EOF */
+     229             : /* EOF */
+     230     1137984 : /* EOF */
+     231      568992 : /* EOF */
+     232             : /* EOF */
+     233       34752 : /* EOF */
+     234             : /* EOF */
+     235       69504 : /* EOF */
+     236       34752 : /* EOF */
+     237             : /* EOF */
+     238             : /* EOF */
+     239           0 : /* EOF */
+     240             : /* EOF */
+     241             : /* EOF */
+     242             : /* EOF */
+     243     1706400 : /* EOF */
+     244             : /* EOF */
+     245       15492 : /* EOF */
+     246       15492 : /* EOF */
+     247             : /* EOF */
+     248     1690908 : /* EOF */
+     249             : /* EOF */
+     250     3381816 : /* EOF */
+     251     1690908 : /* EOF */
+     252             : /* EOF */
+     253             : /* EOF */
+     254           0 : /* EOF */
+     255             : /* EOF */
+     256             : /* EOF */
+     257       11388 : /* EOF */
+     258             : /* EOF */
+     259       22776 : /* EOF */
+     260       11388 : /* EOF */
+     261             : /* EOF */
+     262             : /* EOF */
+     263     4447740 : /* EOF */
+     264             : /* EOF */
+     265             : /* EOF */
+     266          96 : /* EOF */
+     267          96 : /* EOF */
+     268             : /* EOF */
+     269     5314560 : /* EOF */
+     270             : /* EOF */
+     271    10629120 : /* EOF */
+     272             : /* EOF */
+     273     5314560 : /* EOF */
+     274           0 : /* EOF */
+     275             : /* EOF */
+     276     5314560 : /* EOF */
+     277     5314560 : /* EOF */
+     278        8322 : /* EOF */
+     279             : /* EOF */
+     280     5306238 : /* EOF */
+     281             : /* EOF */
+     282     5607996 : /* EOF */
+     283     2803998 : /* EOF */
+     284             : /* EOF */
+     285     2502240 : /* EOF */
+     286             : /* EOF */
+     287     2493630 : /* EOF */
+     288             : /* EOF */
+     289     2493630 : /* EOF */
+     290             : /* EOF */
+     291     1822446 : /* EOF */
+     292             : /* EOF */
+     293           0 : /* EOF */
+     294           0 : /* EOF */
+     295             : /* EOF */
+     296     1822446 : /* EOF */
+     297             : /* EOF */
+     298     3644892 : /* EOF */
+     299     1822446 : /* EOF */
+     300             : /* EOF */
+     301             : /* EOF */
+     302           0 : /* EOF */
+     303             : /* EOF */
+     304             : /* EOF */
+     305             : /* EOF */
+     306      671184 : /* EOF */
+     307             : /* EOF */
+     308     1057464 : /* EOF */
+     309      528732 : /* EOF */
+     310             : /* EOF */
+     311      142452 : /* EOF */
+     312             : /* EOF */
+     313      284904 : /* EOF */
+     314      142452 : /* EOF */
+     315             : /* EOF */
+     316             : /* EOF */
+     317           0 : /* EOF */
+     318             : /* EOF */
+     319             : /* EOF */
+     320           0 : /* EOF */
+     321             : /* EOF */
+     322           0 : /* EOF */
+     323           0 : /* EOF */
+     324           0 : /* EOF */
+     325             : /* EOF */
+     326             : /* EOF */
+     327     5306238 : /* EOF */
+     328         120 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/BankMachine.h.func-sort-c.html b/html/DRAMSys/library/src/controller/BankMachine.h.func-sort-c.html new file mode 100644 index 00000000..18d208df --- /dev/null +++ b/html/DRAMSys/library/src/controller/BankMachine.h.func-sort-c.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - BankMachine.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:44100.0 %
Date:2020-06-30 17:34:44Functions:4850.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN15BankMachineOpenD2Ev0
_ZN17BankMachineClosedD2Ev0
_ZN23BankMachineOpenAdaptiveD2Ev0
_ZN25BankMachineClosedAdaptiveD2Ev0
_ZN15BankMachineOpenD0Ev80
_ZN23BankMachineOpenAdaptiveD0Ev96
_ZN25BankMachineClosedAdaptiveD0Ev96
_ZN17BankMachineClosedD0Ev224
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/BankMachine.h.func.html b/html/DRAMSys/library/src/controller/BankMachine.h.func.html new file mode 100644 index 00000000..3a74d303 --- /dev/null +++ b/html/DRAMSys/library/src/controller/BankMachine.h.func.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - BankMachine.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:44100.0 %
Date:2020-06-30 17:34:44Functions:4850.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN15BankMachineOpenD0Ev80
_ZN15BankMachineOpenD2Ev0
_ZN17BankMachineClosedD0Ev224
_ZN17BankMachineClosedD2Ev0
_ZN23BankMachineOpenAdaptiveD0Ev96
_ZN23BankMachineOpenAdaptiveD2Ev0
_ZN25BankMachineClosedAdaptiveD0Ev96
_ZN25BankMachineClosedAdaptiveD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/BankMachine.h.gcov.html b/html/DRAMSys/library/src/controller/BankMachine.h.gcov.html new file mode 100644 index 00000000..748e98a6 --- /dev/null +++ b/html/DRAMSys/library/src/controller/BankMachine.h.gcov.html @@ -0,0 +1,194 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - BankMachine.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:44100.0 %
Date:2020-06-30 17:34:44Functions:4850.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88          80 : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95         224 : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102          96 : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109          96 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/Command.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/Command.cpp.func-sort-c.html new file mode 100644 index 00000000..ccc98822 --- /dev/null +++ b/html/DRAMSys/library/src/controller/Command.cpp.func-sort-c.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - Command.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182572.0 %
Date:2020-06-30 17:34:44Functions:101376.9 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_Z13isBankCommand7Command0
_Z15commandToStringB5cxx117Command0
_Z23phaseToDRAMPowerCommandN3tlm9tlm_phaseE0
_GLOBAL__sub_I__Z15commandToStringB5cxx117Command30
_Z41__static_initialization_and_destruction_0ii30
_Z16numberOfCommandsv161
_Z12isRasCommand7Command261849
_Z11getEndPhaseN3tlm9tlm_phaseE418630
_Z14phaseToCommandN3tlm9tlm_phaseE418665
_Z13isRankCommand7Command418705
_Z13phaseNeedsEndN3tlm9tlm_phaseE418705
_Z14commandToPhase7Command418705
_Z12isCasCommand7Command1205043
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/Command.cpp.func.html b/html/DRAMSys/library/src/controller/Command.cpp.func.html new file mode 100644 index 00000000..10428a72 --- /dev/null +++ b/html/DRAMSys/library/src/controller/Command.cpp.func.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - Command.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182572.0 %
Date:2020-06-30 17:34:44Functions:101376.9 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__Z15commandToStringB5cxx117Command30
_Z11getEndPhaseN3tlm9tlm_phaseE418630
_Z12isCasCommand7Command1205043
_Z12isRasCommand7Command261849
_Z13isBankCommand7Command0
_Z13isRankCommand7Command418705
_Z13phaseNeedsEndN3tlm9tlm_phaseE418705
_Z14commandToPhase7Command418705
_Z14phaseToCommandN3tlm9tlm_phaseE418665
_Z15commandToStringB5cxx117Command0
_Z16numberOfCommandsv161
_Z23phaseToDRAMPowerCommandN3tlm9tlm_phaseE0
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/Command.cpp.gcov.html b/html/DRAMSys/library/src/controller/Command.cpp.gcov.html new file mode 100644 index 00000000..658474ef --- /dev/null +++ b/html/DRAMSys/library/src/controller/Command.cpp.gcov.html @@ -0,0 +1,257 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - Command.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182572.0 %
Date:2020-06-30 17:34:44Functions:101376.9 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67         161 : /* EOF */
+      68             : /* EOF */
+      69         161 : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72      418705 : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91      418735 : /* EOF */
+      92      837410 : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95      418665 : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114     1255995 : /* EOF */
+     115             : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136           0 : /* EOF */
+     137             : /* EOF */
+     138             : /* EOF */
+     139      418705 : /* EOF */
+     140             : /* EOF */
+     141     1256115 : /* EOF */
+     142             : /* EOF */
+     143             : /* EOF */
+     144      418630 : /* EOF */
+     145             : /* EOF */
+     146             : /* EOF */
+     147      418630 : /* EOF */
+     148             : /* EOF */
+     149             : /* EOF */
+     150           0 : /* EOF */
+     151             : /* EOF */
+     152             : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155             : /* EOF */
+     156      418705 : /* EOF */
+     157             : /* EOF */
+     158             : /* EOF */
+     159      418705 : /* EOF */
+     160             : /* EOF */
+     161             : /* EOF */
+     162     1205043 : /* EOF */
+     163             : /* EOF */
+     164             : /* EOF */
+     165     1205043 : /* EOF */
+     166             : /* EOF */
+     167             : /* EOF */
+     168      261849 : /* EOF */
+     169             : /* EOF */
+     170             : /* EOF */
+     171      261849 : /* EOF */
+     172          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/Command.h.func-sort-c.html b/html/DRAMSys/library/src/controller/Command.h.func-sort-c.html new file mode 100644 index 00000000..d17ba67d --- /dev/null +++ b/html/DRAMSys/library/src/controller/Command.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - Command.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2424100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/Command.h.func.html b/html/DRAMSys/library/src/controller/Command.h.func.html new file mode 100644 index 00000000..40e9dd8f --- /dev/null +++ b/html/DRAMSys/library/src/controller/Command.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - Command.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2424100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/Command.h.gcov.html b/html/DRAMSys/library/src/controller/Command.h.gcov.html new file mode 100644 index 00000000..c3357d8e --- /dev/null +++ b/html/DRAMSys/library/src/controller/Command.h.gcov.html @@ -0,0 +1,155 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - Command.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2424100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46        1710 : /* EOF */
+      47        1710 : /* EOF */
+      48        1710 : /* EOF */
+      49        1710 : /* EOF */
+      50        1710 : /* EOF */
+      51        1710 : /* EOF */
+      52        1710 : /* EOF */
+      53        1710 : /* EOF */
+      54        1710 : /* EOF */
+      55        1710 : /* EOF */
+      56        1710 : /* EOF */
+      57        1710 : /* EOF */
+      58        1710 : /* EOF */
+      59        1710 : /* EOF */
+      60        1710 : /* EOF */
+      61             : /* EOF */
+      62        1710 : /* EOF */
+      63        1710 : /* EOF */
+      64        1710 : /* EOF */
+      65        1710 : /* EOF */
+      66        1710 : /* EOF */
+      67        1710 : /* EOF */
+      68        1710 : /* EOF */
+      69        1710 : /* EOF */
+      70        1710 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/Controller.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/Controller.cpp.func-sort-c.html new file mode 100644 index 00000000..9943bae1 --- /dev/null +++ b/html/DRAMSys/library/src/controller/Controller.cpp.func-sort-c.html @@ -0,0 +1,125 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Controller.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - Controller.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:19222087.3 %
Date:2020-06-30 17:34:44Functions:111573.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10Controller13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN10Controller14sendToFrontendEPN3tlm19tlm_generic_payloadENS0_9tlm_phaseE0
_ZN10Controller15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN10ControllerD0Ev0
_GLOBAL__sub_I__ZN10ControllerC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10Controller13finishEndRespEv252908
_ZN10Controller10sendToDramE7CommandPN3tlm19tlm_generic_payloadE418705
_ZN10Controller15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505846
_ZN10Controller14startBeginRespEv984087
_ZN10Controller11startEndReqEv989802
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/Controller.cpp.func.html b/html/DRAMSys/library/src/controller/Controller.cpp.func.html new file mode 100644 index 00000000..98625b1a --- /dev/null +++ b/html/DRAMSys/library/src/controller/Controller.cpp.func.html @@ -0,0 +1,125 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Controller.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - Controller.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:19222087.3 %
Date:2020-06-30 17:34:44Functions:111573.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10ControllerC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10Controller10sendToDramE7CommandPN3tlm19tlm_generic_payloadE418705
_ZN10Controller11startEndReqEv989802
_ZN10Controller13finishEndRespEv252908
_ZN10Controller13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN10Controller14sendToFrontendEPN3tlm19tlm_generic_payloadENS0_9tlm_phaseE0
_ZN10Controller14startBeginRespEv984087
_ZN10Controller15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN10Controller15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505846
_ZN10ControllerD0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/Controller.cpp.gcov.html b/html/DRAMSys/library/src/controller/Controller.cpp.gcov.html new file mode 100644 index 00000000..1a2ea3c4 --- /dev/null +++ b/html/DRAMSys/library/src/controller/Controller.cpp.gcov.html @@ -0,0 +1,528 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Controller.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - Controller.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:19222087.3 %
Date:2020-06-30 17:34:44Functions:111573.3 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64          37 : /* EOF */
+      65         296 : /* EOF */
+      66             : /* EOF */
+      67         148 : /* EOF */
+      68          37 : /* EOF */
+      69             : /* EOF */
+      70          37 : /* EOF */
+      71          37 : /* EOF */
+      72         148 : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75          74 : /* EOF */
+      76           5 : /* EOF */
+      77          64 : /* EOF */
+      78           6 : /* EOF */
+      79          52 : /* EOF */
+      80           0 : /* EOF */
+      81          52 : /* EOF */
+      82          12 : /* EOF */
+      83          28 : /* EOF */
+      84           0 : /* EOF */
+      85          28 : /* EOF */
+      86          14 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89           0 : /* EOF */
+      90           0 : /* EOF */
+      91           0 : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94           0 : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97          74 : /* EOF */
+      98          26 : /* EOF */
+      99          22 : /* EOF */
+     100           6 : /* EOF */
+     101          10 : /* EOF */
+     102           5 : /* EOF */
+     103             : /* EOF */
+     104           0 : /* EOF */
+     105             : /* EOF */
+     106          74 : /* EOF */
+     107          46 : /* EOF */
+     108          28 : /* EOF */
+     109          28 : /* EOF */
+     110             : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113          74 : /* EOF */
+     114          74 : /* EOF */
+     115           0 : /* EOF */
+     116           0 : /* EOF */
+     117             : /* EOF */
+     118           0 : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121          74 : /* EOF */
+     122             : /* EOF */
+     123         165 : /* EOF */
+     124         240 : /* EOF */
+     125             : /* EOF */
+     126          64 : /* EOF */
+     127             : /* EOF */
+     128         204 : /* EOF */
+     129         288 : /* EOF */
+     130             : /* EOF */
+     131          40 : /* EOF */
+     132             : /* EOF */
+     133         462 : /* EOF */
+     134         672 : /* EOF */
+     135             : /* EOF */
+     136          12 : /* EOF */
+     137             : /* EOF */
+     138         198 : /* EOF */
+     139         288 : /* EOF */
+     140             : /* EOF */
+     141             : /* EOF */
+     142           0 : /* EOF */
+     143             : /* EOF */
+     144         121 : /* EOF */
+     145             : /* EOF */
+     146         336 : /* EOF */
+     147         126 : /* EOF */
+     148             : /* EOF */
+     149             : /* EOF */
+     150             : /* EOF */
+     151          74 : /* EOF */
+     152             : /* EOF */
+     153          96 : /* EOF */
+     154             : /* EOF */
+     155          64 : /* EOF */
+     156          32 : /* EOF */
+     157             : /* EOF */
+     158             : /* EOF */
+     159          10 : /* EOF */
+     160             : /* EOF */
+     161          25 : /* EOF */
+     162             : /* EOF */
+     163          10 : /* EOF */
+     164          10 : /* EOF */
+     165             : /* EOF */
+     166             : /* EOF */
+     167             : /* EOF */
+     168           0 : /* EOF */
+     169             : /* EOF */
+     170             : /* EOF */
+     171          74 : /* EOF */
+     172             : /* EOF */
+     173           0 : /* EOF */
+     174           0 : /* EOF */
+     175             : /* EOF */
+     176          74 : /* EOF */
+     177             : /* EOF */
+     178          85 : /* EOF */
+     179             : /* EOF */
+     180             : /* EOF */
+     181         120 : /* EOF */
+     182          30 : /* EOF */
+     183             : /* EOF */
+     184             : /* EOF */
+     185          24 : /* EOF */
+     186             : /* EOF */
+     187          36 : /* EOF */
+     188             : /* EOF */
+     189             : /* EOF */
+     190             : /* EOF */
+     191          48 : /* EOF */
+     192          12 : /* EOF */
+     193             : /* EOF */
+     194             : /* EOF */
+     195             : /* EOF */
+     196           0 : /* EOF */
+     197             : /* EOF */
+     198          74 : /* EOF */
+     199          37 : /* EOF */
+     200             : /* EOF */
+     201         222 : /* EOF */
+     202             : /* EOF */
+     203          37 : /* EOF */
+     204             : /* EOF */
+     205         190 : /* EOF */
+     206          42 : /* EOF */
+     207         190 : /* EOF */
+     208          42 : /* EOF */
+     209         644 : /* EOF */
+     210         496 : /* EOF */
+     211          37 : /* EOF */
+     212          37 : /* EOF */
+     213          37 : /* EOF */
+     214          37 : /* EOF */
+     215          37 : /* EOF */
+     216             : /* EOF */
+     217     1090262 : /* EOF */
+     218             : /* EOF */
+     219             : /* EOF */
+     220     1449345 : /* EOF */
+     221      252908 : /* EOF */
+     222             : /* EOF */
+     223             : /* EOF */
+     224     1090262 : /* EOF */
+     225      984087 : /* EOF */
+     226             : /* EOF */
+     227             : /* EOF */
+     228     2080071 : /* EOF */
+     229             : /* EOF */
+     230      505876 : /* EOF */
+     231      252938 : /* EOF */
+     232      505876 : /* EOF */
+     233             : /* EOF */
+     234             : /* EOF */
+     235             : /* EOF */
+     236     5455705 : /* EOF */
+     237     1094657 : /* EOF */
+     238     5455705 : /* EOF */
+     239     1094657 : /* EOF */
+     240             : /* EOF */
+     241             : /* EOF */
+     242     1090262 : /* EOF */
+     243     2180524 : /* EOF */
+     244             : /* EOF */
+     245     2184919 : /* EOF */
+     246             : /* EOF */
+     247     3283971 : /* EOF */
+     248     1094657 : /* EOF */
+     249         100 : /* EOF */
+     250             : /* EOF */
+     251             : /* EOF */
+     252             : /* EOF */
+     253     3283671 : /* EOF */
+     254     1094557 : /* EOF */
+     255        2511 : /* EOF */
+     256             : /* EOF */
+     257             : /* EOF */
+     258             : /* EOF */
+     259    18492478 : /* EOF */
+     260             : /* EOF */
+     261    26064496 : /* EOF */
+     262    13032248 : /* EOF */
+     263     1952565 : /* EOF */
+     264             : /* EOF */
+     265             : /* EOF */
+     266             : /* EOF */
+     267             : /* EOF */
+     268             : /* EOF */
+     269     1090262 : /* EOF */
+     270     1090262 : /* EOF */
+     271             : /* EOF */
+     272     1037862 : /* EOF */
+     273      518931 : /* EOF */
+     274             : /* EOF */
+     275      418705 : /* EOF */
+     276      418705 : /* EOF */
+     277      418705 : /* EOF */
+     278             : /* EOF */
+     279      418705 : /* EOF */
+     280             : /* EOF */
+     281       10983 : /* EOF */
+     282        8168 : /* EOF */
+     283             : /* EOF */
+     284             : /* EOF */
+     285      836284 : /* EOF */
+     286             : /* EOF */
+     287      837410 : /* EOF */
+     288      837410 : /* EOF */
+     289      418705 : /* EOF */
+     290             : /* EOF */
+     291      418705 : /* EOF */
+     292             : /* EOF */
+     293      252938 : /* EOF */
+     294      505876 : /* EOF */
+     295             : /* EOF */
+     296      252938 : /* EOF */
+     297      252938 : /* EOF */
+     298      505876 : /* EOF */
+     299             : /* EOF */
+     300      505876 : /* EOF */
+     301             : /* EOF */
+     302      837410 : /* EOF */
+     303        3000 : /* EOF */
+     304             : /* EOF */
+     305      418705 : /* EOF */
+     306             : /* EOF */
+     307             : /* EOF */
+     308             : /* EOF */
+     309             : /* EOF */
+     310             : /* EOF */
+     311             : /* EOF */
+     312     2080071 : /* EOF */
+     313      989802 : /* EOF */
+     314             : /* EOF */
+     315             : /* EOF */
+     316             : /* EOF */
+     317     2180524 : /* EOF */
+     318    17417848 : /* EOF */
+     319             : /* EOF */
+     320    13056800 : /* EOF */
+     321    26113600 : /* EOF */
+     322    12769583 : /* EOF */
+     323             : /* EOF */
+     324     5455705 : /* EOF */
+     325     3283971 : /* EOF */
+     326     5455705 : /* EOF */
+     327     3283971 : /* EOF */
+     328             : /* EOF */
+     329     2180524 : /* EOF */
+     330     2180514 : /* EOF */
+     331     1090262 : /* EOF */
+     332             : /* EOF */
+     333      505846 : /* EOF */
+     334             : /* EOF */
+     335             : /* EOF */
+     336     1011692 : /* EOF */
+     337             : /* EOF */
+     338      505846 : /* EOF */
+     339             : /* EOF */
+     340      252938 : /* EOF */
+     341      758814 : /* EOF */
+     342      252938 : /* EOF */
+     343             : /* EOF */
+     344      252908 : /* EOF */
+     345             : /* EOF */
+     346      758724 : /* EOF */
+     347      252908 : /* EOF */
+     348             : /* EOF */
+     349             : /* EOF */
+     350             : /* EOF */
+     351             : /* EOF */
+     352             : /* EOF */
+     353             : /* EOF */
+     354             : /* EOF */
+     355      505846 : /* EOF */
+     356             : /* EOF */
+     357             : /* EOF */
+     358           0 : /* EOF */
+     359             : /* EOF */
+     360             : /* EOF */
+     361           0 : /* EOF */
+     362           0 : /* EOF */
+     363             : /* EOF */
+     364             : /* EOF */
+     365           0 : /* EOF */
+     366             : /* EOF */
+     367           0 : /* EOF */
+     368             : /* EOF */
+     369             : /* EOF */
+     370      252938 : /* EOF */
+     371             : /* EOF */
+     372      252938 : /* EOF */
+     373             : /* EOF */
+     374             : /* EOF */
+     375      252938 : /* EOF */
+     376          60 : /* EOF */
+     377      252938 : /* EOF */
+     378             : /* EOF */
+     379      252938 : /* EOF */
+     380      505876 : /* EOF */
+     381         140 : /* EOF */
+     382             : /* EOF */
+     383      505876 : /* EOF */
+     384             : /* EOF */
+     385      252938 : /* EOF */
+     386      252938 : /* EOF */
+     387      505876 : /* EOF */
+     388      252938 : /* EOF */
+     389             : /* EOF */
+     390      989802 : /* EOF */
+     391             : /* EOF */
+     392      989802 : /* EOF */
+     393             : /* EOF */
+     394      505876 : /* EOF */
+     395      505876 : /* EOF */
+     396      252938 : /* EOF */
+     397             : /* EOF */
+     398             : /* EOF */
+     399             : /* EOF */
+     400      989802 : /* EOF */
+     401             : /* EOF */
+     402      984087 : /* EOF */
+     403             : /* EOF */
+     404      984087 : /* EOF */
+     405             : /* EOF */
+     406      984087 : /* EOF */
+     407      505876 : /* EOF */
+     408             : /* EOF */
+     409             : /* EOF */
+     410      731149 : /* EOF */
+     411     1462298 : /* EOF */
+     412     1317940 : /* EOF */
+     413             : /* EOF */
+     414      984087 : /* EOF */
+     415             : /* EOF */
+     416      252908 : /* EOF */
+     417             : /* EOF */
+     418      252908 : /* EOF */
+     419             : /* EOF */
+     420             : /* EOF */
+     421      505816 : /* EOF */
+     422      252908 : /* EOF */
+     423      505816 : /* EOF */
+     424      252908 : /* EOF */
+     425             : /* EOF */
+     426      252908 : /* EOF */
+     427      252908 : /* EOF */
+     428          30 : /* EOF */
+     429      252908 : /* EOF */
+     430             : /* EOF */
+     431           0 : /* EOF */
+     432             : /* EOF */
+     433           0 : /* EOF */
+     434           0 : /* EOF */
+     435           0 : /* EOF */
+     436             : /* EOF */
+     437      418705 : /* EOF */
+     438             : /* EOF */
+     439      418705 : /* EOF */
+     440      418705 : /* EOF */
+     441             : /* EOF */
+     442      418705 : /* EOF */
+     443      418825 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/ControllerIF.h.func-sort-c.html b/html/DRAMSys/library/src/controller/ControllerIF.h.func-sort-c.html new file mode 100644 index 00000000..96c7f683 --- /dev/null +++ b/html/DRAMSys/library/src/controller/ControllerIF.h.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerIF.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - ControllerIF.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4646100.0 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12ControllerIFD0Ev0
_ZN12ControllerIFC2EN7sc_core14sc_module_nameE37
_ZN12ControllerIFD2Ev37
_ZN12ControllerIF17IdleTimeCollector3endEv97
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/ControllerIF.h.func.html b/html/DRAMSys/library/src/controller/ControllerIF.h.func.html new file mode 100644 index 00000000..526bbfb9 --- /dev/null +++ b/html/DRAMSys/library/src/controller/ControllerIF.h.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerIF.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - ControllerIF.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4646100.0 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12ControllerIF17IdleTimeCollector3endEv97
_ZN12ControllerIFC2EN7sc_core14sc_module_nameE37
_ZN12ControllerIFD0Ev0
_ZN12ControllerIFD2Ev37
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/ControllerIF.h.gcov.html b/html/DRAMSys/library/src/controller/ControllerIF.h.gcov.html new file mode 100644 index 00000000..1d6c244d --- /dev/null +++ b/html/DRAMSys/library/src/controller/ControllerIF.h.gcov.html @@ -0,0 +1,186 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerIF.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - ControllerIF.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4646100.0 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20          37 : /* EOF */
+      21         148 : /* EOF */
+      22          37 : /* EOF */
+      23          37 : /* EOF */
+      24          37 : /* EOF */
+      25         111 : /* EOF */
+      26             : /* EOF */
+      27          74 : /* EOF */
+      28         148 : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32          74 : /* EOF */
+      33             : /* EOF */
+      34          37 : /* EOF */
+      35             : /* EOF */
+      36          37 : /* EOF */
+      37             : /* EOF */
+      38          37 : /* EOF */
+      39             : /* EOF */
+      40         111 : /* EOF */
+      41         185 : /* EOF */
+      42          37 : /* EOF */
+      43         185 : /* EOF */
+      44          74 : /* EOF */
+      45          74 : /* EOF */
+      46         111 : /* EOF */
+      47          37 : /* EOF */
+      48         185 : /* EOF */
+      49          74 : /* EOF */
+      50          74 : /* EOF */
+      51         111 : /* EOF */
+      52          37 : /* EOF */
+      53         185 : /* EOF */
+      54          74 : /* EOF */
+      55          74 : /* EOF */
+      56          37 : /* EOF */
+      57          37 : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61          37 : /* EOF */
+      62         148 : /* EOF */
+      63             : /* EOF */
+      64          37 : /* EOF */
+      65          37 : /* EOF */
+      66          74 : /* EOF */
+      67          37 : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76         111 : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81          67 : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84         134 : /* EOF */
+      85          67 : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88             : /* EOF */
+      89          97 : /* EOF */
+      90             : /* EOF */
+      91          97 : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94         201 : /* EOF */
+      95          67 : /* EOF */
+      96             : /* EOF */
+      97          97 : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101          74 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func-sort-c.html new file mode 100644 index 00000000..e4745626 --- /dev/null +++ b/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:252889.3 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN20ControllerRecordable15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_GLOBAL__sub_I__ZN20ControllerRecordable15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN20ControllerRecordable10sendToDramE7CommandPN3tlm19tlm_generic_payloadE418705
_ZN20ControllerRecordable15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505846
_ZN20ControllerRecordable14sendToFrontendEPN3tlm19tlm_generic_payloadENS0_9tlm_phaseE505876
_ZN20ControllerRecordable11recordPhaseERN3tlm19tlm_generic_payloadENS0_9tlm_phaseEN7sc_core7sc_timeE1011722
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func.html b/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func.html new file mode 100644 index 00000000..232fe827 --- /dev/null +++ b/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:252889.3 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN20ControllerRecordable15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN20ControllerRecordable10sendToDramE7CommandPN3tlm19tlm_generic_payloadE418705
_ZN20ControllerRecordable11recordPhaseERN3tlm19tlm_generic_payloadENS0_9tlm_phaseEN7sc_core7sc_timeE1011722
_ZN20ControllerRecordable14sendToFrontendEPN3tlm19tlm_generic_payloadENS0_9tlm_phaseE505876
_ZN20ControllerRecordable15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN20ControllerRecordable15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505846
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.gcov.html b/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.gcov.html new file mode 100644 index 00000000..f2c21060 --- /dev/null +++ b/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.gcov.html @@ -0,0 +1,174 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:252889.3 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40      505846 : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43      505846 : /* EOF */
+      44      505846 : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50           0 : /* EOF */
+      51           0 : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54      505876 : /* EOF */
+      55             : /* EOF */
+      56      505876 : /* EOF */
+      57      505876 : /* EOF */
+      58     1011752 : /* EOF */
+      59      505876 : /* EOF */
+      60             : /* EOF */
+      61      418705 : /* EOF */
+      62             : /* EOF */
+      63      418705 : /* EOF */
+      64             : /* EOF */
+      65      252938 : /* EOF */
+      66      252938 : /* EOF */
+      67             : /* EOF */
+      68      418705 : /* EOF */
+      69      418705 : /* EOF */
+      70             : /* EOF */
+      71     1011722 : /* EOF */
+      72             : /* EOF */
+      73     2023444 : /* EOF */
+      74             : /* EOF */
+      75     1011722 : /* EOF */
+      76     1011722 : /* EOF */
+      77     1011722 : /* EOF */
+      78     1011722 : /* EOF */
+      79     1011722 : /* EOF */
+      80     1011722 : /* EOF */
+      81     1011722 : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88     2023444 : /* EOF */
+      89     1011842 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.h.func-sort-c.html b/html/DRAMSys/library/src/controller/ControllerRecordable.h.func-sort-c.html new file mode 100644 index 00000000..267cefbb --- /dev/null +++ b/html/DRAMSys/library/src/controller/ControllerRecordable.h.func-sort-c.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:33100.0 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN20ControllerRecordableD2Ev0
_ZN20ControllerRecordableC2EN7sc_core14sc_module_nameEP11TlmRecorder37
_ZN20ControllerRecordableD0Ev37
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.h.func.html b/html/DRAMSys/library/src/controller/ControllerRecordable.h.func.html new file mode 100644 index 00000000..39e53140 --- /dev/null +++ b/html/DRAMSys/library/src/controller/ControllerRecordable.h.func.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:33100.0 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN20ControllerRecordableC2EN7sc_core14sc_module_nameEP11TlmRecorder37
_ZN20ControllerRecordableD0Ev37
_ZN20ControllerRecordableD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.h.gcov.html b/html/DRAMSys/library/src/controller/ControllerRecordable.h.gcov.html new file mode 100644 index 00000000..13d0aa70 --- /dev/null +++ b/html/DRAMSys/library/src/controller/ControllerRecordable.h.gcov.html @@ -0,0 +1,130 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:33100.0 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41          37 : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          37 : /* EOF */
+      45          37 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func-sort-c.html new file mode 100644 index 00000000..d2dc3dcd --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25328289.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerDDR3C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerDDR36insertE7Command4Rank9BankGroup4Bank2275
_ZNK11CheckerDDR324timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank54425
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func.html new file mode 100644 index 00000000..4d7102cc --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25328289.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerDDR3C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerDDR36insertE7Command4Rank9BankGroup4Bank2275
_ZNK11CheckerDDR324timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank54425
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.gcov.html new file mode 100644 index 00000000..a4df13eb --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.gcov.html @@ -0,0 +1,516 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25328289.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37          75 : /* EOF */
+      38             : /* EOF */
+      39           5 : /* EOF */
+      40           5 : /* EOF */
+      41           5 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44          20 : /* EOF */
+      45          20 : /* EOF */
+      46          20 : /* EOF */
+      47          20 : /* EOF */
+      48          20 : /* EOF */
+      49             : /* EOF */
+      50          15 : /* EOF */
+      51             : /* EOF */
+      52          15 : /* EOF */
+      53          30 : /* EOF */
+      54          25 : /* EOF */
+      55          20 : /* EOF */
+      56          25 : /* EOF */
+      57          20 : /* EOF */
+      58          20 : /* EOF */
+      59          20 : /* EOF */
+      60          25 : /* EOF */
+      61           5 : /* EOF */
+      62             : /* EOF */
+      63       54425 : /* EOF */
+      64             : /* EOF */
+      65       54425 : /* EOF */
+      66      108850 : /* EOF */
+      67             : /* EOF */
+      68       54425 : /* EOF */
+      69             : /* EOF */
+      70       32415 : /* EOF */
+      71       10805 : /* EOF */
+      72       54025 : /* EOF */
+      73             : /* EOF */
+      74       32415 : /* EOF */
+      75       10805 : /* EOF */
+      76       26280 : /* EOF */
+      77             : /* EOF */
+      78       35930 : /* EOF */
+      79       10805 : /* EOF */
+      80       17575 : /* EOF */
+      81             : /* EOF */
+      82       32415 : /* EOF */
+      83       10805 : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86       32415 : /* EOF */
+      87       10805 : /* EOF */
+      88           0 : /* EOF */
+      89             : /* EOF */
+      90       10805 : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93           0 : /* EOF */
+      94           0 : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97       32415 : /* EOF */
+      98       10805 : /* EOF */
+      99       43220 : /* EOF */
+     100             : /* EOF */
+     101       21610 : /* EOF */
+     102       10805 : /* EOF */
+     103       43220 : /* EOF */
+     104             : /* EOF */
+     105       32415 : /* EOF */
+     106       10805 : /* EOF */
+     107           0 : /* EOF */
+     108             : /* EOF */
+     109       21610 : /* EOF */
+     110       10805 : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113       32415 : /* EOF */
+     114       10805 : /* EOF */
+     115       43220 : /* EOF */
+     116             : /* EOF */
+     117       32415 : /* EOF */
+     118       10805 : /* EOF */
+     119       43220 : /* EOF */
+     120             : /* EOF */
+     121       43620 : /* EOF */
+     122             : /* EOF */
+     123       96495 : /* EOF */
+     124       32165 : /* EOF */
+     125      160825 : /* EOF */
+     126             : /* EOF */
+     127       96495 : /* EOF */
+     128       32165 : /* EOF */
+     129       68640 : /* EOF */
+     130             : /* EOF */
+     131      104555 : /* EOF */
+     132       32165 : /* EOF */
+     133       32240 : /* EOF */
+     134             : /* EOF */
+     135       96495 : /* EOF */
+     136       32165 : /* EOF */
+     137           0 : /* EOF */
+     138             : /* EOF */
+     139       96495 : /* EOF */
+     140       32165 : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143       96495 : /* EOF */
+     144       32165 : /* EOF */
+     145      108020 : /* EOF */
+     146             : /* EOF */
+     147      108980 : /* EOF */
+     148       32165 : /* EOF */
+     149       62425 : /* EOF */
+     150             : /* EOF */
+     151       96495 : /* EOF */
+     152       32165 : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155       96495 : /* EOF */
+     156       32165 : /* EOF */
+     157           0 : /* EOF */
+     158             : /* EOF */
+     159       96495 : /* EOF */
+     160       32165 : /* EOF */
+     161       71400 : /* EOF */
+     162             : /* EOF */
+     163       96495 : /* EOF */
+     164       32165 : /* EOF */
+     165       71400 : /* EOF */
+     166             : /* EOF */
+     167       11455 : /* EOF */
+     168             : /* EOF */
+     169       16425 : /* EOF */
+     170        5475 : /* EOF */
+     171       16020 : /* EOF */
+     172             : /* EOF */
+     173       16425 : /* EOF */
+     174        5475 : /* EOF */
+     175       21480 : /* EOF */
+     176             : /* EOF */
+     177       16425 : /* EOF */
+     178        5475 : /* EOF */
+     179           0 : /* EOF */
+     180             : /* EOF */
+     181       16425 : /* EOF */
+     182        5475 : /* EOF */
+     183           0 : /* EOF */
+     184             : /* EOF */
+     185       16425 : /* EOF */
+     186        5475 : /* EOF */
+     187       16020 : /* EOF */
+     188             : /* EOF */
+     189       16425 : /* EOF */
+     190        5475 : /* EOF */
+     191       10200 : /* EOF */
+     192             : /* EOF */
+     193       16425 : /* EOF */
+     194        5475 : /* EOF */
+     195       10200 : /* EOF */
+     196             : /* EOF */
+     197       16425 : /* EOF */
+     198        5475 : /* EOF */
+     199       16000 : /* EOF */
+     200             : /* EOF */
+     201       16425 : /* EOF */
+     202        5475 : /* EOF */
+     203       10200 : /* EOF */
+     204             : /* EOF */
+     205       16425 : /* EOF */
+     206        5475 : /* EOF */
+     207       10200 : /* EOF */
+     208             : /* EOF */
+     209       16425 : /* EOF */
+     210       23625 : /* EOF */
+     211             : /* EOF */
+     212        5980 : /* EOF */
+     213             : /* EOF */
+     214       13815 : /* EOF */
+     215        4605 : /* EOF */
+     216       18420 : /* EOF */
+     217             : /* EOF */
+     218       13815 : /* EOF */
+     219        4605 : /* EOF */
+     220        4875 : /* EOF */
+     221             : /* EOF */
+     222       13815 : /* EOF */
+     223        4605 : /* EOF */
+     224       18420 : /* EOF */
+     225             : /* EOF */
+     226       13815 : /* EOF */
+     227        4605 : /* EOF */
+     228        3900 : /* EOF */
+     229             : /* EOF */
+     230        1375 : /* EOF */
+     231             : /* EOF */
+     232         120 : /* EOF */
+     233          40 : /* EOF */
+     234         160 : /* EOF */
+     235             : /* EOF */
+     236         120 : /* EOF */
+     237          40 : /* EOF */
+     238           0 : /* EOF */
+     239             : /* EOF */
+     240         120 : /* EOF */
+     241          40 : /* EOF */
+     242           0 : /* EOF */
+     243             : /* EOF */
+     244         120 : /* EOF */
+     245          40 : /* EOF */
+     246         160 : /* EOF */
+     247             : /* EOF */
+     248         120 : /* EOF */
+     249          40 : /* EOF */
+     250           0 : /* EOF */
+     251             : /* EOF */
+     252         120 : /* EOF */
+     253          40 : /* EOF */
+     254         160 : /* EOF */
+     255             : /* EOF */
+     256        1335 : /* EOF */
+     257             : /* EOF */
+     258        2490 : /* EOF */
+     259         830 : /* EOF */
+     260        3320 : /* EOF */
+     261             : /* EOF */
+     262        2490 : /* EOF */
+     263         830 : /* EOF */
+     264           0 : /* EOF */
+     265             : /* EOF */
+     266        2490 : /* EOF */
+     267         830 : /* EOF */
+     268           0 : /* EOF */
+     269             : /* EOF */
+     270        2490 : /* EOF */
+     271         830 : /* EOF */
+     272        3320 : /* EOF */
+     273             : /* EOF */
+     274        2490 : /* EOF */
+     275         830 : /* EOF */
+     276        3320 : /* EOF */
+     277             : /* EOF */
+     278        2490 : /* EOF */
+     279         830 : /* EOF */
+     280        3240 : /* EOF */
+     281             : /* EOF */
+     282        2490 : /* EOF */
+     283         830 : /* EOF */
+     284        3120 : /* EOF */
+     285             : /* EOF */
+     286        2490 : /* EOF */
+     287         830 : /* EOF */
+     288        2960 : /* EOF */
+     289             : /* EOF */
+     290         505 : /* EOF */
+     291             : /* EOF */
+     292        1065 : /* EOF */
+     293         355 : /* EOF */
+     294        1420 : /* EOF */
+     295             : /* EOF */
+     296        1065 : /* EOF */
+     297             : /* EOF */
+     298         700 : /* EOF */
+     299             : /* EOF */
+     300        1065 : /* EOF */
+     301         355 : /* EOF */
+     302           0 : /* EOF */
+     303             : /* EOF */
+     304        1065 : /* EOF */
+     305         355 : /* EOF */
+     306        1420 : /* EOF */
+     307             : /* EOF */
+     308        1065 : /* EOF */
+     309         355 : /* EOF */
+     310           0 : /* EOF */
+     311             : /* EOF */
+     312        1065 : /* EOF */
+     313         355 : /* EOF */
+     314        1420 : /* EOF */
+     315             : /* EOF */
+     316        1065 : /* EOF */
+     317         355 : /* EOF */
+     318         700 : /* EOF */
+     319             : /* EOF */
+     320         150 : /* EOF */
+     321             : /* EOF */
+     322          60 : /* EOF */
+     323          20 : /* EOF */
+     324          80 : /* EOF */
+     325             : /* EOF */
+     326         130 : /* EOF */
+     327             : /* EOF */
+     328         165 : /* EOF */
+     329          55 : /* EOF */
+     330           0 : /* EOF */
+     331             : /* EOF */
+     332         165 : /* EOF */
+     333          55 : /* EOF */
+     334           0 : /* EOF */
+     335             : /* EOF */
+     336         165 : /* EOF */
+     337          55 : /* EOF */
+     338           0 : /* EOF */
+     339             : /* EOF */
+     340         165 : /* EOF */
+     341          55 : /* EOF */
+     342          80 : /* EOF */
+     343             : /* EOF */
+     344         165 : /* EOF */
+     345          55 : /* EOF */
+     346          80 : /* EOF */
+     347             : /* EOF */
+     348         165 : /* EOF */
+     349          55 : /* EOF */
+     350          40 : /* EOF */
+     351             : /* EOF */
+     352         165 : /* EOF */
+     353          55 : /* EOF */
+     354          80 : /* EOF */
+     355             : /* EOF */
+     356         165 : /* EOF */
+     357          55 : /* EOF */
+     358           0 : /* EOF */
+     359             : /* EOF */
+     360          75 : /* EOF */
+     361             : /* EOF */
+     362          75 : /* EOF */
+     363          25 : /* EOF */
+     364         100 : /* EOF */
+     365             : /* EOF */
+     366          50 : /* EOF */
+     367             : /* EOF */
+     368         120 : /* EOF */
+     369          40 : /* EOF */
+     370         160 : /* EOF */
+     371             : /* EOF */
+     372         120 : /* EOF */
+     373          40 : /* EOF */
+     374           0 : /* EOF */
+     375             : /* EOF */
+     376         120 : /* EOF */
+     377          40 : /* EOF */
+     378           0 : /* EOF */
+     379             : /* EOF */
+     380         120 : /* EOF */
+     381          40 : /* EOF */
+     382         160 : /* EOF */
+     383             : /* EOF */
+     384         120 : /* EOF */
+     385          40 : /* EOF */
+     386         160 : /* EOF */
+     387             : /* EOF */
+     388         120 : /* EOF */
+     389          40 : /* EOF */
+     390         160 : /* EOF */
+     391             : /* EOF */
+     392         120 : /* EOF */
+     393          40 : /* EOF */
+     394         160 : /* EOF */
+     395             : /* EOF */
+     396         120 : /* EOF */
+     397          40 : /* EOF */
+     398           0 : /* EOF */
+     399             : /* EOF */
+     400          10 : /* EOF */
+     401             : /* EOF */
+     402          30 : /* EOF */
+     403          10 : /* EOF */
+     404          40 : /* EOF */
+     405             : /* EOF */
+     406             : /* EOF */
+     407           0 : /* EOF */
+     408             : /* EOF */
+     409      217700 : /* EOF */
+     410             : /* EOF */
+     411       54425 : /* EOF */
+     412             : /* EOF */
+     413             : /* EOF */
+     414        2275 : /* EOF */
+     415             : /* EOF */
+     416             : /* EOF */
+     417             : /* EOF */
+     418             : /* EOF */
+     419        9100 : /* EOF */
+     420       11375 : /* EOF */
+     421        6825 : /* EOF */
+     422             : /* EOF */
+     423        4550 : /* EOF */
+     424             : /* EOF */
+     425        2275 : /* EOF */
+     426             : /* EOF */
+     427        1500 : /* EOF */
+     428         460 : /* EOF */
+     429        1000 : /* EOF */
+     430             : /* EOF */
+     431        2365 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func-sort-c.html new file mode 100644 index 00000000..6014d036 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerDDR3D0Ev5
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func.html new file mode 100644 index 00000000..26d34832 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerDDR3D0Ev5
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.gcov.html new file mode 100644 index 00000000..22766102 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          15 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func-sort-c.html new file mode 100644 index 00000000..456641f3 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18730860.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerDDR4C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerDDR46insertE7Command4Rank9BankGroup4Bank166614
_ZNK11CheckerDDR424timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank5298882
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func.html new file mode 100644 index 00000000..ae2e63bf --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18730860.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerDDR4C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerDDR46insertE7Command4Rank9BankGroup4Bank166614
_ZNK11CheckerDDR424timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank5298882
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.gcov.html new file mode 100644 index 00000000..dc96b501 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.gcov.html @@ -0,0 +1,547 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18730860.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37         114 : /* EOF */
+      38             : /* EOF */
+      39           6 : /* EOF */
+      40           6 : /* EOF */
+      41           6 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44          24 : /* EOF */
+      45          24 : /* EOF */
+      46          24 : /* EOF */
+      47          24 : /* EOF */
+      48          24 : /* EOF */
+      49          24 : /* EOF */
+      50          24 : /* EOF */
+      51             : /* EOF */
+      52          18 : /* EOF */
+      53             : /* EOF */
+      54          18 : /* EOF */
+      55          36 : /* EOF */
+      56          30 : /* EOF */
+      57          24 : /* EOF */
+      58          24 : /* EOF */
+      59          30 : /* EOF */
+      60          24 : /* EOF */
+      61          24 : /* EOF */
+      62          24 : /* EOF */
+      63          30 : /* EOF */
+      64           6 : /* EOF */
+      65             : /* EOF */
+      66     5298882 : /* EOF */
+      67             : /* EOF */
+      68     5298882 : /* EOF */
+      69    10597764 : /* EOF */
+      70             : /* EOF */
+      71     5298882 : /* EOF */
+      72             : /* EOF */
+      73     1586196 : /* EOF */
+      74      528732 : /* EOF */
+      75     2643660 : /* EOF */
+      76             : /* EOF */
+      77     1586196 : /* EOF */
+      78      528732 : /* EOF */
+      79           0 : /* EOF */
+      80             : /* EOF */
+      81     1586196 : /* EOF */
+      82      528732 : /* EOF */
+      83           0 : /* EOF */
+      84             : /* EOF */
+      85     1586196 : /* EOF */
+      86      528732 : /* EOF */
+      87           0 : /* EOF */
+      88             : /* EOF */
+      89     1586196 : /* EOF */
+      90      528732 : /* EOF */
+      91     2113608 : /* EOF */
+      92             : /* EOF */
+      93     1586196 : /* EOF */
+      94      528732 : /* EOF */
+      95     2113968 : /* EOF */
+      96             : /* EOF */
+      97     1586196 : /* EOF */
+      98      528732 : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101      528732 : /* EOF */
+     102             : /* EOF */
+     103     1586196 : /* EOF */
+     104      528732 : /* EOF */
+     105     2643660 : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108     1586196 : /* EOF */
+     109      528732 : /* EOF */
+     110     2114928 : /* EOF */
+     111             : /* EOF */
+     112     1586196 : /* EOF */
+     113      528732 : /* EOF */
+     114     2114928 : /* EOF */
+     115             : /* EOF */
+     116     1057464 : /* EOF */
+     117      528732 : /* EOF */
+     118     2114928 : /* EOF */
+     119             : /* EOF */
+     120     1586196 : /* EOF */
+     121      528732 : /* EOF */
+     122     2114928 : /* EOF */
+     123             : /* EOF */
+     124     1586196 : /* EOF */
+     125      528732 : /* EOF */
+     126     2114928 : /* EOF */
+     127             : /* EOF */
+     128     1057464 : /* EOF */
+     129      528732 : /* EOF */
+     130     2114928 : /* EOF */
+     131             : /* EOF */
+     132     1586196 : /* EOF */
+     133      528732 : /* EOF */
+     134           0 : /* EOF */
+     135             : /* EOF */
+     136     1586196 : /* EOF */
+     137      528732 : /* EOF */
+     138           0 : /* EOF */
+     139             : /* EOF */
+     140     4770150 : /* EOF */
+     141             : /* EOF */
+     142     5894694 : /* EOF */
+     143     1964898 : /* EOF */
+     144     9824490 : /* EOF */
+     145             : /* EOF */
+     146     5894694 : /* EOF */
+     147     1964898 : /* EOF */
+     148           0 : /* EOF */
+     149             : /* EOF */
+     150     5894694 : /* EOF */
+     151     1964898 : /* EOF */
+     152           0 : /* EOF */
+     153             : /* EOF */
+     154     5894694 : /* EOF */
+     155     1964898 : /* EOF */
+     156           0 : /* EOF */
+     157             : /* EOF */
+     158     5894694 : /* EOF */
+     159     1964898 : /* EOF */
+     160           0 : /* EOF */
+     161             : /* EOF */
+     162     5894694 : /* EOF */
+     163     1964898 : /* EOF */
+     164     7856568 : /* EOF */
+     165             : /* EOF */
+     166     5894694 : /* EOF */
+     167     1964898 : /* EOF */
+     168     7857240 : /* EOF */
+     169             : /* EOF */
+     170     5894694 : /* EOF */
+     171     1964898 : /* EOF */
+     172           0 : /* EOF */
+     173             : /* EOF */
+     174     5894694 : /* EOF */
+     175     1964898 : /* EOF */
+     176     7858272 : /* EOF */
+     177             : /* EOF */
+     178     5894694 : /* EOF */
+     179     1964898 : /* EOF */
+     180     7858920 : /* EOF */
+     181             : /* EOF */
+     182     5894694 : /* EOF */
+     183     1964898 : /* EOF */
+     184           0 : /* EOF */
+     185             : /* EOF */
+     186     5894694 : /* EOF */
+     187     1964898 : /* EOF */
+     188           0 : /* EOF */
+     189             : /* EOF */
+     190     5894694 : /* EOF */
+     191     1964898 : /* EOF */
+     192           0 : /* EOF */
+     193             : /* EOF */
+     194     2805252 : /* EOF */
+     195             : /* EOF */
+     196     8411994 : /* EOF */
+     197     2803998 : /* EOF */
+     198    11203176 : /* EOF */
+     199             : /* EOF */
+     200     8411994 : /* EOF */
+     201     2803998 : /* EOF */
+     202    11215200 : /* EOF */
+     203             : /* EOF */
+     204     8411994 : /* EOF */
+     205     2803998 : /* EOF */
+     206    11215968 : /* EOF */
+     207             : /* EOF */
+     208     8411994 : /* EOF */
+     209     2803998 : /* EOF */
+     210    16028928 : /* EOF */
+     211             : /* EOF */
+     212     8411994 : /* EOF */
+     213     2803998 : /* EOF */
+     214    14003970 : /* EOF */
+     215             : /* EOF */
+     216     8411994 : /* EOF */
+     217     2803998 : /* EOF */
+     218           0 : /* EOF */
+     219             : /* EOF */
+     220     8411994 : /* EOF */
+     221     2803998 : /* EOF */
+     222    11183640 : /* EOF */
+     223             : /* EOF */
+     224     8411994 : /* EOF */
+     225     2803998 : /* EOF */
+     226           0 : /* EOF */
+     227             : /* EOF */
+     228     8411994 : /* EOF */
+     229     2803998 : /* EOF */
+     230           0 : /* EOF */
+     231             : /* EOF */
+     232     8411994 : /* EOF */
+     233     2803998 : /* EOF */
+     234    11183640 : /* EOF */
+     235             : /* EOF */
+     236     8411994 : /* EOF */
+     237     2803998 : /* EOF */
+     238           0 : /* EOF */
+     239             : /* EOF */
+     240     8411994 : /* EOF */
+     241    14017980 : /* EOF */
+     242             : /* EOF */
+     243        1254 : /* EOF */
+     244             : /* EOF */
+     245           0 : /* EOF */
+     246           0 : /* EOF */
+     247           0 : /* EOF */
+     248             : /* EOF */
+     249           0 : /* EOF */
+     250           0 : /* EOF */
+     251           0 : /* EOF */
+     252             : /* EOF */
+     253           0 : /* EOF */
+     254           0 : /* EOF */
+     255           0 : /* EOF */
+     256             : /* EOF */
+     257           0 : /* EOF */
+     258           0 : /* EOF */
+     259           0 : /* EOF */
+     260             : /* EOF */
+     261        1254 : /* EOF */
+     262             : /* EOF */
+     263        3168 : /* EOF */
+     264        1056 : /* EOF */
+     265        4224 : /* EOF */
+     266             : /* EOF */
+     267        3168 : /* EOF */
+     268        1056 : /* EOF */
+     269           0 : /* EOF */
+     270             : /* EOF */
+     271        3168 : /* EOF */
+     272        1056 : /* EOF */
+     273        5250 : /* EOF */
+     274             : /* EOF */
+     275        3168 : /* EOF */
+     276        1056 : /* EOF */
+     277        4224 : /* EOF */
+     278             : /* EOF */
+     279        3168 : /* EOF */
+     280        1056 : /* EOF */
+     281        4224 : /* EOF */
+     282             : /* EOF */
+     283        3168 : /* EOF */
+     284        1056 : /* EOF */
+     285           0 : /* EOF */
+     286             : /* EOF */
+     287         198 : /* EOF */
+     288             : /* EOF */
+     289         594 : /* EOF */
+     290         198 : /* EOF */
+     291         792 : /* EOF */
+     292             : /* EOF */
+     293         594 : /* EOF */
+     294         198 : /* EOF */
+     295         504 : /* EOF */
+     296             : /* EOF */
+     297         594 : /* EOF */
+     298         198 : /* EOF */
+     299         990 : /* EOF */
+     300             : /* EOF */
+     301         594 : /* EOF */
+     302         198 : /* EOF */
+     303           0 : /* EOF */
+     304             : /* EOF */
+     305         594 : /* EOF */
+     306         198 : /* EOF */
+     307         792 : /* EOF */
+     308             : /* EOF */
+     309         594 : /* EOF */
+     310         198 : /* EOF */
+     311           0 : /* EOF */
+     312             : /* EOF */
+     313         594 : /* EOF */
+     314         198 : /* EOF */
+     315         744 : /* EOF */
+     316             : /* EOF */
+     317         594 : /* EOF */
+     318         198 : /* EOF */
+     319           0 : /* EOF */
+     320             : /* EOF */
+     321           0 : /* EOF */
+     322             : /* EOF */
+     323           0 : /* EOF */
+     324           0 : /* EOF */
+     325           0 : /* EOF */
+     326             : /* EOF */
+     327           0 : /* EOF */
+     328           0 : /* EOF */
+     329           0 : /* EOF */
+     330             : /* EOF */
+     331           0 : /* EOF */
+     332           0 : /* EOF */
+     333           0 : /* EOF */
+     334             : /* EOF */
+     335           0 : /* EOF */
+     336           0 : /* EOF */
+     337           0 : /* EOF */
+     338             : /* EOF */
+     339           0 : /* EOF */
+     340           0 : /* EOF */
+     341           0 : /* EOF */
+     342             : /* EOF */
+     343           0 : /* EOF */
+     344           0 : /* EOF */
+     345           0 : /* EOF */
+     346             : /* EOF */
+     347           0 : /* EOF */
+     348           0 : /* EOF */
+     349           0 : /* EOF */
+     350             : /* EOF */
+     351           0 : /* EOF */
+     352             : /* EOF */
+     353           0 : /* EOF */
+     354           0 : /* EOF */
+     355           0 : /* EOF */
+     356             : /* EOF */
+     357           0 : /* EOF */
+     358             : /* EOF */
+     359           0 : /* EOF */
+     360           0 : /* EOF */
+     361           0 : /* EOF */
+     362             : /* EOF */
+     363           0 : /* EOF */
+     364           0 : /* EOF */
+     365           0 : /* EOF */
+     366             : /* EOF */
+     367           0 : /* EOF */
+     368           0 : /* EOF */
+     369           0 : /* EOF */
+     370             : /* EOF */
+     371           0 : /* EOF */
+     372           0 : /* EOF */
+     373           0 : /* EOF */
+     374             : /* EOF */
+     375           0 : /* EOF */
+     376           0 : /* EOF */
+     377           0 : /* EOF */
+     378             : /* EOF */
+     379           0 : /* EOF */
+     380           0 : /* EOF */
+     381           0 : /* EOF */
+     382             : /* EOF */
+     383           0 : /* EOF */
+     384           0 : /* EOF */
+     385           0 : /* EOF */
+     386             : /* EOF */
+     387           0 : /* EOF */
+     388           0 : /* EOF */
+     389           0 : /* EOF */
+     390             : /* EOF */
+     391           0 : /* EOF */
+     392             : /* EOF */
+     393           0 : /* EOF */
+     394           0 : /* EOF */
+     395           0 : /* EOF */
+     396             : /* EOF */
+     397           0 : /* EOF */
+     398             : /* EOF */
+     399           0 : /* EOF */
+     400           0 : /* EOF */
+     401           0 : /* EOF */
+     402             : /* EOF */
+     403           0 : /* EOF */
+     404           0 : /* EOF */
+     405           0 : /* EOF */
+     406             : /* EOF */
+     407           0 : /* EOF */
+     408           0 : /* EOF */
+     409           0 : /* EOF */
+     410             : /* EOF */
+     411           0 : /* EOF */
+     412           0 : /* EOF */
+     413           0 : /* EOF */
+     414             : /* EOF */
+     415           0 : /* EOF */
+     416           0 : /* EOF */
+     417           0 : /* EOF */
+     418             : /* EOF */
+     419           0 : /* EOF */
+     420           0 : /* EOF */
+     421           0 : /* EOF */
+     422             : /* EOF */
+     423           0 : /* EOF */
+     424           0 : /* EOF */
+     425           0 : /* EOF */
+     426             : /* EOF */
+     427           0 : /* EOF */
+     428           0 : /* EOF */
+     429           0 : /* EOF */
+     430             : /* EOF */
+     431           0 : /* EOF */
+     432             : /* EOF */
+     433           0 : /* EOF */
+     434           0 : /* EOF */
+     435           0 : /* EOF */
+     436             : /* EOF */
+     437             : /* EOF */
+     438           0 : /* EOF */
+     439             : /* EOF */
+     440    21195528 : /* EOF */
+     441             : /* EOF */
+     442     5298882 : /* EOF */
+     443             : /* EOF */
+     444             : /* EOF */
+     445      166614 : /* EOF */
+     446             : /* EOF */
+     447             : /* EOF */
+     448             : /* EOF */
+     449             : /* EOF */
+     450      833070 : /* EOF */
+     451      833070 : /* EOF */
+     452      666456 : /* EOF */
+     453      499842 : /* EOF */
+     454      333228 : /* EOF */
+     455             : /* EOF */
+     456      166614 : /* EOF */
+     457             : /* EOF */
+     458      190656 : /* EOF */
+     459       63528 : /* EOF */
+     460      127104 : /* EOF */
+     461             : /* EOF */
+     462      166704 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func-sort-c.html new file mode 100644 index 00000000..808fa173 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerDDR4D0Ev6
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func.html new file mode 100644 index 00000000..a1ebbff8 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerDDR4D0Ev6
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.gcov.html new file mode 100644 index 00000000..d40679f5 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          18 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func-sort-c.html new file mode 100644 index 00000000..d984585f --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR56insertE7Command4Rank9BankGroup4Bank0
_ZNK12CheckerGDDR524timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN12CheckerGDDR5C2Ev30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func.html new file mode 100644 index 00000000..166bbf28 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CheckerGDDR5C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN12CheckerGDDR56insertE7Command4Rank9BankGroup4Bank0
_ZNK12CheckerGDDR524timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.gcov.html new file mode 100644 index 00000000..4f3a4c50 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.gcov.html @@ -0,0 +1,636 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37           0 : /* EOF */
+      38             : /* EOF */
+      39           0 : /* EOF */
+      40           0 : /* EOF */
+      41           0 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54             : /* EOF */
+      55           0 : /* EOF */
+      56             : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66             : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69           0 : /* EOF */
+      70           0 : /* EOF */
+      71             : /* EOF */
+      72           0 : /* EOF */
+      73             : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77             : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81             : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89             : /* EOF */
+      90           0 : /* EOF */
+      91           0 : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97             : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100           0 : /* EOF */
+     101             : /* EOF */
+     102           0 : /* EOF */
+     103             : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109           0 : /* EOF */
+     110           0 : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120             : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124             : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127           0 : /* EOF */
+     128             : /* EOF */
+     129           0 : /* EOF */
+     130           0 : /* EOF */
+     131           0 : /* EOF */
+     132             : /* EOF */
+     133           0 : /* EOF */
+     134           0 : /* EOF */
+     135           0 : /* EOF */
+     136             : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140             : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143           0 : /* EOF */
+     144           0 : /* EOF */
+     145           0 : /* EOF */
+     146             : /* EOF */
+     147           0 : /* EOF */
+     148           0 : /* EOF */
+     149           0 : /* EOF */
+     150             : /* EOF */
+     151           0 : /* EOF */
+     152           0 : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155           0 : /* EOF */
+     156           0 : /* EOF */
+     157           0 : /* EOF */
+     158             : /* EOF */
+     159           0 : /* EOF */
+     160           0 : /* EOF */
+     161           0 : /* EOF */
+     162             : /* EOF */
+     163           0 : /* EOF */
+     164           0 : /* EOF */
+     165           0 : /* EOF */
+     166             : /* EOF */
+     167           0 : /* EOF */
+     168           0 : /* EOF */
+     169           0 : /* EOF */
+     170             : /* EOF */
+     171           0 : /* EOF */
+     172           0 : /* EOF */
+     173           0 : /* EOF */
+     174             : /* EOF */
+     175           0 : /* EOF */
+     176           0 : /* EOF */
+     177           0 : /* EOF */
+     178             : /* EOF */
+     179           0 : /* EOF */
+     180           0 : /* EOF */
+     181           0 : /* EOF */
+     182             : /* EOF */
+     183           0 : /* EOF */
+     184           0 : /* EOF */
+     185           0 : /* EOF */
+     186             : /* EOF */
+     187           0 : /* EOF */
+     188           0 : /* EOF */
+     189           0 : /* EOF */
+     190             : /* EOF */
+     191           0 : /* EOF */
+     192           0 : /* EOF */
+     193           0 : /* EOF */
+     194             : /* EOF */
+     195           0 : /* EOF */
+     196             : /* EOF */
+     197           0 : /* EOF */
+     198           0 : /* EOF */
+     199           0 : /* EOF */
+     200             : /* EOF */
+     201           0 : /* EOF */
+     202           0 : /* EOF */
+     203           0 : /* EOF */
+     204             : /* EOF */
+     205           0 : /* EOF */
+     206           0 : /* EOF */
+     207           0 : /* EOF */
+     208             : /* EOF */
+     209           0 : /* EOF */
+     210           0 : /* EOF */
+     211           0 : /* EOF */
+     212             : /* EOF */
+     213           0 : /* EOF */
+     214           0 : /* EOF */
+     215           0 : /* EOF */
+     216             : /* EOF */
+     217           0 : /* EOF */
+     218           0 : /* EOF */
+     219           0 : /* EOF */
+     220             : /* EOF */
+     221           0 : /* EOF */
+     222           0 : /* EOF */
+     223           0 : /* EOF */
+     224             : /* EOF */
+     225           0 : /* EOF */
+     226           0 : /* EOF */
+     227           0 : /* EOF */
+     228             : /* EOF */
+     229           0 : /* EOF */
+     230           0 : /* EOF */
+     231           0 : /* EOF */
+     232             : /* EOF */
+     233           0 : /* EOF */
+     234           0 : /* EOF */
+     235           0 : /* EOF */
+     236             : /* EOF */
+     237           0 : /* EOF */
+     238           0 : /* EOF */
+     239           0 : /* EOF */
+     240             : /* EOF */
+     241           0 : /* EOF */
+     242           0 : /* EOF */
+     243           0 : /* EOF */
+     244             : /* EOF */
+     245           0 : /* EOF */
+     246           0 : /* EOF */
+     247           0 : /* EOF */
+     248             : /* EOF */
+     249           0 : /* EOF */
+     250           0 : /* EOF */
+     251             : /* EOF */
+     252           0 : /* EOF */
+     253           0 : /* EOF */
+     254             : /* EOF */
+     255           0 : /* EOF */
+     256             : /* EOF */
+     257           0 : /* EOF */
+     258           0 : /* EOF */
+     259           0 : /* EOF */
+     260             : /* EOF */
+     261           0 : /* EOF */
+     262           0 : /* EOF */
+     263           0 : /* EOF */
+     264             : /* EOF */
+     265           0 : /* EOF */
+     266           0 : /* EOF */
+     267           0 : /* EOF */
+     268             : /* EOF */
+     269           0 : /* EOF */
+     270           0 : /* EOF */
+     271           0 : /* EOF */
+     272             : /* EOF */
+     273           0 : /* EOF */
+     274           0 : /* EOF */
+     275           0 : /* EOF */
+     276             : /* EOF */
+     277           0 : /* EOF */
+     278             : /* EOF */
+     279           0 : /* EOF */
+     280           0 : /* EOF */
+     281           0 : /* EOF */
+     282             : /* EOF */
+     283           0 : /* EOF */
+     284           0 : /* EOF */
+     285           0 : /* EOF */
+     286             : /* EOF */
+     287           0 : /* EOF */
+     288           0 : /* EOF */
+     289           0 : /* EOF */
+     290             : /* EOF */
+     291           0 : /* EOF */
+     292           0 : /* EOF */
+     293           0 : /* EOF */
+     294             : /* EOF */
+     295           0 : /* EOF */
+     296           0 : /* EOF */
+     297           0 : /* EOF */
+     298             : /* EOF */
+     299           0 : /* EOF */
+     300           0 : /* EOF */
+     301           0 : /* EOF */
+     302             : /* EOF */
+     303           0 : /* EOF */
+     304           0 : /* EOF */
+     305           0 : /* EOF */
+     306             : /* EOF */
+     307           0 : /* EOF */
+     308           0 : /* EOF */
+     309           0 : /* EOF */
+     310             : /* EOF */
+     311           0 : /* EOF */
+     312             : /* EOF */
+     313           0 : /* EOF */
+     314           0 : /* EOF */
+     315           0 : /* EOF */
+     316             : /* EOF */
+     317           0 : /* EOF */
+     318           0 : /* EOF */
+     319           0 : /* EOF */
+     320             : /* EOF */
+     321           0 : /* EOF */
+     322           0 : /* EOF */
+     323           0 : /* EOF */
+     324             : /* EOF */
+     325           0 : /* EOF */
+     326           0 : /* EOF */
+     327           0 : /* EOF */
+     328             : /* EOF */
+     329           0 : /* EOF */
+     330           0 : /* EOF */
+     331           0 : /* EOF */
+     332             : /* EOF */
+     333           0 : /* EOF */
+     334           0 : /* EOF */
+     335           0 : /* EOF */
+     336             : /* EOF */
+     337           0 : /* EOF */
+     338           0 : /* EOF */
+     339           0 : /* EOF */
+     340             : /* EOF */
+     341           0 : /* EOF */
+     342           0 : /* EOF */
+     343           0 : /* EOF */
+     344             : /* EOF */
+     345           0 : /* EOF */
+     346           0 : /* EOF */
+     347           0 : /* EOF */
+     348             : /* EOF */
+     349           0 : /* EOF */
+     350             : /* EOF */
+     351           0 : /* EOF */
+     352           0 : /* EOF */
+     353           0 : /* EOF */
+     354             : /* EOF */
+     355           0 : /* EOF */
+     356           0 : /* EOF */
+     357           0 : /* EOF */
+     358             : /* EOF */
+     359           0 : /* EOF */
+     360           0 : /* EOF */
+     361           0 : /* EOF */
+     362             : /* EOF */
+     363           0 : /* EOF */
+     364           0 : /* EOF */
+     365           0 : /* EOF */
+     366             : /* EOF */
+     367           0 : /* EOF */
+     368           0 : /* EOF */
+     369           0 : /* EOF */
+     370             : /* EOF */
+     371           0 : /* EOF */
+     372           0 : /* EOF */
+     373           0 : /* EOF */
+     374             : /* EOF */
+     375           0 : /* EOF */
+     376           0 : /* EOF */
+     377           0 : /* EOF */
+     378             : /* EOF */
+     379           0 : /* EOF */
+     380           0 : /* EOF */
+     381           0 : /* EOF */
+     382             : /* EOF */
+     383           0 : /* EOF */
+     384           0 : /* EOF */
+     385           0 : /* EOF */
+     386             : /* EOF */
+     387           0 : /* EOF */
+     388           0 : /* EOF */
+     389           0 : /* EOF */
+     390             : /* EOF */
+     391           0 : /* EOF */
+     392           0 : /* EOF */
+     393           0 : /* EOF */
+     394             : /* EOF */
+     395           0 : /* EOF */
+     396           0 : /* EOF */
+     397             : /* EOF */
+     398           0 : /* EOF */
+     399           0 : /* EOF */
+     400             : /* EOF */
+     401           0 : /* EOF */
+     402             : /* EOF */
+     403             : /* EOF */
+     404           0 : /* EOF */
+     405           0 : /* EOF */
+     406           0 : /* EOF */
+     407             : /* EOF */
+     408           0 : /* EOF */
+     409           0 : /* EOF */
+     410             : /* EOF */
+     411           0 : /* EOF */
+     412           0 : /* EOF */
+     413             : /* EOF */
+     414           0 : /* EOF */
+     415             : /* EOF */
+     416           0 : /* EOF */
+     417           0 : /* EOF */
+     418           0 : /* EOF */
+     419             : /* EOF */
+     420           0 : /* EOF */
+     421           0 : /* EOF */
+     422           0 : /* EOF */
+     423             : /* EOF */
+     424           0 : /* EOF */
+     425           0 : /* EOF */
+     426           0 : /* EOF */
+     427             : /* EOF */
+     428           0 : /* EOF */
+     429           0 : /* EOF */
+     430           0 : /* EOF */
+     431             : /* EOF */
+     432           0 : /* EOF */
+     433           0 : /* EOF */
+     434           0 : /* EOF */
+     435             : /* EOF */
+     436           0 : /* EOF */
+     437             : /* EOF */
+     438           0 : /* EOF */
+     439           0 : /* EOF */
+     440           0 : /* EOF */
+     441             : /* EOF */
+     442           0 : /* EOF */
+     443             : /* EOF */
+     444           0 : /* EOF */
+     445           0 : /* EOF */
+     446           0 : /* EOF */
+     447             : /* EOF */
+     448           0 : /* EOF */
+     449           0 : /* EOF */
+     450           0 : /* EOF */
+     451             : /* EOF */
+     452           0 : /* EOF */
+     453           0 : /* EOF */
+     454           0 : /* EOF */
+     455             : /* EOF */
+     456           0 : /* EOF */
+     457           0 : /* EOF */
+     458           0 : /* EOF */
+     459             : /* EOF */
+     460           0 : /* EOF */
+     461           0 : /* EOF */
+     462           0 : /* EOF */
+     463             : /* EOF */
+     464           0 : /* EOF */
+     465             : /* EOF */
+     466           0 : /* EOF */
+     467           0 : /* EOF */
+     468           0 : /* EOF */
+     469             : /* EOF */
+     470           0 : /* EOF */
+     471             : /* EOF */
+     472           0 : /* EOF */
+     473           0 : /* EOF */
+     474           0 : /* EOF */
+     475             : /* EOF */
+     476           0 : /* EOF */
+     477           0 : /* EOF */
+     478           0 : /* EOF */
+     479             : /* EOF */
+     480           0 : /* EOF */
+     481           0 : /* EOF */
+     482           0 : /* EOF */
+     483             : /* EOF */
+     484           0 : /* EOF */
+     485           0 : /* EOF */
+     486           0 : /* EOF */
+     487             : /* EOF */
+     488           0 : /* EOF */
+     489           0 : /* EOF */
+     490           0 : /* EOF */
+     491             : /* EOF */
+     492           0 : /* EOF */
+     493           0 : /* EOF */
+     494           0 : /* EOF */
+     495             : /* EOF */
+     496           0 : /* EOF */
+     497           0 : /* EOF */
+     498           0 : /* EOF */
+     499             : /* EOF */
+     500           0 : /* EOF */
+     501           0 : /* EOF */
+     502           0 : /* EOF */
+     503             : /* EOF */
+     504           0 : /* EOF */
+     505           0 : /* EOF */
+     506           0 : /* EOF */
+     507             : /* EOF */
+     508           0 : /* EOF */
+     509           0 : /* EOF */
+     510           0 : /* EOF */
+     511             : /* EOF */
+     512           0 : /* EOF */
+     513             : /* EOF */
+     514           0 : /* EOF */
+     515           0 : /* EOF */
+     516           0 : /* EOF */
+     517             : /* EOF */
+     518             : /* EOF */
+     519           0 : /* EOF */
+     520             : /* EOF */
+     521             : /* EOF */
+     522           0 : /* EOF */
+     523             : /* EOF */
+     524           0 : /* EOF */
+     525             : /* EOF */
+     526             : /* EOF */
+     527           0 : /* EOF */
+     528             : /* EOF */
+     529             : /* EOF */
+     530             : /* EOF */
+     531             : /* EOF */
+     532           0 : /* EOF */
+     533           0 : /* EOF */
+     534           0 : /* EOF */
+     535           0 : /* EOF */
+     536           0 : /* EOF */
+     537             : /* EOF */
+     538           0 : /* EOF */
+     539             : /* EOF */
+     540           0 : /* EOF */
+     541           0 : /* EOF */
+     542           0 : /* EOF */
+     543             : /* EOF */
+     544           0 : /* EOF */
+     545           0 : /* EOF */
+     546           0 : /* EOF */
+     547             : /* EOF */
+     548             : /* EOF */
+     549           0 : /* EOF */
+     550           0 : /* EOF */
+     551          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func-sort-c.html new file mode 100644 index 00000000..0d5c1e82 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR5D0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func.html new file mode 100644 index 00000000..b92b3e8d --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR5D0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.gcov.html new file mode 100644 index 00000000..ee020294 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func-sort-c.html new file mode 100644 index 00000000..d90fa150 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerGDDR5X6insertE7Command4Rank9BankGroup4Bank0
_ZNK13CheckerGDDR5X24timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN13CheckerGDDR5XC2Ev30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func.html new file mode 100644 index 00000000..a89b2ed6 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13CheckerGDDR5XC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13CheckerGDDR5X6insertE7Command4Rank9BankGroup4Bank0
_ZNK13CheckerGDDR5X24timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.gcov.html new file mode 100644 index 00000000..b7d0a57f --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.gcov.html @@ -0,0 +1,636 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37           0 : /* EOF */
+      38             : /* EOF */
+      39           0 : /* EOF */
+      40           0 : /* EOF */
+      41           0 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54             : /* EOF */
+      55           0 : /* EOF */
+      56             : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66             : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69           0 : /* EOF */
+      70           0 : /* EOF */
+      71             : /* EOF */
+      72           0 : /* EOF */
+      73             : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77             : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81             : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89             : /* EOF */
+      90           0 : /* EOF */
+      91           0 : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97             : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100           0 : /* EOF */
+     101             : /* EOF */
+     102           0 : /* EOF */
+     103             : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109           0 : /* EOF */
+     110           0 : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120             : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124             : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127           0 : /* EOF */
+     128             : /* EOF */
+     129           0 : /* EOF */
+     130           0 : /* EOF */
+     131           0 : /* EOF */
+     132             : /* EOF */
+     133           0 : /* EOF */
+     134           0 : /* EOF */
+     135           0 : /* EOF */
+     136             : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140             : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143           0 : /* EOF */
+     144           0 : /* EOF */
+     145           0 : /* EOF */
+     146             : /* EOF */
+     147           0 : /* EOF */
+     148           0 : /* EOF */
+     149           0 : /* EOF */
+     150             : /* EOF */
+     151           0 : /* EOF */
+     152           0 : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155           0 : /* EOF */
+     156           0 : /* EOF */
+     157           0 : /* EOF */
+     158             : /* EOF */
+     159           0 : /* EOF */
+     160           0 : /* EOF */
+     161           0 : /* EOF */
+     162             : /* EOF */
+     163           0 : /* EOF */
+     164           0 : /* EOF */
+     165           0 : /* EOF */
+     166             : /* EOF */
+     167           0 : /* EOF */
+     168           0 : /* EOF */
+     169           0 : /* EOF */
+     170             : /* EOF */
+     171           0 : /* EOF */
+     172           0 : /* EOF */
+     173           0 : /* EOF */
+     174             : /* EOF */
+     175           0 : /* EOF */
+     176           0 : /* EOF */
+     177           0 : /* EOF */
+     178             : /* EOF */
+     179           0 : /* EOF */
+     180           0 : /* EOF */
+     181           0 : /* EOF */
+     182             : /* EOF */
+     183           0 : /* EOF */
+     184           0 : /* EOF */
+     185           0 : /* EOF */
+     186             : /* EOF */
+     187           0 : /* EOF */
+     188           0 : /* EOF */
+     189           0 : /* EOF */
+     190             : /* EOF */
+     191           0 : /* EOF */
+     192           0 : /* EOF */
+     193           0 : /* EOF */
+     194             : /* EOF */
+     195           0 : /* EOF */
+     196             : /* EOF */
+     197           0 : /* EOF */
+     198           0 : /* EOF */
+     199           0 : /* EOF */
+     200             : /* EOF */
+     201           0 : /* EOF */
+     202           0 : /* EOF */
+     203           0 : /* EOF */
+     204             : /* EOF */
+     205           0 : /* EOF */
+     206           0 : /* EOF */
+     207           0 : /* EOF */
+     208             : /* EOF */
+     209           0 : /* EOF */
+     210           0 : /* EOF */
+     211           0 : /* EOF */
+     212             : /* EOF */
+     213           0 : /* EOF */
+     214           0 : /* EOF */
+     215           0 : /* EOF */
+     216             : /* EOF */
+     217           0 : /* EOF */
+     218           0 : /* EOF */
+     219           0 : /* EOF */
+     220             : /* EOF */
+     221           0 : /* EOF */
+     222           0 : /* EOF */
+     223           0 : /* EOF */
+     224             : /* EOF */
+     225           0 : /* EOF */
+     226           0 : /* EOF */
+     227           0 : /* EOF */
+     228             : /* EOF */
+     229           0 : /* EOF */
+     230           0 : /* EOF */
+     231           0 : /* EOF */
+     232             : /* EOF */
+     233           0 : /* EOF */
+     234           0 : /* EOF */
+     235           0 : /* EOF */
+     236             : /* EOF */
+     237           0 : /* EOF */
+     238           0 : /* EOF */
+     239           0 : /* EOF */
+     240             : /* EOF */
+     241           0 : /* EOF */
+     242           0 : /* EOF */
+     243           0 : /* EOF */
+     244             : /* EOF */
+     245           0 : /* EOF */
+     246           0 : /* EOF */
+     247           0 : /* EOF */
+     248             : /* EOF */
+     249           0 : /* EOF */
+     250           0 : /* EOF */
+     251             : /* EOF */
+     252           0 : /* EOF */
+     253           0 : /* EOF */
+     254             : /* EOF */
+     255           0 : /* EOF */
+     256             : /* EOF */
+     257           0 : /* EOF */
+     258           0 : /* EOF */
+     259           0 : /* EOF */
+     260             : /* EOF */
+     261           0 : /* EOF */
+     262           0 : /* EOF */
+     263           0 : /* EOF */
+     264             : /* EOF */
+     265           0 : /* EOF */
+     266           0 : /* EOF */
+     267           0 : /* EOF */
+     268             : /* EOF */
+     269           0 : /* EOF */
+     270           0 : /* EOF */
+     271           0 : /* EOF */
+     272             : /* EOF */
+     273           0 : /* EOF */
+     274           0 : /* EOF */
+     275           0 : /* EOF */
+     276             : /* EOF */
+     277           0 : /* EOF */
+     278             : /* EOF */
+     279           0 : /* EOF */
+     280           0 : /* EOF */
+     281           0 : /* EOF */
+     282             : /* EOF */
+     283           0 : /* EOF */
+     284           0 : /* EOF */
+     285           0 : /* EOF */
+     286             : /* EOF */
+     287           0 : /* EOF */
+     288           0 : /* EOF */
+     289           0 : /* EOF */
+     290             : /* EOF */
+     291           0 : /* EOF */
+     292           0 : /* EOF */
+     293           0 : /* EOF */
+     294             : /* EOF */
+     295           0 : /* EOF */
+     296           0 : /* EOF */
+     297           0 : /* EOF */
+     298             : /* EOF */
+     299           0 : /* EOF */
+     300           0 : /* EOF */
+     301           0 : /* EOF */
+     302             : /* EOF */
+     303           0 : /* EOF */
+     304           0 : /* EOF */
+     305           0 : /* EOF */
+     306             : /* EOF */
+     307           0 : /* EOF */
+     308           0 : /* EOF */
+     309           0 : /* EOF */
+     310             : /* EOF */
+     311           0 : /* EOF */
+     312             : /* EOF */
+     313           0 : /* EOF */
+     314           0 : /* EOF */
+     315           0 : /* EOF */
+     316             : /* EOF */
+     317           0 : /* EOF */
+     318           0 : /* EOF */
+     319           0 : /* EOF */
+     320             : /* EOF */
+     321           0 : /* EOF */
+     322           0 : /* EOF */
+     323           0 : /* EOF */
+     324             : /* EOF */
+     325           0 : /* EOF */
+     326           0 : /* EOF */
+     327           0 : /* EOF */
+     328             : /* EOF */
+     329           0 : /* EOF */
+     330           0 : /* EOF */
+     331           0 : /* EOF */
+     332             : /* EOF */
+     333           0 : /* EOF */
+     334           0 : /* EOF */
+     335           0 : /* EOF */
+     336             : /* EOF */
+     337           0 : /* EOF */
+     338           0 : /* EOF */
+     339           0 : /* EOF */
+     340             : /* EOF */
+     341           0 : /* EOF */
+     342           0 : /* EOF */
+     343           0 : /* EOF */
+     344             : /* EOF */
+     345           0 : /* EOF */
+     346           0 : /* EOF */
+     347           0 : /* EOF */
+     348             : /* EOF */
+     349           0 : /* EOF */
+     350             : /* EOF */
+     351           0 : /* EOF */
+     352           0 : /* EOF */
+     353           0 : /* EOF */
+     354             : /* EOF */
+     355           0 : /* EOF */
+     356           0 : /* EOF */
+     357           0 : /* EOF */
+     358             : /* EOF */
+     359           0 : /* EOF */
+     360           0 : /* EOF */
+     361           0 : /* EOF */
+     362             : /* EOF */
+     363           0 : /* EOF */
+     364           0 : /* EOF */
+     365           0 : /* EOF */
+     366             : /* EOF */
+     367           0 : /* EOF */
+     368           0 : /* EOF */
+     369           0 : /* EOF */
+     370             : /* EOF */
+     371           0 : /* EOF */
+     372           0 : /* EOF */
+     373           0 : /* EOF */
+     374             : /* EOF */
+     375           0 : /* EOF */
+     376           0 : /* EOF */
+     377           0 : /* EOF */
+     378             : /* EOF */
+     379           0 : /* EOF */
+     380           0 : /* EOF */
+     381           0 : /* EOF */
+     382             : /* EOF */
+     383           0 : /* EOF */
+     384           0 : /* EOF */
+     385           0 : /* EOF */
+     386             : /* EOF */
+     387           0 : /* EOF */
+     388           0 : /* EOF */
+     389           0 : /* EOF */
+     390             : /* EOF */
+     391           0 : /* EOF */
+     392           0 : /* EOF */
+     393           0 : /* EOF */
+     394             : /* EOF */
+     395           0 : /* EOF */
+     396           0 : /* EOF */
+     397             : /* EOF */
+     398           0 : /* EOF */
+     399           0 : /* EOF */
+     400             : /* EOF */
+     401           0 : /* EOF */
+     402             : /* EOF */
+     403             : /* EOF */
+     404           0 : /* EOF */
+     405           0 : /* EOF */
+     406           0 : /* EOF */
+     407             : /* EOF */
+     408           0 : /* EOF */
+     409           0 : /* EOF */
+     410             : /* EOF */
+     411           0 : /* EOF */
+     412           0 : /* EOF */
+     413             : /* EOF */
+     414           0 : /* EOF */
+     415             : /* EOF */
+     416           0 : /* EOF */
+     417           0 : /* EOF */
+     418           0 : /* EOF */
+     419             : /* EOF */
+     420           0 : /* EOF */
+     421           0 : /* EOF */
+     422           0 : /* EOF */
+     423             : /* EOF */
+     424           0 : /* EOF */
+     425           0 : /* EOF */
+     426           0 : /* EOF */
+     427             : /* EOF */
+     428           0 : /* EOF */
+     429           0 : /* EOF */
+     430           0 : /* EOF */
+     431             : /* EOF */
+     432           0 : /* EOF */
+     433           0 : /* EOF */
+     434           0 : /* EOF */
+     435             : /* EOF */
+     436           0 : /* EOF */
+     437             : /* EOF */
+     438           0 : /* EOF */
+     439           0 : /* EOF */
+     440           0 : /* EOF */
+     441             : /* EOF */
+     442           0 : /* EOF */
+     443             : /* EOF */
+     444           0 : /* EOF */
+     445           0 : /* EOF */
+     446           0 : /* EOF */
+     447             : /* EOF */
+     448           0 : /* EOF */
+     449           0 : /* EOF */
+     450           0 : /* EOF */
+     451             : /* EOF */
+     452           0 : /* EOF */
+     453           0 : /* EOF */
+     454           0 : /* EOF */
+     455             : /* EOF */
+     456           0 : /* EOF */
+     457           0 : /* EOF */
+     458           0 : /* EOF */
+     459             : /* EOF */
+     460           0 : /* EOF */
+     461           0 : /* EOF */
+     462           0 : /* EOF */
+     463             : /* EOF */
+     464           0 : /* EOF */
+     465             : /* EOF */
+     466           0 : /* EOF */
+     467           0 : /* EOF */
+     468           0 : /* EOF */
+     469             : /* EOF */
+     470           0 : /* EOF */
+     471             : /* EOF */
+     472           0 : /* EOF */
+     473           0 : /* EOF */
+     474           0 : /* EOF */
+     475             : /* EOF */
+     476           0 : /* EOF */
+     477           0 : /* EOF */
+     478           0 : /* EOF */
+     479             : /* EOF */
+     480           0 : /* EOF */
+     481           0 : /* EOF */
+     482           0 : /* EOF */
+     483             : /* EOF */
+     484           0 : /* EOF */
+     485           0 : /* EOF */
+     486           0 : /* EOF */
+     487             : /* EOF */
+     488           0 : /* EOF */
+     489           0 : /* EOF */
+     490           0 : /* EOF */
+     491             : /* EOF */
+     492           0 : /* EOF */
+     493           0 : /* EOF */
+     494           0 : /* EOF */
+     495             : /* EOF */
+     496           0 : /* EOF */
+     497           0 : /* EOF */
+     498           0 : /* EOF */
+     499             : /* EOF */
+     500           0 : /* EOF */
+     501           0 : /* EOF */
+     502           0 : /* EOF */
+     503             : /* EOF */
+     504           0 : /* EOF */
+     505           0 : /* EOF */
+     506           0 : /* EOF */
+     507             : /* EOF */
+     508           0 : /* EOF */
+     509           0 : /* EOF */
+     510           0 : /* EOF */
+     511             : /* EOF */
+     512           0 : /* EOF */
+     513             : /* EOF */
+     514           0 : /* EOF */
+     515           0 : /* EOF */
+     516           0 : /* EOF */
+     517             : /* EOF */
+     518             : /* EOF */
+     519           0 : /* EOF */
+     520             : /* EOF */
+     521             : /* EOF */
+     522           0 : /* EOF */
+     523             : /* EOF */
+     524           0 : /* EOF */
+     525             : /* EOF */
+     526             : /* EOF */
+     527           0 : /* EOF */
+     528             : /* EOF */
+     529             : /* EOF */
+     530             : /* EOF */
+     531             : /* EOF */
+     532           0 : /* EOF */
+     533           0 : /* EOF */
+     534           0 : /* EOF */
+     535           0 : /* EOF */
+     536           0 : /* EOF */
+     537             : /* EOF */
+     538           0 : /* EOF */
+     539             : /* EOF */
+     540           0 : /* EOF */
+     541           0 : /* EOF */
+     542           0 : /* EOF */
+     543             : /* EOF */
+     544           0 : /* EOF */
+     545           0 : /* EOF */
+     546           0 : /* EOF */
+     547             : /* EOF */
+     548             : /* EOF */
+     549           0 : /* EOF */
+     550           0 : /* EOF */
+     551          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func-sort-c.html new file mode 100644 index 00000000..aef249ed --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerGDDR5XD0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func.html new file mode 100644 index 00000000..49f39f2a --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerGDDR5XD0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.gcov.html new file mode 100644 index 00000000..3455df81 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func-sort-c.html new file mode 100644 index 00000000..78000dfe --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13830.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR66insertE7Command4Rank9BankGroup4Bank0
_ZNK12CheckerGDDR624timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN12CheckerGDDR6C2Ev30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func.html new file mode 100644 index 00000000..5300d12e --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13830.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CheckerGDDR6C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN12CheckerGDDR66insertE7Command4Rank9BankGroup4Bank0
_ZNK12CheckerGDDR624timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.gcov.html new file mode 100644 index 00000000..e6b0187c --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.gcov.html @@ -0,0 +1,653 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13830.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37           0 : /* EOF */
+      38             : /* EOF */
+      39           0 : /* EOF */
+      40           0 : /* EOF */
+      41           0 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+      55             : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65             : /* EOF */
+      66           0 : /* EOF */
+      67             : /* EOF */
+      68           0 : /* EOF */
+      69           0 : /* EOF */
+      70             : /* EOF */
+      71           0 : /* EOF */
+      72             : /* EOF */
+      73           0 : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76             : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80             : /* EOF */
+      81           0 : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84             : /* EOF */
+      85           0 : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88             : /* EOF */
+      89           0 : /* EOF */
+      90           0 : /* EOF */
+      91           0 : /* EOF */
+      92             : /* EOF */
+      93           0 : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96             : /* EOF */
+      97           0 : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101           0 : /* EOF */
+     102             : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108           0 : /* EOF */
+     109           0 : /* EOF */
+     110           0 : /* EOF */
+     111             : /* EOF */
+     112           0 : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115             : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119             : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127             : /* EOF */
+     128           0 : /* EOF */
+     129           0 : /* EOF */
+     130           0 : /* EOF */
+     131             : /* EOF */
+     132           0 : /* EOF */
+     133           0 : /* EOF */
+     134           0 : /* EOF */
+     135             : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139             : /* EOF */
+     140           0 : /* EOF */
+     141             : /* EOF */
+     142           0 : /* EOF */
+     143           0 : /* EOF */
+     144           0 : /* EOF */
+     145             : /* EOF */
+     146           0 : /* EOF */
+     147           0 : /* EOF */
+     148           0 : /* EOF */
+     149             : /* EOF */
+     150           0 : /* EOF */
+     151           0 : /* EOF */
+     152           0 : /* EOF */
+     153             : /* EOF */
+     154           0 : /* EOF */
+     155           0 : /* EOF */
+     156           0 : /* EOF */
+     157             : /* EOF */
+     158           0 : /* EOF */
+     159           0 : /* EOF */
+     160           0 : /* EOF */
+     161             : /* EOF */
+     162           0 : /* EOF */
+     163           0 : /* EOF */
+     164           0 : /* EOF */
+     165             : /* EOF */
+     166           0 : /* EOF */
+     167           0 : /* EOF */
+     168           0 : /* EOF */
+     169             : /* EOF */
+     170           0 : /* EOF */
+     171           0 : /* EOF */
+     172           0 : /* EOF */
+     173             : /* EOF */
+     174           0 : /* EOF */
+     175           0 : /* EOF */
+     176           0 : /* EOF */
+     177             : /* EOF */
+     178           0 : /* EOF */
+     179           0 : /* EOF */
+     180           0 : /* EOF */
+     181             : /* EOF */
+     182           0 : /* EOF */
+     183           0 : /* EOF */
+     184           0 : /* EOF */
+     185             : /* EOF */
+     186           0 : /* EOF */
+     187           0 : /* EOF */
+     188           0 : /* EOF */
+     189             : /* EOF */
+     190           0 : /* EOF */
+     191           0 : /* EOF */
+     192           0 : /* EOF */
+     193             : /* EOF */
+     194           0 : /* EOF */
+     195             : /* EOF */
+     196           0 : /* EOF */
+     197           0 : /* EOF */
+     198           0 : /* EOF */
+     199             : /* EOF */
+     200           0 : /* EOF */
+     201           0 : /* EOF */
+     202           0 : /* EOF */
+     203             : /* EOF */
+     204           0 : /* EOF */
+     205           0 : /* EOF */
+     206           0 : /* EOF */
+     207             : /* EOF */
+     208           0 : /* EOF */
+     209           0 : /* EOF */
+     210           0 : /* EOF */
+     211             : /* EOF */
+     212           0 : /* EOF */
+     213           0 : /* EOF */
+     214           0 : /* EOF */
+     215             : /* EOF */
+     216           0 : /* EOF */
+     217           0 : /* EOF */
+     218           0 : /* EOF */
+     219             : /* EOF */
+     220           0 : /* EOF */
+     221           0 : /* EOF */
+     222           0 : /* EOF */
+     223             : /* EOF */
+     224           0 : /* EOF */
+     225           0 : /* EOF */
+     226           0 : /* EOF */
+     227             : /* EOF */
+     228           0 : /* EOF */
+     229           0 : /* EOF */
+     230           0 : /* EOF */
+     231             : /* EOF */
+     232           0 : /* EOF */
+     233           0 : /* EOF */
+     234           0 : /* EOF */
+     235             : /* EOF */
+     236           0 : /* EOF */
+     237           0 : /* EOF */
+     238           0 : /* EOF */
+     239             : /* EOF */
+     240           0 : /* EOF */
+     241           0 : /* EOF */
+     242           0 : /* EOF */
+     243             : /* EOF */
+     244           0 : /* EOF */
+     245           0 : /* EOF */
+     246           0 : /* EOF */
+     247             : /* EOF */
+     248           0 : /* EOF */
+     249           0 : /* EOF */
+     250             : /* EOF */
+     251           0 : /* EOF */
+     252             : /* EOF */
+     253           0 : /* EOF */
+     254           0 : /* EOF */
+     255           0 : /* EOF */
+     256             : /* EOF */
+     257           0 : /* EOF */
+     258           0 : /* EOF */
+     259           0 : /* EOF */
+     260             : /* EOF */
+     261           0 : /* EOF */
+     262           0 : /* EOF */
+     263           0 : /* EOF */
+     264             : /* EOF */
+     265           0 : /* EOF */
+     266           0 : /* EOF */
+     267           0 : /* EOF */
+     268             : /* EOF */
+     269           0 : /* EOF */
+     270           0 : /* EOF */
+     271           0 : /* EOF */
+     272             : /* EOF */
+     273           0 : /* EOF */
+     274             : /* EOF */
+     275           0 : /* EOF */
+     276           0 : /* EOF */
+     277           0 : /* EOF */
+     278             : /* EOF */
+     279           0 : /* EOF */
+     280           0 : /* EOF */
+     281           0 : /* EOF */
+     282             : /* EOF */
+     283           0 : /* EOF */
+     284           0 : /* EOF */
+     285           0 : /* EOF */
+     286             : /* EOF */
+     287           0 : /* EOF */
+     288           0 : /* EOF */
+     289           0 : /* EOF */
+     290             : /* EOF */
+     291           0 : /* EOF */
+     292           0 : /* EOF */
+     293           0 : /* EOF */
+     294             : /* EOF */
+     295           0 : /* EOF */
+     296           0 : /* EOF */
+     297           0 : /* EOF */
+     298             : /* EOF */
+     299           0 : /* EOF */
+     300           0 : /* EOF */
+     301           0 : /* EOF */
+     302             : /* EOF */
+     303           0 : /* EOF */
+     304           0 : /* EOF */
+     305           0 : /* EOF */
+     306             : /* EOF */
+     307           0 : /* EOF */
+     308             : /* EOF */
+     309           0 : /* EOF */
+     310           0 : /* EOF */
+     311           0 : /* EOF */
+     312             : /* EOF */
+     313           0 : /* EOF */
+     314           0 : /* EOF */
+     315           0 : /* EOF */
+     316             : /* EOF */
+     317           0 : /* EOF */
+     318           0 : /* EOF */
+     319           0 : /* EOF */
+     320             : /* EOF */
+     321           0 : /* EOF */
+     322           0 : /* EOF */
+     323           0 : /* EOF */
+     324             : /* EOF */
+     325           0 : /* EOF */
+     326           0 : /* EOF */
+     327           0 : /* EOF */
+     328             : /* EOF */
+     329           0 : /* EOF */
+     330           0 : /* EOF */
+     331           0 : /* EOF */
+     332             : /* EOF */
+     333           0 : /* EOF */
+     334           0 : /* EOF */
+     335           0 : /* EOF */
+     336             : /* EOF */
+     337           0 : /* EOF */
+     338           0 : /* EOF */
+     339           0 : /* EOF */
+     340             : /* EOF */
+     341           0 : /* EOF */
+     342           0 : /* EOF */
+     343           0 : /* EOF */
+     344             : /* EOF */
+     345           0 : /* EOF */
+     346             : /* EOF */
+     347           0 : /* EOF */
+     348           0 : /* EOF */
+     349           0 : /* EOF */
+     350             : /* EOF */
+     351           0 : /* EOF */
+     352           0 : /* EOF */
+     353           0 : /* EOF */
+     354             : /* EOF */
+     355           0 : /* EOF */
+     356           0 : /* EOF */
+     357           0 : /* EOF */
+     358             : /* EOF */
+     359           0 : /* EOF */
+     360           0 : /* EOF */
+     361           0 : /* EOF */
+     362             : /* EOF */
+     363           0 : /* EOF */
+     364           0 : /* EOF */
+     365           0 : /* EOF */
+     366             : /* EOF */
+     367           0 : /* EOF */
+     368           0 : /* EOF */
+     369           0 : /* EOF */
+     370             : /* EOF */
+     371           0 : /* EOF */
+     372           0 : /* EOF */
+     373           0 : /* EOF */
+     374             : /* EOF */
+     375           0 : /* EOF */
+     376           0 : /* EOF */
+     377           0 : /* EOF */
+     378             : /* EOF */
+     379           0 : /* EOF */
+     380           0 : /* EOF */
+     381           0 : /* EOF */
+     382             : /* EOF */
+     383           0 : /* EOF */
+     384           0 : /* EOF */
+     385           0 : /* EOF */
+     386             : /* EOF */
+     387           0 : /* EOF */
+     388           0 : /* EOF */
+     389           0 : /* EOF */
+     390             : /* EOF */
+     391           0 : /* EOF */
+     392           0 : /* EOF */
+     393             : /* EOF */
+     394           0 : /* EOF */
+     395           0 : /* EOF */
+     396             : /* EOF */
+     397           0 : /* EOF */
+     398             : /* EOF */
+     399             : /* EOF */
+     400           0 : /* EOF */
+     401           0 : /* EOF */
+     402           0 : /* EOF */
+     403             : /* EOF */
+     404           0 : /* EOF */
+     405           0 : /* EOF */
+     406             : /* EOF */
+     407           0 : /* EOF */
+     408             : /* EOF */
+     409           0 : /* EOF */
+     410           0 : /* EOF */
+     411           0 : /* EOF */
+     412             : /* EOF */
+     413           0 : /* EOF */
+     414           0 : /* EOF */
+     415           0 : /* EOF */
+     416             : /* EOF */
+     417           0 : /* EOF */
+     418           0 : /* EOF */
+     419           0 : /* EOF */
+     420             : /* EOF */
+     421           0 : /* EOF */
+     422           0 : /* EOF */
+     423           0 : /* EOF */
+     424             : /* EOF */
+     425           0 : /* EOF */
+     426           0 : /* EOF */
+     427           0 : /* EOF */
+     428             : /* EOF */
+     429           0 : /* EOF */
+     430           0 : /* EOF */
+     431           0 : /* EOF */
+     432             : /* EOF */
+     433           0 : /* EOF */
+     434           0 : /* EOF */
+     435           0 : /* EOF */
+     436             : /* EOF */
+     437           0 : /* EOF */
+     438           0 : /* EOF */
+     439           0 : /* EOF */
+     440             : /* EOF */
+     441           0 : /* EOF */
+     442             : /* EOF */
+     443           0 : /* EOF */
+     444           0 : /* EOF */
+     445           0 : /* EOF */
+     446             : /* EOF */
+     447           0 : /* EOF */
+     448             : /* EOF */
+     449           0 : /* EOF */
+     450           0 : /* EOF */
+     451           0 : /* EOF */
+     452             : /* EOF */
+     453           0 : /* EOF */
+     454           0 : /* EOF */
+     455           0 : /* EOF */
+     456             : /* EOF */
+     457           0 : /* EOF */
+     458           0 : /* EOF */
+     459           0 : /* EOF */
+     460             : /* EOF */
+     461           0 : /* EOF */
+     462           0 : /* EOF */
+     463           0 : /* EOF */
+     464             : /* EOF */
+     465           0 : /* EOF */
+     466           0 : /* EOF */
+     467           0 : /* EOF */
+     468             : /* EOF */
+     469           0 : /* EOF */
+     470           0 : /* EOF */
+     471           0 : /* EOF */
+     472             : /* EOF */
+     473           0 : /* EOF */
+     474           0 : /* EOF */
+     475           0 : /* EOF */
+     476             : /* EOF */
+     477           0 : /* EOF */
+     478           0 : /* EOF */
+     479           0 : /* EOF */
+     480             : /* EOF */
+     481           0 : /* EOF */
+     482           0 : /* EOF */
+     483           0 : /* EOF */
+     484             : /* EOF */
+     485           0 : /* EOF */
+     486             : /* EOF */
+     487           0 : /* EOF */
+     488           0 : /* EOF */
+     489           0 : /* EOF */
+     490             : /* EOF */
+     491           0 : /* EOF */
+     492             : /* EOF */
+     493           0 : /* EOF */
+     494           0 : /* EOF */
+     495           0 : /* EOF */
+     496             : /* EOF */
+     497           0 : /* EOF */
+     498           0 : /* EOF */
+     499           0 : /* EOF */
+     500             : /* EOF */
+     501           0 : /* EOF */
+     502           0 : /* EOF */
+     503           0 : /* EOF */
+     504             : /* EOF */
+     505           0 : /* EOF */
+     506           0 : /* EOF */
+     507           0 : /* EOF */
+     508             : /* EOF */
+     509           0 : /* EOF */
+     510           0 : /* EOF */
+     511           0 : /* EOF */
+     512             : /* EOF */
+     513           0 : /* EOF */
+     514           0 : /* EOF */
+     515           0 : /* EOF */
+     516             : /* EOF */
+     517           0 : /* EOF */
+     518           0 : /* EOF */
+     519           0 : /* EOF */
+     520             : /* EOF */
+     521           0 : /* EOF */
+     522           0 : /* EOF */
+     523           0 : /* EOF */
+     524             : /* EOF */
+     525           0 : /* EOF */
+     526           0 : /* EOF */
+     527           0 : /* EOF */
+     528             : /* EOF */
+     529           0 : /* EOF */
+     530           0 : /* EOF */
+     531           0 : /* EOF */
+     532             : /* EOF */
+     533           0 : /* EOF */
+     534             : /* EOF */
+     535           0 : /* EOF */
+     536           0 : /* EOF */
+     537           0 : /* EOF */
+     538             : /* EOF */
+     539             : /* EOF */
+     540           0 : /* EOF */
+     541             : /* EOF */
+     542             : /* EOF */
+     543           0 : /* EOF */
+     544             : /* EOF */
+     545           0 : /* EOF */
+     546             : /* EOF */
+     547             : /* EOF */
+     548           0 : /* EOF */
+     549             : /* EOF */
+     550             : /* EOF */
+     551             : /* EOF */
+     552             : /* EOF */
+     553           0 : /* EOF */
+     554           0 : /* EOF */
+     555           0 : /* EOF */
+     556           0 : /* EOF */
+     557           0 : /* EOF */
+     558             : /* EOF */
+     559           0 : /* EOF */
+     560             : /* EOF */
+     561           0 : /* EOF */
+     562           0 : /* EOF */
+     563           0 : /* EOF */
+     564             : /* EOF */
+     565             : /* EOF */
+     566           0 : /* EOF */
+     567           0 : /* EOF */
+     568          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func-sort-c.html new file mode 100644 index 00000000..8f99fe25 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR6D0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func.html new file mode 100644 index 00000000..fa586287 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR6D0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.gcov.html new file mode 100644 index 00000000..0f5b2cc0 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func-sort-c.html new file mode 100644 index 00000000..42eed417 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17633951.9 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerHBM2C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerHBM26insertE7Command4Rank9BankGroup4Bank58380
_ZNK11CheckerHBM224timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank1250781
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func.html new file mode 100644 index 00000000..7ee12337 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17633951.9 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerHBM2C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerHBM26insertE7Command4Rank9BankGroup4Bank58380
_ZNK11CheckerHBM224timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank1250781
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.gcov.html new file mode 100644 index 00000000..d62a5cbc --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.gcov.html @@ -0,0 +1,601 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17633951.9 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37         266 : /* EOF */
+      38             : /* EOF */
+      39          14 : /* EOF */
+      40          14 : /* EOF */
+      41          14 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44          56 : /* EOF */
+      45          56 : /* EOF */
+      46          56 : /* EOF */
+      47          56 : /* EOF */
+      48          56 : /* EOF */
+      49          56 : /* EOF */
+      50          56 : /* EOF */
+      51             : /* EOF */
+      52          42 : /* EOF */
+      53          56 : /* EOF */
+      54             : /* EOF */
+      55          42 : /* EOF */
+      56          70 : /* EOF */
+      57          28 : /* EOF */
+      58          56 : /* EOF */
+      59          84 : /* EOF */
+      60          84 : /* EOF */
+      61          56 : /* EOF */
+      62          56 : /* EOF */
+      63          14 : /* EOF */
+      64             : /* EOF */
+      65     1250781 : /* EOF */
+      66             : /* EOF */
+      67     1250781 : /* EOF */
+      68     2501562 : /* EOF */
+      69             : /* EOF */
+      70     1250781 : /* EOF */
+      71             : /* EOF */
+      72      613599 : /* EOF */
+      73      204533 : /* EOF */
+      74     1022665 : /* EOF */
+      75             : /* EOF */
+      76      613599 : /* EOF */
+      77      204533 : /* EOF */
+      78           0 : /* EOF */
+      79             : /* EOF */
+      80      613599 : /* EOF */
+      81      204533 : /* EOF */
+      82           0 : /* EOF */
+      83             : /* EOF */
+      84      613599 : /* EOF */
+      85      204533 : /* EOF */
+      86      813624 : /* EOF */
+      87             : /* EOF */
+      88      613599 : /* EOF */
+      89      204533 : /* EOF */
+      90      817796 : /* EOF */
+      91             : /* EOF */
+      92      204533 : /* EOF */
+      93             : /* EOF */
+      94      613599 : /* EOF */
+      95      204533 : /* EOF */
+      96           0 : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99      613599 : /* EOF */
+     100      204533 : /* EOF */
+     101           0 : /* EOF */
+     102             : /* EOF */
+     103      613599 : /* EOF */
+     104      204533 : /* EOF */
+     105           0 : /* EOF */
+     106             : /* EOF */
+     107      613599 : /* EOF */
+     108      204533 : /* EOF */
+     109      818132 : /* EOF */
+     110             : /* EOF */
+     111      613599 : /* EOF */
+     112      204533 : /* EOF */
+     113      818132 : /* EOF */
+     114             : /* EOF */
+     115      409066 : /* EOF */
+     116      204533 : /* EOF */
+     117           0 : /* EOF */
+     118             : /* EOF */
+     119      818132 : /* EOF */
+     120             : /* EOF */
+     121     1046248 : /* EOF */
+     122             : /* EOF */
+     123     2143428 : /* EOF */
+     124      714476 : /* EOF */
+     125     3572380 : /* EOF */
+     126             : /* EOF */
+     127     2143428 : /* EOF */
+     128      714476 : /* EOF */
+     129           0 : /* EOF */
+     130             : /* EOF */
+     131     2143428 : /* EOF */
+     132      714476 : /* EOF */
+     133     2856784 : /* EOF */
+     134             : /* EOF */
+     135     2143428 : /* EOF */
+     136      714476 : /* EOF */
+     137           0 : /* EOF */
+     138             : /* EOF */
+     139     2143428 : /* EOF */
+     140      714476 : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143     2143428 : /* EOF */
+     144      714476 : /* EOF */
+     145     2853592 : /* EOF */
+     146             : /* EOF */
+     147     2143428 : /* EOF */
+     148      714476 : /* EOF */
+     149     2857736 : /* EOF */
+     150             : /* EOF */
+     151     1428952 : /* EOF */
+     152      714476 : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155     2857904 : /* EOF */
+     156             : /* EOF */
+     157      331772 : /* EOF */
+     158             : /* EOF */
+     159      988134 : /* EOF */
+     160      329378 : /* EOF */
+     161     1312304 : /* EOF */
+     162             : /* EOF */
+     163      988134 : /* EOF */
+     164      329378 : /* EOF */
+     165     1317288 : /* EOF */
+     166             : /* EOF */
+     167      988134 : /* EOF */
+     168      329378 : /* EOF */
+     169     1317456 : /* EOF */
+     170             : /* EOF */
+     171      988134 : /* EOF */
+     172      329378 : /* EOF */
+     173     1485246 : /* EOF */
+     174             : /* EOF */
+     175      988134 : /* EOF */
+     176      329378 : /* EOF */
+     177     1964760 : /* EOF */
+     178             : /* EOF */
+     179      988134 : /* EOF */
+     180      329378 : /* EOF */
+     181           0 : /* EOF */
+     182             : /* EOF */
+     183      988134 : /* EOF */
+     184      329378 : /* EOF */
+     185     1500345 : /* EOF */
+     186             : /* EOF */
+     187      658756 : /* EOF */
+     188      329378 : /* EOF */
+     189           0 : /* EOF */
+     190             : /* EOF */
+     191      658756 : /* EOF */
+     192      329378 : /* EOF */
+     193           0 : /* EOF */
+     194             : /* EOF */
+     195      988134 : /* EOF */
+     196      329378 : /* EOF */
+     197     1500345 : /* EOF */
+     198             : /* EOF */
+     199      988134 : /* EOF */
+     200      329378 : /* EOF */
+     201           0 : /* EOF */
+     202             : /* EOF */
+     203      988134 : /* EOF */
+     204      329378 : /* EOF */
+     205           0 : /* EOF */
+     206             : /* EOF */
+     207      658756 : /* EOF */
+     208      329378 : /* EOF */
+     209           0 : /* EOF */
+     210             : /* EOF */
+     211      988134 : /* EOF */
+     212     1975260 : /* EOF */
+     213             : /* EOF */
+     214     1317512 : /* EOF */
+     215             : /* EOF */
+     216        2394 : /* EOF */
+     217             : /* EOF */
+     218           0 : /* EOF */
+     219           0 : /* EOF */
+     220           0 : /* EOF */
+     221             : /* EOF */
+     222           0 : /* EOF */
+     223           0 : /* EOF */
+     224           0 : /* EOF */
+     225             : /* EOF */
+     226           0 : /* EOF */
+     227           0 : /* EOF */
+     228           0 : /* EOF */
+     229             : /* EOF */
+     230           0 : /* EOF */
+     231           0 : /* EOF */
+     232           0 : /* EOF */
+     233             : /* EOF */
+     234           0 : /* EOF */
+     235             : /* EOF */
+     236        2394 : /* EOF */
+     237             : /* EOF */
+     238        5082 : /* EOF */
+     239        1694 : /* EOF */
+     240        8470 : /* EOF */
+     241             : /* EOF */
+     242        5082 : /* EOF */
+     243        1694 : /* EOF */
+     244           0 : /* EOF */
+     245             : /* EOF */
+     246        5082 : /* EOF */
+     247        1694 : /* EOF */
+     248        6776 : /* EOF */
+     249             : /* EOF */
+     250        5082 : /* EOF */
+     251        1694 : /* EOF */
+     252           0 : /* EOF */
+     253             : /* EOF */
+     254        5082 : /* EOF */
+     255        1694 : /* EOF */
+     256        6776 : /* EOF */
+     257             : /* EOF */
+     258        3388 : /* EOF */
+     259        1694 : /* EOF */
+     260           0 : /* EOF */
+     261             : /* EOF */
+     262        5082 : /* EOF */
+     263        1694 : /* EOF */
+     264           0 : /* EOF */
+     265             : /* EOF */
+     266        6776 : /* EOF */
+     267             : /* EOF */
+     268         700 : /* EOF */
+     269             : /* EOF */
+     270        2100 : /* EOF */
+     271         700 : /* EOF */
+     272        3500 : /* EOF */
+     273             : /* EOF */
+     274        2100 : /* EOF */
+     275         700 : /* EOF */
+     276        3500 : /* EOF */
+     277             : /* EOF */
+     278        2100 : /* EOF */
+     279         700 : /* EOF */
+     280        3500 : /* EOF */
+     281             : /* EOF */
+     282        2100 : /* EOF */
+     283         700 : /* EOF */
+     284           0 : /* EOF */
+     285             : /* EOF */
+     286        2100 : /* EOF */
+     287         700 : /* EOF */
+     288        2800 : /* EOF */
+     289             : /* EOF */
+     290        1400 : /* EOF */
+     291         700 : /* EOF */
+     292           0 : /* EOF */
+     293             : /* EOF */
+     294        2100 : /* EOF */
+     295         700 : /* EOF */
+     296        2576 : /* EOF */
+     297             : /* EOF */
+     298        2100 : /* EOF */
+     299         700 : /* EOF */
+     300           0 : /* EOF */
+     301             : /* EOF */
+     302        1400 : /* EOF */
+     303         700 : /* EOF */
+     304           0 : /* EOF */
+     305             : /* EOF */
+     306        2800 : /* EOF */
+     307             : /* EOF */
+     308           0 : /* EOF */
+     309             : /* EOF */
+     310           0 : /* EOF */
+     311           0 : /* EOF */
+     312           0 : /* EOF */
+     313             : /* EOF */
+     314           0 : /* EOF */
+     315           0 : /* EOF */
+     316           0 : /* EOF */
+     317             : /* EOF */
+     318           0 : /* EOF */
+     319           0 : /* EOF */
+     320           0 : /* EOF */
+     321             : /* EOF */
+     322           0 : /* EOF */
+     323           0 : /* EOF */
+     324           0 : /* EOF */
+     325             : /* EOF */
+     326           0 : /* EOF */
+     327           0 : /* EOF */
+     328           0 : /* EOF */
+     329             : /* EOF */
+     330           0 : /* EOF */
+     331           0 : /* EOF */
+     332           0 : /* EOF */
+     333             : /* EOF */
+     334           0 : /* EOF */
+     335           0 : /* EOF */
+     336           0 : /* EOF */
+     337             : /* EOF */
+     338           0 : /* EOF */
+     339           0 : /* EOF */
+     340           0 : /* EOF */
+     341             : /* EOF */
+     342           0 : /* EOF */
+     343           0 : /* EOF */
+     344           0 : /* EOF */
+     345             : /* EOF */
+     346           0 : /* EOF */
+     347           0 : /* EOF */
+     348           0 : /* EOF */
+     349             : /* EOF */
+     350           0 : /* EOF */
+     351           0 : /* EOF */
+     352           0 : /* EOF */
+     353             : /* EOF */
+     354           0 : /* EOF */
+     355           0 : /* EOF */
+     356             : /* EOF */
+     357           0 : /* EOF */
+     358           0 : /* EOF */
+     359             : /* EOF */
+     360           0 : /* EOF */
+     361             : /* EOF */
+     362             : /* EOF */
+     363           0 : /* EOF */
+     364           0 : /* EOF */
+     365           0 : /* EOF */
+     366             : /* EOF */
+     367           0 : /* EOF */
+     368           0 : /* EOF */
+     369             : /* EOF */
+     370           0 : /* EOF */
+     371             : /* EOF */
+     372           0 : /* EOF */
+     373             : /* EOF */
+     374           0 : /* EOF */
+     375           0 : /* EOF */
+     376           0 : /* EOF */
+     377             : /* EOF */
+     378           0 : /* EOF */
+     379           0 : /* EOF */
+     380           0 : /* EOF */
+     381             : /* EOF */
+     382           0 : /* EOF */
+     383           0 : /* EOF */
+     384           0 : /* EOF */
+     385             : /* EOF */
+     386           0 : /* EOF */
+     387           0 : /* EOF */
+     388           0 : /* EOF */
+     389             : /* EOF */
+     390           0 : /* EOF */
+     391           0 : /* EOF */
+     392           0 : /* EOF */
+     393             : /* EOF */
+     394           0 : /* EOF */
+     395             : /* EOF */
+     396           0 : /* EOF */
+     397             : /* EOF */
+     398           0 : /* EOF */
+     399           0 : /* EOF */
+     400           0 : /* EOF */
+     401             : /* EOF */
+     402           0 : /* EOF */
+     403             : /* EOF */
+     404           0 : /* EOF */
+     405             : /* EOF */
+     406           0 : /* EOF */
+     407           0 : /* EOF */
+     408           0 : /* EOF */
+     409             : /* EOF */
+     410           0 : /* EOF */
+     411           0 : /* EOF */
+     412           0 : /* EOF */
+     413             : /* EOF */
+     414           0 : /* EOF */
+     415           0 : /* EOF */
+     416           0 : /* EOF */
+     417             : /* EOF */
+     418           0 : /* EOF */
+     419           0 : /* EOF */
+     420           0 : /* EOF */
+     421             : /* EOF */
+     422           0 : /* EOF */
+     423           0 : /* EOF */
+     424           0 : /* EOF */
+     425             : /* EOF */
+     426           0 : /* EOF */
+     427             : /* EOF */
+     428           0 : /* EOF */
+     429             : /* EOF */
+     430           0 : /* EOF */
+     431           0 : /* EOF */
+     432           0 : /* EOF */
+     433             : /* EOF */
+     434           0 : /* EOF */
+     435             : /* EOF */
+     436           0 : /* EOF */
+     437             : /* EOF */
+     438           0 : /* EOF */
+     439           0 : /* EOF */
+     440           0 : /* EOF */
+     441             : /* EOF */
+     442           0 : /* EOF */
+     443           0 : /* EOF */
+     444           0 : /* EOF */
+     445             : /* EOF */
+     446           0 : /* EOF */
+     447           0 : /* EOF */
+     448           0 : /* EOF */
+     449             : /* EOF */
+     450           0 : /* EOF */
+     451           0 : /* EOF */
+     452           0 : /* EOF */
+     453             : /* EOF */
+     454           0 : /* EOF */
+     455           0 : /* EOF */
+     456           0 : /* EOF */
+     457             : /* EOF */
+     458           0 : /* EOF */
+     459           0 : /* EOF */
+     460           0 : /* EOF */
+     461             : /* EOF */
+     462           0 : /* EOF */
+     463           0 : /* EOF */
+     464           0 : /* EOF */
+     465             : /* EOF */
+     466           0 : /* EOF */
+     467           0 : /* EOF */
+     468           0 : /* EOF */
+     469             : /* EOF */
+     470           0 : /* EOF */
+     471           0 : /* EOF */
+     472           0 : /* EOF */
+     473             : /* EOF */
+     474           0 : /* EOF */
+     475             : /* EOF */
+     476           0 : /* EOF */
+     477             : /* EOF */
+     478           0 : /* EOF */
+     479           0 : /* EOF */
+     480           0 : /* EOF */
+     481             : /* EOF */
+     482           0 : /* EOF */
+     483             : /* EOF */
+     484             : /* EOF */
+     485           0 : /* EOF */
+     486             : /* EOF */
+     487     1250781 : /* EOF */
+     488             : /* EOF */
+     489             : /* EOF */
+     490       58380 : /* EOF */
+     491             : /* EOF */
+     492             : /* EOF */
+     493             : /* EOF */
+     494             : /* EOF */
+     495      291900 : /* EOF */
+     496      291900 : /* EOF */
+     497      233520 : /* EOF */
+     498      175140 : /* EOF */
+     499             : /* EOF */
+     500       58380 : /* EOF */
+     501       28672 : /* EOF */
+     502       29708 : /* EOF */
+     503       88200 : /* EOF */
+     504             : /* EOF */
+     505         308 : /* EOF */
+     506             : /* EOF */
+     507       58380 : /* EOF */
+     508             : /* EOF */
+     509       88200 : /* EOF */
+     510       29344 : /* EOF */
+     511       58800 : /* EOF */
+     512             : /* EOF */
+     513             : /* EOF */
+     514       58380 : /* EOF */
+     515           0 : /* EOF */
+     516       58470 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func-sort-c.html new file mode 100644 index 00000000..68ec3d7b --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerHBM2D0Ev14
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func.html new file mode 100644 index 00000000..45ac0a30 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerHBM2D0Ev14
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.gcov.html new file mode 100644 index 00000000..4234ac88 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          56 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func-sort-c.html new file mode 100644 index 00000000..7da042be --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17734551.3 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13CheckerLPDDR4C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13CheckerLPDDR46insertE7Command4Rank9BankGroup4Bank191436
_ZNK13CheckerLPDDR424timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank4496580
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func.html new file mode 100644 index 00000000..f18f422b --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17734551.3 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13CheckerLPDDR4C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13CheckerLPDDR46insertE7Command4Rank9BankGroup4Bank191436
_ZNK13CheckerLPDDR424timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank4496580
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.gcov.html new file mode 100644 index 00000000..e590d42c --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.gcov.html @@ -0,0 +1,600 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17734551.3 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37         276 : /* EOF */
+      38             : /* EOF */
+      39          12 : /* EOF */
+      40          12 : /* EOF */
+      41          12 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44          48 : /* EOF */
+      45          48 : /* EOF */
+      46          48 : /* EOF */
+      47          48 : /* EOF */
+      48          48 : /* EOF */
+      49             : /* EOF */
+      50          36 : /* EOF */
+      51             : /* EOF */
+      52          36 : /* EOF */
+      53          84 : /* EOF */
+      54          60 : /* EOF */
+      55          60 : /* EOF */
+      56          60 : /* EOF */
+      57          60 : /* EOF */
+      58          72 : /* EOF */
+      59          84 : /* EOF */
+      60          72 : /* EOF */
+      61          48 : /* EOF */
+      62          36 : /* EOF */
+      63          84 : /* EOF */
+      64         120 : /* EOF */
+      65         144 : /* EOF */
+      66          36 : /* EOF */
+      67          12 : /* EOF */
+      68             : /* EOF */
+      69     4496580 : /* EOF */
+      70             : /* EOF */
+      71     4496580 : /* EOF */
+      72     8993160 : /* EOF */
+      73             : /* EOF */
+      74     4496580 : /* EOF */
+      75             : /* EOF */
+      76     1753452 : /* EOF */
+      77      584484 : /* EOF */
+      78     2337936 : /* EOF */
+      79             : /* EOF */
+      80     1753452 : /* EOF */
+      81      584484 : /* EOF */
+      82      632112 : /* EOF */
+      83             : /* EOF */
+      84     1753452 : /* EOF */
+      85      584484 : /* EOF */
+      86           0 : /* EOF */
+      87             : /* EOF */
+      88     1753452 : /* EOF */
+      89      584484 : /* EOF */
+      90     2337696 : /* EOF */
+      91             : /* EOF */
+      92     1753452 : /* EOF */
+      93      584484 : /* EOF */
+      94           0 : /* EOF */
+      95             : /* EOF */
+      96      584484 : /* EOF */
+      97             : /* EOF */
+      98     1706976 : /* EOF */
+      99      568992 : /* EOF */
+     100     2844960 : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103     1753452 : /* EOF */
+     104      584484 : /* EOF */
+     105     2337936 : /* EOF */
+     106             : /* EOF */
+     107     1753452 : /* EOF */
+     108      584484 : /* EOF */
+     109           0 : /* EOF */
+     110             : /* EOF */
+     111     1753452 : /* EOF */
+     112      584484 : /* EOF */
+     113     2337936 : /* EOF */
+     114             : /* EOF */
+     115     1753452 : /* EOF */
+     116      584484 : /* EOF */
+     117           0 : /* EOF */
+     118             : /* EOF */
+     119     1753452 : /* EOF */
+     120      584484 : /* EOF */
+     121           0 : /* EOF */
+     122             : /* EOF */
+     123     3912096 : /* EOF */
+     124             : /* EOF */
+     125     5176980 : /* EOF */
+     126     1725660 : /* EOF */
+     127     6902640 : /* EOF */
+     128             : /* EOF */
+     129     5176980 : /* EOF */
+     130     1725660 : /* EOF */
+     131           0 : /* EOF */
+     132             : /* EOF */
+     133     5176980 : /* EOF */
+     134     1725660 : /* EOF */
+     135           0 : /* EOF */
+     136             : /* EOF */
+     137     5176980 : /* EOF */
+     138     1725660 : /* EOF */
+     139           0 : /* EOF */
+     140             : /* EOF */
+     141     5176980 : /* EOF */
+     142     1725660 : /* EOF */
+     143           0 : /* EOF */
+     144             : /* EOF */
+     145     5176980 : /* EOF */
+     146     1725660 : /* EOF */
+     147     6902160 : /* EOF */
+     148             : /* EOF */
+     149     5176980 : /* EOF */
+     150     1725660 : /* EOF */
+     151           0 : /* EOF */
+     152             : /* EOF */
+     153     5176980 : /* EOF */
+     154     1725660 : /* EOF */
+     155     6247344 : /* EOF */
+     156             : /* EOF */
+     157     5176980 : /* EOF */
+     158     1725660 : /* EOF */
+     159           0 : /* EOF */
+     160             : /* EOF */
+     161     5176980 : /* EOF */
+     162     1725660 : /* EOF */
+     163           0 : /* EOF */
+     164             : /* EOF */
+     165     2186436 : /* EOF */
+     166             : /* EOF */
+     167     6262920 : /* EOF */
+     168     2087640 : /* EOF */
+     169     8345856 : /* EOF */
+     170             : /* EOF */
+     171     6262920 : /* EOF */
+     172     2087640 : /* EOF */
+     173     8350512 : /* EOF */
+     174             : /* EOF */
+     175     6262920 : /* EOF */
+     176     2087640 : /* EOF */
+     177     8173920 : /* EOF */
+     178             : /* EOF */
+     179     6262920 : /* EOF */
+     180     2087640 : /* EOF */
+     181     8331072 : /* EOF */
+     182             : /* EOF */
+     183     6262920 : /* EOF */
+     184     2087640 : /* EOF */
+     185    12518784 : /* EOF */
+     186             : /* EOF */
+     187     6262920 : /* EOF */
+     188     2087640 : /* EOF */
+     189           0 : /* EOF */
+     190             : /* EOF */
+     191     6262920 : /* EOF */
+     192     2087640 : /* EOF */
+     193           0 : /* EOF */
+     194             : /* EOF */
+     195     6262920 : /* EOF */
+     196     2087640 : /* EOF */
+     197           0 : /* EOF */
+     198             : /* EOF */
+     199     6262920 : /* EOF */
+     200     2087640 : /* EOF */
+     201           0 : /* EOF */
+     202             : /* EOF */
+     203     6262920 : /* EOF */
+     204     2087640 : /* EOF */
+     205    12518784 : /* EOF */
+     206             : /* EOF */
+     207     6262920 : /* EOF */
+     208     2087640 : /* EOF */
+     209    12518784 : /* EOF */
+     210             : /* EOF */
+     211     6262920 : /* EOF */
+     212     2087640 : /* EOF */
+     213           0 : /* EOF */
+     214             : /* EOF */
+     215     6262920 : /* EOF */
+     216    12521664 : /* EOF */
+     217             : /* EOF */
+     218       98796 : /* EOF */
+     219             : /* EOF */
+     220       40788 : /* EOF */
+     221       13596 : /* EOF */
+     222       81576 : /* EOF */
+     223             : /* EOF */
+     224       40788 : /* EOF */
+     225       13596 : /* EOF */
+     226       52848 : /* EOF */
+     227             : /* EOF */
+     228       40788 : /* EOF */
+     229       13596 : /* EOF */
+     230       54384 : /* EOF */
+     231             : /* EOF */
+     232       40788 : /* EOF */
+     233       13596 : /* EOF */
+     234       54336 : /* EOF */
+     235             : /* EOF */
+     236       40788 : /* EOF */
+     237       13596 : /* EOF */
+     238           0 : /* EOF */
+     239             : /* EOF */
+     240       85200 : /* EOF */
+     241             : /* EOF */
+     242           0 : /* EOF */
+     243           0 : /* EOF */
+     244           0 : /* EOF */
+     245             : /* EOF */
+     246           0 : /* EOF */
+     247           0 : /* EOF */
+     248           0 : /* EOF */
+     249             : /* EOF */
+     250           0 : /* EOF */
+     251           0 : /* EOF */
+     252           0 : /* EOF */
+     253             : /* EOF */
+     254           0 : /* EOF */
+     255           0 : /* EOF */
+     256           0 : /* EOF */
+     257             : /* EOF */
+     258           0 : /* EOF */
+     259           0 : /* EOF */
+     260           0 : /* EOF */
+     261             : /* EOF */
+     262           0 : /* EOF */
+     263           0 : /* EOF */
+     264           0 : /* EOF */
+     265             : /* EOF */
+     266           0 : /* EOF */
+     267           0 : /* EOF */
+     268           0 : /* EOF */
+     269             : /* EOF */
+     270           0 : /* EOF */
+     271           0 : /* EOF */
+     272           0 : /* EOF */
+     273             : /* EOF */
+     274       85200 : /* EOF */
+     275             : /* EOF */
+     276           0 : /* EOF */
+     277           0 : /* EOF */
+     278           0 : /* EOF */
+     279             : /* EOF */
+     280           0 : /* EOF */
+     281           0 : /* EOF */
+     282           0 : /* EOF */
+     283             : /* EOF */
+     284           0 : /* EOF */
+     285           0 : /* EOF */
+     286           0 : /* EOF */
+     287             : /* EOF */
+     288           0 : /* EOF */
+     289           0 : /* EOF */
+     290           0 : /* EOF */
+     291             : /* EOF */
+     292           0 : /* EOF */
+     293           0 : /* EOF */
+     294           0 : /* EOF */
+     295             : /* EOF */
+     296           0 : /* EOF */
+     297             : /* EOF */
+     298           0 : /* EOF */
+     299             : /* EOF */
+     300           0 : /* EOF */
+     301           0 : /* EOF */
+     302           0 : /* EOF */
+     303             : /* EOF */
+     304           0 : /* EOF */
+     305           0 : /* EOF */
+     306           0 : /* EOF */
+     307             : /* EOF */
+     308           0 : /* EOF */
+     309           0 : /* EOF */
+     310           0 : /* EOF */
+     311             : /* EOF */
+     312       85200 : /* EOF */
+     313             : /* EOF */
+     314      255600 : /* EOF */
+     315       85200 : /* EOF */
+     316      511200 : /* EOF */
+     317             : /* EOF */
+     318      255600 : /* EOF */
+     319       85200 : /* EOF */
+     320      511200 : /* EOF */
+     321             : /* EOF */
+     322      255600 : /* EOF */
+     323       85200 : /* EOF */
+     324      414780 : /* EOF */
+     325             : /* EOF */
+     326      255600 : /* EOF */
+     327       85200 : /* EOF */
+     328      414780 : /* EOF */
+     329             : /* EOF */
+     330      255600 : /* EOF */
+     331       85200 : /* EOF */
+     332      340800 : /* EOF */
+     333             : /* EOF */
+     334      255600 : /* EOF */
+     335       85200 : /* EOF */
+     336           0 : /* EOF */
+     337             : /* EOF */
+     338      255600 : /* EOF */
+     339       85200 : /* EOF */
+     340           0 : /* EOF */
+     341             : /* EOF */
+     342      255600 : /* EOF */
+     343       85200 : /* EOF */
+     344           0 : /* EOF */
+     345             : /* EOF */
+     346      255600 : /* EOF */
+     347       85200 : /* EOF */
+     348           0 : /* EOF */
+     349             : /* EOF */
+     350      255600 : /* EOF */
+     351       85200 : /* EOF */
+     352      255528 : /* EOF */
+     353             : /* EOF */
+     354      255600 : /* EOF */
+     355       85200 : /* EOF */
+     356           0 : /* EOF */
+     357             : /* EOF */
+     358      255600 : /* EOF */
+     359      426000 : /* EOF */
+     360             : /* EOF */
+     361           0 : /* EOF */
+     362             : /* EOF */
+     363           0 : /* EOF */
+     364           0 : /* EOF */
+     365           0 : /* EOF */
+     366             : /* EOF */
+     367           0 : /* EOF */
+     368           0 : /* EOF */
+     369           0 : /* EOF */
+     370             : /* EOF */
+     371           0 : /* EOF */
+     372           0 : /* EOF */
+     373           0 : /* EOF */
+     374             : /* EOF */
+     375           0 : /* EOF */
+     376           0 : /* EOF */
+     377           0 : /* EOF */
+     378             : /* EOF */
+     379           0 : /* EOF */
+     380           0 : /* EOF */
+     381           0 : /* EOF */
+     382             : /* EOF */
+     383           0 : /* EOF */
+     384           0 : /* EOF */
+     385           0 : /* EOF */
+     386             : /* EOF */
+     387           0 : /* EOF */
+     388           0 : /* EOF */
+     389           0 : /* EOF */
+     390             : /* EOF */
+     391           0 : /* EOF */
+     392           0 : /* EOF */
+     393           0 : /* EOF */
+     394             : /* EOF */
+     395           0 : /* EOF */
+     396             : /* EOF */
+     397           0 : /* EOF */
+     398           0 : /* EOF */
+     399           0 : /* EOF */
+     400             : /* EOF */
+     401           0 : /* EOF */
+     402             : /* EOF */
+     403           0 : /* EOF */
+     404           0 : /* EOF */
+     405           0 : /* EOF */
+     406             : /* EOF */
+     407           0 : /* EOF */
+     408           0 : /* EOF */
+     409           0 : /* EOF */
+     410             : /* EOF */
+     411           0 : /* EOF */
+     412           0 : /* EOF */
+     413           0 : /* EOF */
+     414             : /* EOF */
+     415           0 : /* EOF */
+     416           0 : /* EOF */
+     417           0 : /* EOF */
+     418             : /* EOF */
+     419           0 : /* EOF */
+     420           0 : /* EOF */
+     421           0 : /* EOF */
+     422             : /* EOF */
+     423           0 : /* EOF */
+     424           0 : /* EOF */
+     425           0 : /* EOF */
+     426             : /* EOF */
+     427           0 : /* EOF */
+     428           0 : /* EOF */
+     429           0 : /* EOF */
+     430             : /* EOF */
+     431           0 : /* EOF */
+     432           0 : /* EOF */
+     433           0 : /* EOF */
+     434             : /* EOF */
+     435           0 : /* EOF */
+     436           0 : /* EOF */
+     437           0 : /* EOF */
+     438             : /* EOF */
+     439           0 : /* EOF */
+     440             : /* EOF */
+     441           0 : /* EOF */
+     442           0 : /* EOF */
+     443           0 : /* EOF */
+     444             : /* EOF */
+     445           0 : /* EOF */
+     446             : /* EOF */
+     447           0 : /* EOF */
+     448           0 : /* EOF */
+     449           0 : /* EOF */
+     450             : /* EOF */
+     451           0 : /* EOF */
+     452           0 : /* EOF */
+     453           0 : /* EOF */
+     454             : /* EOF */
+     455           0 : /* EOF */
+     456           0 : /* EOF */
+     457           0 : /* EOF */
+     458             : /* EOF */
+     459           0 : /* EOF */
+     460           0 : /* EOF */
+     461           0 : /* EOF */
+     462             : /* EOF */
+     463           0 : /* EOF */
+     464           0 : /* EOF */
+     465           0 : /* EOF */
+     466             : /* EOF */
+     467           0 : /* EOF */
+     468           0 : /* EOF */
+     469           0 : /* EOF */
+     470             : /* EOF */
+     471           0 : /* EOF */
+     472           0 : /* EOF */
+     473           0 : /* EOF */
+     474             : /* EOF */
+     475           0 : /* EOF */
+     476           0 : /* EOF */
+     477           0 : /* EOF */
+     478             : /* EOF */
+     479           0 : /* EOF */
+     480           0 : /* EOF */
+     481           0 : /* EOF */
+     482             : /* EOF */
+     483           0 : /* EOF */
+     484             : /* EOF */
+     485           0 : /* EOF */
+     486           0 : /* EOF */
+     487           0 : /* EOF */
+     488             : /* EOF */
+     489             : /* EOF */
+     490           0 : /* EOF */
+     491             : /* EOF */
+     492             : /* EOF */
+     493    17986320 : /* EOF */
+     494             : /* EOF */
+     495     4496580 : /* EOF */
+     496             : /* EOF */
+     497             : /* EOF */
+     498      191436 : /* EOF */
+     499             : /* EOF */
+     500             : /* EOF */
+     501             : /* EOF */
+     502             : /* EOF */
+     503      957180 : /* EOF */
+     504      765744 : /* EOF */
+     505      574308 : /* EOF */
+     506             : /* EOF */
+     507      765744 : /* EOF */
+     508             : /* EOF */
+     509      191436 : /* EOF */
+     510             : /* EOF */
+     511      207756 : /* EOF */
+     512       69204 : /* EOF */
+     513      138504 : /* EOF */
+     514             : /* EOF */
+     515      191526 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func-sort-c.html new file mode 100644 index 00000000..84c08e27 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerLPDDR4D0Ev12
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func.html new file mode 100644 index 00000000..77dc7ca6 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerLPDDR4D0Ev12
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.gcov.html new file mode 100644 index 00000000..1cb40aec --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          36 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func-sort-c.html new file mode 100644 index 00000000..3b0589c5 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:12610.4 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerWideIO6insertE7Command4Rank9BankGroup4Bank0
_ZNK13CheckerWideIO24timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN13CheckerWideIOC2Ev30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func.html new file mode 100644 index 00000000..1fd9161f --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:12610.4 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13CheckerWideIOC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13CheckerWideIO6insertE7Command4Rank9BankGroup4Bank0
_ZNK13CheckerWideIO24timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.gcov.html new file mode 100644 index 00000000..3aac699e --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.gcov.html @@ -0,0 +1,488 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:12610.4 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37           0 : /* EOF */
+      38             : /* EOF */
+      39           0 : /* EOF */
+      40           0 : /* EOF */
+      41           0 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49             : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62             : /* EOF */
+      63           0 : /* EOF */
+      64             : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67             : /* EOF */
+      68           0 : /* EOF */
+      69             : /* EOF */
+      70           0 : /* EOF */
+      71           0 : /* EOF */
+      72           0 : /* EOF */
+      73             : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77             : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81             : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89             : /* EOF */
+      90           0 : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93           0 : /* EOF */
+      94           0 : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97           0 : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101           0 : /* EOF */
+     102           0 : /* EOF */
+     103           0 : /* EOF */
+     104             : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107           0 : /* EOF */
+     108             : /* EOF */
+     109           0 : /* EOF */
+     110           0 : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118             : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122             : /* EOF */
+     123           0 : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+     126             : /* EOF */
+     127           0 : /* EOF */
+     128           0 : /* EOF */
+     129           0 : /* EOF */
+     130             : /* EOF */
+     131           0 : /* EOF */
+     132           0 : /* EOF */
+     133           0 : /* EOF */
+     134             : /* EOF */
+     135           0 : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138             : /* EOF */
+     139           0 : /* EOF */
+     140           0 : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143           0 : /* EOF */
+     144           0 : /* EOF */
+     145           0 : /* EOF */
+     146             : /* EOF */
+     147           0 : /* EOF */
+     148           0 : /* EOF */
+     149           0 : /* EOF */
+     150             : /* EOF */
+     151           0 : /* EOF */
+     152           0 : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155           0 : /* EOF */
+     156           0 : /* EOF */
+     157           0 : /* EOF */
+     158             : /* EOF */
+     159           0 : /* EOF */
+     160             : /* EOF */
+     161           0 : /* EOF */
+     162           0 : /* EOF */
+     163           0 : /* EOF */
+     164             : /* EOF */
+     165           0 : /* EOF */
+     166           0 : /* EOF */
+     167           0 : /* EOF */
+     168             : /* EOF */
+     169           0 : /* EOF */
+     170           0 : /* EOF */
+     171           0 : /* EOF */
+     172             : /* EOF */
+     173           0 : /* EOF */
+     174           0 : /* EOF */
+     175           0 : /* EOF */
+     176             : /* EOF */
+     177           0 : /* EOF */
+     178           0 : /* EOF */
+     179           0 : /* EOF */
+     180             : /* EOF */
+     181           0 : /* EOF */
+     182           0 : /* EOF */
+     183           0 : /* EOF */
+     184             : /* EOF */
+     185           0 : /* EOF */
+     186           0 : /* EOF */
+     187           0 : /* EOF */
+     188             : /* EOF */
+     189           0 : /* EOF */
+     190           0 : /* EOF */
+     191           0 : /* EOF */
+     192             : /* EOF */
+     193           0 : /* EOF */
+     194           0 : /* EOF */
+     195           0 : /* EOF */
+     196             : /* EOF */
+     197           0 : /* EOF */
+     198           0 : /* EOF */
+     199           0 : /* EOF */
+     200             : /* EOF */
+     201           0 : /* EOF */
+     202           0 : /* EOF */
+     203             : /* EOF */
+     204           0 : /* EOF */
+     205             : /* EOF */
+     206           0 : /* EOF */
+     207           0 : /* EOF */
+     208           0 : /* EOF */
+     209             : /* EOF */
+     210           0 : /* EOF */
+     211           0 : /* EOF */
+     212           0 : /* EOF */
+     213             : /* EOF */
+     214           0 : /* EOF */
+     215           0 : /* EOF */
+     216           0 : /* EOF */
+     217             : /* EOF */
+     218           0 : /* EOF */
+     219           0 : /* EOF */
+     220           0 : /* EOF */
+     221             : /* EOF */
+     222           0 : /* EOF */
+     223             : /* EOF */
+     224           0 : /* EOF */
+     225           0 : /* EOF */
+     226           0 : /* EOF */
+     227             : /* EOF */
+     228           0 : /* EOF */
+     229           0 : /* EOF */
+     230           0 : /* EOF */
+     231             : /* EOF */
+     232           0 : /* EOF */
+     233           0 : /* EOF */
+     234           0 : /* EOF */
+     235             : /* EOF */
+     236           0 : /* EOF */
+     237           0 : /* EOF */
+     238           0 : /* EOF */
+     239             : /* EOF */
+     240           0 : /* EOF */
+     241           0 : /* EOF */
+     242           0 : /* EOF */
+     243             : /* EOF */
+     244           0 : /* EOF */
+     245           0 : /* EOF */
+     246           0 : /* EOF */
+     247             : /* EOF */
+     248           0 : /* EOF */
+     249             : /* EOF */
+     250           0 : /* EOF */
+     251           0 : /* EOF */
+     252           0 : /* EOF */
+     253             : /* EOF */
+     254           0 : /* EOF */
+     255           0 : /* EOF */
+     256           0 : /* EOF */
+     257             : /* EOF */
+     258           0 : /* EOF */
+     259           0 : /* EOF */
+     260           0 : /* EOF */
+     261             : /* EOF */
+     262           0 : /* EOF */
+     263           0 : /* EOF */
+     264           0 : /* EOF */
+     265             : /* EOF */
+     266           0 : /* EOF */
+     267           0 : /* EOF */
+     268           0 : /* EOF */
+     269             : /* EOF */
+     270           0 : /* EOF */
+     271           0 : /* EOF */
+     272           0 : /* EOF */
+     273             : /* EOF */
+     274           0 : /* EOF */
+     275           0 : /* EOF */
+     276           0 : /* EOF */
+     277             : /* EOF */
+     278           0 : /* EOF */
+     279           0 : /* EOF */
+     280           0 : /* EOF */
+     281             : /* EOF */
+     282           0 : /* EOF */
+     283             : /* EOF */
+     284           0 : /* EOF */
+     285           0 : /* EOF */
+     286           0 : /* EOF */
+     287             : /* EOF */
+     288           0 : /* EOF */
+     289           0 : /* EOF */
+     290           0 : /* EOF */
+     291             : /* EOF */
+     292           0 : /* EOF */
+     293           0 : /* EOF */
+     294           0 : /* EOF */
+     295             : /* EOF */
+     296           0 : /* EOF */
+     297             : /* EOF */
+     298           0 : /* EOF */
+     299             : /* EOF */
+     300           0 : /* EOF */
+     301           0 : /* EOF */
+     302           0 : /* EOF */
+     303             : /* EOF */
+     304           0 : /* EOF */
+     305             : /* EOF */
+     306           0 : /* EOF */
+     307           0 : /* EOF */
+     308           0 : /* EOF */
+     309             : /* EOF */
+     310           0 : /* EOF */
+     311             : /* EOF */
+     312           0 : /* EOF */
+     313           0 : /* EOF */
+     314           0 : /* EOF */
+     315             : /* EOF */
+     316           0 : /* EOF */
+     317           0 : /* EOF */
+     318           0 : /* EOF */
+     319             : /* EOF */
+     320           0 : /* EOF */
+     321           0 : /* EOF */
+     322           0 : /* EOF */
+     323             : /* EOF */
+     324           0 : /* EOF */
+     325           0 : /* EOF */
+     326           0 : /* EOF */
+     327             : /* EOF */
+     328           0 : /* EOF */
+     329           0 : /* EOF */
+     330           0 : /* EOF */
+     331             : /* EOF */
+     332           0 : /* EOF */
+     333             : /* EOF */
+     334           0 : /* EOF */
+     335           0 : /* EOF */
+     336           0 : /* EOF */
+     337             : /* EOF */
+     338           0 : /* EOF */
+     339             : /* EOF */
+     340           0 : /* EOF */
+     341           0 : /* EOF */
+     342           0 : /* EOF */
+     343             : /* EOF */
+     344           0 : /* EOF */
+     345           0 : /* EOF */
+     346           0 : /* EOF */
+     347             : /* EOF */
+     348           0 : /* EOF */
+     349           0 : /* EOF */
+     350           0 : /* EOF */
+     351             : /* EOF */
+     352           0 : /* EOF */
+     353           0 : /* EOF */
+     354           0 : /* EOF */
+     355             : /* EOF */
+     356           0 : /* EOF */
+     357           0 : /* EOF */
+     358           0 : /* EOF */
+     359             : /* EOF */
+     360           0 : /* EOF */
+     361           0 : /* EOF */
+     362           0 : /* EOF */
+     363             : /* EOF */
+     364           0 : /* EOF */
+     365           0 : /* EOF */
+     366           0 : /* EOF */
+     367             : /* EOF */
+     368           0 : /* EOF */
+     369           0 : /* EOF */
+     370           0 : /* EOF */
+     371             : /* EOF */
+     372           0 : /* EOF */
+     373             : /* EOF */
+     374           0 : /* EOF */
+     375           0 : /* EOF */
+     376           0 : /* EOF */
+     377             : /* EOF */
+     378             : /* EOF */
+     379           0 : /* EOF */
+     380             : /* EOF */
+     381             : /* EOF */
+     382           0 : /* EOF */
+     383             : /* EOF */
+     384           0 : /* EOF */
+     385             : /* EOF */
+     386             : /* EOF */
+     387           0 : /* EOF */
+     388             : /* EOF */
+     389             : /* EOF */
+     390             : /* EOF */
+     391             : /* EOF */
+     392           0 : /* EOF */
+     393           0 : /* EOF */
+     394           0 : /* EOF */
+     395           0 : /* EOF */
+     396             : /* EOF */
+     397           0 : /* EOF */
+     398             : /* EOF */
+     399           0 : /* EOF */
+     400           0 : /* EOF */
+     401           0 : /* EOF */
+     402             : /* EOF */
+     403          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func-sort-c.html new file mode 100644 index 00000000..3acc04e7 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerWideIOD0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func.html new file mode 100644 index 00000000..8f353c6d --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerWideIOD0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.gcov.html new file mode 100644 index 00000000..1917edf2 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func-sort-c.html new file mode 100644 index 00000000..60ff6630 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13200.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN14CheckerWideIO26insertE7Command4Rank9BankGroup4Bank0
_ZNK14CheckerWideIO224timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN14CheckerWideIO2C2Ev30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func.html new file mode 100644 index 00000000..6eb0f810 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13200.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN14CheckerWideIO2C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN14CheckerWideIO26insertE7Command4Rank9BankGroup4Bank0
_ZNK14CheckerWideIO224timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.gcov.html new file mode 100644 index 00000000..552203ae --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.gcov.html @@ -0,0 +1,566 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13200.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37           0 : /* EOF */
+      38             : /* EOF */
+      39           0 : /* EOF */
+      40           0 : /* EOF */
+      41           0 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48           0 : /* EOF */
+      49             : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63             : /* EOF */
+      64           0 : /* EOF */
+      65             : /* EOF */
+      66           0 : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69           0 : /* EOF */
+      70             : /* EOF */
+      71           0 : /* EOF */
+      72           0 : /* EOF */
+      73           0 : /* EOF */
+      74             : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78             : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81           0 : /* EOF */
+      82             : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85           0 : /* EOF */
+      86             : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89           0 : /* EOF */
+      90             : /* EOF */
+      91           0 : /* EOF */
+      92             : /* EOF */
+      93           0 : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100           0 : /* EOF */
+     101             : /* EOF */
+     102           0 : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105             : /* EOF */
+     106           0 : /* EOF */
+     107           0 : /* EOF */
+     108           0 : /* EOF */
+     109             : /* EOF */
+     110           0 : /* EOF */
+     111           0 : /* EOF */
+     112           0 : /* EOF */
+     113             : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116           0 : /* EOF */
+     117             : /* EOF */
+     118           0 : /* EOF */
+     119             : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127             : /* EOF */
+     128           0 : /* EOF */
+     129           0 : /* EOF */
+     130           0 : /* EOF */
+     131             : /* EOF */
+     132           0 : /* EOF */
+     133           0 : /* EOF */
+     134           0 : /* EOF */
+     135             : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139             : /* EOF */
+     140           0 : /* EOF */
+     141           0 : /* EOF */
+     142           0 : /* EOF */
+     143             : /* EOF */
+     144           0 : /* EOF */
+     145           0 : /* EOF */
+     146           0 : /* EOF */
+     147             : /* EOF */
+     148           0 : /* EOF */
+     149           0 : /* EOF */
+     150           0 : /* EOF */
+     151             : /* EOF */
+     152           0 : /* EOF */
+     153           0 : /* EOF */
+     154           0 : /* EOF */
+     155             : /* EOF */
+     156           0 : /* EOF */
+     157           0 : /* EOF */
+     158           0 : /* EOF */
+     159             : /* EOF */
+     160           0 : /* EOF */
+     161             : /* EOF */
+     162           0 : /* EOF */
+     163           0 : /* EOF */
+     164           0 : /* EOF */
+     165             : /* EOF */
+     166           0 : /* EOF */
+     167           0 : /* EOF */
+     168           0 : /* EOF */
+     169             : /* EOF */
+     170           0 : /* EOF */
+     171           0 : /* EOF */
+     172           0 : /* EOF */
+     173             : /* EOF */
+     174           0 : /* EOF */
+     175           0 : /* EOF */
+     176           0 : /* EOF */
+     177             : /* EOF */
+     178           0 : /* EOF */
+     179           0 : /* EOF */
+     180           0 : /* EOF */
+     181             : /* EOF */
+     182           0 : /* EOF */
+     183           0 : /* EOF */
+     184           0 : /* EOF */
+     185             : /* EOF */
+     186           0 : /* EOF */
+     187           0 : /* EOF */
+     188           0 : /* EOF */
+     189             : /* EOF */
+     190           0 : /* EOF */
+     191           0 : /* EOF */
+     192           0 : /* EOF */
+     193             : /* EOF */
+     194           0 : /* EOF */
+     195           0 : /* EOF */
+     196           0 : /* EOF */
+     197             : /* EOF */
+     198           0 : /* EOF */
+     199           0 : /* EOF */
+     200           0 : /* EOF */
+     201             : /* EOF */
+     202           0 : /* EOF */
+     203           0 : /* EOF */
+     204           0 : /* EOF */
+     205             : /* EOF */
+     206           0 : /* EOF */
+     207           0 : /* EOF */
+     208           0 : /* EOF */
+     209             : /* EOF */
+     210           0 : /* EOF */
+     211           0 : /* EOF */
+     212             : /* EOF */
+     213           0 : /* EOF */
+     214             : /* EOF */
+     215           0 : /* EOF */
+     216           0 : /* EOF */
+     217           0 : /* EOF */
+     218             : /* EOF */
+     219           0 : /* EOF */
+     220           0 : /* EOF */
+     221           0 : /* EOF */
+     222             : /* EOF */
+     223           0 : /* EOF */
+     224           0 : /* EOF */
+     225           0 : /* EOF */
+     226             : /* EOF */
+     227           0 : /* EOF */
+     228           0 : /* EOF */
+     229           0 : /* EOF */
+     230             : /* EOF */
+     231           0 : /* EOF */
+     232           0 : /* EOF */
+     233           0 : /* EOF */
+     234             : /* EOF */
+     235           0 : /* EOF */
+     236             : /* EOF */
+     237           0 : /* EOF */
+     238           0 : /* EOF */
+     239           0 : /* EOF */
+     240             : /* EOF */
+     241           0 : /* EOF */
+     242           0 : /* EOF */
+     243           0 : /* EOF */
+     244             : /* EOF */
+     245           0 : /* EOF */
+     246           0 : /* EOF */
+     247           0 : /* EOF */
+     248             : /* EOF */
+     249           0 : /* EOF */
+     250           0 : /* EOF */
+     251           0 : /* EOF */
+     252             : /* EOF */
+     253           0 : /* EOF */
+     254           0 : /* EOF */
+     255           0 : /* EOF */
+     256             : /* EOF */
+     257           0 : /* EOF */
+     258           0 : /* EOF */
+     259           0 : /* EOF */
+     260             : /* EOF */
+     261           0 : /* EOF */
+     262           0 : /* EOF */
+     263           0 : /* EOF */
+     264             : /* EOF */
+     265           0 : /* EOF */
+     266           0 : /* EOF */
+     267           0 : /* EOF */
+     268             : /* EOF */
+     269           0 : /* EOF */
+     270             : /* EOF */
+     271           0 : /* EOF */
+     272           0 : /* EOF */
+     273           0 : /* EOF */
+     274             : /* EOF */
+     275           0 : /* EOF */
+     276           0 : /* EOF */
+     277           0 : /* EOF */
+     278             : /* EOF */
+     279           0 : /* EOF */
+     280           0 : /* EOF */
+     281           0 : /* EOF */
+     282             : /* EOF */
+     283           0 : /* EOF */
+     284           0 : /* EOF */
+     285           0 : /* EOF */
+     286             : /* EOF */
+     287           0 : /* EOF */
+     288           0 : /* EOF */
+     289           0 : /* EOF */
+     290             : /* EOF */
+     291           0 : /* EOF */
+     292           0 : /* EOF */
+     293           0 : /* EOF */
+     294             : /* EOF */
+     295           0 : /* EOF */
+     296           0 : /* EOF */
+     297           0 : /* EOF */
+     298             : /* EOF */
+     299           0 : /* EOF */
+     300           0 : /* EOF */
+     301           0 : /* EOF */
+     302             : /* EOF */
+     303           0 : /* EOF */
+     304           0 : /* EOF */
+     305           0 : /* EOF */
+     306             : /* EOF */
+     307           0 : /* EOF */
+     308             : /* EOF */
+     309           0 : /* EOF */
+     310           0 : /* EOF */
+     311           0 : /* EOF */
+     312             : /* EOF */
+     313           0 : /* EOF */
+     314           0 : /* EOF */
+     315           0 : /* EOF */
+     316             : /* EOF */
+     317           0 : /* EOF */
+     318           0 : /* EOF */
+     319           0 : /* EOF */
+     320             : /* EOF */
+     321           0 : /* EOF */
+     322           0 : /* EOF */
+     323           0 : /* EOF */
+     324             : /* EOF */
+     325           0 : /* EOF */
+     326           0 : /* EOF */
+     327           0 : /* EOF */
+     328             : /* EOF */
+     329           0 : /* EOF */
+     330           0 : /* EOF */
+     331           0 : /* EOF */
+     332             : /* EOF */
+     333           0 : /* EOF */
+     334           0 : /* EOF */
+     335           0 : /* EOF */
+     336             : /* EOF */
+     337           0 : /* EOF */
+     338           0 : /* EOF */
+     339           0 : /* EOF */
+     340             : /* EOF */
+     341           0 : /* EOF */
+     342           0 : /* EOF */
+     343           0 : /* EOF */
+     344             : /* EOF */
+     345           0 : /* EOF */
+     346           0 : /* EOF */
+     347           0 : /* EOF */
+     348             : /* EOF */
+     349           0 : /* EOF */
+     350           0 : /* EOF */
+     351           0 : /* EOF */
+     352             : /* EOF */
+     353           0 : /* EOF */
+     354           0 : /* EOF */
+     355             : /* EOF */
+     356           0 : /* EOF */
+     357             : /* EOF */
+     358           0 : /* EOF */
+     359           0 : /* EOF */
+     360           0 : /* EOF */
+     361             : /* EOF */
+     362           0 : /* EOF */
+     363           0 : /* EOF */
+     364           0 : /* EOF */
+     365             : /* EOF */
+     366           0 : /* EOF */
+     367           0 : /* EOF */
+     368           0 : /* EOF */
+     369             : /* EOF */
+     370           0 : /* EOF */
+     371           0 : /* EOF */
+     372           0 : /* EOF */
+     373             : /* EOF */
+     374           0 : /* EOF */
+     375           0 : /* EOF */
+     376           0 : /* EOF */
+     377             : /* EOF */
+     378           0 : /* EOF */
+     379             : /* EOF */
+     380           0 : /* EOF */
+     381           0 : /* EOF */
+     382           0 : /* EOF */
+     383             : /* EOF */
+     384           0 : /* EOF */
+     385             : /* EOF */
+     386           0 : /* EOF */
+     387           0 : /* EOF */
+     388           0 : /* EOF */
+     389             : /* EOF */
+     390           0 : /* EOF */
+     391           0 : /* EOF */
+     392           0 : /* EOF */
+     393             : /* EOF */
+     394           0 : /* EOF */
+     395           0 : /* EOF */
+     396           0 : /* EOF */
+     397             : /* EOF */
+     398           0 : /* EOF */
+     399           0 : /* EOF */
+     400           0 : /* EOF */
+     401             : /* EOF */
+     402           0 : /* EOF */
+     403           0 : /* EOF */
+     404           0 : /* EOF */
+     405             : /* EOF */
+     406           0 : /* EOF */
+     407             : /* EOF */
+     408           0 : /* EOF */
+     409           0 : /* EOF */
+     410           0 : /* EOF */
+     411             : /* EOF */
+     412           0 : /* EOF */
+     413             : /* EOF */
+     414           0 : /* EOF */
+     415           0 : /* EOF */
+     416           0 : /* EOF */
+     417             : /* EOF */
+     418           0 : /* EOF */
+     419           0 : /* EOF */
+     420           0 : /* EOF */
+     421             : /* EOF */
+     422           0 : /* EOF */
+     423           0 : /* EOF */
+     424           0 : /* EOF */
+     425             : /* EOF */
+     426           0 : /* EOF */
+     427           0 : /* EOF */
+     428           0 : /* EOF */
+     429             : /* EOF */
+     430           0 : /* EOF */
+     431           0 : /* EOF */
+     432           0 : /* EOF */
+     433             : /* EOF */
+     434           0 : /* EOF */
+     435           0 : /* EOF */
+     436           0 : /* EOF */
+     437             : /* EOF */
+     438           0 : /* EOF */
+     439           0 : /* EOF */
+     440           0 : /* EOF */
+     441             : /* EOF */
+     442           0 : /* EOF */
+     443           0 : /* EOF */
+     444           0 : /* EOF */
+     445             : /* EOF */
+     446           0 : /* EOF */
+     447           0 : /* EOF */
+     448           0 : /* EOF */
+     449             : /* EOF */
+     450           0 : /* EOF */
+     451             : /* EOF */
+     452           0 : /* EOF */
+     453           0 : /* EOF */
+     454           0 : /* EOF */
+     455             : /* EOF */
+     456             : /* EOF */
+     457           0 : /* EOF */
+     458             : /* EOF */
+     459             : /* EOF */
+     460           0 : /* EOF */
+     461             : /* EOF */
+     462           0 : /* EOF */
+     463             : /* EOF */
+     464             : /* EOF */
+     465           0 : /* EOF */
+     466             : /* EOF */
+     467             : /* EOF */
+     468             : /* EOF */
+     469             : /* EOF */
+     470           0 : /* EOF */
+     471           0 : /* EOF */
+     472           0 : /* EOF */
+     473           0 : /* EOF */
+     474             : /* EOF */
+     475           0 : /* EOF */
+     476             : /* EOF */
+     477           0 : /* EOF */
+     478           0 : /* EOF */
+     479           0 : /* EOF */
+     480             : /* EOF */
+     481          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func-sort-c.html new file mode 100644 index 00000000..eb04eac0 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN14CheckerWideIO2D0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func.html new file mode 100644 index 00000000..285aafb5 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN14CheckerWideIO2D0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.gcov.html new file mode 100644 index 00000000..2f4b5d0d --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/index-sort-f.html b/html/DRAMSys/library/src/controller/checker/index-sort-f.html new file mode 100644 index 00000000..0b49145b --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/index-sort-f.html @@ -0,0 +1,273 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/checkerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:802298726.8 %
Date:2020-06-30 17:34:44Functions:386360.3 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CheckerWideIO2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR6.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerWideIO.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.cpp +
0.3%0.3%
+
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR5.cpp +
0.3%0.3%
+
0.3 %1 / 37040.0 %2 / 5
CheckerWideIO2.cpp +
0.3%0.3%
+
0.3 %1 / 32040.0 %2 / 5
CheckerGDDR6.cpp +
0.3%0.3%
+
0.3 %1 / 38340.0 %2 / 5
CheckerWideIO.cpp +
0.4%0.4%
+
0.4 %1 / 26140.0 %2 / 5
CheckerDDR4.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerLPDDR4.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerHBM2.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerDDR3.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerDDR4.cpp +
60.7%60.7%
+
60.7 %187 / 308100.0 %5 / 5
CheckerDDR3.cpp +
89.7%89.7%
+
89.7 %253 / 282100.0 %5 / 5
CheckerLPDDR4.cpp +
51.3%51.3%
+
51.3 %177 / 345100.0 %5 / 5
CheckerHBM2.cpp +
51.9%51.9%
+
51.9 %176 / 339100.0 %5 / 5
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/index-sort-l.html b/html/DRAMSys/library/src/controller/checker/index-sort-l.html new file mode 100644 index 00000000..621254a3 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/index-sort-l.html @@ -0,0 +1,273 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/checkerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:802298726.8 %
Date:2020-06-30 17:34:44Functions:386360.3 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CheckerWideIO2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR6.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerWideIO.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.cpp +
0.3%0.3%
+
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR5.cpp +
0.3%0.3%
+
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR6.cpp +
0.3%0.3%
+
0.3 %1 / 38340.0 %2 / 5
CheckerWideIO.cpp +
0.4%0.4%
+
0.4 %1 / 26140.0 %2 / 5
CheckerWideIO2.cpp +
0.3%0.3%
+
0.3 %1 / 32040.0 %2 / 5
CheckerLPDDR4.cpp +
51.3%51.3%
+
51.3 %177 / 345100.0 %5 / 5
CheckerHBM2.cpp +
51.9%51.9%
+
51.9 %176 / 339100.0 %5 / 5
CheckerDDR4.cpp +
60.7%60.7%
+
60.7 %187 / 308100.0 %5 / 5
CheckerDDR3.cpp +
89.7%89.7%
+
89.7 %253 / 282100.0 %5 / 5
CheckerDDR4.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerLPDDR4.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerHBM2.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerDDR3.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/checker/index.html b/html/DRAMSys/library/src/controller/checker/index.html new file mode 100644 index 00000000..02bc1e83 --- /dev/null +++ b/html/DRAMSys/library/src/controller/checker/index.html @@ -0,0 +1,273 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/checkerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:802298726.8 %
Date:2020-06-30 17:34:44Functions:386360.3 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CheckerDDR3.cpp +
89.7%89.7%
+
89.7 %253 / 282100.0 %5 / 5
CheckerDDR3.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerDDR4.cpp +
60.7%60.7%
+
60.7 %187 / 308100.0 %5 / 5
CheckerDDR4.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerGDDR5.cpp +
0.3%0.3%
+
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR5.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.cpp +
0.3%0.3%
+
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR5X.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerGDDR6.cpp +
0.3%0.3%
+
0.3 %1 / 38340.0 %2 / 5
CheckerGDDR6.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerHBM2.cpp +
51.9%51.9%
+
51.9 %176 / 339100.0 %5 / 5
CheckerHBM2.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerLPDDR4.cpp +
51.3%51.3%
+
51.3 %177 / 345100.0 %5 / 5
CheckerLPDDR4.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
CheckerWideIO.cpp +
0.4%0.4%
+
0.4 %1 / 26140.0 %2 / 5
CheckerWideIO.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
CheckerWideIO2.cpp +
0.3%0.3%
+
0.3 %1 / 32040.0 %2 / 5
CheckerWideIO2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func-sort-c.html new file mode 100644 index 00000000..6b8cfc3c --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1313100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CmdMuxOldest13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE30
_ZN12CmdMuxOldest13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE360325
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func.html new file mode 100644 index 00000000..0bd28fdc --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1313100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CmdMuxOldest13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE30
_ZN12CmdMuxOldest13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE360325
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.gcov.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.gcov.html new file mode 100644 index 00000000..5354253b --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.gcov.html @@ -0,0 +1,145 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1313100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42      360325 : /* EOF */
+      43             : /* EOF */
+      44      360325 : /* EOF */
+      45      360325 : /* EOF */
+      46      360325 : /* EOF */
+      47      360325 : /* EOF */
+      48             : /* EOF */
+      49     3249832 : /* EOF */
+      50             : /* EOF */
+      51     1264591 : /* EOF */
+      52     1264591 : /* EOF */
+      53             : /* EOF */
+      54      163920 : /* EOF */
+      55      163920 : /* EOF */
+      56             : /* EOF */
+      57     1264591 : /* EOF */
+      58             : /* EOF */
+      59      360325 : /* EOF */
+      60          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func-sort-c.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func-sort-c.html new file mode 100644 index 00000000..03b70241 --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CmdMuxOldestD2Ev0
_ZN12CmdMuxOldestD0Ev23
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func.html new file mode 100644 index 00000000..fc5c0f3c --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CmdMuxOldestD0Ev23
_ZN12CmdMuxOldestD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.gcov.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.gcov.html new file mode 100644 index 00000000..8b470414 --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.gcov.html @@ -0,0 +1,125 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40          46 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func-sort-c.html new file mode 100644 index 00000000..571c4538 --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1111100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CmdMuxStrict13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE30
_ZN12CmdMuxStrict13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE158606
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func.html new file mode 100644 index 00000000..3afd971b --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1111100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CmdMuxStrict13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE30
_ZN12CmdMuxStrict13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE158606
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.gcov.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.gcov.html new file mode 100644 index 00000000..279bf239 --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.gcov.html @@ -0,0 +1,146 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1111100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42      158606 : /* EOF */
+      43             : /* EOF */
+      44      915005 : /* EOF */
+      45             : /* EOF */
+      46      309253 : /* EOF */
+      47             : /* EOF */
+      48      273805 : /* EOF */
+      49             : /* EOF */
+      50       28672 : /* EOF */
+      51       28672 : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55      751877 : /* EOF */
+      56             : /* EOF */
+      57      261849 : /* EOF */
+      58       29708 : /* EOF */
+      59             : /* EOF */
+      60      200452 : /* EOF */
+      61          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func-sort-c.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func-sort-c.html new file mode 100644 index 00000000..d29fe7a7 --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CmdMuxStrictD2Ev0
_ZN12CmdMuxStrictD0Ev14
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func.html new file mode 100644 index 00000000..0d0418fc --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12CmdMuxStrictD0Ev14
_ZN12CmdMuxStrictD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.gcov.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.gcov.html new file mode 100644 index 00000000..00649a18 --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.gcov.html @@ -0,0 +1,125 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40          28 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/index-sort-f.html b/html/DRAMSys/library/src/controller/cmdmux/index-sort-f.html new file mode 100644 index 00000000..d4d3b137 --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/index-sort-f.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/cmdmuxHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2626100.0 %
Date:2020-06-30 17:34:44Functions:81080.0 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CmdMuxStrict.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
CmdMuxOldest.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
CmdMuxOldest.cpp +
100.0%
+
100.0 %13 / 13100.0 %3 / 3
CmdMuxStrict.cpp +
100.0%
+
100.0 %11 / 11100.0 %3 / 3
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/index-sort-l.html b/html/DRAMSys/library/src/controller/cmdmux/index-sort-l.html new file mode 100644 index 00000000..31d6649e --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/index-sort-l.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/cmdmuxHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2626100.0 %
Date:2020-06-30 17:34:44Functions:81080.0 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CmdMuxStrict.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
CmdMuxOldest.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
CmdMuxStrict.cpp +
100.0%
+
100.0 %11 / 11100.0 %3 / 3
CmdMuxOldest.cpp +
100.0%
+
100.0 %13 / 13100.0 %3 / 3
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/cmdmux/index.html b/html/DRAMSys/library/src/controller/cmdmux/index.html new file mode 100644 index 00000000..affd16ff --- /dev/null +++ b/html/DRAMSys/library/src/controller/cmdmux/index.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/cmdmuxHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2626100.0 %
Date:2020-06-30 17:34:44Functions:81080.0 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CmdMuxOldest.cpp +
100.0%
+
100.0 %13 / 13100.0 %3 / 3
CmdMuxOldest.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
CmdMuxStrict.cpp +
100.0%
+
100.0 %11 / 11100.0 %3 / 3
CmdMuxStrict.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/index-sort-f.html b/html/DRAMSys/library/src/controller/index-sort-f.html new file mode 100644 index 00000000..5e8e92df --- /dev/null +++ b/html/DRAMSys/library/src/controller/index-sort-f.html @@ -0,0 +1,173 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controllerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:46151689.3 %
Date:2020-06-30 17:34:44Functions:557078.6 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
BankMachine.h +
100.0%
+
100.0 %4 / 450.0 %4 / 8
ControllerRecordable.h +
100.0%
+
100.0 %3 / 366.7 %2 / 3
Controller.cpp +
87.3%87.3%
+
87.3 %192 / 22073.3 %11 / 15
ControllerIF.h +
100.0%
+
100.0 %46 / 4675.0 %3 / 4
Command.cpp +
72.0%72.0%
+
72.0 %18 / 2576.9 %10 / 13
ControllerRecordable.cpp +
89.3%89.3%
+
89.3 %25 / 2885.7 %6 / 7
BankMachine.cpp +
89.8%89.8%
+
89.8 %149 / 16695.0 %19 / 20
Command.h +
100.0%
+
100.0 %24 / 24-0 / 0
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/index-sort-l.html b/html/DRAMSys/library/src/controller/index-sort-l.html new file mode 100644 index 00000000..6c75bb1e --- /dev/null +++ b/html/DRAMSys/library/src/controller/index-sort-l.html @@ -0,0 +1,173 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controllerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:46151689.3 %
Date:2020-06-30 17:34:44Functions:557078.6 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Command.cpp +
72.0%72.0%
+
72.0 %18 / 2576.9 %10 / 13
Controller.cpp +
87.3%87.3%
+
87.3 %192 / 22073.3 %11 / 15
ControllerRecordable.cpp +
89.3%89.3%
+
89.3 %25 / 2885.7 %6 / 7
BankMachine.cpp +
89.8%89.8%
+
89.8 %149 / 16695.0 %19 / 20
ControllerRecordable.h +
100.0%
+
100.0 %3 / 366.7 %2 / 3
BankMachine.h +
100.0%
+
100.0 %4 / 450.0 %4 / 8
Command.h +
100.0%
+
100.0 %24 / 24-0 / 0
ControllerIF.h +
100.0%
+
100.0 %46 / 4675.0 %3 / 4
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/index.html b/html/DRAMSys/library/src/controller/index.html new file mode 100644 index 00000000..9e93bbf5 --- /dev/null +++ b/html/DRAMSys/library/src/controller/index.html @@ -0,0 +1,173 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controllerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:46151689.3 %
Date:2020-06-30 17:34:44Functions:557078.6 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
BankMachine.cpp +
89.8%89.8%
+
89.8 %149 / 16695.0 %19 / 20
BankMachine.h +
100.0%
+
100.0 %4 / 450.0 %4 / 8
Command.cpp +
72.0%72.0%
+
72.0 %18 / 2576.9 %10 / 13
Command.h +
100.0%
+
100.0 %24 / 24-0 / 0
Controller.cpp +
87.3%87.3%
+
87.3 %192 / 22073.3 %11 / 15
ControllerIF.h +
100.0%
+
100.0 %46 / 4675.0 %3 / 4
ControllerRecordable.cpp +
89.3%89.3%
+
89.3 %25 / 2885.7 %6 / 7
ControllerRecordable.h +
100.0%
+
100.0 %3 / 366.7 %2 / 3
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func-sort-c.html new file mode 100644 index 00000000..0e700a88 --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func-sort-c.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN21PowerDownManagerDummy14getNextCommandEv30
_ZN21PowerDownManagerDummy14getNextCommandEv1085867
_ZN21PowerDownManagerDummy5startEv2171734
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func.html new file mode 100644 index 00000000..eb23f0d6 --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN21PowerDownManagerDummy14getNextCommandEv30
_ZN21PowerDownManagerDummy14getNextCommandEv1085867
_ZN21PowerDownManagerDummy5startEv2171734
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.gcov.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.gcov.html new file mode 100644 index 00000000..8ba6b502 --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39     1085867 : /* EOF */
+      40             : /* EOF */
+      41     2171734 : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44     2171734 : /* EOF */
+      45             : /* EOF */
+      46     4343468 : /* EOF */
+      47          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func-sort-c.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func-sort-c.html new file mode 100644 index 00000000..540c25bb --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func-sort-c.html @@ -0,0 +1,105 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:66100.0 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN21PowerDownManagerDummyD2Ev0
_ZN21PowerDownManagerDummyD0Ev32
_ZN21PowerDownManagerDummy11triggerExitEv50
_ZN21PowerDownManagerDummy12triggerEntryEv1400
_ZN21PowerDownManagerDummy19triggerInterruptionEv93042
_ZN21PowerDownManagerDummy11updateStateE7Command416430
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func.html new file mode 100644 index 00000000..2e9392c4 --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func.html @@ -0,0 +1,105 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:66100.0 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN21PowerDownManagerDummy11triggerExitEv50
_ZN21PowerDownManagerDummy11updateStateE7Command416430
_ZN21PowerDownManagerDummy12triggerEntryEv1400
_ZN21PowerDownManagerDummy19triggerInterruptionEv93042
_ZN21PowerDownManagerDummyD0Ev32
_ZN21PowerDownManagerDummyD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.gcov.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.gcov.html new file mode 100644 index 00000000..a73d5f0c --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.gcov.html @@ -0,0 +1,135 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:66100.0 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40          32 : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43          32 : /* EOF */
+      44             : /* EOF */
+      45        1400 : /* EOF */
+      46          50 : /* EOF */
+      47       93042 : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50      416430 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func-sort-c.html new file mode 100644 index 00000000..63f480a1 --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func-sort-c.html @@ -0,0 +1,117 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:899296.7 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN25PowerDownManagerStaggeredC2E4RankP9CheckerIF10
_ZN25PowerDownManagerStaggered11triggerExitEv20
_GLOBAL__sub_I__ZN25PowerDownManagerStaggeredC2E4RankP9CheckerIF30
_Z41__static_initialization_and_destruction_0ii30
_ZN25PowerDownManagerStaggered12triggerEntryEv100
_ZN25PowerDownManagerStaggered19triggerInterruptionEv170
_ZN25PowerDownManagerStaggered11updateStateE7Command2275
_ZN25PowerDownManagerStaggered14getNextCommandEv8790
_ZN25PowerDownManagerStaggered5startEv17580
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func.html new file mode 100644 index 00000000..8f756f4d --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func.html @@ -0,0 +1,117 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:899296.7 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN25PowerDownManagerStaggeredC2E4RankP9CheckerIF30
_Z41__static_initialization_and_destruction_0ii30
_ZN25PowerDownManagerStaggered11triggerExitEv20
_ZN25PowerDownManagerStaggered11updateStateE7Command2275
_ZN25PowerDownManagerStaggered12triggerEntryEv100
_ZN25PowerDownManagerStaggered14getNextCommandEv8790
_ZN25PowerDownManagerStaggered19triggerInterruptionEv170
_ZN25PowerDownManagerStaggered5startEv17580
_ZN25PowerDownManagerStaggeredC2E4RankP9CheckerIF10
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.gcov.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.gcov.html new file mode 100644 index 00000000..1ef2939b --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.gcov.html @@ -0,0 +1,253 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:899296.7 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40          10 : /* EOF */
+      41          20 : /* EOF */
+      42             : /* EOF */
+      43          10 : /* EOF */
+      44          10 : /* EOF */
+      45             : /* EOF */
+      46         100 : /* EOF */
+      47             : /* EOF */
+      48         100 : /* EOF */
+      49             : /* EOF */
+      50         100 : /* EOF */
+      51          60 : /* EOF */
+      52         100 : /* EOF */
+      53             : /* EOF */
+      54          20 : /* EOF */
+      55             : /* EOF */
+      56          20 : /* EOF */
+      57          20 : /* EOF */
+      58          20 : /* EOF */
+      59             : /* EOF */
+      60          20 : /* EOF */
+      61          15 : /* EOF */
+      62          20 : /* EOF */
+      63             : /* EOF */
+      64         170 : /* EOF */
+      65             : /* EOF */
+      66         170 : /* EOF */
+      67             : /* EOF */
+      68         170 : /* EOF */
+      69          40 : /* EOF */
+      70         170 : /* EOF */
+      71             : /* EOF */
+      72        8790 : /* EOF */
+      73             : /* EOF */
+      74       17580 : /* EOF */
+      75         200 : /* EOF */
+      76             : /* EOF */
+      77       17380 : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80       17580 : /* EOF */
+      81             : /* EOF */
+      82       35160 : /* EOF */
+      83             : /* EOF */
+      84       17580 : /* EOF */
+      85             : /* EOF */
+      86         795 : /* EOF */
+      87          20 : /* EOF */
+      88         775 : /* EOF */
+      89          25 : /* EOF */
+      90         750 : /* EOF */
+      91          10 : /* EOF */
+      92         740 : /* EOF */
+      93         740 : /* EOF */
+      94             : /* EOF */
+      95        3180 : /* EOF */
+      96             : /* EOF */
+      97       16785 : /* EOF */
+      98             : /* EOF */
+      99         410 : /* EOF */
+     100         355 : /* EOF */
+     101             : /* EOF */
+     102          55 : /* EOF */
+     103             : /* EOF */
+     104        1640 : /* EOF */
+     105             : /* EOF */
+     106       16375 : /* EOF */
+     107             : /* EOF */
+     108          40 : /* EOF */
+     109         160 : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112       35160 : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115        2275 : /* EOF */
+     116             : /* EOF */
+     117        2275 : /* EOF */
+     118             : /* EOF */
+     119         500 : /* EOF */
+     120         500 : /* EOF */
+     121         500 : /* EOF */
+     122         340 : /* EOF */
+     123         340 : /* EOF */
+     124         340 : /* EOF */
+     125          10 : /* EOF */
+     126          10 : /* EOF */
+     127          10 : /* EOF */
+     128          15 : /* EOF */
+     129          15 : /* EOF */
+     130          15 : /* EOF */
+     131          15 : /* EOF */
+     132          15 : /* EOF */
+     133          15 : /* EOF */
+     134          15 : /* EOF */
+     135          15 : /* EOF */
+     136          10 : /* EOF */
+     137          10 : /* EOF */
+     138          10 : /* EOF */
+     139          10 : /* EOF */
+     140          10 : /* EOF */
+     141          10 : /* EOF */
+     142          10 : /* EOF */
+     143          10 : /* EOF */
+     144          10 : /* EOF */
+     145          15 : /* EOF */
+     146          15 : /* EOF */
+     147          15 : /* EOF */
+     148          15 : /* EOF */
+     149          10 : /* EOF */
+     150             : /* EOF */
+     151          10 : /* EOF */
+     152          10 : /* EOF */
+     153          10 : /* EOF */
+     154          20 : /* EOF */
+     155          20 : /* EOF */
+     156             : /* EOF */
+     157          10 : /* EOF */
+     158          10 : /* EOF */
+     159             : /* EOF */
+     160          10 : /* EOF */
+     161          10 : /* EOF */
+     162             : /* EOF */
+     163           0 : /* EOF */
+     164           0 : /* EOF */
+     165           0 : /* EOF */
+     166             : /* EOF */
+     167             : /* EOF */
+     168        2395 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func-sort-c.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func-sort-c.html new file mode 100644 index 00000000..832c36bb --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN25PowerDownManagerStaggeredD2Ev0
_ZN25PowerDownManagerStaggeredD0Ev10
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func.html new file mode 100644 index 00000000..5938dfe9 --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN25PowerDownManagerStaggeredD0Ev10
_ZN25PowerDownManagerStaggeredD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.gcov.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.gcov.html new file mode 100644 index 00000000..360664b5 --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.gcov.html @@ -0,0 +1,127 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42          10 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/index-sort-f.html b/html/DRAMSys/library/src/controller/powerdown/index-sort-f.html new file mode 100644 index 00000000..c0d350d2 --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/index-sort-f.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/powerdownHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10110497.1 %
Date:2020-06-30 17:34:44Functions:192190.5 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
PowerDownManagerStaggered.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
PowerDownManagerDummy.h +
100.0%
+
100.0 %6 / 683.3 %5 / 6
PowerDownManagerDummy.cpp +
100.0%
+
100.0 %5 / 5100.0 %4 / 4
PowerDownManagerStaggered.cpp +
96.7%96.7%
+
96.7 %89 / 92100.0 %9 / 9
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/index-sort-l.html b/html/DRAMSys/library/src/controller/powerdown/index-sort-l.html new file mode 100644 index 00000000..b9242e62 --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/index-sort-l.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/powerdownHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10110497.1 %
Date:2020-06-30 17:34:44Functions:192190.5 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
PowerDownManagerStaggered.cpp +
96.7%96.7%
+
96.7 %89 / 92100.0 %9 / 9
PowerDownManagerStaggered.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
PowerDownManagerDummy.cpp +
100.0%
+
100.0 %5 / 5100.0 %4 / 4
PowerDownManagerDummy.h +
100.0%
+
100.0 %6 / 683.3 %5 / 6
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/powerdown/index.html b/html/DRAMSys/library/src/controller/powerdown/index.html new file mode 100644 index 00000000..315dfdbd --- /dev/null +++ b/html/DRAMSys/library/src/controller/powerdown/index.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/powerdownHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10110497.1 %
Date:2020-06-30 17:34:44Functions:192190.5 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
PowerDownManagerDummy.cpp +
100.0%
+
100.0 %5 / 5100.0 %4 / 4
PowerDownManagerDummy.h +
100.0%
+
100.0 %6 / 683.3 %5 / 6
PowerDownManagerStaggered.cpp +
96.7%96.7%
+
96.7 %89 / 92100.0 %9 / 9
PowerDownManagerStaggered.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func-sort-c.html new file mode 100644 index 00000000..a9dd0798 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:829784.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN22RefreshManagerBankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_Z41__static_initialization_and_destruction_0ii30
_ZN22RefreshManagerBankwise14getNextCommandEv548424
_ZN22RefreshManagerBankwise5startEv1096848
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func.html new file mode 100644 index 00000000..4a4bced0 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:829784.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN22RefreshManagerBankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_Z41__static_initialization_and_destruction_0ii30
_ZN22RefreshManagerBankwise14getNextCommandEv548424
_ZN22RefreshManagerBankwise5startEv1096848
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.gcov.html new file mode 100644 index 00000000..698fc885 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.gcov.html @@ -0,0 +1,294 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:829784.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42          12 : /* EOF */
+      43          12 : /* EOF */
+      44          84 : /* EOF */
+      45             : /* EOF */
+      46          12 : /* EOF */
+      47          12 : /* EOF */
+      48          24 : /* EOF */
+      49             : /* EOF */
+      50          36 : /* EOF */
+      51         108 : /* EOF */
+      52             : /* EOF */
+      53         288 : /* EOF */
+      54         288 : /* EOF */
+      55             : /* EOF */
+      56          24 : /* EOF */
+      57             : /* EOF */
+      58          12 : /* EOF */
+      59          12 : /* EOF */
+      60          12 : /* EOF */
+      61             : /* EOF */
+      62      548424 : /* EOF */
+      63             : /* EOF */
+      64     1096848 : /* EOF */
+      65        4056 : /* EOF */
+      66        8112 : /* EOF */
+      67             : /* EOF */
+      68     1092792 : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71     1096848 : /* EOF */
+      72             : /* EOF */
+      73     2193696 : /* EOF */
+      74             : /* EOF */
+      75     2193696 : /* EOF */
+      76             : /* EOF */
+      77       89256 : /* EOF */
+      78       89256 : /* EOF */
+      79           0 : /* EOF */
+      80             : /* EOF */
+      81      267768 : /* EOF */
+      82             : /* EOF */
+      83         912 : /* EOF */
+      84         456 : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87       89256 : /* EOF */
+      88             : /* EOF */
+      89      157536 : /* EOF */
+      90      236304 : /* EOF */
+      91       78768 : /* EOF */
+      92       78768 : /* EOF */
+      93             : /* EOF */
+      94       78768 : /* EOF */
+      95             : /* EOF */
+      96       47820 : /* EOF */
+      97             : /* EOF */
+      98       14520 : /* EOF */
+      99             : /* EOF */
+     100         468 : /* EOF */
+     101         468 : /* EOF */
+     102         468 : /* EOF */
+     103         468 : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108       78768 : /* EOF */
+     109             : /* EOF */
+     110        1692 : /* EOF */
+     111        3384 : /* EOF */
+     112        1692 : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115             : /* EOF */
+     116       77076 : /* EOF */
+     117         564 : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120       76512 : /* EOF */
+     121             : /* EOF */
+     122       76512 : /* EOF */
+     123             : /* EOF */
+     124       76104 : /* EOF */
+     125       76104 : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129      308304 : /* EOF */
+     130      231228 : /* EOF */
+     131       77076 : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136       10488 : /* EOF */
+     137             : /* EOF */
+     138       37248 : /* EOF */
+     139             : /* EOF */
+     140       13224 : /* EOF */
+     141             : /* EOF */
+     142       10332 : /* EOF */
+     143       10332 : /* EOF */
+     144       10332 : /* EOF */
+     145             : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148             : /* EOF */
+     149             : /* EOF */
+     150             : /* EOF */
+     151         156 : /* EOF */
+     152         312 : /* EOF */
+     153         156 : /* EOF */
+     154             : /* EOF */
+     155             : /* EOF */
+     156             : /* EOF */
+     157       10332 : /* EOF */
+     158        1644 : /* EOF */
+     159             : /* EOF */
+     160        8688 : /* EOF */
+     161       41328 : /* EOF */
+     162       30996 : /* EOF */
+     163       10332 : /* EOF */
+     164             : /* EOF */
+     165             : /* EOF */
+     166             : /* EOF */
+     167             : /* EOF */
+     168     1007592 : /* EOF */
+     169             : /* EOF */
+     170             : /* EOF */
+     171      191436 : /* EOF */
+     172             : /* EOF */
+     173      191436 : /* EOF */
+     174             : /* EOF */
+     175        1500 : /* EOF */
+     176        1500 : /* EOF */
+     177        4500 : /* EOF */
+     178        3000 : /* EOF */
+     179         180 : /* EOF */
+     180             : /* EOF */
+     181        1500 : /* EOF */
+     182         936 : /* EOF */
+     183             : /* EOF */
+     184         564 : /* EOF */
+     185             : /* EOF */
+     186        1500 : /* EOF */
+     187             : /* EOF */
+     188          96 : /* EOF */
+     189         192 : /* EOF */
+     190             : /* EOF */
+     191             : /* EOF */
+     192           0 : /* EOF */
+     193             : /* EOF */
+     194           0 : /* EOF */
+     195           0 : /* EOF */
+     196           0 : /* EOF */
+     197           0 : /* EOF */
+     198           0 : /* EOF */
+     199           0 : /* EOF */
+     200           0 : /* EOF */
+     201           0 : /* EOF */
+     202           0 : /* EOF */
+     203           0 : /* EOF */
+     204             : /* EOF */
+     205           0 : /* EOF */
+     206           0 : /* EOF */
+     207           0 : /* EOF */
+     208             : /* EOF */
+     209      191556 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func-sort-c.html new file mode 100644 index 00000000..549375c0 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN22RefreshManagerBankwiseD0Ev12
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func.html new file mode 100644 index 00000000..49c830d5 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN22RefreshManagerBankwiseD0Ev12
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.gcov.html new file mode 100644 index 00000000..4a144ee3 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.gcov.html @@ -0,0 +1,131 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46          48 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func-sort-c.html new file mode 100644 index 00000000..ffb67bc1 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func-sort-c.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1520.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN19RefreshManagerDummy14getNextCommandEv0
_ZN19RefreshManagerDummy5startEv0
_GLOBAL__sub_I__ZN19RefreshManagerDummy14getNextCommandEv30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func.html new file mode 100644 index 00000000..4be609f1 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1520.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN19RefreshManagerDummy14getNextCommandEv30
_ZN19RefreshManagerDummy14getNextCommandEv0
_ZN19RefreshManagerDummy5startEv0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.gcov.html new file mode 100644 index 00000000..862733fb --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1520.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39           0 : /* EOF */
+      40             : /* EOF */
+      41           0 : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45             : /* EOF */
+      46           0 : /* EOF */
+      47          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func-sort-c.html new file mode 100644 index 00000000..a81ee993 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func-sort-c.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:020.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN19RefreshManagerDummy11updateStateE7CommandPN3tlm19tlm_generic_payloadE0
_ZN19RefreshManagerDummyD0Ev0
_ZN19RefreshManagerDummyD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func.html new file mode 100644 index 00000000..ecb0768f --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:020.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN19RefreshManagerDummy11updateStateE7CommandPN3tlm19tlm_generic_payloadE0
_ZN19RefreshManagerDummyD0Ev0
_ZN19RefreshManagerDummyD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.gcov.html new file mode 100644 index 00000000..ef9e8387 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.gcov.html @@ -0,0 +1,134 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:020.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func-sort-c.html new file mode 100644 index 00000000..b35975e2 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func-sort-c.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:798197.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN22RefreshManagerRankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_ZN22RefreshManagerRankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_ZN22RefreshManagerRankwise11updateStateE7CommandPN3tlm19tlm_generic_payloadE227269
_ZN22RefreshManagerRankwise14getNextCommandEv546133
_ZN22RefreshManagerRankwise5startEv1092466
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func.html new file mode 100644 index 00000000..d9fbc1ac --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:798197.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN22RefreshManagerRankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_ZN22RefreshManagerRankwise11updateStateE7CommandPN3tlm19tlm_generic_payloadE227269
_ZN22RefreshManagerRankwise14getNextCommandEv546133
_ZN22RefreshManagerRankwise5startEv1092466
_ZN22RefreshManagerRankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.gcov.html new file mode 100644 index 00000000..75be20c8 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.gcov.html @@ -0,0 +1,274 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:798197.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42          30 : /* EOF */
+      43          30 : /* EOF */
+      44          90 : /* EOF */
+      45             : /* EOF */
+      46          30 : /* EOF */
+      47          30 : /* EOF */
+      48          60 : /* EOF */
+      49          30 : /* EOF */
+      50             : /* EOF */
+      51          30 : /* EOF */
+      52          30 : /* EOF */
+      53          30 : /* EOF */
+      54             : /* EOF */
+      55      546133 : /* EOF */
+      56             : /* EOF */
+      57     1092266 : /* EOF */
+      58         966 : /* EOF */
+      59             : /* EOF */
+      60     1091300 : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63     1092466 : /* EOF */
+      64             : /* EOF */
+      65     2184932 : /* EOF */
+      66             : /* EOF */
+      67     2184932 : /* EOF */
+      68             : /* EOF */
+      69        3956 : /* EOF */
+      70        3956 : /* EOF */
+      71          40 : /* EOF */
+      72             : /* EOF */
+      73       11748 : /* EOF */
+      74             : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79        3916 : /* EOF */
+      80             : /* EOF */
+      81        3778 : /* EOF */
+      82             : /* EOF */
+      83       72120 : /* EOF */
+      84       57488 : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88         120 : /* EOF */
+      89         864 : /* EOF */
+      90             : /* EOF */
+      91         480 : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98         120 : /* EOF */
+      99             : /* EOF */
+     100          96 : /* EOF */
+     101         192 : /* EOF */
+     102          96 : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106        3682 : /* EOF */
+     107        2790 : /* EOF */
+     108             : /* EOF */
+     109         892 : /* EOF */
+     110       14728 : /* EOF */
+     111        3682 : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115         138 : /* EOF */
+     116        2088 : /* EOF */
+     117             : /* EOF */
+     118        1578 : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125         138 : /* EOF */
+     126             : /* EOF */
+     127          42 : /* EOF */
+     128          84 : /* EOF */
+     129          42 : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134         384 : /* EOF */
+     135          96 : /* EOF */
+     136             : /* EOF */
+     137             : /* EOF */
+     138             : /* EOF */
+     139             : /* EOF */
+     140     1088510 : /* EOF */
+     141             : /* EOF */
+     142             : /* EOF */
+     143      227269 : /* EOF */
+     144             : /* EOF */
+     145      227269 : /* EOF */
+     146             : /* EOF */
+     147       93452 : /* EOF */
+     148       93452 : /* EOF */
+     149       93452 : /* EOF */
+     150         340 : /* EOF */
+     151         340 : /* EOF */
+     152         340 : /* EOF */
+     153         212 : /* EOF */
+     154         212 : /* EOF */
+     155         212 : /* EOF */
+     156         276 : /* EOF */
+     157         276 : /* EOF */
+     158             : /* EOF */
+     159             : /* EOF */
+     160          10 : /* EOF */
+     161          30 : /* EOF */
+     162          10 : /* EOF */
+     163             : /* EOF */
+     164             : /* EOF */
+     165             : /* EOF */
+     166         266 : /* EOF */
+     167          48 : /* EOF */
+     168             : /* EOF */
+     169         218 : /* EOF */
+     170             : /* EOF */
+     171         266 : /* EOF */
+     172             : /* EOF */
+     173         176 : /* EOF */
+     174         352 : /* EOF */
+     175             : /* EOF */
+     176             : /* EOF */
+     177             : /* EOF */
+     178          30 : /* EOF */
+     179          30 : /* EOF */
+     180          30 : /* EOF */
+     181          10 : /* EOF */
+     182          10 : /* EOF */
+     183          10 : /* EOF */
+     184             : /* EOF */
+     185          25 : /* EOF */
+     186          25 : /* EOF */
+     187          25 : /* EOF */
+     188             : /* EOF */
+     189      227389 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func-sort-c.html new file mode 100644 index 00000000..09a6172e --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN22RefreshManagerRankwiseD2Ev0
_ZN22RefreshManagerRankwiseD0Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func.html new file mode 100644 index 00000000..2c30bcdc --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN22RefreshManagerRankwiseD0Ev30
_ZN22RefreshManagerRankwiseD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.gcov.html new file mode 100644 index 00000000..49d05306 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          30 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/index-sort-f.html b/html/DRAMSys/library/src/controller/refresh/index-sort-f.html new file mode 100644 index 00000000..3e870329 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/index-sort-f.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/refreshHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:16418787.7 %
Date:2020-06-30 17:34:44Functions:172373.9 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RefreshManagerDummy.h +
0.0%
+
0.0 %0 / 20.0 %0 / 3
RefreshManagerRankwise.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
RefreshManagerDummy.cpp +
20.0%20.0%
+
20.0 %1 / 550.0 %2 / 4
RefreshManagerBankwise.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
RefreshManagerRankwise.cpp +
97.5%97.5%
+
97.5 %79 / 81100.0 %6 / 6
RefreshManagerBankwise.cpp +
84.5%84.5%
+
84.5 %82 / 97100.0 %6 / 6
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/index-sort-l.html b/html/DRAMSys/library/src/controller/refresh/index-sort-l.html new file mode 100644 index 00000000..a56e3977 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/index-sort-l.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/refreshHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:16418787.7 %
Date:2020-06-30 17:34:44Functions:172373.9 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RefreshManagerDummy.h +
0.0%
+
0.0 %0 / 20.0 %0 / 3
RefreshManagerDummy.cpp +
20.0%20.0%
+
20.0 %1 / 550.0 %2 / 4
RefreshManagerBankwise.cpp +
84.5%84.5%
+
84.5 %82 / 97100.0 %6 / 6
RefreshManagerRankwise.cpp +
97.5%97.5%
+
97.5 %79 / 81100.0 %6 / 6
RefreshManagerRankwise.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
RefreshManagerBankwise.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/refresh/index.html b/html/DRAMSys/library/src/controller/refresh/index.html new file mode 100644 index 00000000..6da23602 --- /dev/null +++ b/html/DRAMSys/library/src/controller/refresh/index.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/refreshHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:16418787.7 %
Date:2020-06-30 17:34:44Functions:172373.9 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RefreshManagerBankwise.cpp +
84.5%84.5%
+
84.5 %82 / 97100.0 %6 / 6
RefreshManagerBankwise.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
RefreshManagerDummy.cpp +
20.0%20.0%
+
20.0 %1 / 550.0 %2 / 4
RefreshManagerDummy.h +
0.0%
+
0.0 %0 / 20.0 %0 / 3
RefreshManagerRankwise.cpp +
97.5%97.5%
+
97.5 %79 / 81100.0 %6 / 6
RefreshManagerRankwise.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func-sort-c.html new file mode 100644 index 00000000..b2415132 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func-sort-c.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1515100.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13RespQueueFifo13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13RespQueueFifo13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE252938
_ZN13RespQueueFifo11nextPayloadEv984087
_ZNK13RespQueueFifo14getTriggerTimeEv984087
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func.html new file mode 100644 index 00000000..1ff9f67d --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1515100.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13RespQueueFifo13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13RespQueueFifo11nextPayloadEv984087
_ZN13RespQueueFifo13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE252938
_ZNK13RespQueueFifo14getTriggerTimeEv984087
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.gcov.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.gcov.html new file mode 100644 index 00000000..6a82259f --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.gcov.html @@ -0,0 +1,152 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1515100.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39      252938 : /* EOF */
+      40             : /* EOF */
+      41      758814 : /* EOF */
+      42      252938 : /* EOF */
+      43             : /* EOF */
+      44      984087 : /* EOF */
+      45             : /* EOF */
+      46     1968174 : /* EOF */
+      47             : /* EOF */
+      48     2735724 : /* EOF */
+      49     1823816 : /* EOF */
+      50             : /* EOF */
+      51      505876 : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58      984087 : /* EOF */
+      59             : /* EOF */
+      60     1968174 : /* EOF */
+      61             : /* EOF */
+      62     2735724 : /* EOF */
+      63     1823816 : /* EOF */
+      64      911908 : /* EOF */
+      65             : /* EOF */
+      66       72179 : /* EOF */
+      67          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func-sort-c.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func-sort-c.html new file mode 100644 index 00000000..21c64826 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func.html new file mode 100644 index 00000000..d4a87562 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.gcov.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.gcov.html new file mode 100644 index 00000000..30daea91 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.gcov.html @@ -0,0 +1,129 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          74 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func-sort-c.html new file mode 100644 index 00000000..5da5f479 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func-sort-c.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1175.9 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN16RespQueueReorder13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE0
_GLOBAL__sub_I__ZN16RespQueueReorder13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func.html new file mode 100644 index 00000000..a835ecb6 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1175.9 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN16RespQueueReorder13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN16RespQueueReorder13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.gcov.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.gcov.html new file mode 100644 index 00000000..0b59cec2 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.gcov.html @@ -0,0 +1,159 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1175.9 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40           0 : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+      43           0 : /* EOF */
+      44             : /* EOF */
+      45           0 : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+      48             : /* EOF */
+      49           0 : /* EOF */
+      50             : /* EOF */
+      51           0 : /* EOF */
+      52           0 : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62           0 : /* EOF */
+      63             : /* EOF */
+      64           0 : /* EOF */
+      65             : /* EOF */
+      66           0 : /* EOF */
+      67             : /* EOF */
+      68           0 : /* EOF */
+      69           0 : /* EOF */
+      70           0 : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73           0 : /* EOF */
+      74          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func-sort-c.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func-sort-c.html new file mode 100644 index 00000000..7088cf22 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func.html new file mode 100644 index 00000000..1683f50e --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.gcov.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.gcov.html new file mode 100644 index 00000000..1f5828fc --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.gcov.html @@ -0,0 +1,128 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/index-sort-f.html b/html/DRAMSys/library/src/controller/respqueue/index-sort-f.html new file mode 100644 index 00000000..cca5ee40 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/index-sort-f.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/respqueueHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:173450.0 %
Date:2020-06-30 17:34:44Functions:71070.0 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RespQueueReorder.cpp +
5.9%5.9%
+
5.9 %1 / 1740.0 %2 / 5
RespQueueReorder.h +
0.0%
+
0.0 %0 / 1-0 / 0
RespQueueFifo.h +
100.0%
+
100.0 %1 / 1-0 / 0
RespQueueFifo.cpp +
100.0%
+
100.0 %15 / 15100.0 %5 / 5
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/index-sort-l.html b/html/DRAMSys/library/src/controller/respqueue/index-sort-l.html new file mode 100644 index 00000000..c35ea100 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/index-sort-l.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/respqueueHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:173450.0 %
Date:2020-06-30 17:34:44Functions:71070.0 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RespQueueReorder.h +
0.0%
+
0.0 %0 / 1-0 / 0
RespQueueReorder.cpp +
5.9%5.9%
+
5.9 %1 / 1740.0 %2 / 5
RespQueueFifo.h +
100.0%
+
100.0 %1 / 1-0 / 0
RespQueueFifo.cpp +
100.0%
+
100.0 %15 / 15100.0 %5 / 5
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/respqueue/index.html b/html/DRAMSys/library/src/controller/respqueue/index.html new file mode 100644 index 00000000..079f9e80 --- /dev/null +++ b/html/DRAMSys/library/src/controller/respqueue/index.html @@ -0,0 +1,133 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/respqueueHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:173450.0 %
Date:2020-06-30 17:34:44Functions:71070.0 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RespQueueFifo.cpp +
100.0%
+
100.0 %15 / 15100.0 %5 / 5
RespQueueFifo.h +
100.0%
+
100.0 %1 / 1-0 / 0
RespQueueReorder.cpp +
5.9%5.9%
+
5.9 %1 / 1740.0 %2 / 5
RespQueueReorder.h +
0.0%
+
0.0 %0 / 1-0 / 0
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func-sort-c.html new file mode 100644 index 00000000..5ce96a4c --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func-sort-c.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2727100.0 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13SchedulerFifoC2Ev26
_GLOBAL__sub_I__ZN13SchedulerFifoC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13SchedulerFifo12storeRequestEPN3tlm19tlm_generic_payloadE148696
_ZN13SchedulerFifo13removeRequestEPN3tlm19tlm_generic_payloadE148696
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func.html new file mode 100644 index 00000000..212af6a8 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2727100.0 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13SchedulerFifoC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13SchedulerFifo12storeRequestEPN3tlm19tlm_generic_payloadE148696
_ZN13SchedulerFifo13removeRequestEPN3tlm19tlm_generic_payloadE148696
_ZN13SchedulerFifoC2Ev26
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.gcov.html new file mode 100644 index 00000000..c39c48e8 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.gcov.html @@ -0,0 +1,176 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2727100.0 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39          52 : /* EOF */
+      40             : /* EOF */
+      41         104 : /* EOF */
+      42          52 : /* EOF */
+      43          26 : /* EOF */
+      44          26 : /* EOF */
+      45             : /* EOF */
+      46      665070 : /* EOF */
+      47             : /* EOF */
+      48     1995210 : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51      516374 : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54      148696 : /* EOF */
+      55             : /* EOF */
+      56      297392 : /* EOF */
+      57      297392 : /* EOF */
+      58      148696 : /* EOF */
+      59             : /* EOF */
+      60      148696 : /* EOF */
+      61             : /* EOF */
+      62      446088 : /* EOF */
+      63      148696 : /* EOF */
+      64             : /* EOF */
+      65     7923528 : /* EOF */
+      66             : /* EOF */
+      67    15847056 : /* EOF */
+      68    23770584 : /* EOF */
+      69    11399674 : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74     2293800 : /* EOF */
+      75             : /* EOF */
+      76     6881400 : /* EOF */
+      77             : /* EOF */
+      78     4587600 : /* EOF */
+      79     2293800 : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85     2310144 : /* EOF */
+      86             : /* EOF */
+      87     6930432 : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90       16344 : /* EOF */
+      91         120 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func-sort-c.html new file mode 100644 index 00000000..f910edad --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13SchedulerFifoD2Ev0
_ZN13SchedulerFifoD0Ev26
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func.html new file mode 100644 index 00000000..8400dade --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13SchedulerFifoD0Ev26
_ZN13SchedulerFifoD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.gcov.html new file mode 100644 index 00000000..89430a0b --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.gcov.html @@ -0,0 +1,130 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45          26 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func-sort-c.html new file mode 100644 index 00000000..261c49c8 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:343889.5 %
Date:2020-06-30 17:34:44Functions:8988.9 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN15SchedulerFrFcfsC2Ev30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func.html new file mode 100644 index 00000000..d4902252 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:343889.5 %
Date:2020-06-30 17:34:44Functions:8988.9 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN15SchedulerFrFcfsC2Ev30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.gcov.html new file mode 100644 index 00000000..fadfaf4e --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.gcov.html @@ -0,0 +1,203 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:343889.5 %
Date:2020-06-30 17:34:44Functions:8988.9 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41          12 : /* EOF */
+      42             : /* EOF */
+      43          24 : /* EOF */
+      44          12 : /* EOF */
+      45           6 : /* EOF */
+      46           6 : /* EOF */
+      47             : /* EOF */
+      48      322602 : /* EOF */
+      49             : /* EOF */
+      50      967806 : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53      219690 : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56      102912 : /* EOF */
+      57             : /* EOF */
+      58      205824 : /* EOF */
+      59      308736 : /* EOF */
+      60      102912 : /* EOF */
+      61             : /* EOF */
+      62      102912 : /* EOF */
+      63             : /* EOF */
+      64      205824 : /* EOF */
+      65      411840 : /* EOF */
+      66             : /* EOF */
+      67      103008 : /* EOF */
+      68             : /* EOF */
+      69      205824 : /* EOF */
+      70      102912 : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73           0 : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76     5314560 : /* EOF */
+      77             : /* EOF */
+      78    10629120 : /* EOF */
+      79    15943680 : /* EOF */
+      80             : /* EOF */
+      81     5306238 : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84     2493630 : /* EOF */
+      85    12477762 : /* EOF */
+      86             : /* EOF */
+      87     2496834 : /* EOF */
+      88     2493630 : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92     8437824 : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97     2493630 : /* EOF */
+      98             : /* EOF */
+      99     2493630 : /* EOF */
+     100    32485248 : /* EOF */
+     101             : /* EOF */
+     102     8494812 : /* EOF */
+     103             : /* EOF */
+     104     4316076 : /* EOF */
+     105     4316076 : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112           0 : /* EOF */
+     113             : /* EOF */
+     114           0 : /* EOF */
+     115             : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118         120 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func-sort-c.html new file mode 100644 index 00000000..c9cd8a8b --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN15SchedulerFrFcfsD2Ev0
_ZN15SchedulerFrFcfsD0Ev6
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func.html new file mode 100644 index 00000000..df2c08ac --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN15SchedulerFrFcfsD0Ev6
_ZN15SchedulerFrFcfsD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.gcov.html new file mode 100644 index 00000000..5a0164ff --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.gcov.html @@ -0,0 +1,130 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45           6 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func-sort-c.html new file mode 100644 index 00000000..2c6cd7f3 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374778.7 %
Date:2020-06-30 17:34:44Functions:7977.8 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN18SchedulerFrFcfsGrpC2Ev30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func.html new file mode 100644 index 00000000..f3100167 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374778.7 %
Date:2020-06-30 17:34:44Functions:7977.8 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN18SchedulerFrFcfsGrpC2Ev30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.gcov.html new file mode 100644 index 00000000..a8d4d232 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.gcov.html @@ -0,0 +1,226 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374778.7 %
Date:2020-06-30 17:34:44Functions:7977.8 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39          10 : /* EOF */
+      40             : /* EOF */
+      41          20 : /* EOF */
+      42          10 : /* EOF */
+      43           5 : /* EOF */
+      44           5 : /* EOF */
+      45             : /* EOF */
+      46        2130 : /* EOF */
+      47             : /* EOF */
+      48        6390 : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51         800 : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54        1330 : /* EOF */
+      55             : /* EOF */
+      56        2660 : /* EOF */
+      57        3990 : /* EOF */
+      58        1330 : /* EOF */
+      59             : /* EOF */
+      60        1330 : /* EOF */
+      61             : /* EOF */
+      62        1330 : /* EOF */
+      63        2660 : /* EOF */
+      64        7480 : /* EOF */
+      65             : /* EOF */
+      66        2410 : /* EOF */
+      67             : /* EOF */
+      68        2660 : /* EOF */
+      69        1330 : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72           0 : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75       62455 : /* EOF */
+      76             : /* EOF */
+      77      124910 : /* EOF */
+      78      187365 : /* EOF */
+      79             : /* EOF */
+      80       53050 : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83       47575 : /* EOF */
+      84       52180 : /* EOF */
+      85      877595 : /* EOF */
+      86             : /* EOF */
+      87      213240 : /* EOF */
+      88       86975 : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91       47575 : /* EOF */
+      92             : /* EOF */
+      93       90530 : /* EOF */
+      94             : /* EOF */
+      95       56235 : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98       73390 : /* EOF */
+      99             : /* EOF */
+     100        7170 : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106       34730 : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111       31545 : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115       30240 : /* EOF */
+     116             : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120           0 : /* EOF */
+     121             : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124             : /* EOF */
+     125           0 : /* EOF */
+     126             : /* EOF */
+     127           0 : /* EOF */
+     128           0 : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135           0 : /* EOF */
+     136             : /* EOF */
+     137           0 : /* EOF */
+     138             : /* EOF */
+     139             : /* EOF */
+     140           0 : /* EOF */
+     141         120 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func-sort-c.html new file mode 100644 index 00000000..d7372492 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN18SchedulerFrFcfsGrpD2Ev0
_ZN18SchedulerFrFcfsGrpD0Ev5
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func.html new file mode 100644 index 00000000..efa902eb --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN18SchedulerFrFcfsGrpD0Ev5
_ZN18SchedulerFrFcfsGrpD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.gcov.html new file mode 100644 index 00000000..26c63590 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.gcov.html @@ -0,0 +1,131 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46           5 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/index-sort-f.html b/html/DRAMSys/library/src/controller/scheduler/index-sort-f.html new file mode 100644 index 00000000..99504d75 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/index-sort-f.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/schedulerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10111587.8 %
Date:2020-06-30 17:34:44Functions:273381.8 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
SchedulerFrFcfs.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
SchedulerFifo.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfsGrp.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfsGrp.cpp +
78.7%78.7%
+
78.7 %37 / 4777.8 %7 / 9
SchedulerFrFcfs.cpp +
89.5%89.5%
+
89.5 %34 / 3888.9 %8 / 9
SchedulerFifo.cpp +
100.0%
+
100.0 %27 / 27100.0 %9 / 9
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/index-sort-l.html b/html/DRAMSys/library/src/controller/scheduler/index-sort-l.html new file mode 100644 index 00000000..ef617196 --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/index-sort-l.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/schedulerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10111587.8 %
Date:2020-06-30 17:34:44Functions:273381.8 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
SchedulerFrFcfsGrp.cpp +
78.7%78.7%
+
78.7 %37 / 4777.8 %7 / 9
SchedulerFrFcfs.cpp +
89.5%89.5%
+
89.5 %34 / 3888.9 %8 / 9
SchedulerFrFcfs.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
SchedulerFifo.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfsGrp.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
SchedulerFifo.cpp +
100.0%
+
100.0 %27 / 27100.0 %9 / 9
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/controller/scheduler/index.html b/html/DRAMSys/library/src/controller/scheduler/index.html new file mode 100644 index 00000000..a8da058d --- /dev/null +++ b/html/DRAMSys/library/src/controller/scheduler/index.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/controller/schedulerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10111587.8 %
Date:2020-06-30 17:34:44Functions:273381.8 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
SchedulerFifo.cpp +
100.0%
+
100.0 %27 / 27100.0 %9 / 9
SchedulerFifo.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfs.cpp +
89.5%89.5%
+
89.5 %34 / 3888.9 %8 / 9
SchedulerFrFcfs.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfsGrp.cpp +
78.7%78.7%
+
78.7 %37 / 4777.8 %7 / 9
SchedulerFrFcfsGrp.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Bit.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/Bit.cpp.func-sort-c.html new file mode 100644 index 00000000..03c98546 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Bit.cpp.func-sort-c.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Bit.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11010.0 %
Date:2020-06-30 17:34:44Functions:1520.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN4CBit5PrintEv0
_ZN4CBitC2ENS_5VALUEE0
_ZN4CBitD0Ev0
_ZN4CBitD2Ev0
_GLOBAL__sub_I__ZN4CBitC2ENS_5VALUEE30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Bit.cpp.func.html b/html/DRAMSys/library/src/error/ECC/Bit.cpp.func.html new file mode 100644 index 00000000..1b0cb259 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Bit.cpp.func.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Bit.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11010.0 %
Date:2020-06-30 17:34:44Functions:1520.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN4CBitC2ENS_5VALUEE30
_ZN4CBit5PrintEv0
_ZN4CBitC2ENS_5VALUEE0
_ZN4CBitD0Ev0
_ZN4CBitD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Bit.cpp.gcov.html b/html/DRAMSys/library/src/error/ECC/Bit.cpp.gcov.html new file mode 100644 index 00000000..d938b564 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Bit.cpp.gcov.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Bit.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11010.0 %
Date:2020-06-30 17:34:44Functions:1520.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7           0 : /* EOF */
+       8             : /* EOF */
+       9           0 : /* EOF */
+      10           0 : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13           0 : /* EOF */
+      14             : /* EOF */
+      15           0 : /* EOF */
+      16             : /* EOF */
+      17           0 : /* EOF */
+      18             : /* EOF */
+      19           0 : /* EOF */
+      20           0 : /* EOF */
+      21             : /* EOF */
+      22           0 : /* EOF */
+      23             : /* EOF */
+      24          60 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Bit.h.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/Bit.h.func-sort-c.html new file mode 100644 index 00000000..9de7e48c --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Bit.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Bit.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:080.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Bit.h.func.html b/html/DRAMSys/library/src/error/ECC/Bit.h.func.html new file mode 100644 index 00000000..a5b89a57 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Bit.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Bit.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:080.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Bit.h.gcov.html b/html/DRAMSys/library/src/error/ECC/Bit.h.gcov.html new file mode 100644 index 00000000..2efb3f70 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Bit.h.gcov.html @@ -0,0 +1,144 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Bit.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:080.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2           0 : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27           0 : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37           0 : /* EOF */
+      38           0 : /* EOF */
+      39             : /* EOF */
+      40           0 : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58             : /* EOF */
+      59           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/ECC.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/ECC.cpp.func-sort-c.html new file mode 100644 index 00000000..7c870b2f --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/ECC.cpp.func-sort-c.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/ECC.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - ECC.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:0470.0 %
Date:2020-06-30 17:34:44Functions:080.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN3ECC10ExtendWordER5CWord0
_ZN3ECC15InsertCheckbitsER5CWordS0_0
_ZN3ECC15InsertParityBitER5CWord4CBit0
_ZN3ECC16ExtractCheckbitsE5CWordRS0_0
_ZN3ECC16ExtractParityBitE5CWordR4CBit0
_ZN3ECC16GetNumParityBitsEj0
_ZN3ECC18CalculateCheckbitsER5CWordS1_0
_ZN3ECC18CalculateParityBitE5CWordR4CBit0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/ECC.cpp.func.html b/html/DRAMSys/library/src/error/ECC/ECC.cpp.func.html new file mode 100644 index 00000000..4717be01 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/ECC.cpp.func.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/ECC.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - ECC.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:0470.0 %
Date:2020-06-30 17:34:44Functions:080.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN3ECC10ExtendWordER5CWord0
_ZN3ECC15InsertCheckbitsER5CWordS0_0
_ZN3ECC15InsertParityBitER5CWord4CBit0
_ZN3ECC16ExtractCheckbitsE5CWordRS0_0
_ZN3ECC16ExtractParityBitE5CWordR4CBit0
_ZN3ECC16GetNumParityBitsEj0
_ZN3ECC18CalculateCheckbitsER5CWordS1_0
_ZN3ECC18CalculateParityBitE5CWordR4CBit0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/ECC.cpp.gcov.html b/html/DRAMSys/library/src/error/ECC/ECC.cpp.gcov.html new file mode 100644 index 00000000..7ee8d041 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/ECC.cpp.gcov.html @@ -0,0 +1,210 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/ECC.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - ECC.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:0470.0 %
Date:2020-06-30 17:34:44Functions:080.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6           0 : /* EOF */
+       7             : /* EOF */
+       8           0 : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12           0 : /* EOF */
+      13           0 : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16           0 : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22           0 : /* EOF */
+      23             : /* EOF */
+      24           0 : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29           0 : /* EOF */
+      30           0 : /* EOF */
+      31           0 : /* EOF */
+      32           0 : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36           0 : /* EOF */
+      37           0 : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45             : /* EOF */
+      46           0 : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49           0 : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66             : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70           0 : /* EOF */
+      71           0 : /* EOF */
+      72             : /* EOF */
+      73           0 : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79           0 : /* EOF */
+      80             : /* EOF */
+      81           0 : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86           0 : /* EOF */
+      87             : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97           0 : /* EOF */
+      98             : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104           0 : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107           0 : /* EOF */
+     108           0 : /* EOF */
+     109           0 : /* EOF */
+     110             : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115           0 : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Word.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/Word.cpp.func-sort-c.html new file mode 100644 index 00000000..d5eab843 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Word.cpp.func-sort-c.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Word.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1741.4 %
Date:2020-06-30 17:34:44Functions:1156.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN5CWord14PartShiftRightEjj0
_ZN5CWord5GetAtEj0
_ZN5CWord6AppendE4CBit0
_ZN5CWord6ResizeEj0
_ZN5CWord6RotateEv0
_ZN5CWordD0Ev0
_ZN5CWordD2Ev0
_GLOBAL__sub_I__ZN5CWordC2Ej30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Word.cpp.func.html b/html/DRAMSys/library/src/error/ECC/Word.cpp.func.html new file mode 100644 index 00000000..ed4b7f1e --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Word.cpp.func.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Word.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1741.4 %
Date:2020-06-30 17:34:44Functions:1156.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN5CWordC2Ej30
_ZN5CWord14PartShiftRightEjj0
_ZN5CWord5GetAtEj0
_ZN5CWord6AppendE4CBit0
_ZN5CWord6ResizeEj0
_ZN5CWord6RotateEv0
_ZN5CWordD0Ev0
_ZN5CWordD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Word.cpp.gcov.html b/html/DRAMSys/library/src/error/ECC/Word.cpp.gcov.html new file mode 100644 index 00000000..42d2f2f4 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Word.cpp.gcov.html @@ -0,0 +1,229 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Word.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1741.4 %
Date:2020-06-30 17:34:44Functions:1156.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10           0 : /* EOF */
+      11           0 : /* EOF */
+      12             : /* EOF */
+      13           0 : /* EOF */
+      14           0 : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17           0 : /* EOF */
+      18             : /* EOF */
+      19           0 : /* EOF */
+      20             : /* EOF */
+      21           0 : /* EOF */
+      22             : /* EOF */
+      23           0 : /* EOF */
+      24           0 : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30           0 : /* EOF */
+      31             : /* EOF */
+      32           0 : /* EOF */
+      33           0 : /* EOF */
+      34           0 : /* EOF */
+      35           0 : /* EOF */
+      36           0 : /* EOF */
+      37           0 : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40           0 : /* EOF */
+      41           0 : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45           0 : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+      48             : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51           0 : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54           0 : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63           0 : /* EOF */
+      64             : /* EOF */
+      65           0 : /* EOF */
+      66             : /* EOF */
+      67           0 : /* EOF */
+      68           0 : /* EOF */
+      69           0 : /* EOF */
+      70             : /* EOF */
+      71           0 : /* EOF */
+      72             : /* EOF */
+      73           0 : /* EOF */
+      74             : /* EOF */
+      75           0 : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80             : /* EOF */
+      81           0 : /* EOF */
+      82             : /* EOF */
+      83           0 : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86           0 : /* EOF */
+      87             : /* EOF */
+      88           0 : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91           0 : /* EOF */
+      92           0 : /* EOF */
+      93             : /* EOF */
+      94           0 : /* EOF */
+      95             : /* EOF */
+      96           0 : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101           0 : /* EOF */
+     102             : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105             : /* EOF */
+     106           0 : /* EOF */
+     107             : /* EOF */
+     108           0 : /* EOF */
+     109           0 : /* EOF */
+     110           0 : /* EOF */
+     111             : /* EOF */
+     112           0 : /* EOF */
+     113             : /* EOF */
+     114           0 : /* EOF */
+     115             : /* EOF */
+     116             : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125           0 : /* EOF */
+     126             : /* EOF */
+     127           0 : /* EOF */
+     128           0 : /* EOF */
+     129           0 : /* EOF */
+     130             : /* EOF */
+     131           0 : /* EOF */
+     132           0 : /* EOF */
+     133             : /* EOF */
+     134           0 : /* EOF */
+     135             : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138             : /* EOF */
+     139           0 : /* EOF */
+     140           0 : /* EOF */
+     141           0 : /* EOF */
+     142           0 : /* EOF */
+     143             : /* EOF */
+     144          60 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Word.h.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/Word.h.func-sort-c.html new file mode 100644 index 00000000..1d79fca8 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Word.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Word.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Word.h.func.html b/html/DRAMSys/library/src/error/ECC/Word.h.func.html new file mode 100644 index 00000000..7374eba3 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Word.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Word.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/Word.h.gcov.html b/html/DRAMSys/library/src/error/ECC/Word.h.gcov.html new file mode 100644 index 00000000..891df576 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/Word.h.gcov.html @@ -0,0 +1,135 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error/ECC - Word.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6           0 : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/index-sort-f.html b/html/DRAMSys/library/src/error/ECC/index-sort-f.html new file mode 100644 index 00000000..6cfcf1c3 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/index-sort-f.html @@ -0,0 +1,143 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/error/ECCHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:21421.4 %
Date:2020-06-30 17:34:44Functions:2287.1 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
ECC.cpp +
0.0%
+
0.0 %0 / 470.0 %0 / 8
Word.cpp +
1.4%1.4%
+
1.4 %1 / 746.7 %1 / 15
Bit.cpp +
10.0%10.0%
+
10.0 %1 / 1020.0 %1 / 5
Word.h +
0.0%
+
0.0 %0 / 3-0 / 0
Bit.h +
0.0%
+
0.0 %0 / 8-0 / 0
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/index-sort-l.html b/html/DRAMSys/library/src/error/ECC/index-sort-l.html new file mode 100644 index 00000000..6a016874 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/index-sort-l.html @@ -0,0 +1,143 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/error/ECCHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:21421.4 %
Date:2020-06-30 17:34:44Functions:2287.1 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Word.h +
0.0%
+
0.0 %0 / 3-0 / 0
Bit.h +
0.0%
+
0.0 %0 / 8-0 / 0
ECC.cpp +
0.0%
+
0.0 %0 / 470.0 %0 / 8
Word.cpp +
1.4%1.4%
+
1.4 %1 / 746.7 %1 / 15
Bit.cpp +
10.0%10.0%
+
10.0 %1 / 1020.0 %1 / 5
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ECC/index.html b/html/DRAMSys/library/src/error/ECC/index.html new file mode 100644 index 00000000..b216f0b0 --- /dev/null +++ b/html/DRAMSys/library/src/error/ECC/index.html @@ -0,0 +1,143 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/error/ECCHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:21421.4 %
Date:2020-06-30 17:34:44Functions:2287.1 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Bit.cpp +
10.0%10.0%
+
10.0 %1 / 1020.0 %1 / 5
Bit.h +
0.0%
+
0.0 %0 / 8-0 / 0
ECC.cpp +
0.0%
+
0.0 %0 / 470.0 %0 / 8
Word.cpp +
1.4%1.4%
+
1.4 %1 / 746.7 %1 / 15
Word.h +
0.0%
+
0.0 %0 / 3-0 / 0
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/eccbaseclass.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/eccbaseclass.cpp.func-sort-c.html new file mode 100644 index 00000000..d75c5a52 --- /dev/null +++ b/html/DRAMSys/library/src/error/eccbaseclass.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - eccbaseclass.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1352.9 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12ECCBaseClass15nb_transport_bwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN12ECCBaseClass15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_GLOBAL__sub_I__ZN12ECCBaseClass15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/eccbaseclass.cpp.func.html b/html/DRAMSys/library/src/error/eccbaseclass.cpp.func.html new file mode 100644 index 00000000..a8cc4335 --- /dev/null +++ b/html/DRAMSys/library/src/error/eccbaseclass.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - eccbaseclass.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1352.9 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12ECCBaseClass15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN12ECCBaseClass15nb_transport_bwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN12ECCBaseClass15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/eccbaseclass.cpp.gcov.html b/html/DRAMSys/library/src/error/eccbaseclass.cpp.gcov.html new file mode 100644 index 00000000..aaa018fe --- /dev/null +++ b/html/DRAMSys/library/src/error/eccbaseclass.cpp.gcov.html @@ -0,0 +1,168 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - eccbaseclass.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1352.9 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5           0 : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8           0 : /* EOF */
+       9             : /* EOF */
+      10           0 : /* EOF */
+      11             : /* EOF */
+      12           0 : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15           0 : /* EOF */
+      16           0 : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19           0 : /* EOF */
+      20           0 : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23           0 : /* EOF */
+      24           0 : /* EOF */
+      25           0 : /* EOF */
+      26             : /* EOF */
+      27           0 : /* EOF */
+      28             : /* EOF */
+      29           0 : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32           0 : /* EOF */
+      33           0 : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36           0 : /* EOF */
+      37           0 : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40           0 : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45           0 : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48           0 : /* EOF */
+      49             : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58           0 : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61           0 : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67             : /* EOF */
+      68           0 : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72           0 : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75           0 : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82           0 : /* EOF */
+      83          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/eccbaseclass.h.func-sort-c.html b/html/DRAMSys/library/src/error/eccbaseclass.h.func-sort-c.html new file mode 100644 index 00000000..04bf7a21 --- /dev/null +++ b/html/DRAMSys/library/src/error/eccbaseclass.h.func-sort-c.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - eccbaseclass.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:070.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12ECCBaseClassC2EN7sc_core14sc_module_nameE0
_ZN12ECCBaseClassD0Ev0
_ZN12ECCBaseClassD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/eccbaseclass.h.func.html b/html/DRAMSys/library/src/error/eccbaseclass.h.func.html new file mode 100644 index 00000000..fa7bdb30 --- /dev/null +++ b/html/DRAMSys/library/src/error/eccbaseclass.h.func.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - eccbaseclass.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:070.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN12ECCBaseClassC2EN7sc_core14sc_module_nameE0
_ZN12ECCBaseClassD0Ev0
_ZN12ECCBaseClassD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/eccbaseclass.h.gcov.html b/html/DRAMSys/library/src/error/eccbaseclass.h.gcov.html new file mode 100644 index 00000000..1bc7e5b2 --- /dev/null +++ b/html/DRAMSys/library/src/error/eccbaseclass.h.gcov.html @@ -0,0 +1,141 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - eccbaseclass.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:070.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13           0 : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50           0 : /* EOF */
+      51           0 : /* EOF */
+      52           0 : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ecchamming.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/ecchamming.cpp.func-sort-c.html new file mode 100644 index 00000000..fcbfa932 --- /dev/null +++ b/html/DRAMSys/library/src/error/ecchamming.cpp.func-sort-c.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - ecchamming.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1462.2 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10ECCHamming14AllocationSizeEj0
_ZN10ECCHamming6DecodeEPKhjPhj0
_ZN10ECCHamming6EncodeEPKhjPhj0
_GLOBAL__sub_I__ZN10ECCHamming14AllocationSizeEj30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ecchamming.cpp.func.html b/html/DRAMSys/library/src/error/ecchamming.cpp.func.html new file mode 100644 index 00000000..59c3c903 --- /dev/null +++ b/html/DRAMSys/library/src/error/ecchamming.cpp.func.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - ecchamming.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1462.2 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10ECCHamming14AllocationSizeEj30
_Z41__static_initialization_and_destruction_0ii30
_ZN10ECCHamming14AllocationSizeEj0
_ZN10ECCHamming6DecodeEPKhjPhj0
_ZN10ECCHamming6EncodeEPKhjPhj0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ecchamming.cpp.gcov.html b/html/DRAMSys/library/src/error/ecchamming.cpp.gcov.html new file mode 100644 index 00000000..2a22fbe8 --- /dev/null +++ b/html/DRAMSys/library/src/error/ecchamming.cpp.gcov.html @@ -0,0 +1,215 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - ecchamming.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1462.2 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5           0 : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8           0 : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11           0 : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15           0 : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21           0 : /* EOF */
+      22             : /* EOF */
+      23           0 : /* EOF */
+      24           0 : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27           0 : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30           0 : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33           0 : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36           0 : /* EOF */
+      37           0 : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40           0 : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53           0 : /* EOF */
+      54             : /* EOF */
+      55           0 : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59           0 : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65           0 : /* EOF */
+      66             : /* EOF */
+      67           0 : /* EOF */
+      68           0 : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71           0 : /* EOF */
+      72           0 : /* EOF */
+      73           0 : /* EOF */
+      74           0 : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77           0 : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80           0 : /* EOF */
+      81           0 : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87           0 : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90           0 : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93           0 : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96           0 : /* EOF */
+      97           0 : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102           0 : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105           0 : /* EOF */
+     106             : /* EOF */
+     107           0 : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110           0 : /* EOF */
+     111             : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115           0 : /* EOF */
+     116             : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119           0 : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127           0 : /* EOF */
+     128           0 : /* EOF */
+     129             : /* EOF */
+     130          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ecchamming.h.func-sort-c.html b/html/DRAMSys/library/src/error/ecchamming.h.func-sort-c.html new file mode 100644 index 00000000..e5d35921 --- /dev/null +++ b/html/DRAMSys/library/src/error/ecchamming.h.func-sort-c.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - ecchamming.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:040.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10ECCHammingC2EN7sc_core14sc_module_nameE0
_ZN10ECCHammingD0Ev0
_ZN10ECCHammingD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ecchamming.h.func.html b/html/DRAMSys/library/src/error/ecchamming.h.func.html new file mode 100644 index 00000000..4dbdd6fd --- /dev/null +++ b/html/DRAMSys/library/src/error/ecchamming.h.func.html @@ -0,0 +1,93 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - ecchamming.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:040.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10ECCHammingC2EN7sc_core14sc_module_nameE0
_ZN10ECCHammingD0Ev0
_ZN10ECCHammingD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/ecchamming.h.gcov.html b/html/DRAMSys/library/src/error/ecchamming.h.gcov.html new file mode 100644 index 00000000..a1bc0f70 --- /dev/null +++ b/html/DRAMSys/library/src/error/ecchamming.h.gcov.html @@ -0,0 +1,128 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - ecchamming.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:040.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7           0 : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16           0 : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+      43           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/errormodel.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/errormodel.cpp.func-sort-c.html new file mode 100644 index 00000000..496b4f6a --- /dev/null +++ b/html/DRAMSys/library/src/error/errormodel.cpp.func-sort-c.html @@ -0,0 +1,125 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - errormodel.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13090.3 %
Date:2020-06-30 17:34:44Functions:21910.5 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10errorModel10setContextE14DecodedAddress0
_ZN10errorModel12markBitFlipsEv0
_ZN10errorModel14getTemperatureEv0
_ZN10errorModel14parseInputDataEv0
_ZN10errorModel4initEv0
_ZN10errorModel6getBitEiiii0
_ZN10errorModel7refreshEj0
_ZN10errorModel8activateEj0
_ZN10errorModelD0Ev0
_GLOBAL__sub_I__ZN10errorModel4initEv30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/errormodel.cpp.func.html b/html/DRAMSys/library/src/error/errormodel.cpp.func.html new file mode 100644 index 00000000..58381a02 --- /dev/null +++ b/html/DRAMSys/library/src/error/errormodel.cpp.func.html @@ -0,0 +1,125 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - errormodel.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13090.3 %
Date:2020-06-30 17:34:44Functions:21910.5 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10errorModel4initEv30
_Z41__static_initialization_and_destruction_0ii30
_ZN10errorModel10setContextE14DecodedAddress0
_ZN10errorModel12markBitFlipsEv0
_ZN10errorModel14getTemperatureEv0
_ZN10errorModel14parseInputDataEv0
_ZN10errorModel4initEv0
_ZN10errorModel6getBitEiiii0
_ZN10errorModel7refreshEj0
_ZN10errorModel8activateEj0
_ZN10errorModelD0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/errormodel.cpp.gcov.html b/html/DRAMSys/library/src/error/errormodel.cpp.gcov.html new file mode 100644 index 00000000..4cb7bdb1 --- /dev/null +++ b/html/DRAMSys/library/src/error/errormodel.cpp.gcov.html @@ -0,0 +1,828 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - errormodel.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13090.3 %
Date:2020-06-30 17:34:44Functions:21910.5 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+      48             : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54           0 : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57           0 : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70           0 : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73           0 : /* EOF */
+      74           0 : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118             : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122             : /* EOF */
+     123           0 : /* EOF */
+     124             : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127             : /* EOF */
+     128           0 : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131           0 : /* EOF */
+     132           0 : /* EOF */
+     133           0 : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136           0 : /* EOF */
+     137             : /* EOF */
+     138             : /* EOF */
+     139           0 : /* EOF */
+     140             : /* EOF */
+     141             : /* EOF */
+     142           0 : /* EOF */
+     143             : /* EOF */
+     144             : /* EOF */
+     145           0 : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148           0 : /* EOF */
+     149             : /* EOF */
+     150           0 : /* EOF */
+     151             : /* EOF */
+     152             : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155           0 : /* EOF */
+     156             : /* EOF */
+     157             : /* EOF */
+     158           0 : /* EOF */
+     159             : /* EOF */
+     160             : /* EOF */
+     161           0 : /* EOF */
+     162           0 : /* EOF */
+     163           0 : /* EOF */
+     164           0 : /* EOF */
+     165             : /* EOF */
+     166           0 : /* EOF */
+     167             : /* EOF */
+     168           0 : /* EOF */
+     169           0 : /* EOF */
+     170           0 : /* EOF */
+     171           0 : /* EOF */
+     172             : /* EOF */
+     173             : /* EOF */
+     174             : /* EOF */
+     175             : /* EOF */
+     176             : /* EOF */
+     177             : /* EOF */
+     178             : /* EOF */
+     179             : /* EOF */
+     180             : /* EOF */
+     181           0 : /* EOF */
+     182             : /* EOF */
+     183             : /* EOF */
+     184             : /* EOF */
+     185           0 : /* EOF */
+     186             : /* EOF */
+     187           0 : /* EOF */
+     188             : /* EOF */
+     189           0 : /* EOF */
+     190             : /* EOF */
+     191             : /* EOF */
+     192             : /* EOF */
+     193           0 : /* EOF */
+     194             : /* EOF */
+     195             : /* EOF */
+     196             : /* EOF */
+     197           0 : /* EOF */
+     198             : /* EOF */
+     199             : /* EOF */
+     200           0 : /* EOF */
+     201             : /* EOF */
+     202           0 : /* EOF */
+     203             : /* EOF */
+     204             : /* EOF */
+     205           0 : /* EOF */
+     206           0 : /* EOF */
+     207             : /* EOF */
+     208             : /* EOF */
+     209             : /* EOF */
+     210             : /* EOF */
+     211             : /* EOF */
+     212           0 : /* EOF */
+     213             : /* EOF */
+     214             : /* EOF */
+     215           0 : /* EOF */
+     216           0 : /* EOF */
+     217           0 : /* EOF */
+     218             : /* EOF */
+     219             : /* EOF */
+     220             : /* EOF */
+     221           0 : /* EOF */
+     222             : /* EOF */
+     223           0 : /* EOF */
+     224             : /* EOF */
+     225             : /* EOF */
+     226           0 : /* EOF */
+     227             : /* EOF */
+     228             : /* EOF */
+     229           0 : /* EOF */
+     230           0 : /* EOF */
+     231           0 : /* EOF */
+     232           0 : /* EOF */
+     233             : /* EOF */
+     234             : /* EOF */
+     235           0 : /* EOF */
+     236             : /* EOF */
+     237             : /* EOF */
+     238             : /* EOF */
+     239             : /* EOF */
+     240             : /* EOF */
+     241           0 : /* EOF */
+     242             : /* EOF */
+     243           0 : /* EOF */
+     244           0 : /* EOF */
+     245             : /* EOF */
+     246             : /* EOF */
+     247             : /* EOF */
+     248           0 : /* EOF */
+     249             : /* EOF */
+     250             : /* EOF */
+     251           0 : /* EOF */
+     252             : /* EOF */
+     253             : /* EOF */
+     254             : /* EOF */
+     255             : /* EOF */
+     256           0 : /* EOF */
+     257             : /* EOF */
+     258           0 : /* EOF */
+     259             : /* EOF */
+     260           0 : /* EOF */
+     261           0 : /* EOF */
+     262           0 : /* EOF */
+     263             : /* EOF */
+     264           0 : /* EOF */
+     265             : /* EOF */
+     266           0 : /* EOF */
+     267             : /* EOF */
+     268             : /* EOF */
+     269           0 : /* EOF */
+     270             : /* EOF */
+     271             : /* EOF */
+     272             : /* EOF */
+     273           0 : /* EOF */
+     274             : /* EOF */
+     275           0 : /* EOF */
+     276           0 : /* EOF */
+     277           0 : /* EOF */
+     278             : /* EOF */
+     279             : /* EOF */
+     280           0 : /* EOF */
+     281             : /* EOF */
+     282             : /* EOF */
+     283             : /* EOF */
+     284             : /* EOF */
+     285           0 : /* EOF */
+     286             : /* EOF */
+     287           0 : /* EOF */
+     288             : /* EOF */
+     289             : /* EOF */
+     290             : /* EOF */
+     291           0 : /* EOF */
+     292           0 : /* EOF */
+     293             : /* EOF */
+     294           0 : /* EOF */
+     295             : /* EOF */
+     296             : /* EOF */
+     297           0 : /* EOF */
+     298             : /* EOF */
+     299             : /* EOF */
+     300             : /* EOF */
+     301             : /* EOF */
+     302             : /* EOF */
+     303           0 : /* EOF */
+     304           0 : /* EOF */
+     305             : /* EOF */
+     306           0 : /* EOF */
+     307           0 : /* EOF */
+     308           0 : /* EOF */
+     309           0 : /* EOF */
+     310           0 : /* EOF */
+     311           0 : /* EOF */
+     312           0 : /* EOF */
+     313             : /* EOF */
+     314             : /* EOF */
+     315           0 : /* EOF */
+     316             : /* EOF */
+     317             : /* EOF */
+     318           0 : /* EOF */
+     319             : /* EOF */
+     320             : /* EOF */
+     321             : /* EOF */
+     322           0 : /* EOF */
+     323             : /* EOF */
+     324           0 : /* EOF */
+     325           0 : /* EOF */
+     326             : /* EOF */
+     327             : /* EOF */
+     328             : /* EOF */
+     329             : /* EOF */
+     330           0 : /* EOF */
+     331             : /* EOF */
+     332           0 : /* EOF */
+     333             : /* EOF */
+     334             : /* EOF */
+     335           0 : /* EOF */
+     336             : /* EOF */
+     337             : /* EOF */
+     338           0 : /* EOF */
+     339             : /* EOF */
+     340           0 : /* EOF */
+     341           0 : /* EOF */
+     342           0 : /* EOF */
+     343             : /* EOF */
+     344             : /* EOF */
+     345           0 : /* EOF */
+     346             : /* EOF */
+     347             : /* EOF */
+     348           0 : /* EOF */
+     349             : /* EOF */
+     350             : /* EOF */
+     351             : /* EOF */
+     352             : /* EOF */
+     353             : /* EOF */
+     354             : /* EOF */
+     355             : /* EOF */
+     356             : /* EOF */
+     357             : /* EOF */
+     358           0 : /* EOF */
+     359           0 : /* EOF */
+     360           0 : /* EOF */
+     361             : /* EOF */
+     362           0 : /* EOF */
+     363           0 : /* EOF */
+     364           0 : /* EOF */
+     365             : /* EOF */
+     366           0 : /* EOF */
+     367           0 : /* EOF */
+     368           0 : /* EOF */
+     369             : /* EOF */
+     370           0 : /* EOF */
+     371           0 : /* EOF */
+     372           0 : /* EOF */
+     373             : /* EOF */
+     374             : /* EOF */
+     375           0 : /* EOF */
+     376             : /* EOF */
+     377           0 : /* EOF */
+     378             : /* EOF */
+     379             : /* EOF */
+     380           0 : /* EOF */
+     381           0 : /* EOF */
+     382             : /* EOF */
+     383             : /* EOF */
+     384           0 : /* EOF */
+     385             : /* EOF */
+     386             : /* EOF */
+     387           0 : /* EOF */
+     388             : /* EOF */
+     389           0 : /* EOF */
+     390           0 : /* EOF */
+     391           0 : /* EOF */
+     392           0 : /* EOF */
+     393           0 : /* EOF */
+     394           0 : /* EOF */
+     395           0 : /* EOF */
+     396             : /* EOF */
+     397             : /* EOF */
+     398             : /* EOF */
+     399           0 : /* EOF */
+     400             : /* EOF */
+     401           0 : /* EOF */
+     402           0 : /* EOF */
+     403           0 : /* EOF */
+     404           0 : /* EOF */
+     405           0 : /* EOF */
+     406           0 : /* EOF */
+     407           0 : /* EOF */
+     408             : /* EOF */
+     409             : /* EOF */
+     410             : /* EOF */
+     411             : /* EOF */
+     412             : /* EOF */
+     413             : /* EOF */
+     414             : /* EOF */
+     415           0 : /* EOF */
+     416           0 : /* EOF */
+     417             : /* EOF */
+     418             : /* EOF */
+     419           0 : /* EOF */
+     420             : /* EOF */
+     421             : /* EOF */
+     422             : /* EOF */
+     423           0 : /* EOF */
+     424             : /* EOF */
+     425             : /* EOF */
+     426             : /* EOF */
+     427             : /* EOF */
+     428             : /* EOF */
+     429           0 : /* EOF */
+     430           0 : /* EOF */
+     431           0 : /* EOF */
+     432           0 : /* EOF */
+     433             : /* EOF */
+     434           0 : /* EOF */
+     435             : /* EOF */
+     436           0 : /* EOF */
+     437           0 : /* EOF */
+     438           0 : /* EOF */
+     439             : /* EOF */
+     440             : /* EOF */
+     441             : /* EOF */
+     442             : /* EOF */
+     443             : /* EOF */
+     444             : /* EOF */
+     445             : /* EOF */
+     446             : /* EOF */
+     447           0 : /* EOF */
+     448             : /* EOF */
+     449             : /* EOF */
+     450             : /* EOF */
+     451             : /* EOF */
+     452             : /* EOF */
+     453           0 : /* EOF */
+     454           0 : /* EOF */
+     455           0 : /* EOF */
+     456           0 : /* EOF */
+     457           0 : /* EOF */
+     458           0 : /* EOF */
+     459             : /* EOF */
+     460             : /* EOF */
+     461             : /* EOF */
+     462           0 : /* EOF */
+     463           0 : /* EOF */
+     464           0 : /* EOF */
+     465             : /* EOF */
+     466           0 : /* EOF */
+     467           0 : /* EOF */
+     468             : /* EOF */
+     469             : /* EOF */
+     470             : /* EOF */
+     471           0 : /* EOF */
+     472             : /* EOF */
+     473           0 : /* EOF */
+     474             : /* EOF */
+     475             : /* EOF */
+     476             : /* EOF */
+     477             : /* EOF */
+     478           0 : /* EOF */
+     479             : /* EOF */
+     480           0 : /* EOF */
+     481             : /* EOF */
+     482             : /* EOF */
+     483             : /* EOF */
+     484           0 : /* EOF */
+     485           0 : /* EOF */
+     486           0 : /* EOF */
+     487           0 : /* EOF */
+     488           0 : /* EOF */
+     489           0 : /* EOF */
+     490           0 : /* EOF */
+     491             : /* EOF */
+     492           0 : /* EOF */
+     493             : /* EOF */
+     494             : /* EOF */
+     495           0 : /* EOF */
+     496             : /* EOF */
+     497             : /* EOF */
+     498             : /* EOF */
+     499             : /* EOF */
+     500           0 : /* EOF */
+     501             : /* EOF */
+     502           0 : /* EOF */
+     503           0 : /* EOF */
+     504             : /* EOF */
+     505             : /* EOF */
+     506           0 : /* EOF */
+     507           0 : /* EOF */
+     508           0 : /* EOF */
+     509           0 : /* EOF */
+     510           0 : /* EOF */
+     511           0 : /* EOF */
+     512             : /* EOF */
+     513           0 : /* EOF */
+     514             : /* EOF */
+     515             : /* EOF */
+     516             : /* EOF */
+     517             : /* EOF */
+     518           0 : /* EOF */
+     519             : /* EOF */
+     520             : /* EOF */
+     521           0 : /* EOF */
+     522             : /* EOF */
+     523           0 : /* EOF */
+     524           0 : /* EOF */
+     525             : /* EOF */
+     526           0 : /* EOF */
+     527           0 : /* EOF */
+     528           0 : /* EOF */
+     529           0 : /* EOF */
+     530           0 : /* EOF */
+     531           0 : /* EOF */
+     532           0 : /* EOF */
+     533           0 : /* EOF */
+     534           0 : /* EOF */
+     535           0 : /* EOF */
+     536             : /* EOF */
+     537             : /* EOF */
+     538             : /* EOF */
+     539             : /* EOF */
+     540             : /* EOF */
+     541             : /* EOF */
+     542             : /* EOF */
+     543           0 : /* EOF */
+     544             : /* EOF */
+     545           0 : /* EOF */
+     546             : /* EOF */
+     547           0 : /* EOF */
+     548             : /* EOF */
+     549           0 : /* EOF */
+     550           0 : /* EOF */
+     551           0 : /* EOF */
+     552           0 : /* EOF */
+     553             : /* EOF */
+     554             : /* EOF */
+     555             : /* EOF */
+     556             : /* EOF */
+     557           0 : /* EOF */
+     558           0 : /* EOF */
+     559             : /* EOF */
+     560           0 : /* EOF */
+     561           0 : /* EOF */
+     562             : /* EOF */
+     563             : /* EOF */
+     564           0 : /* EOF */
+     565           0 : /* EOF */
+     566           0 : /* EOF */
+     567           0 : /* EOF */
+     568             : /* EOF */
+     569             : /* EOF */
+     570           0 : /* EOF */
+     571             : /* EOF */
+     572           0 : /* EOF */
+     573           0 : /* EOF */
+     574           0 : /* EOF */
+     575           0 : /* EOF */
+     576           0 : /* EOF */
+     577             : /* EOF */
+     578             : /* EOF */
+     579             : /* EOF */
+     580           0 : /* EOF */
+     581             : /* EOF */
+     582           0 : /* EOF */
+     583             : /* EOF */
+     584           0 : /* EOF */
+     585             : /* EOF */
+     586           0 : /* EOF */
+     587             : /* EOF */
+     588             : /* EOF */
+     589           0 : /* EOF */
+     590           0 : /* EOF */
+     591           0 : /* EOF */
+     592           0 : /* EOF */
+     593             : /* EOF */
+     594           0 : /* EOF */
+     595           0 : /* EOF */
+     596             : /* EOF */
+     597             : /* EOF */
+     598             : /* EOF */
+     599           0 : /* EOF */
+     600           0 : /* EOF */
+     601             : /* EOF */
+     602             : /* EOF */
+     603             : /* EOF */
+     604             : /* EOF */
+     605             : /* EOF */
+     606           0 : /* EOF */
+     607           0 : /* EOF */
+     608           0 : /* EOF */
+     609           0 : /* EOF */
+     610             : /* EOF */
+     611             : /* EOF */
+     612             : /* EOF */
+     613             : /* EOF */
+     614           0 : /* EOF */
+     615           0 : /* EOF */
+     616           0 : /* EOF */
+     617           0 : /* EOF */
+     618           0 : /* EOF */
+     619             : /* EOF */
+     620             : /* EOF */
+     621             : /* EOF */
+     622             : /* EOF */
+     623             : /* EOF */
+     624             : /* EOF */
+     625           0 : /* EOF */
+     626             : /* EOF */
+     627           0 : /* EOF */
+     628             : /* EOF */
+     629             : /* EOF */
+     630             : /* EOF */
+     631           0 : /* EOF */
+     632           0 : /* EOF */
+     633           0 : /* EOF */
+     634             : /* EOF */
+     635             : /* EOF */
+     636           0 : /* EOF */
+     637           0 : /* EOF */
+     638           0 : /* EOF */
+     639           0 : /* EOF */
+     640             : /* EOF */
+     641             : /* EOF */
+     642             : /* EOF */
+     643             : /* EOF */
+     644             : /* EOF */
+     645           0 : /* EOF */
+     646           0 : /* EOF */
+     647             : /* EOF */
+     648           0 : /* EOF */
+     649           0 : /* EOF */
+     650           0 : /* EOF */
+     651           0 : /* EOF */
+     652             : /* EOF */
+     653           0 : /* EOF */
+     654             : /* EOF */
+     655             : /* EOF */
+     656             : /* EOF */
+     657             : /* EOF */
+     658             : /* EOF */
+     659           0 : /* EOF */
+     660           0 : /* EOF */
+     661             : /* EOF */
+     662             : /* EOF */
+     663           0 : /* EOF */
+     664           0 : /* EOF */
+     665             : /* EOF */
+     666           0 : /* EOF */
+     667             : /* EOF */
+     668             : /* EOF */
+     669             : /* EOF */
+     670             : /* EOF */
+     671             : /* EOF */
+     672           0 : /* EOF */
+     673           0 : /* EOF */
+     674           0 : /* EOF */
+     675           0 : /* EOF */
+     676           0 : /* EOF */
+     677           0 : /* EOF */
+     678           0 : /* EOF */
+     679             : /* EOF */
+     680             : /* EOF */
+     681           0 : /* EOF */
+     682             : /* EOF */
+     683             : /* EOF */
+     684           0 : /* EOF */
+     685             : /* EOF */
+     686             : /* EOF */
+     687             : /* EOF */
+     688             : /* EOF */
+     689           0 : /* EOF */
+     690           0 : /* EOF */
+     691             : /* EOF */
+     692             : /* EOF */
+     693           0 : /* EOF */
+     694           0 : /* EOF */
+     695             : /* EOF */
+     696             : /* EOF */
+     697             : /* EOF */
+     698           0 : /* EOF */
+     699           0 : /* EOF */
+     700           0 : /* EOF */
+     701           0 : /* EOF */
+     702           0 : /* EOF */
+     703             : /* EOF */
+     704             : /* EOF */
+     705             : /* EOF */
+     706             : /* EOF */
+     707           0 : /* EOF */
+     708           0 : /* EOF */
+     709           0 : /* EOF */
+     710           0 : /* EOF */
+     711             : /* EOF */
+     712             : /* EOF */
+     713             : /* EOF */
+     714             : /* EOF */
+     715           0 : /* EOF */
+     716             : /* EOF */
+     717             : /* EOF */
+     718             : /* EOF */
+     719             : /* EOF */
+     720             : /* EOF */
+     721             : /* EOF */
+     722             : /* EOF */
+     723             : /* EOF */
+     724             : /* EOF */
+     725             : /* EOF */
+     726             : /* EOF */
+     727           0 : /* EOF */
+     728             : /* EOF */
+     729             : /* EOF */
+     730           0 : /* EOF */
+     731             : /* EOF */
+     732             : /* EOF */
+     733             : /* EOF */
+     734           0 : /* EOF */
+     735           0 : /* EOF */
+     736           0 : /* EOF */
+     737           0 : /* EOF */
+     738           0 : /* EOF */
+     739             : /* EOF */
+     740           0 : /* EOF */
+     741           0 : /* EOF */
+     742             : /* EOF */
+     743          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/errormodel.h.func-sort-c.html b/html/DRAMSys/library/src/error/errormodel.h.func-sort-c.html new file mode 100644 index 00000000..5dab7392 --- /dev/null +++ b/html/DRAMSys/library/src/error/errormodel.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - errormodel.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/errormodel.h.func.html b/html/DRAMSys/library/src/error/errormodel.h.func.html new file mode 100644 index 00000000..25de10f1 --- /dev/null +++ b/html/DRAMSys/library/src/error/errormodel.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - errormodel.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/errormodel.h.gcov.html b/html/DRAMSys/library/src/error/errormodel.h.gcov.html new file mode 100644 index 00000000..4331f785 --- /dev/null +++ b/html/DRAMSys/library/src/error/errormodel.h.gcov.html @@ -0,0 +1,209 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/error - errormodel.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115             : /* EOF */
+     116             : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/index-sort-f.html b/html/DRAMSys/library/src/error/index-sort-f.html new file mode 100644 index 00000000..106ce104 --- /dev/null +++ b/html/DRAMSys/library/src/error/index-sort-f.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/errorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:34040.7 %
Date:2020-06-30 17:34:44Functions:63417.6 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
ecchamming.h +
0.0%
+
0.0 %0 / 40.0 %0 / 3
eccbaseclass.h +
0.0%
+
0.0 %0 / 70.0 %0 / 3
errormodel.cpp +
0.3%0.3%
+
0.3 %1 / 30910.5 %2 / 19
ecchamming.cpp +
2.2%2.2%
+
2.2 %1 / 4640.0 %2 / 5
eccbaseclass.cpp +
2.9%2.9%
+
2.9 %1 / 3550.0 %2 / 4
errormodel.h +
0.0%
+
0.0 %0 / 3-0 / 0
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/index-sort-l.html b/html/DRAMSys/library/src/error/index-sort-l.html new file mode 100644 index 00000000..c826f480 --- /dev/null +++ b/html/DRAMSys/library/src/error/index-sort-l.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/errorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:34040.7 %
Date:2020-06-30 17:34:44Functions:63417.6 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
errormodel.h +
0.0%
+
0.0 %0 / 3-0 / 0
ecchamming.h +
0.0%
+
0.0 %0 / 40.0 %0 / 3
eccbaseclass.h +
0.0%
+
0.0 %0 / 70.0 %0 / 3
errormodel.cpp +
0.3%0.3%
+
0.3 %1 / 30910.5 %2 / 19
ecchamming.cpp +
2.2%2.2%
+
2.2 %1 / 4640.0 %2 / 5
eccbaseclass.cpp +
2.9%2.9%
+
2.9 %1 / 3550.0 %2 / 4
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/error/index.html b/html/DRAMSys/library/src/error/index.html new file mode 100644 index 00000000..383d88d5 --- /dev/null +++ b/html/DRAMSys/library/src/error/index.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/errorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:34040.7 %
Date:2020-06-30 17:34:44Functions:63417.6 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
eccbaseclass.cpp +
2.9%2.9%
+
2.9 %1 / 3550.0 %2 / 4
eccbaseclass.h +
0.0%
+
0.0 %0 / 70.0 %0 / 3
ecchamming.cpp +
2.2%2.2%
+
2.2 %1 / 4640.0 %2 / 5
ecchamming.h +
0.0%
+
0.0 %0 / 40.0 %0 / 3
errormodel.cpp +
0.3%0.3%
+
0.3 %1 / 30910.5 %2 / 19
errormodel.h +
0.0%
+
0.0 %0 / 3-0 / 0
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/Arbiter.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/Arbiter.cpp.func-sort-c.html new file mode 100644 index 00000000..a8a89952 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/Arbiter.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - Arbiter.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:819189.0 %
Date:2020-06-30 17:34:44Functions:7887.5 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7ArbiterC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN7Arbiter15nb_transport_bwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
_ZN7Arbiter15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/Arbiter.cpp.func.html b/html/DRAMSys/library/src/simulation/Arbiter.cpp.func.html new file mode 100644 index 00000000..c0dab550 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/Arbiter.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - Arbiter.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:819189.0 %
Date:2020-06-30 17:34:44Functions:7887.5 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7ArbiterC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN7Arbiter15nb_transport_bwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
_ZN7Arbiter15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/Arbiter.cpp.gcov.html b/html/DRAMSys/library/src/simulation/Arbiter.cpp.gcov.html new file mode 100644 index 00000000..99dba041 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/Arbiter.cpp.gcov.html @@ -0,0 +1,330 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - Arbiter.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:819189.0 %
Date:2020-06-30 17:34:44Functions:7887.5 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          30 : /* EOF */
+      45         210 : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50          30 : /* EOF */
+      51             : /* EOF */
+      52         104 : /* EOF */
+      53             : /* EOF */
+      54          37 : /* EOF */
+      55         148 : /* EOF */
+      56          74 : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62          30 : /* EOF */
+      63             : /* EOF */
+      64          30 : /* EOF */
+      65             : /* EOF */
+      66          60 : /* EOF */
+      67          30 : /* EOF */
+      68          30 : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72      505876 : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75     2023504 : /* EOF */
+      76     2529380 : /* EOF */
+      77             : /* EOF */
+      78      505876 : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82      758814 : /* EOF */
+      83      252938 : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87      252938 : /* EOF */
+      88      252938 : /* EOF */
+      89             : /* EOF */
+      90      252938 : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93      252938 : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97             : /* EOF */
+      98      505876 : /* EOF */
+      99      505876 : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104      505876 : /* EOF */
+     105             : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112      505876 : /* EOF */
+     113      505876 : /* EOF */
+     114             : /* EOF */
+     115             : /* EOF */
+     116           0 : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121             : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124             : /* EOF */
+     125             : /* EOF */
+     126     1011722 : /* EOF */
+     127             : /* EOF */
+     128     2023444 : /* EOF */
+     129     2023444 : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136     1011722 : /* EOF */
+     137             : /* EOF */
+     138      758814 : /* EOF */
+     139             : /* EOF */
+     140             : /* EOF */
+     141      750267 : /* EOF */
+     142      250089 : /* EOF */
+     143      250089 : /* EOF */
+     144      500178 : /* EOF */
+     145             : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148             : /* EOF */
+     149             : /* EOF */
+     150        8547 : /* EOF */
+     151             : /* EOF */
+     152             : /* EOF */
+     153             : /* EOF */
+     154      758784 : /* EOF */
+     155             : /* EOF */
+     156      758814 : /* EOF */
+     157             : /* EOF */
+     158             : /* EOF */
+     159      252938 : /* EOF */
+     160      252938 : /* EOF */
+     161      505876 : /* EOF */
+     162             : /* EOF */
+     163             : /* EOF */
+     164      758814 : /* EOF */
+     165             : /* EOF */
+     166             : /* EOF */
+     167        5698 : /* EOF */
+     168        5698 : /* EOF */
+     169        2849 : /* EOF */
+     170        2849 : /* EOF */
+     171        5698 : /* EOF */
+     172             : /* EOF */
+     173             : /* EOF */
+     174        8547 : /* EOF */
+     175             : /* EOF */
+     176             : /* EOF */
+     177      505846 : /* EOF */
+     178             : /* EOF */
+     179             : /* EOF */
+     180             : /* EOF */
+     181             : /* EOF */
+     182      505876 : /* EOF */
+     183             : /* EOF */
+     184      252469 : /* EOF */
+     185      252469 : /* EOF */
+     186      504938 : /* EOF */
+     187      252469 : /* EOF */
+     188             : /* EOF */
+     189           0 : /* EOF */
+     190           0 : /* EOF */
+     191             : /* EOF */
+     192             : /* EOF */
+     193             : /* EOF */
+     194             : /* EOF */
+     195             : /* EOF */
+     196      505876 : /* EOF */
+     197             : /* EOF */
+     198      252908 : /* EOF */
+     199             : /* EOF */
+     200             : /* EOF */
+     201             : /* EOF */
+     202      252908 : /* EOF */
+     203      252908 : /* EOF */
+     204      505816 : /* EOF */
+     205             : /* EOF */
+     206             : /* EOF */
+     207      505816 : /* EOF */
+     208      252908 : /* EOF */
+     209             : /* EOF */
+     210             : /* EOF */
+     211      505816 : /* EOF */
+     212             : /* EOF */
+     213             : /* EOF */
+     214         938 : /* EOF */
+     215             : /* EOF */
+     216         469 : /* EOF */
+     217         469 : /* EOF */
+     218         938 : /* EOF */
+     219         469 : /* EOF */
+     220             : /* EOF */
+     221           0 : /* EOF */
+     222           0 : /* EOF */
+     223             : /* EOF */
+     224             : /* EOF */
+     225             : /* EOF */
+     226             : /* EOF */
+     227           0 : /* EOF */
+     228             : /* EOF */
+     229     1011722 : /* EOF */
+     230             : /* EOF */
+     231      252938 : /* EOF */
+     232             : /* EOF */
+     233             : /* EOF */
+     234      758814 : /* EOF */
+     235      252938 : /* EOF */
+     236             : /* EOF */
+     237      252938 : /* EOF */
+     238      252938 : /* EOF */
+     239      758814 : /* EOF */
+     240     1011752 : /* EOF */
+     241     1011752 : /* EOF */
+     242     1011752 : /* EOF */
+     243      505876 : /* EOF */
+     244      252938 : /* EOF */
+     245      253028 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/Arbiter.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/Arbiter.h.func-sort-c.html new file mode 100644 index 00000000..bac793e3 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/Arbiter.h.func-sort-c.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - Arbiter.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN7ArbiterD0Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/Arbiter.h.func.html b/html/DRAMSys/library/src/simulation/Arbiter.h.func.html new file mode 100644 index 00000000..ef8f7cdf --- /dev/null +++ b/html/DRAMSys/library/src/simulation/Arbiter.h.func.html @@ -0,0 +1,85 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - Arbiter.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN7ArbiterD0Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/Arbiter.h.gcov.html b/html/DRAMSys/library/src/simulation/Arbiter.h.gcov.html new file mode 100644 index 00000000..cf4fb92b --- /dev/null +++ b/html/DRAMSys/library/src/simulation/Arbiter.h.gcov.html @@ -0,0 +1,137 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - Arbiter.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52         150 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func-sort-c.html new file mode 100644 index 00000000..c480cdd7 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSys.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - DRAMSys.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4711740.2 %
Date:2020-06-30 17:34:44Functions:71258.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN7DRAMSys11bindSocketsEv0
_ZN7DRAMSys17setupDebugManagerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE0
_ZN7DRAMSysD0Ev0
_GLOBAL__sub_I__ZN7DRAMSysC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
_ZN7DRAMSys6reportENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func.html b/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func.html new file mode 100644 index 00000000..ca1fdcca --- /dev/null +++ b/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSys.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - DRAMSys.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4711740.2 %
Date:2020-06-30 17:34:44Functions:71258.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7DRAMSysC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
_ZN7DRAMSys11bindSocketsEv0
_ZN7DRAMSys17setupDebugManagerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE0
_ZN7DRAMSys6reportENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_ZN7DRAMSysD0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/DRAMSys.cpp.gcov.html b/html/DRAMSys/library/src/simulation/DRAMSys.cpp.gcov.html new file mode 100644 index 00000000..b079da30 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/DRAMSys.cpp.gcov.html @@ -0,0 +1,360 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSys.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - DRAMSys.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4711740.2 %
Date:2020-06-30 17:34:44Functions:71258.3 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63           0 : /* EOF */
+      64             : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69          30 : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72          30 : /* EOF */
+      73         150 : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76          30 : /* EOF */
+      77             : /* EOF */
+      78          30 : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81          90 : /* EOF */
+      82             : /* EOF */
+      83          60 : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87          90 : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90          60 : /* EOF */
+      91             : /* EOF */
+      92          60 : /* EOF */
+      93         150 : /* EOF */
+      94             : /* EOF */
+      95          60 : /* EOF */
+      96             : /* EOF */
+      97          60 : /* EOF */
+      98         150 : /* EOF */
+      99             : /* EOF */
+     100          60 : /* EOF */
+     101             : /* EOF */
+     102          60 : /* EOF */
+     103         150 : /* EOF */
+     104             : /* EOF */
+     105          60 : /* EOF */
+     106             : /* EOF */
+     107          60 : /* EOF */
+     108         150 : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111          30 : /* EOF */
+     112             : /* EOF */
+     113          30 : /* EOF */
+     114             : /* EOF */
+     115             : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118             : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121             : /* EOF */
+     122          30 : /* EOF */
+     123             : /* EOF */
+     124         180 : /* EOF */
+     125             : /* EOF */
+     126          30 : /* EOF */
+     127           0 : /* EOF */
+     128             : /* EOF */
+     129          30 : /* EOF */
+     130             : /* EOF */
+     131         157 : /* EOF */
+     132          37 : /* EOF */
+     133             : /* EOF */
+     134         157 : /* EOF */
+     135          37 : /* EOF */
+     136             : /* EOF */
+     137         120 : /* EOF */
+     138           0 : /* EOF */
+     139             : /* EOF */
+     140         120 : /* EOF */
+     141           0 : /* EOF */
+     142          30 : /* EOF */
+     143             : /* EOF */
+     144          30 : /* EOF */
+     145             : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148          30 : /* EOF */
+     149         210 : /* EOF */
+     150         210 : /* EOF */
+     151         210 : /* EOF */
+     152         360 : /* EOF */
+     153          30 : /* EOF */
+     154         210 : /* EOF */
+     155         270 : /* EOF */
+     156          30 : /* EOF */
+     157             : /* EOF */
+     158             : /* EOF */
+     159          30 : /* EOF */
+     160             : /* EOF */
+     161           0 : /* EOF */
+     162             : /* EOF */
+     163             : /* EOF */
+     164             : /* EOF */
+     165             : /* EOF */
+     166             : /* EOF */
+     167             : /* EOF */
+     168             : /* EOF */
+     169             : /* EOF */
+     170           0 : /* EOF */
+     171             : /* EOF */
+     172           0 : /* EOF */
+     173             : /* EOF */
+     174             : /* EOF */
+     175             : /* EOF */
+     176             : /* EOF */
+     177           0 : /* EOF */
+     178             : /* EOF */
+     179             : /* EOF */
+     180           0 : /* EOF */
+     181           0 : /* EOF */
+     182           0 : /* EOF */
+     183           0 : /* EOF */
+     184             : /* EOF */
+     185           0 : /* EOF */
+     186             : /* EOF */
+     187             : /* EOF */
+     188           0 : /* EOF */
+     189             : /* EOF */
+     190             : /* EOF */
+     191           0 : /* EOF */
+     192             : /* EOF */
+     193             : /* EOF */
+     194           0 : /* EOF */
+     195           0 : /* EOF */
+     196             : /* EOF */
+     197           0 : /* EOF */
+     198             : /* EOF */
+     199           0 : /* EOF */
+     200           0 : /* EOF */
+     201             : /* EOF */
+     202           0 : /* EOF */
+     203             : /* EOF */
+     204             : /* EOF */
+     205           0 : /* EOF */
+     206           0 : /* EOF */
+     207           0 : /* EOF */
+     208           0 : /* EOF */
+     209           0 : /* EOF */
+     210           0 : /* EOF */
+     211           0 : /* EOF */
+     212           0 : /* EOF */
+     213           0 : /* EOF */
+     214           0 : /* EOF */
+     215           0 : /* EOF */
+     216           0 : /* EOF */
+     217           0 : /* EOF */
+     218           0 : /* EOF */
+     219           0 : /* EOF */
+     220           0 : /* EOF */
+     221           0 : /* EOF */
+     222           0 : /* EOF */
+     223             : /* EOF */
+     224           0 : /* EOF */
+     225             : /* EOF */
+     226           0 : /* EOF */
+     227             : /* EOF */
+     228           0 : /* EOF */
+     229             : /* EOF */
+     230           0 : /* EOF */
+     231             : /* EOF */
+     232           0 : /* EOF */
+     233           0 : /* EOF */
+     234             : /* EOF */
+     235             : /* EOF */
+     236           0 : /* EOF */
+     237             : /* EOF */
+     238           0 : /* EOF */
+     239             : /* EOF */
+     240             : /* EOF */
+     241           0 : /* EOF */
+     242             : /* EOF */
+     243             : /* EOF */
+     244           0 : /* EOF */
+     245           0 : /* EOF */
+     246             : /* EOF */
+     247           0 : /* EOF */
+     248           0 : /* EOF */
+     249             : /* EOF */
+     250           0 : /* EOF */
+     251             : /* EOF */
+     252           0 : /* EOF */
+     253             : /* EOF */
+     254           0 : /* EOF */
+     255             : /* EOF */
+     256           0 : /* EOF */
+     257           0 : /* EOF */
+     258           0 : /* EOF */
+     259             : /* EOF */
+     260             : /* EOF */
+     261             : /* EOF */
+     262             : /* EOF */
+     263           0 : /* EOF */
+     264             : /* EOF */
+     265           0 : /* EOF */
+     266           0 : /* EOF */
+     267             : /* EOF */
+     268             : /* EOF */
+     269           0 : /* EOF */
+     270             : /* EOF */
+     271          30 : /* EOF */
+     272             : /* EOF */
+     273             : /* EOF */
+     274          60 : /* EOF */
+     275         180 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func-sort-c.html new file mode 100644 index 00000000..a719441e --- /dev/null +++ b/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func-sort-c.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSysRecordable.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - DRAMSysRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:669073.3 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN17DRAMSysRecordableC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
_ZN17DRAMSysRecordable11bindSocketsEv30
_ZN17DRAMSysRecordableD0Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func.html b/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func.html new file mode 100644 index 00000000..2818ac6d --- /dev/null +++ b/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSysRecordable.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - DRAMSysRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:669073.3 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN17DRAMSysRecordableC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
_ZN17DRAMSysRecordable11bindSocketsEv30
_ZN17DRAMSysRecordableD0Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.gcov.html b/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.gcov.html new file mode 100644 index 00000000..9019f01f --- /dev/null +++ b/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.gcov.html @@ -0,0 +1,302 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSysRecordable.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - DRAMSysRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:669073.3 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52          30 : /* EOF */
+      53             : /* EOF */
+      54          30 : /* EOF */
+      55         180 : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58          90 : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62          60 : /* EOF */
+      63             : /* EOF */
+      64          30 : /* EOF */
+      65             : /* EOF */
+      66          90 : /* EOF */
+      67          90 : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70           0 : /* EOF */
+      71             : /* EOF */
+      72          90 : /* EOF */
+      73          30 : /* EOF */
+      74          30 : /* EOF */
+      75         120 : /* EOF */
+      76          30 : /* EOF */
+      77             : /* EOF */
+      78         120 : /* EOF */
+      79             : /* EOF */
+      80          30 : /* EOF */
+      81             : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86         157 : /* EOF */
+      87          37 : /* EOF */
+      88          60 : /* EOF */
+      89             : /* EOF */
+      90          30 : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94          67 : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97         185 : /* EOF */
+      98             : /* EOF */
+      99         296 : /* EOF */
+     100             : /* EOF */
+     101         111 : /* EOF */
+     102             : /* EOF */
+     103             : /* EOF */
+     104         370 : /* EOF */
+     105         148 : /* EOF */
+     106         148 : /* EOF */
+     107             : /* EOF */
+     108         111 : /* EOF */
+     109         148 : /* EOF */
+     110             : /* EOF */
+     111          37 : /* EOF */
+     112             : /* EOF */
+     113          30 : /* EOF */
+     114             : /* EOF */
+     115          30 : /* EOF */
+     116             : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121          30 : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125          30 : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128          60 : /* EOF */
+     129           0 : /* EOF */
+     130          60 : /* EOF */
+     131          30 : /* EOF */
+     132             : /* EOF */
+     133           0 : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136          30 : /* EOF */
+     137             : /* EOF */
+     138             : /* EOF */
+     139          90 : /* EOF */
+     140             : /* EOF */
+     141             : /* EOF */
+     142          60 : /* EOF */
+     143         104 : /* EOF */
+     144             : /* EOF */
+     145         111 : /* EOF */
+     146             : /* EOF */
+     147          74 : /* EOF */
+     148          37 : /* EOF */
+     149             : /* EOF */
+     150         111 : /* EOF */
+     151             : /* EOF */
+     152             : /* EOF */
+     153          37 : /* EOF */
+     154          10 : /* EOF */
+     155          32 : /* EOF */
+     156           0 : /* EOF */
+     157          32 : /* EOF */
+     158          12 : /* EOF */
+     159          26 : /* EOF */
+     160          24 : /* EOF */
+     161          14 : /* EOF */
+     162           0 : /* EOF */
+     163          14 : /* EOF */
+     164          28 : /* EOF */
+     165           0 : /* EOF */
+     166           0 : /* EOF */
+     167           0 : /* EOF */
+     168           0 : /* EOF */
+     169           0 : /* EOF */
+     170           0 : /* EOF */
+     171             : /* EOF */
+     172           0 : /* EOF */
+     173             : /* EOF */
+     174          37 : /* EOF */
+     175             : /* EOF */
+     176          37 : /* EOF */
+     177             : /* EOF */
+     178           0 : /* EOF */
+     179             : /* EOF */
+     180           0 : /* EOF */
+     181           0 : /* EOF */
+     182             : /* EOF */
+     183             : /* EOF */
+     184          30 : /* EOF */
+     185             : /* EOF */
+     186          30 : /* EOF */
+     187             : /* EOF */
+     188             : /* EOF */
+     189          60 : /* EOF */
+     190             : /* EOF */
+     191             : /* EOF */
+     192           0 : /* EOF */
+     193           0 : /* EOF */
+     194             : /* EOF */
+     195          60 : /* EOF */
+     196          30 : /* EOF */
+     197             : /* EOF */
+     198           0 : /* EOF */
+     199             : /* EOF */
+     200          30 : /* EOF */
+     201             : /* EOF */
+     202           0 : /* EOF */
+     203             : /* EOF */
+     204           0 : /* EOF */
+     205           0 : /* EOF */
+     206           0 : /* EOF */
+     207             : /* EOF */
+     208             : /* EOF */
+     209             : /* EOF */
+     210             : /* EOF */
+     211         104 : /* EOF */
+     212             : /* EOF */
+     213          74 : /* EOF */
+     214         111 : /* EOF */
+     215             : /* EOF */
+     216             : /* EOF */
+     217         180 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func-sort-c.html new file mode 100644 index 00000000..485b1b6c --- /dev/null +++ b/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func-sort-c.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1442.3 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN21TemperatureController14getTemperatureEif0
_ZN21TemperatureController17temperatureThreadEv0
_ZN21TemperatureController18temperatureConvertEd0
_ZN21TemperatureController18updateTemperaturesEv0
_ZN21TemperatureController19checkPowerThresholdEi0
_ZN21TemperatureController22adjustThermalSimPeriodEv0
_GLOBAL__sub_I__ZN21TemperatureController18temperatureConvertEd30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func.html b/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func.html new file mode 100644 index 00000000..b8db75d2 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func.html @@ -0,0 +1,113 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1442.3 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN21TemperatureController18temperatureConvertEd30
_Z41__static_initialization_and_destruction_0ii30
_ZN21TemperatureController14getTemperatureEif0
_ZN21TemperatureController17temperatureThreadEv0
_ZN21TemperatureController18temperatureConvertEd0
_ZN21TemperatureController18updateTemperaturesEv0
_ZN21TemperatureController19checkPowerThresholdEi0
_ZN21TemperatureController22adjustThermalSimPeriodEv0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.cpp.gcov.html b/html/DRAMSys/library/src/simulation/TemperatureController.cpp.gcov.html new file mode 100644 index 00000000..6e8e9545 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/TemperatureController.cpp.gcov.html @@ -0,0 +1,261 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1442.3 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42           0 : /* EOF */
+      43             : /* EOF */
+      44           0 : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47           0 : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53           0 : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66             : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69             : /* EOF */
+      70           0 : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74           0 : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82             : /* EOF */
+      83             : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88             : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96           0 : /* EOF */
+      97             : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100             : /* EOF */
+     101           0 : /* EOF */
+     102             : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106             : /* EOF */
+     107           0 : /* EOF */
+     108           0 : /* EOF */
+     109             : /* EOF */
+     110           0 : /* EOF */
+     111             : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115             : /* EOF */
+     116             : /* EOF */
+     117             : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136             : /* EOF */
+     137             : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140           0 : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143             : /* EOF */
+     144             : /* EOF */
+     145           0 : /* EOF */
+     146           0 : /* EOF */
+     147           0 : /* EOF */
+     148           0 : /* EOF */
+     149           0 : /* EOF */
+     150           0 : /* EOF */
+     151           0 : /* EOF */
+     152             : /* EOF */
+     153             : /* EOF */
+     154             : /* EOF */
+     155             : /* EOF */
+     156             : /* EOF */
+     157             : /* EOF */
+     158           0 : /* EOF */
+     159             : /* EOF */
+     160             : /* EOF */
+     161           0 : /* EOF */
+     162             : /* EOF */
+     163             : /* EOF */
+     164           0 : /* EOF */
+     165           0 : /* EOF */
+     166             : /* EOF */
+     167           0 : /* EOF */
+     168           0 : /* EOF */
+     169             : /* EOF */
+     170             : /* EOF */
+     171             : /* EOF */
+     172             : /* EOF */
+     173             : /* EOF */
+     174           0 : /* EOF */
+     175           0 : /* EOF */
+     176          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/TemperatureController.h.func-sort-c.html new file mode 100644 index 00000000..e8788a3d --- /dev/null +++ b/html/DRAMSys/library/src/simulation/TemperatureController.h.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:113234.4 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN21TemperatureControllerD0Ev0
_ZN21TemperatureController11getInstanceEv30
_ZN21TemperatureControllerC2EN7sc_core14sc_module_nameE30
_ZN21TemperatureControllerD2Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.h.func.html b/html/DRAMSys/library/src/simulation/TemperatureController.h.func.html new file mode 100644 index 00000000..b09940f8 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/TemperatureController.h.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:113234.4 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN21TemperatureController11getInstanceEv30
_ZN21TemperatureControllerC2EN7sc_core14sc_module_nameE30
_ZN21TemperatureControllerD0Ev0
_ZN21TemperatureControllerD2Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.h.gcov.html b/html/DRAMSys/library/src/simulation/TemperatureController.h.gcov.html new file mode 100644 index 00000000..66afd851 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/TemperatureController.h.gcov.html @@ -0,0 +1,198 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:113234.4 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53         270 : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56          30 : /* EOF */
+      57          30 : /* EOF */
+      58          30 : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61         270 : /* EOF */
+      62          60 : /* EOF */
+      63             : /* EOF */
+      64          30 : /* EOF */
+      65             : /* EOF */
+      66          30 : /* EOF */
+      67          30 : /* EOF */
+      68             : /* EOF */
+      69          30 : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78           0 : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89           0 : /* EOF */
+      90           0 : /* EOF */
+      91           0 : /* EOF */
+      92           0 : /* EOF */
+      93           0 : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96           0 : /* EOF */
+      97           0 : /* EOF */
+      98           0 : /* EOF */
+      99             : /* EOF */
+     100           0 : /* EOF */
+     101           0 : /* EOF */
+     102           0 : /* EOF */
+     103             : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107             : /* EOF */
+     108           0 : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111             : /* EOF */
+     112             : /* EOF */
+     113          30 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func-sort-c.html new file mode 100644 index 00000000..a0d7aa97 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func-sort-c.html @@ -0,0 +1,105 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:197425.7 %
Date:2020-06-30 17:34:44Functions:5862.5 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN4Dram11reportPowerEv0
_ZN4Dram13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN4DramD0Ev0
_GLOBAL__sub_I__ZN4DramC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN4Dram15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE418705
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func.html new file mode 100644 index 00000000..bfabdf3a --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func.html @@ -0,0 +1,105 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:197425.7 %
Date:2020-06-30 17:34:44Functions:5862.5 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN4DramC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN4Dram11reportPowerEv0
_ZN4Dram13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN4Dram15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE418705
_ZN4DramD0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/Dram.cpp.gcov.html new file mode 100644 index 00000000..41299022 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/Dram.cpp.gcov.html @@ -0,0 +1,307 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:197425.7 %
Date:2020-06-30 17:34:44Functions:5862.5 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62             : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66         148 : /* EOF */
+      67             : /* EOF */
+      68          37 : /* EOF */
+      69             : /* EOF */
+      70          37 : /* EOF */
+      71             : /* EOF */
+      72          74 : /* EOF */
+      73          37 : /* EOF */
+      74           0 : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78             : /* EOF */
+      79           0 : /* EOF */
+      80             : /* EOF */
+      81          37 : /* EOF */
+      82          37 : /* EOF */
+      83             : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97           0 : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102          37 : /* EOF */
+     103          37 : /* EOF */
+     104          37 : /* EOF */
+     105             : /* EOF */
+     106         111 : /* EOF */
+     107             : /* EOF */
+     108          37 : /* EOF */
+     109             : /* EOF */
+     110           0 : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114          37 : /* EOF */
+     115           0 : /* EOF */
+     116          37 : /* EOF */
+     117             : /* EOF */
+     118           0 : /* EOF */
+     119             : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122           0 : /* EOF */
+     123             : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129           0 : /* EOF */
+     130           0 : /* EOF */
+     131           0 : /* EOF */
+     132           0 : /* EOF */
+     133           0 : /* EOF */
+     134           0 : /* EOF */
+     135             : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140           0 : /* EOF */
+     141             : /* EOF */
+     142           0 : /* EOF */
+     143             : /* EOF */
+     144      418705 : /* EOF */
+     145             : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148             : /* EOF */
+     149      418705 : /* EOF */
+     150             : /* EOF */
+     151           0 : /* EOF */
+     152           0 : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155             : /* EOF */
+     156      418705 : /* EOF */
+     157             : /* EOF */
+     158           0 : /* EOF */
+     159             : /* EOF */
+     160           0 : /* EOF */
+     161           0 : /* EOF */
+     162             : /* EOF */
+     163           0 : /* EOF */
+     164             : /* EOF */
+     165           0 : /* EOF */
+     166           0 : /* EOF */
+     167             : /* EOF */
+     168             : /* EOF */
+     169             : /* EOF */
+     170      418705 : /* EOF */
+     171             : /* EOF */
+     172             : /* EOF */
+     173           0 : /* EOF */
+     174             : /* EOF */
+     175             : /* EOF */
+     176             : /* EOF */
+     177             : /* EOF */
+     178           0 : /* EOF */
+     179             : /* EOF */
+     180           0 : /* EOF */
+     181             : /* EOF */
+     182             : /* EOF */
+     183             : /* EOF */
+     184             : /* EOF */
+     185           0 : /* EOF */
+     186             : /* EOF */
+     187           0 : /* EOF */
+     188           0 : /* EOF */
+     189             : /* EOF */
+     190             : /* EOF */
+     191             : /* EOF */
+     192             : /* EOF */
+     193           0 : /* EOF */
+     194             : /* EOF */
+     195           0 : /* EOF */
+     196             : /* EOF */
+     197           0 : /* EOF */
+     198           0 : /* EOF */
+     199             : /* EOF */
+     200             : /* EOF */
+     201             : /* EOF */
+     202             : /* EOF */
+     203           0 : /* EOF */
+     204             : /* EOF */
+     205             : /* EOF */
+     206           0 : /* EOF */
+     207             : /* EOF */
+     208           0 : /* EOF */
+     209             : /* EOF */
+     210           0 : /* EOF */
+     211           0 : /* EOF */
+     212             : /* EOF */
+     213             : /* EOF */
+     214             : /* EOF */
+     215             : /* EOF */
+     216           0 : /* EOF */
+     217             : /* EOF */
+     218             : /* EOF */
+     219             : /* EOF */
+     220             : /* EOF */
+     221           0 : /* EOF */
+     222         120 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/Dram.h.func-sort-c.html new file mode 100644 index 00000000..4fea413d --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/Dram.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:22100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.h.func.html b/html/DRAMSys/library/src/simulation/dram/Dram.h.func.html new file mode 100644 index 00000000..b4d4fbbe --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/Dram.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:22100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/Dram.h.gcov.html new file mode 100644 index 00000000..c8db0d56 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/Dram.h.gcov.html @@ -0,0 +1,144 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:22100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53          37 : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59          37 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func-sort-c.html new file mode 100644 index 00000000..d2bdcdd5 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramDDR3C2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func.html new file mode 100644 index 00000000..0a69eaf1 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramDDR3C2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.gcov.html new file mode 100644 index 00000000..05737263 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.gcov.html @@ -0,0 +1,229 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45           5 : /* EOF */
+      46             : /* EOF */
+      47           5 : /* EOF */
+      48           0 : /* EOF */
+      49             : /* EOF */
+      50           5 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54           0 : /* EOF */
+      55             : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67             : /* EOF */
+      68           0 : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81           0 : /* EOF */
+      82           0 : /* EOF */
+      83             : /* EOF */
+      84           0 : /* EOF */
+      85           0 : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89           0 : /* EOF */
+      90           0 : /* EOF */
+      91           0 : /* EOF */
+      92           0 : /* EOF */
+      93           0 : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97           0 : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100           0 : /* EOF */
+     101           0 : /* EOF */
+     102           0 : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107           0 : /* EOF */
+     108             : /* EOF */
+     109           0 : /* EOF */
+     110           0 : /* EOF */
+     111           0 : /* EOF */
+     112           0 : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127           0 : /* EOF */
+     128           0 : /* EOF */
+     129           0 : /* EOF */
+     130           0 : /* EOF */
+     131           0 : /* EOF */
+     132           0 : /* EOF */
+     133           0 : /* EOF */
+     134             : /* EOF */
+     135           0 : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140           0 : /* EOF */
+     141             : /* EOF */
+     142           0 : /* EOF */
+     143             : /* EOF */
+     144          95 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func-sort-c.html new file mode 100644 index 00000000..381353ec --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramDDR3D0Ev0
_ZN8DramDDR3D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func.html new file mode 100644 index 00000000..196059ef --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramDDR3D0Ev0
_ZN8DramDDR3D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.gcov.html new file mode 100644 index 00000000..0d1cb033 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47           5 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func-sort-c.html new file mode 100644 index 00000000..15cee2e9 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramDDR4C2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func.html new file mode 100644 index 00000000..281fa307 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramDDR4C2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.gcov.html new file mode 100644 index 00000000..7473aba8 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.gcov.html @@ -0,0 +1,229 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45           6 : /* EOF */
+      46             : /* EOF */
+      47           6 : /* EOF */
+      48           0 : /* EOF */
+      49             : /* EOF */
+      50           6 : /* EOF */
+      51             : /* EOF */
+      52           0 : /* EOF */
+      53           0 : /* EOF */
+      54           0 : /* EOF */
+      55             : /* EOF */
+      56           0 : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67             : /* EOF */
+      68           0 : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81           0 : /* EOF */
+      82           0 : /* EOF */
+      83             : /* EOF */
+      84           0 : /* EOF */
+      85           0 : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89           0 : /* EOF */
+      90           0 : /* EOF */
+      91           0 : /* EOF */
+      92           0 : /* EOF */
+      93           0 : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97           0 : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100           0 : /* EOF */
+     101           0 : /* EOF */
+     102           0 : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107           0 : /* EOF */
+     108             : /* EOF */
+     109           0 : /* EOF */
+     110           0 : /* EOF */
+     111           0 : /* EOF */
+     112           0 : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127           0 : /* EOF */
+     128           0 : /* EOF */
+     129           0 : /* EOF */
+     130           0 : /* EOF */
+     131           0 : /* EOF */
+     132           0 : /* EOF */
+     133           0 : /* EOF */
+     134             : /* EOF */
+     135           0 : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140           0 : /* EOF */
+     141             : /* EOF */
+     142           0 : /* EOF */
+     143             : /* EOF */
+     144          96 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func-sort-c.html new file mode 100644 index 00000000..eb8ac769 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramDDR4D0Ev0
_ZN8DramDDR4D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func.html new file mode 100644 index 00000000..c0a1fb9d --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramDDR4D0Ev0
_ZN8DramDDR4D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.gcov.html new file mode 100644 index 00000000..db16ecd0 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47           6 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func-sort-c.html new file mode 100644 index 00000000..bf10502d --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR5C2EN7sc_core14sc_module_nameE0
_GLOBAL__sub_I__ZN9DramGDDR5C2EN7sc_core14sc_module_nameE30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func.html new file mode 100644 index 00000000..8151289b --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN9DramGDDR5C2EN7sc_core14sc_module_nameE30
_ZN9DramGDDR5C2EN7sc_core14sc_module_nameE0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.gcov.html new file mode 100644 index 00000000..5d225dc5 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.gcov.html @@ -0,0 +1,135 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+      44             : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47             : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func-sort-c.html new file mode 100644 index 00000000..5a2d6d38 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR5D0Ev0
_ZN9DramGDDR5D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func.html new file mode 100644 index 00000000..09afc0ef --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR5D0Ev0
_ZN9DramGDDR5D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.gcov.html new file mode 100644 index 00000000..19432d66 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func-sort-c.html new file mode 100644 index 00000000..9cf3caf2 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramGDDR5XC2EN7sc_core14sc_module_nameE0
_GLOBAL__sub_I__ZN10DramGDDR5XC2EN7sc_core14sc_module_nameE30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func.html new file mode 100644 index 00000000..ad1e3501 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10DramGDDR5XC2EN7sc_core14sc_module_nameE30
_ZN10DramGDDR5XC2EN7sc_core14sc_module_nameE0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.gcov.html new file mode 100644 index 00000000..b7b9b970 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.gcov.html @@ -0,0 +1,135 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+      44             : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47             : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func-sort-c.html new file mode 100644 index 00000000..81e9eba0 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramGDDR5XD0Ev0
_ZN10DramGDDR5XD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func.html new file mode 100644 index 00000000..53b2125c --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramGDDR5XD0Ev0
_ZN10DramGDDR5XD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.gcov.html new file mode 100644 index 00000000..8ef7b3f9 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func-sort-c.html new file mode 100644 index 00000000..060b21fa --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR6C2EN7sc_core14sc_module_nameE0
_GLOBAL__sub_I__ZN9DramGDDR6C2EN7sc_core14sc_module_nameE30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func.html new file mode 100644 index 00000000..045bd470 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN9DramGDDR6C2EN7sc_core14sc_module_nameE30
_ZN9DramGDDR6C2EN7sc_core14sc_module_nameE0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.gcov.html new file mode 100644 index 00000000..81473d06 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.gcov.html @@ -0,0 +1,135 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+      44             : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47             : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func-sort-c.html new file mode 100644 index 00000000..0a74b761 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR6D0Ev0
_ZN9DramGDDR6D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func.html new file mode 100644 index 00000000..c76ad537 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR6D0Ev0
_ZN9DramGDDR6D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.gcov.html new file mode 100644 index 00000000..7aeaed80 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func-sort-c.html new file mode 100644 index 00000000..4abcec56 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramHBM2C2EN7sc_core14sc_module_nameE14
_GLOBAL__sub_I__ZN8DramHBM2C2EN7sc_core14sc_module_nameE30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func.html new file mode 100644 index 00000000..769e2220 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramHBM2C2EN7sc_core14sc_module_nameE30
_ZN8DramHBM2C2EN7sc_core14sc_module_nameE14
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.gcov.html new file mode 100644 index 00000000..d39d466f --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.gcov.html @@ -0,0 +1,135 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43          14 : /* EOF */
+      44             : /* EOF */
+      45          14 : /* EOF */
+      46           0 : /* EOF */
+      47             : /* EOF */
+      48          14 : /* EOF */
+      49           0 : /* EOF */
+      50         104 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func-sort-c.html new file mode 100644 index 00000000..c21a8b9c --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramHBM2D0Ev0
_ZN8DramHBM2D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func.html new file mode 100644 index 00000000..0083fcdd --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramHBM2D0Ev0
_ZN8DramHBM2D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.gcov.html new file mode 100644 index 00000000..ad66f053 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47          14 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func-sort-c.html new file mode 100644 index 00000000..08117f53 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramLPDDR4C2EN7sc_core14sc_module_nameE12
_GLOBAL__sub_I__ZN10DramLPDDR4C2EN7sc_core14sc_module_nameE30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func.html new file mode 100644 index 00000000..5717622b --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10DramLPDDR4C2EN7sc_core14sc_module_nameE30
_ZN10DramLPDDR4C2EN7sc_core14sc_module_nameE12
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.gcov.html new file mode 100644 index 00000000..85777181 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.gcov.html @@ -0,0 +1,135 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43          12 : /* EOF */
+      44             : /* EOF */
+      45          12 : /* EOF */
+      46           0 : /* EOF */
+      47             : /* EOF */
+      48          12 : /* EOF */
+      49           0 : /* EOF */
+      50         102 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func-sort-c.html new file mode 100644 index 00000000..7346fb16 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramLPDDR4D0Ev0
_ZN10DramLPDDR4D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func.html new file mode 100644 index 00000000..ad07bbbd --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramLPDDR4D0Ev0
_ZN10DramLPDDR4D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.gcov.html new file mode 100644 index 00000000..50773866 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47          12 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func-sort-c.html new file mode 100644 index 00000000..a23591b0 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func-sort-c.html @@ -0,0 +1,269 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:233860.5 %
Date:2020-06-30 17:34:44Functions:144729.8 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN14DramRecordableI10DramGDDR5XE11powerWindowEv0
_ZN14DramRecordableI10DramGDDR5XE11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramGDDR5XE11reportPowerEv0
_ZN14DramRecordableI10DramGDDR5XE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramGDDR5XEC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI10DramLPDDR4E11powerWindowEv0
_ZN14DramRecordableI10DramLPDDR4E11reportPowerEv0
_ZN14DramRecordableI10DramWideIOE11powerWindowEv0
_ZN14DramRecordableI10DramWideIOE11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramWideIOE11reportPowerEv0
_ZN14DramRecordableI10DramWideIOE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramWideIOEC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI11DramWideIO2E11powerWindowEv0
_ZN14DramRecordableI11DramWideIO2E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI11DramWideIO2E11reportPowerEv0
_ZN14DramRecordableI11DramWideIO2E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI11DramWideIO2EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI8DramDDR3E11powerWindowEv0
_ZN14DramRecordableI8DramDDR3E11reportPowerEv0
_ZN14DramRecordableI8DramDDR4E11powerWindowEv0
_ZN14DramRecordableI8DramDDR4E11reportPowerEv0
_ZN14DramRecordableI8DramHBM2E11powerWindowEv0
_ZN14DramRecordableI8DramHBM2E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR5E11powerWindowEv0
_ZN14DramRecordableI9DramGDDR5E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR5E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR5E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR5EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI9DramGDDR6E11powerWindowEv0
_ZN14DramRecordableI9DramGDDR6E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR6E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR6E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR6EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI8DramDDR3EC2EN7sc_core14sc_module_nameEP11TlmRecorder5
_ZN14DramRecordableI8DramDDR4EC2EN7sc_core14sc_module_nameEP11TlmRecorder6
_ZN14DramRecordableI10DramLPDDR4EC2EN7sc_core14sc_module_nameEP11TlmRecorder12
_ZN14DramRecordableI8DramHBM2EC2EN7sc_core14sc_module_nameEP11TlmRecorder14
_GLOBAL__sub_I_DramRecordable.cpp30
_Z41__static_initialization_and_destruction_0ii30
_ZN14DramRecordableI8DramDDR3E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE2275
_ZN14DramRecordableI8DramDDR3E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE2275
_ZN14DramRecordableI8DramHBM2E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE58380
_ZN14DramRecordableI8DramHBM2E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE58380
_ZN14DramRecordableI8DramDDR4E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE166614
_ZN14DramRecordableI8DramDDR4E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE166614
_ZN14DramRecordableI10DramLPDDR4E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE191436
_ZN14DramRecordableI10DramLPDDR4E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE191436
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func.html new file mode 100644 index 00000000..07eba4a0 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func.html @@ -0,0 +1,269 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:233860.5 %
Date:2020-06-30 17:34:44Functions:144729.8 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I_DramRecordable.cpp30
_Z41__static_initialization_and_destruction_0ii30
_ZN14DramRecordableI10DramGDDR5XE11powerWindowEv0
_ZN14DramRecordableI10DramGDDR5XE11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramGDDR5XE11reportPowerEv0
_ZN14DramRecordableI10DramGDDR5XE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramGDDR5XEC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI10DramLPDDR4E11powerWindowEv0
_ZN14DramRecordableI10DramLPDDR4E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE191436
_ZN14DramRecordableI10DramLPDDR4E11reportPowerEv0
_ZN14DramRecordableI10DramLPDDR4E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE191436
_ZN14DramRecordableI10DramLPDDR4EC2EN7sc_core14sc_module_nameEP11TlmRecorder12
_ZN14DramRecordableI10DramWideIOE11powerWindowEv0
_ZN14DramRecordableI10DramWideIOE11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramWideIOE11reportPowerEv0
_ZN14DramRecordableI10DramWideIOE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramWideIOEC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI11DramWideIO2E11powerWindowEv0
_ZN14DramRecordableI11DramWideIO2E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI11DramWideIO2E11reportPowerEv0
_ZN14DramRecordableI11DramWideIO2E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI11DramWideIO2EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI8DramDDR3E11powerWindowEv0
_ZN14DramRecordableI8DramDDR3E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE2275
_ZN14DramRecordableI8DramDDR3E11reportPowerEv0
_ZN14DramRecordableI8DramDDR3E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE2275
_ZN14DramRecordableI8DramDDR3EC2EN7sc_core14sc_module_nameEP11TlmRecorder5
_ZN14DramRecordableI8DramDDR4E11powerWindowEv0
_ZN14DramRecordableI8DramDDR4E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE166614
_ZN14DramRecordableI8DramDDR4E11reportPowerEv0
_ZN14DramRecordableI8DramDDR4E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE166614
_ZN14DramRecordableI8DramDDR4EC2EN7sc_core14sc_module_nameEP11TlmRecorder6
_ZN14DramRecordableI8DramHBM2E11powerWindowEv0
_ZN14DramRecordableI8DramHBM2E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE58380
_ZN14DramRecordableI8DramHBM2E11reportPowerEv0
_ZN14DramRecordableI8DramHBM2E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE58380
_ZN14DramRecordableI8DramHBM2EC2EN7sc_core14sc_module_nameEP11TlmRecorder14
_ZN14DramRecordableI9DramGDDR5E11powerWindowEv0
_ZN14DramRecordableI9DramGDDR5E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR5E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR5E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR5EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI9DramGDDR6E11powerWindowEv0
_ZN14DramRecordableI9DramGDDR6E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR6E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR6E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR6EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.gcov.html new file mode 100644 index 00000000..09eab6e2 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.gcov.html @@ -0,0 +1,241 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:233860.5 %
Date:2020-06-30 17:34:44Functions:144729.8 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55          37 : /* EOF */
+      56         148 : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60          37 : /* EOF */
+      61           0 : /* EOF */
+      62          37 : /* EOF */
+      63             : /* EOF */
+      64             : /* EOF */
+      65           0 : /* EOF */
+      66             : /* EOF */
+      67           0 : /* EOF */
+      68           0 : /* EOF */
+      69           0 : /* EOF */
+      70           0 : /* EOF */
+      71           0 : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74      418705 : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77      418705 : /* EOF */
+      78      418705 : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82      418705 : /* EOF */
+      83             : /* EOF */
+      84      837410 : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87             : /* EOF */
+      88     1674785 : /* EOF */
+      89          70 : /* EOF */
+      90             : /* EOF */
+      91      418705 : /* EOF */
+      92      418705 : /* EOF */
+      93      418705 : /* EOF */
+      94      418705 : /* EOF */
+      95      418705 : /* EOF */
+      96      418705 : /* EOF */
+      97             : /* EOF */
+      98             : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101             : /* EOF */
+     102             : /* EOF */
+     103      837410 : /* EOF */
+     104             : /* EOF */
+     105      418705 : /* EOF */
+     106             : /* EOF */
+     107      837260 : /* EOF */
+     108      837260 : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111      418705 : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115             : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118             : /* EOF */
+     119           0 : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123           0 : /* EOF */
+     124             : /* EOF */
+     125           0 : /* EOF */
+     126             : /* EOF */
+     127           0 : /* EOF */
+     128             : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132             : /* EOF */
+     133           0 : /* EOF */
+     134           0 : /* EOF */
+     135           0 : /* EOF */
+     136             : /* EOF */
+     137             : /* EOF */
+     138             : /* EOF */
+     139             : /* EOF */
+     140             : /* EOF */
+     141             : /* EOF */
+     142             : /* EOF */
+     143             : /* EOF */
+     144             : /* EOF */
+     145             : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148             : /* EOF */
+     149             : /* EOF */
+     150             : /* EOF */
+     151             : /* EOF */
+     152             : /* EOF */
+     153             : /* EOF */
+     154             : /* EOF */
+     155             : /* EOF */
+     156          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func-sort-c.html new file mode 100644 index 00000000..e8fbee4f --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func-sort-c.html @@ -0,0 +1,189 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3560.0 %
Date:2020-06-30 17:34:44Functions:42714.8 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN14DramRecordableI10DramGDDR5XE7isEqualEddd0
_ZN14DramRecordableI10DramGDDR5XED0Ev0
_ZN14DramRecordableI10DramGDDR5XED2Ev0
_ZN14DramRecordableI10DramLPDDR4E7isEqualEddd0
_ZN14DramRecordableI10DramLPDDR4ED2Ev0
_ZN14DramRecordableI10DramWideIOE7isEqualEddd0
_ZN14DramRecordableI10DramWideIOED0Ev0
_ZN14DramRecordableI10DramWideIOED2Ev0
_ZN14DramRecordableI11DramWideIO2E7isEqualEddd0
_ZN14DramRecordableI11DramWideIO2ED0Ev0
_ZN14DramRecordableI11DramWideIO2ED2Ev0
_ZN14DramRecordableI8DramDDR3E7isEqualEddd0
_ZN14DramRecordableI8DramDDR3ED2Ev0
_ZN14DramRecordableI8DramDDR4E7isEqualEddd0
_ZN14DramRecordableI8DramDDR4ED2Ev0
_ZN14DramRecordableI8DramHBM2E7isEqualEddd0
_ZN14DramRecordableI8DramHBM2ED2Ev0
_ZN14DramRecordableI9DramGDDR5E7isEqualEddd0
_ZN14DramRecordableI9DramGDDR5ED0Ev0
_ZN14DramRecordableI9DramGDDR5ED2Ev0
_ZN14DramRecordableI9DramGDDR6E7isEqualEddd0
_ZN14DramRecordableI9DramGDDR6ED0Ev0
_ZN14DramRecordableI9DramGDDR6ED2Ev0
_ZN14DramRecordableI8DramDDR3ED0Ev5
_ZN14DramRecordableI8DramDDR4ED0Ev6
_ZN14DramRecordableI10DramLPDDR4ED0Ev12
_ZN14DramRecordableI8DramHBM2ED0Ev14
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func.html new file mode 100644 index 00000000..5e486f62 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func.html @@ -0,0 +1,189 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3560.0 %
Date:2020-06-30 17:34:44Functions:42714.8 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN14DramRecordableI10DramGDDR5XE7isEqualEddd0
_ZN14DramRecordableI10DramGDDR5XED0Ev0
_ZN14DramRecordableI10DramGDDR5XED2Ev0
_ZN14DramRecordableI10DramLPDDR4E7isEqualEddd0
_ZN14DramRecordableI10DramLPDDR4ED0Ev12
_ZN14DramRecordableI10DramLPDDR4ED2Ev0
_ZN14DramRecordableI10DramWideIOE7isEqualEddd0
_ZN14DramRecordableI10DramWideIOED0Ev0
_ZN14DramRecordableI10DramWideIOED2Ev0
_ZN14DramRecordableI11DramWideIO2E7isEqualEddd0
_ZN14DramRecordableI11DramWideIO2ED0Ev0
_ZN14DramRecordableI11DramWideIO2ED2Ev0
_ZN14DramRecordableI8DramDDR3E7isEqualEddd0
_ZN14DramRecordableI8DramDDR3ED0Ev5
_ZN14DramRecordableI8DramDDR3ED2Ev0
_ZN14DramRecordableI8DramDDR4E7isEqualEddd0
_ZN14DramRecordableI8DramDDR4ED0Ev6
_ZN14DramRecordableI8DramDDR4ED2Ev0
_ZN14DramRecordableI8DramHBM2E7isEqualEddd0
_ZN14DramRecordableI8DramHBM2ED0Ev14
_ZN14DramRecordableI8DramHBM2ED2Ev0
_ZN14DramRecordableI9DramGDDR5E7isEqualEddd0
_ZN14DramRecordableI9DramGDDR5ED0Ev0
_ZN14DramRecordableI9DramGDDR5ED2Ev0
_ZN14DramRecordableI9DramGDDR6E7isEqualEddd0
_ZN14DramRecordableI9DramGDDR6ED0Ev0
_ZN14DramRecordableI9DramGDDR6ED2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.gcov.html new file mode 100644 index 00000000..6e959c25 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.gcov.html @@ -0,0 +1,155 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3560.0 %
Date:2020-06-30 17:34:44Functions:42714.8 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46          74 : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58             : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61             : /* EOF */
+      62          37 : /* EOF */
+      63          37 : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67             : /* EOF */
+      68           0 : /* EOF */
+      69             : /* EOF */
+      70           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func-sort-c.html new file mode 100644 index 00000000..ab47771e --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11190.8 %
Date:2020-06-30 17:34:44Functions:2633.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramWideIO15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN10DramWideIOD0Ev0
_GLOBAL__sub_I__ZN10DramWideIOC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func.html new file mode 100644 index 00000000..839e14aa --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11190.8 %
Date:2020-06-30 17:34:44Functions:2633.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10DramWideIOC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10DramWideIO15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN10DramWideIOD0Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.gcov.html new file mode 100644 index 00000000..0a4b3a53 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.gcov.html @@ -0,0 +1,304 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11190.8 %
Date:2020-06-30 17:34:44Functions:2633.3 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49           0 : /* EOF */
+      50             : /* EOF */
+      51           0 : /* EOF */
+      52             : /* EOF */
+      53           0 : /* EOF */
+      54           0 : /* EOF */
+      55           0 : /* EOF */
+      56             : /* EOF */
+      57           0 : /* EOF */
+      58           0 : /* EOF */
+      59           0 : /* EOF */
+      60           0 : /* EOF */
+      61           0 : /* EOF */
+      62           0 : /* EOF */
+      63           0 : /* EOF */
+      64           0 : /* EOF */
+      65           0 : /* EOF */
+      66           0 : /* EOF */
+      67           0 : /* EOF */
+      68             : /* EOF */
+      69           0 : /* EOF */
+      70             : /* EOF */
+      71             : /* EOF */
+      72             : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77           0 : /* EOF */
+      78           0 : /* EOF */
+      79           0 : /* EOF */
+      80           0 : /* EOF */
+      81           0 : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84             : /* EOF */
+      85           0 : /* EOF */
+      86           0 : /* EOF */
+      87           0 : /* EOF */
+      88           0 : /* EOF */
+      89           0 : /* EOF */
+      90           0 : /* EOF */
+      91           0 : /* EOF */
+      92           0 : /* EOF */
+      93           0 : /* EOF */
+      94           0 : /* EOF */
+      95           0 : /* EOF */
+      96           0 : /* EOF */
+      97           0 : /* EOF */
+      98           0 : /* EOF */
+      99           0 : /* EOF */
+     100           0 : /* EOF */
+     101           0 : /* EOF */
+     102           0 : /* EOF */
+     103           0 : /* EOF */
+     104           0 : /* EOF */
+     105           0 : /* EOF */
+     106           0 : /* EOF */
+     107           0 : /* EOF */
+     108           0 : /* EOF */
+     109             : /* EOF */
+     110           0 : /* EOF */
+     111           0 : /* EOF */
+     112           0 : /* EOF */
+     113           0 : /* EOF */
+     114           0 : /* EOF */
+     115           0 : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121           0 : /* EOF */
+     122           0 : /* EOF */
+     123           0 : /* EOF */
+     124           0 : /* EOF */
+     125           0 : /* EOF */
+     126           0 : /* EOF */
+     127           0 : /* EOF */
+     128           0 : /* EOF */
+     129           0 : /* EOF */
+     130           0 : /* EOF */
+     131           0 : /* EOF */
+     132           0 : /* EOF */
+     133           0 : /* EOF */
+     134           0 : /* EOF */
+     135             : /* EOF */
+     136           0 : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140           0 : /* EOF */
+     141           0 : /* EOF */
+     142             : /* EOF */
+     143           0 : /* EOF */
+     144             : /* EOF */
+     145             : /* EOF */
+     146           0 : /* EOF */
+     147             : /* EOF */
+     148           0 : /* EOF */
+     149             : /* EOF */
+     150             : /* EOF */
+     151           0 : /* EOF */
+     152           0 : /* EOF */
+     153           0 : /* EOF */
+     154             : /* EOF */
+     155             : /* EOF */
+     156             : /* EOF */
+     157             : /* EOF */
+     158             : /* EOF */
+     159           0 : /* EOF */
+     160             : /* EOF */
+     161           0 : /* EOF */
+     162             : /* EOF */
+     163             : /* EOF */
+     164           0 : /* EOF */
+     165           0 : /* EOF */
+     166           0 : /* EOF */
+     167             : /* EOF */
+     168             : /* EOF */
+     169             : /* EOF */
+     170           0 : /* EOF */
+     171             : /* EOF */
+     172           0 : /* EOF */
+     173             : /* EOF */
+     174             : /* EOF */
+     175           0 : /* EOF */
+     176           0 : /* EOF */
+     177           0 : /* EOF */
+     178             : /* EOF */
+     179           0 : /* EOF */
+     180             : /* EOF */
+     181             : /* EOF */
+     182             : /* EOF */
+     183             : /* EOF */
+     184           0 : /* EOF */
+     185             : /* EOF */
+     186           0 : /* EOF */
+     187           0 : /* EOF */
+     188           0 : /* EOF */
+     189             : /* EOF */
+     190             : /* EOF */
+     191           0 : /* EOF */
+     192             : /* EOF */
+     193           0 : /* EOF */
+     194             : /* EOF */
+     195           0 : /* EOF */
+     196           0 : /* EOF */
+     197             : /* EOF */
+     198           0 : /* EOF */
+     199             : /* EOF */
+     200           0 : /* EOF */
+     201           0 : /* EOF */
+     202             : /* EOF */
+     203             : /* EOF */
+     204           0 : /* EOF */
+     205             : /* EOF */
+     206           0 : /* EOF */
+     207             : /* EOF */
+     208           0 : /* EOF */
+     209           0 : /* EOF */
+     210           0 : /* EOF */
+     211           0 : /* EOF */
+     212           0 : /* EOF */
+     213           0 : /* EOF */
+     214           0 : /* EOF */
+     215           0 : /* EOF */
+     216             : /* EOF */
+     217             : /* EOF */
+     218           0 : /* EOF */
+     219          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func-sort-c.html new file mode 100644 index 00000000..a26a0761 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11DramWideIO2C2EN7sc_core14sc_module_nameE0
_GLOBAL__sub_I__ZN11DramWideIO2C2EN7sc_core14sc_module_nameE30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func.html new file mode 100644 index 00000000..39a26b82 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11DramWideIO2C2EN7sc_core14sc_module_nameE30
_ZN11DramWideIO2C2EN7sc_core14sc_module_nameE0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.gcov.html new file mode 100644 index 00000000..55bb0bb5 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.gcov.html @@ -0,0 +1,135 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43           0 : /* EOF */
+      44             : /* EOF */
+      45           0 : /* EOF */
+      46           0 : /* EOF */
+      47             : /* EOF */
+      48           0 : /* EOF */
+      49           0 : /* EOF */
+      50          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func-sort-c.html new file mode 100644 index 00000000..6c4f2809 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11DramWideIO2D0Ev0
_ZN11DramWideIO2D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func.html new file mode 100644 index 00000000..11ccb29e --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11DramWideIO2D0Ev0
_ZN11DramWideIO2D2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.gcov.html new file mode 100644 index 00000000..9377fb34 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.gcov.html @@ -0,0 +1,132 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/index-sort-f.html b/html/DRAMSys/library/src/simulation/dram/index-sort-f.html new file mode 100644 index 00000000..2ee2d244 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/index-sort-f.html @@ -0,0 +1,303 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/simulation/dramHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:7244816.1 %
Date:2020-06-30 17:34:44Functions:4512835.2 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
DramWideIO2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramDDR4.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramHBM2.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramLPDDR4.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramGDDR6.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramDDR3.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramGDDR5.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramGDDR5X.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramRecordable.h +
60.0%60.0%
+
60.0 %3 / 514.8 %4 / 27
DramRecordable.cpp +
60.5%60.5%
+
60.5 %23 / 3829.8 %14 / 47
DramWideIO.cpp +
0.8%0.8%
+
0.8 %1 / 11933.3 %2 / 6
Dram.cpp +
25.7%25.7%
+
25.7 %19 / 7462.5 %5 / 8
DramGDDR5X.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramGDDR5.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramGDDR6.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramWideIO2.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
Dram.h +
100.0%
+
100.0 %2 / 2-0 / 0
DramDDR3.cpp +
4.8%4.8%
+
4.8 %4 / 83100.0 %3 / 3
DramDDR4.cpp +
4.8%4.8%
+
4.8 %4 / 83100.0 %3 / 3
DramHBM2.cpp +
66.7%66.7%
+
66.7 %4 / 6100.0 %3 / 3
DramLPDDR4.cpp +
66.7%66.7%
+
66.7 %4 / 6100.0 %3 / 3
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/index-sort-l.html b/html/DRAMSys/library/src/simulation/dram/index-sort-l.html new file mode 100644 index 00000000..a6799174 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/index-sort-l.html @@ -0,0 +1,303 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/simulation/dramHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:7244816.1 %
Date:2020-06-30 17:34:44Functions:4512835.2 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
DramWideIO2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramGDDR6.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramGDDR5.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramGDDR5X.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramWideIO.cpp +
0.8%0.8%
+
0.8 %1 / 11933.3 %2 / 6
DramDDR3.cpp +
4.8%4.8%
+
4.8 %4 / 83100.0 %3 / 3
DramDDR4.cpp +
4.8%4.8%
+
4.8 %4 / 83100.0 %3 / 3
DramGDDR5X.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramGDDR5.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramGDDR6.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramWideIO2.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
Dram.cpp +
25.7%25.7%
+
25.7 %19 / 7462.5 %5 / 8
DramRecordable.h +
60.0%60.0%
+
60.0 %3 / 514.8 %4 / 27
DramRecordable.cpp +
60.5%60.5%
+
60.5 %23 / 3829.8 %14 / 47
DramHBM2.cpp +
66.7%66.7%
+
66.7 %4 / 6100.0 %3 / 3
DramLPDDR4.cpp +
66.7%66.7%
+
66.7 %4 / 6100.0 %3 / 3
DramDDR4.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramHBM2.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramLPDDR4.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramDDR3.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
Dram.h +
100.0%
+
100.0 %2 / 2-0 / 0
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/dram/index.html b/html/DRAMSys/library/src/simulation/dram/index.html new file mode 100644 index 00000000..cd3fd222 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/dram/index.html @@ -0,0 +1,303 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/simulation/dramHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:7244816.1 %
Date:2020-06-30 17:34:44Functions:4512835.2 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Dram.cpp +
25.7%25.7%
+
25.7 %19 / 7462.5 %5 / 8
Dram.h +
100.0%
+
100.0 %2 / 2-0 / 0
DramDDR3.cpp +
4.8%4.8%
+
4.8 %4 / 83100.0 %3 / 3
DramDDR3.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramDDR4.cpp +
4.8%4.8%
+
4.8 %4 / 83100.0 %3 / 3
DramDDR4.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramGDDR5.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramGDDR5.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramGDDR5X.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramGDDR5X.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramGDDR6.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramGDDR6.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
DramHBM2.cpp +
66.7%66.7%
+
66.7 %4 / 6100.0 %3 / 3
DramHBM2.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramLPDDR4.cpp +
66.7%66.7%
+
66.7 %4 / 6100.0 %3 / 3
DramLPDDR4.h +
100.0%
+
100.0 %1 / 10.0 %0 / 2
DramRecordable.cpp +
60.5%60.5%
+
60.5 %23 / 3829.8 %14 / 47
DramRecordable.h +
60.0%60.0%
+
60.0 %3 / 514.8 %4 / 27
DramWideIO.cpp +
0.8%0.8%
+
0.8 %1 / 11933.3 %2 / 6
DramWideIO2.cpp +
16.7%16.7%
+
16.7 %1 / 666.7 %2 / 3
DramWideIO2.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/index-sort-f.html b/html/DRAMSys/library/src/simulation/index-sort-f.html new file mode 100644 index 00000000..0fdafaea --- /dev/null +++ b/html/DRAMSys/library/src/simulation/index-sort-f.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/simulationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:20737555.2 %
Date:2020-06-30 17:34:44Functions:304369.8 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
TemperatureController.cpp +
2.3%2.3%
+
2.3 %1 / 4425.0 %2 / 8
DRAMSys.cpp +
40.2%40.2%
+
40.2 %47 / 11758.3 %7 / 12
TemperatureController.h +
34.4%34.4%
+
34.4 %11 / 3275.0 %3 / 4
Arbiter.cpp +
89.0%89.0%
+
89.0 %81 / 9187.5 %7 / 8
Arbiter.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
DRAMSysRecordable.cpp +
73.3%73.3%
+
73.3 %66 / 90100.0 %9 / 9
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/index-sort-l.html b/html/DRAMSys/library/src/simulation/index-sort-l.html new file mode 100644 index 00000000..6ca1a79a --- /dev/null +++ b/html/DRAMSys/library/src/simulation/index-sort-l.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/simulationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:20737555.2 %
Date:2020-06-30 17:34:44Functions:304369.8 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
TemperatureController.cpp +
2.3%2.3%
+
2.3 %1 / 4425.0 %2 / 8
TemperatureController.h +
34.4%34.4%
+
34.4 %11 / 3275.0 %3 / 4
DRAMSys.cpp +
40.2%40.2%
+
40.2 %47 / 11758.3 %7 / 12
DRAMSysRecordable.cpp +
73.3%73.3%
+
73.3 %66 / 90100.0 %9 / 9
Arbiter.cpp +
89.0%89.0%
+
89.0 %81 / 9187.5 %7 / 8
Arbiter.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/library/src/simulation/index.html b/html/DRAMSys/library/src/simulation/index.html new file mode 100644 index 00000000..e66e6881 --- /dev/null +++ b/html/DRAMSys/library/src/simulation/index.html @@ -0,0 +1,153 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/library/src/simulationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:20737555.2 %
Date:2020-06-30 17:34:44Functions:304369.8 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Arbiter.cpp +
89.0%89.0%
+
89.0 %81 / 9187.5 %7 / 8
Arbiter.h +
100.0%
+
100.0 %1 / 1100.0 %2 / 2
DRAMSys.cpp +
40.2%40.2%
+
40.2 %47 / 11758.3 %7 / 12
DRAMSysRecordable.cpp +
73.3%73.3%
+
73.3 %66 / 90100.0 %9 / 9
TemperatureController.cpp +
2.3%2.3%
+
2.3 %1 / 4425.0 %2 / 8
TemperatureController.h +
34.4%34.4%
+
34.4 %11 / 3275.0 %3 / 4
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/MemoryManager.cpp.func-sort-c.html b/html/DRAMSys/simulator/MemoryManager.cpp.func-sort-c.html new file mode 100644 index 00000000..2b15610b --- /dev/null +++ b/html/DRAMSys/simulator/MemoryManager.cpp.func-sort-c.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/MemoryManager.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - MemoryManager.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182475.0 %
Date:2020-06-30 17:34:44Functions:5771.4 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemoryManagerD0Ev0
_ZN13MemoryManagerD2Ev0
_GLOBAL__sub_I__ZN13MemoryManagerC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemoryManagerC2Ev37
_ZN13MemoryManager4freeEPN3tlm19tlm_generic_payloadE252908
_ZN13MemoryManager8allocateEv252938
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/MemoryManager.cpp.func.html b/html/DRAMSys/simulator/MemoryManager.cpp.func.html new file mode 100644 index 00000000..e2f47a87 --- /dev/null +++ b/html/DRAMSys/simulator/MemoryManager.cpp.func.html @@ -0,0 +1,109 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/MemoryManager.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - MemoryManager.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182475.0 %
Date:2020-06-30 17:34:44Functions:5771.4 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13MemoryManagerC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemoryManager4freeEPN3tlm19tlm_generic_payloadE252908
_ZN13MemoryManager8allocateEv252938
_ZN13MemoryManagerC2Ev37
_ZN13MemoryManagerD0Ev0
_ZN13MemoryManagerD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/MemoryManager.cpp.gcov.html b/html/DRAMSys/simulator/MemoryManager.cpp.gcov.html new file mode 100644 index 00000000..fffe284f --- /dev/null +++ b/html/DRAMSys/simulator/MemoryManager.cpp.gcov.html @@ -0,0 +1,169 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/MemoryManager.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - MemoryManager.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182475.0 %
Date:2020-06-30 17:34:44Functions:5771.4 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          37 : /* EOF */
+      45          74 : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+      48             : /* EOF */
+      49           0 : /* EOF */
+      50           0 : /* EOF */
+      51           0 : /* EOF */
+      52           0 : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56             : /* EOF */
+      57             : /* EOF */
+      58           0 : /* EOF */
+      59             : /* EOF */
+      60      252938 : /* EOF */
+      61             : /* EOF */
+      62      505876 : /* EOF */
+      63        2427 : /* EOF */
+      64        2427 : /* EOF */
+      65             : /* EOF */
+      66             : /* EOF */
+      67        2427 : /* EOF */
+      68        2427 : /* EOF */
+      69        4854 : /* EOF */
+      70             : /* EOF */
+      71        4854 : /* EOF */
+      72        2427 : /* EOF */
+      73             : /* EOF */
+      74      501022 : /* EOF */
+      75      250511 : /* EOF */
+      76      250511 : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80      252908 : /* EOF */
+      81             : /* EOF */
+      82      252908 : /* EOF */
+      83      252908 : /* EOF */
+      84      252998 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/StlPlayer.h.func-sort-c.html b/html/DRAMSys/simulator/StlPlayer.h.func-sort-c.html new file mode 100644 index 00000000..efbec1ae --- /dev/null +++ b/html/DRAMSys/simulator/StlPlayer.h.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/StlPlayer.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - StlPlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:486277.4 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9StlPlayerILb0EED0Ev0
_ZN9StlPlayerILb0EED2Ev0
_ZN9StlPlayerILb1EED0Ev0
_ZN9StlPlayerILb1EED2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/StlPlayer.h.func.html b/html/DRAMSys/simulator/StlPlayer.h.func.html new file mode 100644 index 00000000..c8a95420 --- /dev/null +++ b/html/DRAMSys/simulator/StlPlayer.h.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/StlPlayer.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - StlPlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:486277.4 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN9StlPlayerILb0EED0Ev0
_ZN9StlPlayerILb0EED2Ev0
_ZN9StlPlayerILb1EED0Ev0
_ZN9StlPlayerILb1EED2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/StlPlayer.h.gcov.html b/html/DRAMSys/simulator/StlPlayer.h.gcov.html new file mode 100644 index 00000000..945ea4ec --- /dev/null +++ b/html/DRAMSys/simulator/StlPlayer.h.gcov.html @@ -0,0 +1,259 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/StlPlayer.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - StlPlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:486277.4 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47           0 : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50          37 : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55          74 : /* EOF */
+      56             : /* EOF */
+      57          74 : /* EOF */
+      58           0 : /* EOF */
+      59             : /* EOF */
+      60          74 : /* EOF */
+      61          37 : /* EOF */
+      62          37 : /* EOF */
+      63          37 : /* EOF */
+      64          37 : /* EOF */
+      65             : /* EOF */
+      66      252975 : /* EOF */
+      67             : /* EOF */
+      68      252938 : /* EOF */
+      69      758962 : /* EOF */
+      70             : /* EOF */
+      71      252975 : /* EOF */
+      72      252975 : /* EOF */
+      73             : /* EOF */
+      74      505913 : /* EOF */
+      75             : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78      505950 : /* EOF */
+      79             : /* EOF */
+      80          37 : /* EOF */
+      81          37 : /* EOF */
+      82             : /* EOF */
+      83      252938 : /* EOF */
+      84             : /* EOF */
+      85             : /* EOF */
+      86      252938 : /* EOF */
+      87      252938 : /* EOF */
+      88      252938 : /* EOF */
+      89             : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92             : /* EOF */
+      93      505876 : /* EOF */
+      94      505876 : /* EOF */
+      95      505876 : /* EOF */
+      96      505876 : /* EOF */
+      97             : /* EOF */
+      98      505876 : /* EOF */
+      99             : /* EOF */
+     100             : /* EOF */
+     101      252938 : /* EOF */
+     102      252938 : /* EOF */
+     103           0 : /* EOF */
+     104             : /* EOF */
+     105             : /* EOF */
+     106     1517628 : /* EOF */
+     107             : /* EOF */
+     108             : /* EOF */
+     109      252938 : /* EOF */
+     110      252938 : /* EOF */
+     111           0 : /* EOF */
+     112             : /* EOF */
+     113             : /* EOF */
+     114             : /* EOF */
+     115      252938 : /* EOF */
+     116             : /* EOF */
+     117      111154 : /* EOF */
+     118             : /* EOF */
+     119             : /* EOF */
+     120           0 : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124             : /* EOF */
+     125             : /* EOF */
+     126      252938 : /* EOF */
+     127      252938 : /* EOF */
+     128           0 : /* EOF */
+     129             : /* EOF */
+     130             : /* EOF */
+     131     1011752 : /* EOF */
+     132             : /* EOF */
+     133             : /* EOF */
+     134      252938 : /* EOF */
+     135             : /* EOF */
+     136             : /* EOF */
+     137           0 : /* EOF */
+     138           0 : /* EOF */
+     139           0 : /* EOF */
+     140             : /* EOF */
+     141             : /* EOF */
+     142             : /* EOF */
+     143             : /* EOF */
+     144           0 : /* EOF */
+     145           0 : /* EOF */
+     146             : /* EOF */
+     147             : /* EOF */
+     148             : /* EOF */
+     149             : /* EOF */
+     150           0 : /* EOF */
+     151           0 : /* EOF */
+     152             : /* EOF */
+     153             : /* EOF */
+     154             : /* EOF */
+     155      505876 : /* EOF */
+     156      505876 : /* EOF */
+     157      252938 : /* EOF */
+     158      505876 : /* EOF */
+     159      505876 : /* EOF */
+     160      505876 : /* EOF */
+     161      505876 : /* EOF */
+     162      505876 : /* EOF */
+     163             : /* EOF */
+     164             : /* EOF */
+     165             : /* EOF */
+     166             : /* EOF */
+     167      505876 : /* EOF */
+     168      502970 : /* EOF */
+     169             : /* EOF */
+     170        4359 : /* EOF */
+     171             : /* EOF */
+     172             : /* EOF */
+     173             : /* EOF */
+     174           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TracePlayer.cpp.func-sort-c.html b/html/DRAMSys/simulator/TracePlayer.cpp.func-sort-c.html new file mode 100644 index 00000000..ac38a8c5 --- /dev/null +++ b/html/DRAMSys/simulator/TracePlayer.cpp.func-sort-c.html @@ -0,0 +1,125 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TracePlayer.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:475388.7 %
Date:2020-06-30 17:34:44Functions:101190.9 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11TracePlayer23setNumberOfTransactionsEj0
_GLOBAL__sub_I__ZN11TracePlayerC2EN7sc_core14sc_module_nameEP19TracePlayerListener30
_Z41__static_initialization_and_destruction_0ii30
_ZN11TracePlayer16getNumberOfLinesENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TracePlayer6finishEv37
_ZN11TracePlayer9terminateEv37
_ZN11TracePlayerC2EN7sc_core14sc_module_nameEP19TracePlayerListener37
_ZN11TracePlayer15allocatePayloadEv252938
_ZN11TracePlayer12sendToTargetERN3tlm19tlm_generic_payloadERKNS0_9tlm_phaseERKN7sc_core7sc_timeE505876
_ZN11TracePlayer15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
_ZN11TracePlayer11peqCallbackERN3tlm19tlm_generic_payloadERKNS0_9tlm_phaseE758814
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TracePlayer.cpp.func.html b/html/DRAMSys/simulator/TracePlayer.cpp.func.html new file mode 100644 index 00000000..c4e8801f --- /dev/null +++ b/html/DRAMSys/simulator/TracePlayer.cpp.func.html @@ -0,0 +1,125 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TracePlayer.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:475388.7 %
Date:2020-06-30 17:34:44Functions:101190.9 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11TracePlayerC2EN7sc_core14sc_module_nameEP19TracePlayerListener30
_Z41__static_initialization_and_destruction_0ii30
_ZN11TracePlayer11peqCallbackERN3tlm19tlm_generic_payloadERKNS0_9tlm_phaseE758814
_ZN11TracePlayer12sendToTargetERN3tlm19tlm_generic_payloadERKNS0_9tlm_phaseERKN7sc_core7sc_timeE505876
_ZN11TracePlayer15allocatePayloadEv252938
_ZN11TracePlayer15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
_ZN11TracePlayer16getNumberOfLinesENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TracePlayer23setNumberOfTransactionsEj0
_ZN11TracePlayer6finishEv37
_ZN11TracePlayer9terminateEv37
_ZN11TracePlayerC2EN7sc_core14sc_module_nameEP19TracePlayerListener37
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TracePlayer.cpp.gcov.html b/html/DRAMSys/simulator/TracePlayer.cpp.gcov.html new file mode 100644 index 00000000..915a4953 --- /dev/null +++ b/html/DRAMSys/simulator/TracePlayer.cpp.gcov.html @@ -0,0 +1,217 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TracePlayer.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:475388.7 %
Date:2020-06-30 17:34:44Functions:101190.9 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43          37 : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46          37 : /* EOF */
+      47             : /* EOF */
+      48          74 : /* EOF */
+      49             : /* EOF */
+      50          74 : /* EOF */
+      51          37 : /* EOF */
+      52             : /* EOF */
+      53           0 : /* EOF */
+      54          37 : /* EOF */
+      55             : /* EOF */
+      56      252938 : /* EOF */
+      57             : /* EOF */
+      58      252938 : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61          37 : /* EOF */
+      62             : /* EOF */
+      63          37 : /* EOF */
+      64          37 : /* EOF */
+      65             : /* EOF */
+      66          37 : /* EOF */
+      67             : /* EOF */
+      68         222 : /* EOF */
+      69          37 : /* EOF */
+      70          37 : /* EOF */
+      71             : /* EOF */
+      72      505876 : /* EOF */
+      73             : /* EOF */
+      74             : /* EOF */
+      75      505876 : /* EOF */
+      76      505876 : /* EOF */
+      77             : /* EOF */
+      78             : /* EOF */
+      79      758814 : /* EOF */
+      80             : /* EOF */
+      81             : /* EOF */
+      82      758814 : /* EOF */
+      83      252938 : /* EOF */
+      84      252938 : /* EOF */
+      85             : /* EOF */
+      86      505876 : /* EOF */
+      87      252938 : /* EOF */
+      88      252938 : /* EOF */
+      89      252938 : /* EOF */
+      90      252938 : /* EOF */
+      91      252938 : /* EOF */
+      92      252938 : /* EOF */
+      93             : /* EOF */
+      94      252938 : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97      252938 : /* EOF */
+      98             : /* EOF */
+      99          37 : /* EOF */
+     100             : /* EOF */
+     101           0 : /* EOF */
+     102             : /* EOF */
+     103           0 : /* EOF */
+     104             : /* EOF */
+     105      758814 : /* EOF */
+     106             : /* EOF */
+     107      505876 : /* EOF */
+     108             : /* EOF */
+     109      505876 : /* EOF */
+     110      505876 : /* EOF */
+     111      505876 : /* EOF */
+     112      505876 : /* EOF */
+     113             : /* EOF */
+     114           0 : /* EOF */
+     115             : /* EOF */
+     116           0 : /* EOF */
+     117           0 : /* EOF */
+     118             : /* EOF */
+     119          37 : /* EOF */
+     120             : /* EOF */
+     121             : /* EOF */
+     122          74 : /* EOF */
+     123          37 : /* EOF */
+     124             : /* EOF */
+     125          37 : /* EOF */
+     126             : /* EOF */
+     127         148 : /* EOF */
+     128          74 : /* EOF */
+     129             : /* EOF */
+     130          37 : /* EOF */
+     131          37 : /* EOF */
+     132          90 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TracePlayer.h.func-sort-c.html b/html/DRAMSys/simulator/TracePlayer.h.func-sort-c.html new file mode 100644 index 00000000..c10aea59 --- /dev/null +++ b/html/DRAMSys/simulator/TracePlayer.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TracePlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11TracePlayerD0Ev0
_ZN11TracePlayerD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TracePlayer.h.func.html b/html/DRAMSys/simulator/TracePlayer.h.func.html new file mode 100644 index 00000000..77f8ef2e --- /dev/null +++ b/html/DRAMSys/simulator/TracePlayer.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TracePlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN11TracePlayerD0Ev0
_ZN11TracePlayerD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TracePlayer.h.gcov.html b/html/DRAMSys/simulator/TracePlayer.h.gcov.html new file mode 100644 index 00000000..4d90f103 --- /dev/null +++ b/html/DRAMSys/simulator/TracePlayer.h.gcov.html @@ -0,0 +1,139 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TracePlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TracePlayerListener.h.func-sort-c.html b/html/DRAMSys/simulator/TracePlayerListener.h.func-sort-c.html new file mode 100644 index 00000000..c5bfab09 --- /dev/null +++ b/html/DRAMSys/simulator/TracePlayerListener.h.func-sort-c.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayerListener.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TracePlayerListener.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TracePlayerListener.h.func.html b/html/DRAMSys/simulator/TracePlayerListener.h.func.html new file mode 100644 index 00000000..25396818 --- /dev/null +++ b/html/DRAMSys/simulator/TracePlayerListener.h.func.html @@ -0,0 +1,81 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayerListener.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TracePlayerListener.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + +

Function Name Sort by function nameHit count Sort by hit count
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TracePlayerListener.h.gcov.html b/html/DRAMSys/simulator/TracePlayerListener.h.gcov.html new file mode 100644 index 00000000..6ca827c0 --- /dev/null +++ b/html/DRAMSys/simulator/TracePlayerListener.h.gcov.html @@ -0,0 +1,131 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayerListener.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TracePlayerListener.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46           0 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TraceSetup.cpp.func-sort-c.html b/html/DRAMSys/simulator/TraceSetup.cpp.func-sort-c.html new file mode 100644 index 00000000..72a4a8e6 --- /dev/null +++ b/html/DRAMSys/simulator/TraceSetup.cpp.func-sort-c.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TraceSetup.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374386.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10TraceSetupC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_PSt6vectorIP11TracePlayerSaIS8_EE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10TraceSetup21tracePlayerTerminatesEv37
_ZN10TraceSetup19transactionFinishedEv252938
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TraceSetup.cpp.func.html b/html/DRAMSys/simulator/TraceSetup.cpp.func.html new file mode 100644 index 00000000..3d339549 --- /dev/null +++ b/html/DRAMSys/simulator/TraceSetup.cpp.func.html @@ -0,0 +1,97 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TraceSetup.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374386.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10TraceSetupC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_PSt6vectorIP11TracePlayerSaIS8_EE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10TraceSetup19transactionFinishedEv252938
_ZN10TraceSetup21tracePlayerTerminatesEv37
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TraceSetup.cpp.gcov.html b/html/DRAMSys/simulator/TraceSetup.cpp.gcov.html new file mode 100644 index 00000000..5d9f7140 --- /dev/null +++ b/html/DRAMSys/simulator/TraceSetup.cpp.gcov.html @@ -0,0 +1,199 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TraceSetup.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374386.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39          30 : /* EOF */
+      40             : /* EOF */
+      41          30 : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44          90 : /* EOF */
+      45             : /* EOF */
+      46          60 : /* EOF */
+      47           0 : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51         224 : /* EOF */
+      52             : /* EOF */
+      53          74 : /* EOF */
+      54          74 : /* EOF */
+      55             : /* EOF */
+      56          37 : /* EOF */
+      57          74 : /* EOF */
+      58             : /* EOF */
+      59          37 : /* EOF */
+      60           0 : /* EOF */
+      61             : /* EOF */
+      62          74 : /* EOF */
+      63             : /* EOF */
+      64         111 : /* EOF */
+      65             : /* EOF */
+      66          37 : /* EOF */
+      67          37 : /* EOF */
+      68           0 : /* EOF */
+      69             : /* EOF */
+      70             : /* EOF */
+      71          74 : /* EOF */
+      72         148 : /* EOF */
+      73             : /* EOF */
+      74         222 : /* EOF */
+      75          74 : /* EOF */
+      76             : /* EOF */
+      77             : /* EOF */
+      78         148 : /* EOF */
+      79             : /* EOF */
+      80             : /* EOF */
+      81          37 : /* EOF */
+      82         148 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86           0 : /* EOF */
+      87             : /* EOF */
+      88          37 : /* EOF */
+      89             : /* EOF */
+      90          37 : /* EOF */
+      91         111 : /* EOF */
+      92             : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95          30 : /* EOF */
+      96          60 : /* EOF */
+      97          30 : /* EOF */
+      98             : /* EOF */
+      99          37 : /* EOF */
+     100             : /* EOF */
+     101          37 : /* EOF */
+     102             : /* EOF */
+     103          37 : /* EOF */
+     104          30 : /* EOF */
+     105          37 : /* EOF */
+     106      252938 : /* EOF */
+     107             : /* EOF */
+     108      252938 : /* EOF */
+     109             : /* EOF */
+     110      252938 : /* EOF */
+     111             : /* EOF */
+     112      252938 : /* EOF */
+     113             : /* EOF */
+     114      253028 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TraceSetup.h.func-sort-c.html b/html/DRAMSys/simulator/TraceSetup.h.func-sort-c.html new file mode 100644 index 00000000..1ac93657 --- /dev/null +++ b/html/DRAMSys/simulator/TraceSetup.h.func-sort-c.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TraceSetup.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10TraceSetupD2Ev0
_ZN10TraceSetupD0Ev30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TraceSetup.h.func.html b/html/DRAMSys/simulator/TraceSetup.h.func.html new file mode 100644 index 00000000..41a03ffb --- /dev/null +++ b/html/DRAMSys/simulator/TraceSetup.h.func.html @@ -0,0 +1,89 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.h - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TraceSetup.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_ZN10TraceSetupD0Ev30
_ZN10TraceSetupD2Ev0
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/TraceSetup.h.gcov.html b/html/DRAMSys/simulator/TraceSetup.h.gcov.html new file mode 100644 index 00000000..b3cc1626 --- /dev/null +++ b/html/DRAMSys/simulator/TraceSetup.h.gcov.html @@ -0,0 +1,141 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.h + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - TraceSetup.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56          30 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/index-sort-f.html b/html/DRAMSys/simulator/index-sort-f.html new file mode 100644 index 00000000..5485068d --- /dev/null +++ b/html/DRAMSys/simulator/index-sort-f.html @@ -0,0 +1,173 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/simulatorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18423279.3 %
Date:2020-06-30 17:34:44Functions:284168.3 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
TracePlayer.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
StlPlayer.h +
77.4%77.4%
+
77.4 %48 / 6225.0 %2 / 8
TraceSetup.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
MemoryManager.cpp +
75.0%75.0%
+
75.0 %18 / 2471.4 %5 / 7
main.cpp +
70.2%70.2%
+
70.2 %33 / 4783.3 %5 / 6
TracePlayer.cpp +
88.7%88.7%
+
88.7 %47 / 5390.9 %10 / 11
TracePlayerListener.h +
0.0%
+
0.0 %0 / 1-0 / 0
TraceSetup.cpp +
86.0%86.0%
+
86.0 %37 / 43100.0 %5 / 5
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/index-sort-l.html b/html/DRAMSys/simulator/index-sort-l.html new file mode 100644 index 00000000..410cace6 --- /dev/null +++ b/html/DRAMSys/simulator/index-sort-l.html @@ -0,0 +1,173 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/simulatorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18423279.3 %
Date:2020-06-30 17:34:44Functions:284168.3 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
TracePlayerListener.h +
0.0%
+
0.0 %0 / 1-0 / 0
TracePlayer.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
main.cpp +
70.2%70.2%
+
70.2 %33 / 4783.3 %5 / 6
MemoryManager.cpp +
75.0%75.0%
+
75.0 %18 / 2471.4 %5 / 7
StlPlayer.h +
77.4%77.4%
+
77.4 %48 / 6225.0 %2 / 8
TraceSetup.cpp +
86.0%86.0%
+
86.0 %37 / 43100.0 %5 / 5
TracePlayer.cpp +
88.7%88.7%
+
88.7 %47 / 5390.9 %10 / 11
TraceSetup.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/index.html b/html/DRAMSys/simulator/index.html new file mode 100644 index 00000000..6a4db168 --- /dev/null +++ b/html/DRAMSys/simulator/index.html @@ -0,0 +1,173 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - /DRAMSys/simulatorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18423279.3 %
Date:2020-06-30 17:34:44Functions:284168.3 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
MemoryManager.cpp +
75.0%75.0%
+
75.0 %18 / 2471.4 %5 / 7
StlPlayer.h +
77.4%77.4%
+
77.4 %48 / 6225.0 %2 / 8
TracePlayer.cpp +
88.7%88.7%
+
88.7 %47 / 5390.9 %10 / 11
TracePlayer.h +
0.0%
+
0.0 %0 / 10.0 %0 / 2
TracePlayerListener.h +
0.0%
+
0.0 %0 / 1-0 / 0
TraceSetup.cpp +
86.0%86.0%
+
86.0 %37 / 43100.0 %5 / 5
TraceSetup.h +
100.0%
+
100.0 %1 / 150.0 %1 / 2
main.cpp +
70.2%70.2%
+
70.2 %33 / 4783.3 %5 / 6
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/main.cpp.func-sort-c.html b/html/DRAMSys/simulator/main.cpp.func-sort-c.html new file mode 100644 index 00000000..a5c6f21a --- /dev/null +++ b/html/DRAMSys/simulator/main.cpp.func-sort-c.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/main.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - main.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:334770.2 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_Z10pathOfFileNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE0
_GLOBAL__sub_I__Z10pathOfFileNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
main30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/main.cpp.func.html b/html/DRAMSys/simulator/main.cpp.func.html new file mode 100644 index 00000000..462e064b --- /dev/null +++ b/html/DRAMSys/simulator/main.cpp.func.html @@ -0,0 +1,101 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/main.cpp - functions + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - main.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:334770.2 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: + hit + not hit +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__Z10pathOfFileNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z10pathOfFileNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE0
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
main30
+
+
+ + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/DRAMSys/simulator/main.cpp.gcov.html b/html/DRAMSys/simulator/main.cpp.gcov.html new file mode 100644 index 00000000..97950faf --- /dev/null +++ b/html/DRAMSys/simulator/main.cpp.gcov.html @@ -0,0 +1,232 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/main.cpp + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top level - DRAMSys/simulator - main.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:334770.2 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: + hit + not hit +
+
+ + + + + + + + +

+
          Line data    Source code
+
+       1             : /* EOF */
+       2             : /* EOF */
+       3             : /* EOF */
+       4             : /* EOF */
+       5             : /* EOF */
+       6             : /* EOF */
+       7             : /* EOF */
+       8             : /* EOF */
+       9             : /* EOF */
+      10             : /* EOF */
+      11             : /* EOF */
+      12             : /* EOF */
+      13             : /* EOF */
+      14             : /* EOF */
+      15             : /* EOF */
+      16             : /* EOF */
+      17             : /* EOF */
+      18             : /* EOF */
+      19             : /* EOF */
+      20             : /* EOF */
+      21             : /* EOF */
+      22             : /* EOF */
+      23             : /* EOF */
+      24             : /* EOF */
+      25             : /* EOF */
+      26             : /* EOF */
+      27             : /* EOF */
+      28             : /* EOF */
+      29             : /* EOF */
+      30             : /* EOF */
+      31             : /* EOF */
+      32             : /* EOF */
+      33             : /* EOF */
+      34             : /* EOF */
+      35             : /* EOF */
+      36             : /* EOF */
+      37             : /* EOF */
+      38             : /* EOF */
+      39             : /* EOF */
+      40             : /* EOF */
+      41             : /* EOF */
+      42             : /* EOF */
+      43             : /* EOF */
+      44             : /* EOF */
+      45             : /* EOF */
+      46             : /* EOF */
+      47             : /* EOF */
+      48             : /* EOF */
+      49             : /* EOF */
+      50             : /* EOF */
+      51             : /* EOF */
+      52             : /* EOF */
+      53             : /* EOF */
+      54             : /* EOF */
+      55             : /* EOF */
+      56           0 : /* EOF */
+      57             : /* EOF */
+      58           0 : /* EOF */
+      59             : /* EOF */
+      60             : /* EOF */
+      61          30 : /* EOF */
+      62             : /* EOF */
+      63          30 : /* EOF */
+      64             : /* EOF */
+      65             : /* EOF */
+      66          30 : /* EOF */
+      67             : /* EOF */
+      68          30 : /* EOF */
+      69             : /* EOF */
+      70          60 : /* EOF */
+      71          60 : /* EOF */
+      72             : /* EOF */
+      73          30 : /* EOF */
+      74             : /* EOF */
+      75           0 : /* EOF */
+      76           0 : /* EOF */
+      77           0 : /* EOF */
+      78             : /* EOF */
+      79             : /* EOF */
+      80          30 : /* EOF */
+      81             : /* EOF */
+      82           0 : /* EOF */
+      83           0 : /* EOF */
+      84           0 : /* EOF */
+      85             : /* EOF */
+      86             : /* EOF */
+      87          30 : /* EOF */
+      88          60 : /* EOF */
+      89          30 : /* EOF */
+      90             : /* EOF */
+      91             : /* EOF */
+      92          60 : /* EOF */
+      93             : /* EOF */
+      94             : /* EOF */
+      95             : /* EOF */
+      96             : /* EOF */
+      97          90 : /* EOF */
+      98          60 : /* EOF */
+      99         180 : /* EOF */
+     100             : /* EOF */
+     101          60 : /* EOF */
+     102         150 : /* EOF */
+     103             : /* EOF */
+     104             : /* EOF */
+     105           0 : /* EOF */
+     106             : /* EOF */
+     107             : /* EOF */
+     108         120 : /* EOF */
+     109             : /* EOF */
+     110             : /* EOF */
+     111         134 : /* EOF */
+     112             : /* EOF */
+     113          37 : /* EOF */
+     114             : /* EOF */
+     115           0 : /* EOF */
+     116             : /* EOF */
+     117           0 : /* EOF */
+     118           0 : /* EOF */
+     119           0 : /* EOF */
+     120           0 : /* EOF */
+     121             : /* EOF */
+     122             : /* EOF */
+     123             : /* EOF */
+     124          74 : /* EOF */
+     125             : /* EOF */
+     126             : /* EOF */
+     127             : /* EOF */
+     128             : /* EOF */
+     129          30 : /* EOF */
+     130             : /* EOF */
+     131             : /* EOF */
+     132         157 : /* EOF */
+     133          37 : /* EOF */
+     134             : /* EOF */
+     135             : /* EOF */
+     136          30 : /* EOF */
+     137          30 : /* EOF */
+     138             : /* EOF */
+     139          30 : /* EOF */
+     140          60 : /* EOF */
+     141         210 : /* EOF */
+     142             : /* EOF */
+     143          30 : /* EOF */
+     144          30 : /* EOF */
+     145             : /* EOF */
+     146          60 : /* EOF */
+     147         150 : /* EOF */
+
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/gcov.css b/html/gcov.css new file mode 100644 index 00000000..bfd0a83e --- /dev/null +++ b/html/gcov.css @@ -0,0 +1,519 @@ +/* All views: initial background and text color */ +body +{ + color: #000000; + background-color: #FFFFFF; +} + +/* All views: standard link format*/ +a:link +{ + color: #284FA8; + text-decoration: underline; +} + +/* All views: standard link - visited format */ +a:visited +{ + color: #00CB40; + text-decoration: underline; +} + +/* All views: standard link - activated format */ +a:active +{ + color: #FF0040; + text-decoration: underline; +} + +/* All views: main title format */ +td.title +{ + text-align: center; + padding-bottom: 10px; + font-family: sans-serif; + font-size: 20pt; + font-style: italic; + font-weight: bold; +} + +/* All views: header item format */ +td.headerItem +{ + text-align: right; + padding-right: 6px; + font-family: sans-serif; + font-weight: bold; + vertical-align: top; + white-space: nowrap; +} + +/* All views: header item value format */ +td.headerValue +{ + text-align: left; + color: #284FA8; + font-family: sans-serif; + font-weight: bold; + white-space: nowrap; +} + +/* All views: header item coverage table heading */ +td.headerCovTableHead +{ + text-align: center; + padding-right: 6px; + padding-left: 6px; + padding-bottom: 0px; + font-family: sans-serif; + font-size: 80%; + white-space: nowrap; +} + +/* All views: header item coverage table entry */ +td.headerCovTableEntry +{ + text-align: right; + color: #284FA8; + font-family: sans-serif; + font-weight: bold; + white-space: nowrap; + padding-left: 12px; + padding-right: 4px; + background-color: #DAE7FE; +} + +/* All views: header item coverage table entry for high coverage rate */ +td.headerCovTableEntryHi +{ + text-align: right; + color: #000000; + font-family: sans-serif; + font-weight: bold; + white-space: nowrap; + padding-left: 12px; + padding-right: 4px; + background-color: #A7FC9D; +} + +/* All views: header item coverage table entry for medium coverage rate */ +td.headerCovTableEntryMed +{ + text-align: right; + color: #000000; + font-family: sans-serif; + font-weight: bold; + white-space: nowrap; + padding-left: 12px; + padding-right: 4px; + background-color: #FFEA20; +} + +/* All views: header item coverage table entry for ow coverage rate */ +td.headerCovTableEntryLo +{ + text-align: right; + color: #000000; + font-family: sans-serif; + font-weight: bold; + white-space: nowrap; + padding-left: 12px; + padding-right: 4px; + background-color: #FF0000; +} + +/* All views: header legend value for legend entry */ +td.headerValueLeg +{ + text-align: left; + color: #000000; + font-family: sans-serif; + font-size: 80%; + white-space: nowrap; + padding-top: 4px; +} + +/* All views: color of horizontal ruler */ +td.ruler +{ + background-color: #6688D4; +} + +/* All views: version string format */ +td.versionInfo +{ + text-align: center; + padding-top: 2px; + font-family: sans-serif; + font-style: italic; +} + +/* Directory view/File view (all)/Test case descriptions: + table headline format */ +td.tableHead +{ + text-align: center; + color: #FFFFFF; + background-color: #6688D4; + font-family: sans-serif; + font-size: 120%; + font-weight: bold; + white-space: nowrap; + padding-left: 4px; + padding-right: 4px; +} + +span.tableHeadSort +{ + padding-right: 4px; +} + +/* Directory view/File view (all): filename entry format */ +td.coverFile +{ + text-align: left; + padding-left: 10px; + padding-right: 20px; + color: #284FA8; + background-color: #DAE7FE; + font-family: monospace; +} + +/* Directory view/File view (all): bar-graph entry format*/ +td.coverBar +{ + padding-left: 10px; + padding-right: 10px; + background-color: #DAE7FE; +} + +/* Directory view/File view (all): bar-graph outline color */ +td.coverBarOutline +{ + background-color: #000000; +} + +/* Directory view/File view (all): percentage entry for files with + high coverage rate */ +td.coverPerHi +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #A7FC9D; + font-weight: bold; + font-family: sans-serif; +} + +/* Directory view/File view (all): line count entry for files with + high coverage rate */ +td.coverNumHi +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #A7FC9D; + white-space: nowrap; + font-family: sans-serif; +} + +/* Directory view/File view (all): percentage entry for files with + medium coverage rate */ +td.coverPerMed +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #FFEA20; + font-weight: bold; + font-family: sans-serif; +} + +/* Directory view/File view (all): line count entry for files with + medium coverage rate */ +td.coverNumMed +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #FFEA20; + white-space: nowrap; + font-family: sans-serif; +} + +/* Directory view/File view (all): percentage entry for files with + low coverage rate */ +td.coverPerLo +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #FF0000; + font-weight: bold; + font-family: sans-serif; +} + +/* Directory view/File view (all): line count entry for files with + low coverage rate */ +td.coverNumLo +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #FF0000; + white-space: nowrap; + font-family: sans-serif; +} + +/* File view (all): "show/hide details" link format */ +a.detail:link +{ + color: #B8D0FF; + font-size:80%; +} + +/* File view (all): "show/hide details" link - visited format */ +a.detail:visited +{ + color: #B8D0FF; + font-size:80%; +} + +/* File view (all): "show/hide details" link - activated format */ +a.detail:active +{ + color: #FFFFFF; + font-size:80%; +} + +/* File view (detail): test name entry */ +td.testName +{ + text-align: right; + padding-right: 10px; + background-color: #DAE7FE; + font-family: sans-serif; +} + +/* File view (detail): test percentage entry */ +td.testPer +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #DAE7FE; + font-family: sans-serif; +} + +/* File view (detail): test lines count entry */ +td.testNum +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #DAE7FE; + font-family: sans-serif; +} + +/* Test case descriptions: test name format*/ +dt +{ + font-family: sans-serif; + font-weight: bold; +} + +/* Test case descriptions: description table body */ +td.testDescription +{ + padding-top: 10px; + padding-left: 30px; + padding-bottom: 10px; + padding-right: 30px; + background-color: #DAE7FE; +} + +/* Source code view: function entry */ +td.coverFn +{ + text-align: left; + padding-left: 10px; + padding-right: 20px; + color: #284FA8; + background-color: #DAE7FE; + font-family: monospace; +} + +/* Source code view: function entry zero count*/ +td.coverFnLo +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #FF0000; + font-weight: bold; + font-family: sans-serif; +} + +/* Source code view: function entry nonzero count*/ +td.coverFnHi +{ + text-align: right; + padding-left: 10px; + padding-right: 10px; + background-color: #DAE7FE; + font-weight: bold; + font-family: sans-serif; +} + +/* Source code view: source code format */ +pre.source +{ + font-family: monospace; + white-space: pre; + margin-top: 2px; +} + +/* Source code view: line number format */ +span.lineNum +{ + background-color: #EFE383; +} + +/* Source code view: format for lines which were executed */ +td.lineCov, +span.lineCov +{ + background-color: #CAD7FE; +} + +/* Source code view: format for Cov legend */ +span.coverLegendCov +{ + padding-left: 10px; + padding-right: 10px; + padding-bottom: 2px; + background-color: #CAD7FE; +} + +/* Source code view: format for lines which were not executed */ +td.lineNoCov, +span.lineNoCov +{ + background-color: #FF6230; +} + +/* Source code view: format for NoCov legend */ +span.coverLegendNoCov +{ + padding-left: 10px; + padding-right: 10px; + padding-bottom: 2px; + background-color: #FF6230; +} + +/* Source code view (function table): standard link - visited format */ +td.lineNoCov > a:visited, +td.lineCov > a:visited +{ + color: black; + text-decoration: underline; +} + +/* Source code view: format for lines which were executed only in a + previous version */ +span.lineDiffCov +{ + background-color: #B5F7AF; +} + +/* Source code view: format for branches which were executed + * and taken */ +span.branchCov +{ + background-color: #CAD7FE; +} + +/* Source code view: format for branches which were executed + * but not taken */ +span.branchNoCov +{ + background-color: #FF6230; +} + +/* Source code view: format for branches which were not executed */ +span.branchNoExec +{ + background-color: #FF6230; +} + +/* Source code view: format for the source code heading line */ +pre.sourceHeading +{ + white-space: pre; + font-family: monospace; + font-weight: bold; + margin: 0px; +} + +/* All views: header legend value for low rate */ +td.headerValueLegL +{ + font-family: sans-serif; + text-align: center; + white-space: nowrap; + padding-left: 4px; + padding-right: 2px; + background-color: #FF0000; + font-size: 80%; +} + +/* All views: header legend value for med rate */ +td.headerValueLegM +{ + font-family: sans-serif; + text-align: center; + white-space: nowrap; + padding-left: 2px; + padding-right: 2px; + background-color: #FFEA20; + font-size: 80%; +} + +/* All views: header legend value for hi rate */ +td.headerValueLegH +{ + font-family: sans-serif; + text-align: center; + white-space: nowrap; + padding-left: 2px; + padding-right: 4px; + background-color: #A7FC9D; + font-size: 80%; +} + +/* All views except source code view: legend format for low coverage */ +span.coverLegendCovLo +{ + padding-left: 10px; + padding-right: 10px; + padding-top: 2px; + background-color: #FF0000; +} + +/* All views except source code view: legend format for med coverage */ +span.coverLegendCovMed +{ + padding-left: 10px; + padding-right: 10px; + padding-top: 2px; + background-color: #FFEA20; +} + +/* All views except source code view: legend format for hi coverage */ +span.coverLegendCovHi +{ + padding-left: 10px; + padding-right: 10px; + padding-top: 2px; + background-color: #A7FC9D; +} diff --git a/html/index-sort-f.html b/html/index-sort-f.html new file mode 100644 index 00000000..d9eeb09a --- /dev/null +++ b/html/index-sort-f.html @@ -0,0 +1,243 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top levelHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3137765241.0 %
Date:2020-06-30 17:34:44Functions:40274753.8 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Directory Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
/DRAMSys/library/src/error/ECC +
1.4%1.4%
+
1.4 %2 / 1427.1 %2 / 28
/DRAMSys/library/src/error +
0.7%0.7%
+
0.7 %3 / 40417.6 %6 / 34
/DRAMSys/library/src/simulation/dram +
16.1%16.1%
+
16.1 %72 / 44835.2 %45 / 128
/DRAMSys/library/src/configuration/memspec +
42.8%42.8%
+
42.8 %319 / 74543.7 %38 / 87
/DRAMSys/library/src/common +
44.1%44.1%
+
44.1 %500 / 113547.1 %65 / 138
/DRAMSys/library/src/controller/checker +
26.8%26.8%
+
26.8 %802 / 298760.3 %38 / 63
/DRAMSys/simulator +
79.3%79.3%
+
79.3 %184 / 23268.3 %28 / 41
/DRAMSys/library/src/simulation +
55.2%55.2%
+
55.2 %207 / 37569.8 %30 / 43
/DRAMSys/library/src/controller/respqueue +
50.0%50.0%
+
50.0 %17 / 3470.0 %7 / 10
/DRAMSys/library/src/controller/refresh +
87.7%87.7%
+
87.7 %164 / 18773.9 %17 / 23
/DRAMSys/library/src/controller +
89.3%89.3%
+
89.3 %461 / 51678.6 %55 / 70
/DRAMSys/library/src/controller/cmdmux +
100.0%
+
100.0 %26 / 2680.0 %8 / 10
/DRAMSys/library/src/controller/scheduler +
87.8%87.8%
+
87.8 %101 / 11581.8 %27 / 33
/DRAMSys/library/src/controller/powerdown +
97.1%97.1%
+
97.1 %101 / 10490.5 %19 / 21
/DRAMSys/library/src/configuration +
88.1%88.1%
+
88.1 %178 / 20294.4 %17 / 18
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/index-sort-l.html b/html/index-sort-l.html new file mode 100644 index 00000000..26f46bba --- /dev/null +++ b/html/index-sort-l.html @@ -0,0 +1,243 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top levelHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3137765241.0 %
Date:2020-06-30 17:34:44Functions:40274753.8 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Directory Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
/DRAMSys/library/src/error +
0.7%0.7%
+
0.7 %3 / 40417.6 %6 / 34
/DRAMSys/library/src/error/ECC +
1.4%1.4%
+
1.4 %2 / 1427.1 %2 / 28
/DRAMSys/library/src/simulation/dram +
16.1%16.1%
+
16.1 %72 / 44835.2 %45 / 128
/DRAMSys/library/src/controller/checker +
26.8%26.8%
+
26.8 %802 / 298760.3 %38 / 63
/DRAMSys/library/src/configuration/memspec +
42.8%42.8%
+
42.8 %319 / 74543.7 %38 / 87
/DRAMSys/library/src/common +
44.1%44.1%
+
44.1 %500 / 113547.1 %65 / 138
/DRAMSys/library/src/controller/respqueue +
50.0%50.0%
+
50.0 %17 / 3470.0 %7 / 10
/DRAMSys/library/src/simulation +
55.2%55.2%
+
55.2 %207 / 37569.8 %30 / 43
/DRAMSys/simulator +
79.3%79.3%
+
79.3 %184 / 23268.3 %28 / 41
/DRAMSys/library/src/controller/refresh +
87.7%87.7%
+
87.7 %164 / 18773.9 %17 / 23
/DRAMSys/library/src/controller/scheduler +
87.8%87.8%
+
87.8 %101 / 11581.8 %27 / 33
/DRAMSys/library/src/configuration +
88.1%88.1%
+
88.1 %178 / 20294.4 %17 / 18
/DRAMSys/library/src/controller +
89.3%89.3%
+
89.3 %461 / 51678.6 %55 / 70
/DRAMSys/library/src/controller/powerdown +
97.1%97.1%
+
97.1 %101 / 10490.5 %19 / 21
/DRAMSys/library/src/controller/cmdmux +
100.0%
+
100.0 %26 / 2680.0 %8 / 10
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + diff --git a/html/index.html b/html/index.html new file mode 100644 index 00000000..e46e0fb3 --- /dev/null +++ b/html/index.html @@ -0,0 +1,243 @@ + + + + + + + LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 +commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 + + + + + + + + + + + + + + +
LCOV - code coverage report
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Current view:top levelHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3137765241.0 %
Date:2020-06-30 17:34:44Functions:40274753.8 %
Legend: Rating: + low: < 75 % + medium: >= 75 % + high: >= 90 % +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Directory Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
/DRAMSys/library/src/common +
44.1%44.1%
+
44.1 %500 / 113547.1 %65 / 138
/DRAMSys/library/src/configuration +
88.1%88.1%
+
88.1 %178 / 20294.4 %17 / 18
/DRAMSys/library/src/configuration/memspec +
42.8%42.8%
+
42.8 %319 / 74543.7 %38 / 87
/DRAMSys/library/src/controller +
89.3%89.3%
+
89.3 %461 / 51678.6 %55 / 70
/DRAMSys/library/src/controller/checker +
26.8%26.8%
+
26.8 %802 / 298760.3 %38 / 63
/DRAMSys/library/src/controller/cmdmux +
100.0%
+
100.0 %26 / 2680.0 %8 / 10
/DRAMSys/library/src/controller/powerdown +
97.1%97.1%
+
97.1 %101 / 10490.5 %19 / 21
/DRAMSys/library/src/controller/refresh +
87.7%87.7%
+
87.7 %164 / 18773.9 %17 / 23
/DRAMSys/library/src/controller/respqueue +
50.0%50.0%
+
50.0 %17 / 3470.0 %7 / 10
/DRAMSys/library/src/controller/scheduler +
87.8%87.8%
+
87.8 %101 / 11581.8 %27 / 33
/DRAMSys/library/src/error +
0.7%0.7%
+
0.7 %3 / 40417.6 %6 / 34
/DRAMSys/library/src/error/ECC +
1.4%1.4%
+
1.4 %2 / 1427.1 %2 / 28
/DRAMSys/library/src/simulation +
55.2%55.2%
+
55.2 %207 / 37569.8 %30 / 43
/DRAMSys/library/src/simulation/dram +
16.1%16.1%
+
16.1 %72 / 44835.2 %45 / 128
/DRAMSys/simulator +
79.3%79.3%
+
79.3 %184 / 23268.3 %28 / 41
+
+
+ + + + +
Generated by: LCOV version 1.13
+
+ + + From 072ae5960c8a4fbd725ccbc7064ab006d676f1a1 Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 30 Jun 2020 17:44:57 +0200 Subject: [PATCH 33/53] html files removed --- .../AddressDecoder.cpp.func-sort-c.html | 93 -- .../src/common/AddressDecoder.cpp.func.html | 93 -- .../src/common/AddressDecoder.cpp.gcov.html | 367 ------ .../common/AddressDecoder.h.func-sort-c.html | 81 -- .../src/common/AddressDecoder.h.func.html | 81 -- .../src/common/AddressDecoder.h.gcov.html | 144 --- .../common/TlmRecorder.cpp.func-sort-c.html | 153 --- .../src/common/TlmRecorder.cpp.func.html | 153 --- .../src/common/TlmRecorder.cpp.gcov.html | 557 -------- .../src/common/TlmRecorder.h.func-sort-c.html | 81 -- .../src/common/TlmRecorder.h.func.html | 81 -- .../src/common/TlmRecorder.h.gcov.html | 184 --- .../dramExtensions.cpp.func-sort-c.html | 309 ----- .../src/common/dramExtensions.cpp.func.html | 309 ----- .../src/common/dramExtensions.cpp.gcov.html | 434 ------- .../common/dramExtensions.h.func-sort-c.html | 97 -- .../src/common/dramExtensions.h.func.html | 97 -- .../src/common/dramExtensions.h.gcov.html | 321 ----- .../library/src/common/index-sort-f.html | 183 --- .../library/src/common/index-sort-l.html | 183 --- html/DRAMSys/library/src/common/index.html | 183 --- ...2_base_protocol_checker.h.func-sort-c.html | 181 --- .../tlm2_base_protocol_checker.h.func.html | 181 --- .../tlm2_base_protocol_checker.h.gcov.html | 1128 ----------------- .../src/common/utils.cpp.func-sort-c.html | 109 -- .../library/src/common/utils.cpp.func.html | 109 -- .../library/src/common/utils.cpp.gcov.html | 239 ---- .../src/common/utils.h.func-sort-c.html | 85 -- .../library/src/common/utils.h.func.html | 85 -- .../library/src/common/utils.h.gcov.html | 187 --- .../Configuration.cpp.func-sort-c.html | 113 -- .../configuration/Configuration.cpp.func.html | 113 -- .../configuration/Configuration.cpp.gcov.html | 397 ------ .../Configuration.h.func-sort-c.html | 93 -- .../configuration/Configuration.h.func.html | 93 -- .../configuration/Configuration.h.gcov.html | 147 --- .../TemperatureSimConfig.h.func-sort-c.html | 85 -- .../TemperatureSimConfig.h.func.html | 85 -- .../TemperatureSimConfig.h.gcov.html | 207 --- .../src/configuration/index-sort-f.html | 123 -- .../src/configuration/index-sort-l.html | 123 -- .../library/src/configuration/index.html | 123 -- .../memspec/MemSpec.cpp.func-sort-c.html | 97 -- .../memspec/MemSpec.cpp.func.html | 97 -- .../memspec/MemSpec.cpp.gcov.html | 161 --- .../memspec/MemSpec.h.func-sort-c.html | 89 -- .../configuration/memspec/MemSpec.h.func.html | 89 -- .../configuration/memspec/MemSpec.h.gcov.html | 157 --- .../memspec/MemSpecDDR3.cpp.func-sort-c.html | 109 -- .../memspec/MemSpecDDR3.cpp.func.html | 109 -- .../memspec/MemSpecDDR3.cpp.gcov.html | 225 ---- .../memspec/MemSpecDDR3.h.func-sort-c.html | 89 -- .../memspec/MemSpecDDR3.h.func.html | 89 -- .../memspec/MemSpecDDR3.h.gcov.html | 127 -- .../memspec/MemSpecDDR4.cpp.func-sort-c.html | 105 -- .../memspec/MemSpecDDR4.cpp.func.html | 105 -- .../memspec/MemSpecDDR4.cpp.gcov.html | 242 ---- .../memspec/MemSpecDDR4.h.func-sort-c.html | 89 -- .../memspec/MemSpecDDR4.h.func.html | 89 -- .../memspec/MemSpecDDR4.h.gcov.html | 127 -- .../memspec/MemSpecGDDR5.cpp.func-sort-c.html | 109 -- .../memspec/MemSpecGDDR5.cpp.func.html | 109 -- .../memspec/MemSpecGDDR5.cpp.gcov.html | 229 ---- .../memspec/MemSpecGDDR5.h.func-sort-c.html | 89 -- .../memspec/MemSpecGDDR5.h.func.html | 89 -- .../memspec/MemSpecGDDR5.h.gcov.html | 127 -- .../MemSpecGDDR5X.cpp.func-sort-c.html | 109 -- .../memspec/MemSpecGDDR5X.cpp.func.html | 109 -- .../memspec/MemSpecGDDR5X.cpp.gcov.html | 229 ---- .../memspec/MemSpecGDDR5X.h.func-sort-c.html | 89 -- .../memspec/MemSpecGDDR5X.h.func.html | 89 -- .../memspec/MemSpecGDDR5X.h.gcov.html | 127 -- .../memspec/MemSpecGDDR6.cpp.func-sort-c.html | 109 -- .../memspec/MemSpecGDDR6.cpp.func.html | 109 -- .../memspec/MemSpecGDDR6.cpp.gcov.html | 231 ---- .../memspec/MemSpecGDDR6.h.func-sort-c.html | 89 -- .../memspec/MemSpecGDDR6.h.func.html | 89 -- .../memspec/MemSpecGDDR6.h.gcov.html | 127 -- .../memspec/MemSpecHBM2.cpp.func-sort-c.html | 109 -- .../memspec/MemSpecHBM2.cpp.func.html | 109 -- .../memspec/MemSpecHBM2.cpp.gcov.html | 226 ---- .../memspec/MemSpecHBM2.h.func-sort-c.html | 89 -- .../memspec/MemSpecHBM2.h.func.html | 89 -- .../memspec/MemSpecHBM2.h.gcov.html | 127 -- .../MemSpecLPDDR4.cpp.func-sort-c.html | 109 -- .../memspec/MemSpecLPDDR4.cpp.func.html | 109 -- .../memspec/MemSpecLPDDR4.cpp.gcov.html | 233 ---- .../memspec/MemSpecLPDDR4.h.func-sort-c.html | 89 -- .../memspec/MemSpecLPDDR4.h.func.html | 89 -- .../memspec/MemSpecLPDDR4.h.gcov.html | 127 -- .../MemSpecWideIO.cpp.func-sort-c.html | 109 -- .../memspec/MemSpecWideIO.cpp.func.html | 109 -- .../memspec/MemSpecWideIO.cpp.gcov.html | 233 ---- .../memspec/MemSpecWideIO.h.func-sort-c.html | 89 -- .../memspec/MemSpecWideIO.h.func.html | 89 -- .../memspec/MemSpecWideIO.h.gcov.html | 127 -- .../MemSpecWideIO2.cpp.func-sort-c.html | 109 -- .../memspec/MemSpecWideIO2.cpp.func.html | 109 -- .../memspec/MemSpecWideIO2.cpp.gcov.html | 218 ---- .../memspec/MemSpecWideIO2.h.func-sort-c.html | 89 -- .../memspec/MemSpecWideIO2.h.func.html | 89 -- .../memspec/MemSpecWideIO2.h.gcov.html | 127 -- .../configuration/memspec/index-sort-f.html | 293 ----- .../configuration/memspec/index-sort-l.html | 293 ----- .../src/configuration/memspec/index.html | 293 ----- .../BankMachine.cpp.func-sort-c.html | 161 --- .../src/controller/BankMachine.cpp.func.html | 161 --- .../src/controller/BankMachine.cpp.gcov.html | 413 ------ .../controller/BankMachine.h.func-sort-c.html | 113 -- .../src/controller/BankMachine.h.func.html | 113 -- .../src/controller/BankMachine.h.gcov.html | 194 --- .../controller/Command.cpp.func-sort-c.html | 133 -- .../src/controller/Command.cpp.func.html | 133 -- .../src/controller/Command.cpp.gcov.html | 257 ---- .../src/controller/Command.h.func-sort-c.html | 81 -- .../src/controller/Command.h.func.html | 81 -- .../src/controller/Command.h.gcov.html | 155 --- .../Controller.cpp.func-sort-c.html | 125 -- .../src/controller/Controller.cpp.func.html | 125 -- .../src/controller/Controller.cpp.gcov.html | 528 -------- .../ControllerIF.h.func-sort-c.html | 97 -- .../src/controller/ControllerIF.h.func.html | 97 -- .../src/controller/ControllerIF.h.gcov.html | 186 --- .../ControllerRecordable.cpp.func-sort-c.html | 109 -- .../ControllerRecordable.cpp.func.html | 109 -- .../ControllerRecordable.cpp.gcov.html | 174 --- .../ControllerRecordable.h.func-sort-c.html | 93 -- .../ControllerRecordable.h.func.html | 93 -- .../ControllerRecordable.h.gcov.html | 130 -- .../checker/CheckerDDR3.cpp.func-sort-c.html | 97 -- .../checker/CheckerDDR3.cpp.func.html | 97 -- .../checker/CheckerDDR3.cpp.gcov.html | 516 -------- .../checker/CheckerDDR3.h.func-sort-c.html | 85 -- .../checker/CheckerDDR3.h.func.html | 85 -- .../checker/CheckerDDR3.h.gcov.html | 129 -- .../checker/CheckerDDR4.cpp.func-sort-c.html | 97 -- .../checker/CheckerDDR4.cpp.func.html | 97 -- .../checker/CheckerDDR4.cpp.gcov.html | 547 -------- .../checker/CheckerDDR4.h.func-sort-c.html | 85 -- .../checker/CheckerDDR4.h.func.html | 85 -- .../checker/CheckerDDR4.h.gcov.html | 129 -- .../checker/CheckerGDDR5.cpp.func-sort-c.html | 97 -- .../checker/CheckerGDDR5.cpp.func.html | 97 -- .../checker/CheckerGDDR5.cpp.gcov.html | 636 ---------- .../checker/CheckerGDDR5.h.func-sort-c.html | 85 -- .../checker/CheckerGDDR5.h.func.html | 85 -- .../checker/CheckerGDDR5.h.gcov.html | 129 -- .../CheckerGDDR5X.cpp.func-sort-c.html | 97 -- .../checker/CheckerGDDR5X.cpp.func.html | 97 -- .../checker/CheckerGDDR5X.cpp.gcov.html | 636 ---------- .../checker/CheckerGDDR5X.h.func-sort-c.html | 85 -- .../checker/CheckerGDDR5X.h.func.html | 85 -- .../checker/CheckerGDDR5X.h.gcov.html | 129 -- .../checker/CheckerGDDR6.cpp.func-sort-c.html | 97 -- .../checker/CheckerGDDR6.cpp.func.html | 97 -- .../checker/CheckerGDDR6.cpp.gcov.html | 653 ---------- .../checker/CheckerGDDR6.h.func-sort-c.html | 85 -- .../checker/CheckerGDDR6.h.func.html | 85 -- .../checker/CheckerGDDR6.h.gcov.html | 129 -- .../checker/CheckerHBM2.cpp.func-sort-c.html | 97 -- .../checker/CheckerHBM2.cpp.func.html | 97 -- .../checker/CheckerHBM2.cpp.gcov.html | 601 --------- .../checker/CheckerHBM2.h.func-sort-c.html | 85 -- .../checker/CheckerHBM2.h.func.html | 85 -- .../checker/CheckerHBM2.h.gcov.html | 129 -- .../CheckerLPDDR4.cpp.func-sort-c.html | 97 -- .../checker/CheckerLPDDR4.cpp.func.html | 97 -- .../checker/CheckerLPDDR4.cpp.gcov.html | 600 --------- .../checker/CheckerLPDDR4.h.func-sort-c.html | 85 -- .../checker/CheckerLPDDR4.h.func.html | 85 -- .../checker/CheckerLPDDR4.h.gcov.html | 129 -- .../CheckerWideIO.cpp.func-sort-c.html | 97 -- .../checker/CheckerWideIO.cpp.func.html | 97 -- .../checker/CheckerWideIO.cpp.gcov.html | 488 ------- .../checker/CheckerWideIO.h.func-sort-c.html | 85 -- .../checker/CheckerWideIO.h.func.html | 85 -- .../checker/CheckerWideIO.h.gcov.html | 129 -- .../CheckerWideIO2.cpp.func-sort-c.html | 97 -- .../checker/CheckerWideIO2.cpp.func.html | 97 -- .../checker/CheckerWideIO2.cpp.gcov.html | 566 --------- .../checker/CheckerWideIO2.h.func-sort-c.html | 85 -- .../checker/CheckerWideIO2.h.func.html | 85 -- .../checker/CheckerWideIO2.h.gcov.html | 129 -- .../src/controller/checker/index-sort-f.html | 273 ---- .../src/controller/checker/index-sort-l.html | 273 ---- .../library/src/controller/checker/index.html | 273 ---- .../cmdmux/CmdMuxOldest.cpp.func-sort-c.html | 89 -- .../cmdmux/CmdMuxOldest.cpp.func.html | 89 -- .../cmdmux/CmdMuxOldest.cpp.gcov.html | 145 --- .../cmdmux/CmdMuxOldest.h.func-sort-c.html | 89 -- .../cmdmux/CmdMuxOldest.h.func.html | 89 -- .../cmdmux/CmdMuxOldest.h.gcov.html | 125 -- .../cmdmux/CmdMuxStrict.cpp.func-sort-c.html | 89 -- .../cmdmux/CmdMuxStrict.cpp.func.html | 89 -- .../cmdmux/CmdMuxStrict.cpp.gcov.html | 146 --- .../cmdmux/CmdMuxStrict.h.func-sort-c.html | 89 -- .../cmdmux/CmdMuxStrict.h.func.html | 89 -- .../cmdmux/CmdMuxStrict.h.gcov.html | 125 -- .../src/controller/cmdmux/index-sort-f.html | 133 -- .../src/controller/cmdmux/index-sort-l.html | 133 -- .../library/src/controller/cmdmux/index.html | 133 -- .../library/src/controller/index-sort-f.html | 173 --- .../library/src/controller/index-sort-l.html | 173 --- .../DRAMSys/library/src/controller/index.html | 173 --- ...PowerDownManagerDummy.cpp.func-sort-c.html | 93 -- .../PowerDownManagerDummy.cpp.func.html | 93 -- .../PowerDownManagerDummy.cpp.gcov.html | 132 -- .../PowerDownManagerDummy.h.func-sort-c.html | 105 -- .../PowerDownManagerDummy.h.func.html | 105 -- .../PowerDownManagerDummy.h.gcov.html | 135 -- ...rDownManagerStaggered.cpp.func-sort-c.html | 117 -- .../PowerDownManagerStaggered.cpp.func.html | 117 -- .../PowerDownManagerStaggered.cpp.gcov.html | 253 ---- ...werDownManagerStaggered.h.func-sort-c.html | 89 -- .../PowerDownManagerStaggered.h.func.html | 89 -- .../PowerDownManagerStaggered.h.gcov.html | 127 -- .../controller/powerdown/index-sort-f.html | 133 -- .../controller/powerdown/index-sort-l.html | 133 -- .../src/controller/powerdown/index.html | 133 -- ...efreshManagerBankwise.cpp.func-sort-c.html | 97 -- .../RefreshManagerBankwise.cpp.func.html | 97 -- .../RefreshManagerBankwise.cpp.gcov.html | 294 ----- .../RefreshManagerBankwise.h.func-sort-c.html | 85 -- .../RefreshManagerBankwise.h.func.html | 85 -- .../RefreshManagerBankwise.h.gcov.html | 131 -- .../RefreshManagerDummy.cpp.func-sort-c.html | 93 -- .../refresh/RefreshManagerDummy.cpp.func.html | 93 -- .../refresh/RefreshManagerDummy.cpp.gcov.html | 132 -- .../RefreshManagerDummy.h.func-sort-c.html | 93 -- .../refresh/RefreshManagerDummy.h.func.html | 93 -- .../refresh/RefreshManagerDummy.h.gcov.html | 134 -- ...efreshManagerRankwise.cpp.func-sort-c.html | 101 -- .../RefreshManagerRankwise.cpp.func.html | 101 -- .../RefreshManagerRankwise.cpp.gcov.html | 274 ---- .../RefreshManagerRankwise.h.func-sort-c.html | 89 -- .../RefreshManagerRankwise.h.func.html | 89 -- .../RefreshManagerRankwise.h.gcov.html | 129 -- .../src/controller/refresh/index-sort-f.html | 153 --- .../src/controller/refresh/index-sort-l.html | 153 --- .../library/src/controller/refresh/index.html | 153 --- .../RespQueueFifo.cpp.func-sort-c.html | 101 -- .../respqueue/RespQueueFifo.cpp.func.html | 101 -- .../respqueue/RespQueueFifo.cpp.gcov.html | 152 --- .../RespQueueFifo.h.func-sort-c.html | 81 -- .../respqueue/RespQueueFifo.h.func.html | 81 -- .../respqueue/RespQueueFifo.h.gcov.html | 129 -- .../RespQueueReorder.cpp.func-sort-c.html | 93 -- .../respqueue/RespQueueReorder.cpp.func.html | 93 -- .../respqueue/RespQueueReorder.cpp.gcov.html | 159 --- .../RespQueueReorder.h.func-sort-c.html | 81 -- .../respqueue/RespQueueReorder.h.func.html | 81 -- .../respqueue/RespQueueReorder.h.gcov.html | 128 -- .../controller/respqueue/index-sort-f.html | 133 -- .../controller/respqueue/index-sort-l.html | 133 -- .../src/controller/respqueue/index.html | 133 -- .../SchedulerFifo.cpp.func-sort-c.html | 101 -- .../scheduler/SchedulerFifo.cpp.func.html | 101 -- .../scheduler/SchedulerFifo.cpp.gcov.html | 176 --- .../SchedulerFifo.h.func-sort-c.html | 89 -- .../scheduler/SchedulerFifo.h.func.html | 89 -- .../scheduler/SchedulerFifo.h.gcov.html | 130 -- .../SchedulerFrFcfs.cpp.func-sort-c.html | 89 -- .../scheduler/SchedulerFrFcfs.cpp.func.html | 89 -- .../scheduler/SchedulerFrFcfs.cpp.gcov.html | 203 --- .../SchedulerFrFcfs.h.func-sort-c.html | 89 -- .../scheduler/SchedulerFrFcfs.h.func.html | 89 -- .../scheduler/SchedulerFrFcfs.h.gcov.html | 130 -- .../SchedulerFrFcfsGrp.cpp.func-sort-c.html | 89 -- .../SchedulerFrFcfsGrp.cpp.func.html | 89 -- .../SchedulerFrFcfsGrp.cpp.gcov.html | 226 ---- .../SchedulerFrFcfsGrp.h.func-sort-c.html | 89 -- .../scheduler/SchedulerFrFcfsGrp.h.func.html | 89 -- .../scheduler/SchedulerFrFcfsGrp.h.gcov.html | 131 -- .../controller/scheduler/index-sort-f.html | 153 --- .../controller/scheduler/index-sort-l.html | 153 --- .../src/controller/scheduler/index.html | 153 --- .../src/error/ECC/Bit.cpp.func-sort-c.html | 101 -- .../library/src/error/ECC/Bit.cpp.func.html | 101 -- .../library/src/error/ECC/Bit.cpp.gcov.html | 109 -- .../src/error/ECC/Bit.h.func-sort-c.html | 81 -- .../library/src/error/ECC/Bit.h.func.html | 81 -- .../library/src/error/ECC/Bit.h.gcov.html | 144 --- .../src/error/ECC/ECC.cpp.func-sort-c.html | 113 -- .../library/src/error/ECC/ECC.cpp.func.html | 113 -- .../library/src/error/ECC/ECC.cpp.gcov.html | 210 --- .../src/error/ECC/Word.cpp.func-sort-c.html | 113 -- .../library/src/error/ECC/Word.cpp.func.html | 113 -- .../library/src/error/ECC/Word.cpp.gcov.html | 229 ---- .../src/error/ECC/Word.h.func-sort-c.html | 81 -- .../library/src/error/ECC/Word.h.func.html | 81 -- .../library/src/error/ECC/Word.h.gcov.html | 135 -- .../library/src/error/ECC/index-sort-f.html | 143 --- .../library/src/error/ECC/index-sort-l.html | 143 --- html/DRAMSys/library/src/error/ECC/index.html | 143 --- .../error/eccbaseclass.cpp.func-sort-c.html | 97 -- .../src/error/eccbaseclass.cpp.func.html | 97 -- .../src/error/eccbaseclass.cpp.gcov.html | 168 --- .../src/error/eccbaseclass.h.func-sort-c.html | 93 -- .../src/error/eccbaseclass.h.func.html | 93 -- .../src/error/eccbaseclass.h.gcov.html | 141 --- .../src/error/ecchamming.cpp.func-sort-c.html | 101 -- .../src/error/ecchamming.cpp.func.html | 101 -- .../src/error/ecchamming.cpp.gcov.html | 215 ---- .../src/error/ecchamming.h.func-sort-c.html | 93 -- .../library/src/error/ecchamming.h.func.html | 93 -- .../library/src/error/ecchamming.h.gcov.html | 128 -- .../src/error/errormodel.cpp.func-sort-c.html | 125 -- .../src/error/errormodel.cpp.func.html | 125 -- .../src/error/errormodel.cpp.gcov.html | 828 ------------ .../src/error/errormodel.h.func-sort-c.html | 81 -- .../library/src/error/errormodel.h.func.html | 81 -- .../library/src/error/errormodel.h.gcov.html | 209 --- .../library/src/error/index-sort-f.html | 153 --- .../library/src/error/index-sort-l.html | 153 --- html/DRAMSys/library/src/error/index.html | 153 --- .../simulation/Arbiter.cpp.func-sort-c.html | 97 -- .../src/simulation/Arbiter.cpp.func.html | 97 -- .../src/simulation/Arbiter.cpp.gcov.html | 330 ----- .../src/simulation/Arbiter.h.func-sort-c.html | 85 -- .../src/simulation/Arbiter.h.func.html | 85 -- .../src/simulation/Arbiter.h.gcov.html | 137 -- .../simulation/DRAMSys.cpp.func-sort-c.html | 109 -- .../src/simulation/DRAMSys.cpp.func.html | 109 -- .../src/simulation/DRAMSys.cpp.gcov.html | 360 ------ .../DRAMSysRecordable.cpp.func-sort-c.html | 101 -- .../DRAMSysRecordable.cpp.func.html | 101 -- .../DRAMSysRecordable.cpp.gcov.html | 302 ----- ...TemperatureController.cpp.func-sort-c.html | 113 -- .../TemperatureController.cpp.func.html | 113 -- .../TemperatureController.cpp.gcov.html | 261 ---- .../TemperatureController.h.func-sort-c.html | 97 -- .../TemperatureController.h.func.html | 97 -- .../TemperatureController.h.gcov.html | 198 --- .../simulation/dram/Dram.cpp.func-sort-c.html | 105 -- .../src/simulation/dram/Dram.cpp.func.html | 105 -- .../src/simulation/dram/Dram.cpp.gcov.html | 307 ----- .../simulation/dram/Dram.h.func-sort-c.html | 81 -- .../src/simulation/dram/Dram.h.func.html | 81 -- .../src/simulation/dram/Dram.h.gcov.html | 144 --- .../dram/DramDDR3.cpp.func-sort-c.html | 89 -- .../simulation/dram/DramDDR3.cpp.func.html | 89 -- .../simulation/dram/DramDDR3.cpp.gcov.html | 229 ---- .../dram/DramDDR3.h.func-sort-c.html | 89 -- .../src/simulation/dram/DramDDR3.h.func.html | 89 -- .../src/simulation/dram/DramDDR3.h.gcov.html | 132 -- .../dram/DramDDR4.cpp.func-sort-c.html | 89 -- .../simulation/dram/DramDDR4.cpp.func.html | 89 -- .../simulation/dram/DramDDR4.cpp.gcov.html | 229 ---- .../dram/DramDDR4.h.func-sort-c.html | 89 -- .../src/simulation/dram/DramDDR4.h.func.html | 89 -- .../src/simulation/dram/DramDDR4.h.gcov.html | 132 -- .../dram/DramGDDR5.cpp.func-sort-c.html | 89 -- .../simulation/dram/DramGDDR5.cpp.func.html | 89 -- .../simulation/dram/DramGDDR5.cpp.gcov.html | 135 -- .../dram/DramGDDR5.h.func-sort-c.html | 89 -- .../src/simulation/dram/DramGDDR5.h.func.html | 89 -- .../src/simulation/dram/DramGDDR5.h.gcov.html | 132 -- .../dram/DramGDDR5X.cpp.func-sort-c.html | 89 -- .../simulation/dram/DramGDDR5X.cpp.func.html | 89 -- .../simulation/dram/DramGDDR5X.cpp.gcov.html | 135 -- .../dram/DramGDDR5X.h.func-sort-c.html | 89 -- .../simulation/dram/DramGDDR5X.h.func.html | 89 -- .../simulation/dram/DramGDDR5X.h.gcov.html | 132 -- .../dram/DramGDDR6.cpp.func-sort-c.html | 89 -- .../simulation/dram/DramGDDR6.cpp.func.html | 89 -- .../simulation/dram/DramGDDR6.cpp.gcov.html | 135 -- .../dram/DramGDDR6.h.func-sort-c.html | 89 -- .../src/simulation/dram/DramGDDR6.h.func.html | 89 -- .../src/simulation/dram/DramGDDR6.h.gcov.html | 132 -- .../dram/DramHBM2.cpp.func-sort-c.html | 89 -- .../simulation/dram/DramHBM2.cpp.func.html | 89 -- .../simulation/dram/DramHBM2.cpp.gcov.html | 135 -- .../dram/DramHBM2.h.func-sort-c.html | 89 -- .../src/simulation/dram/DramHBM2.h.func.html | 89 -- .../src/simulation/dram/DramHBM2.h.gcov.html | 132 -- .../dram/DramLPDDR4.cpp.func-sort-c.html | 89 -- .../simulation/dram/DramLPDDR4.cpp.func.html | 89 -- .../simulation/dram/DramLPDDR4.cpp.gcov.html | 135 -- .../dram/DramLPDDR4.h.func-sort-c.html | 89 -- .../simulation/dram/DramLPDDR4.h.func.html | 89 -- .../simulation/dram/DramLPDDR4.h.gcov.html | 132 -- .../dram/DramRecordable.cpp.func-sort-c.html | 269 ---- .../dram/DramRecordable.cpp.func.html | 269 ---- .../dram/DramRecordable.cpp.gcov.html | 241 ---- .../dram/DramRecordable.h.func-sort-c.html | 189 --- .../dram/DramRecordable.h.func.html | 189 --- .../dram/DramRecordable.h.gcov.html | 155 --- .../dram/DramWideIO.cpp.func-sort-c.html | 97 -- .../simulation/dram/DramWideIO.cpp.func.html | 97 -- .../simulation/dram/DramWideIO.cpp.gcov.html | 304 ----- .../dram/DramWideIO2.cpp.func-sort-c.html | 89 -- .../simulation/dram/DramWideIO2.cpp.func.html | 89 -- .../simulation/dram/DramWideIO2.cpp.gcov.html | 135 -- .../dram/DramWideIO2.h.func-sort-c.html | 89 -- .../simulation/dram/DramWideIO2.h.func.html | 89 -- .../simulation/dram/DramWideIO2.h.gcov.html | 132 -- .../src/simulation/dram/index-sort-f.html | 303 ----- .../src/simulation/dram/index-sort-l.html | 303 ----- .../library/src/simulation/dram/index.html | 303 ----- .../library/src/simulation/index-sort-f.html | 153 --- .../library/src/simulation/index-sort-l.html | 153 --- .../DRAMSys/library/src/simulation/index.html | 153 --- .../MemoryManager.cpp.func-sort-c.html | 109 -- .../simulator/MemoryManager.cpp.func.html | 109 -- .../simulator/MemoryManager.cpp.gcov.html | 169 --- .../simulator/StlPlayer.h.func-sort-c.html | 97 -- html/DRAMSys/simulator/StlPlayer.h.func.html | 97 -- html/DRAMSys/simulator/StlPlayer.h.gcov.html | 259 ---- .../TracePlayer.cpp.func-sort-c.html | 125 -- .../simulator/TracePlayer.cpp.func.html | 125 -- .../simulator/TracePlayer.cpp.gcov.html | 217 ---- .../simulator/TracePlayer.h.func-sort-c.html | 89 -- .../DRAMSys/simulator/TracePlayer.h.func.html | 89 -- .../DRAMSys/simulator/TracePlayer.h.gcov.html | 139 -- .../TracePlayerListener.h.func-sort-c.html | 81 -- .../simulator/TracePlayerListener.h.func.html | 81 -- .../simulator/TracePlayerListener.h.gcov.html | 131 -- .../simulator/TraceSetup.cpp.func-sort-c.html | 97 -- .../simulator/TraceSetup.cpp.func.html | 97 -- .../simulator/TraceSetup.cpp.gcov.html | 199 --- .../simulator/TraceSetup.h.func-sort-c.html | 89 -- html/DRAMSys/simulator/TraceSetup.h.func.html | 89 -- html/DRAMSys/simulator/TraceSetup.h.gcov.html | 141 --- html/DRAMSys/simulator/index-sort-f.html | 173 --- html/DRAMSys/simulator/index-sort-l.html | 173 --- html/DRAMSys/simulator/index.html | 173 --- .../simulator/main.cpp.func-sort-c.html | 101 -- html/DRAMSys/simulator/main.cpp.func.html | 101 -- html/DRAMSys/simulator/main.cpp.gcov.html | 232 ---- html/gcov.css | 519 -------- html/index-sort-f.html | 243 ---- html/index-sort-l.html | 243 ---- html/index.html | 243 ---- 433 files changed, 64161 deletions(-) delete mode 100644 html/DRAMSys/library/src/common/AddressDecoder.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/common/AddressDecoder.cpp.func.html delete mode 100644 html/DRAMSys/library/src/common/AddressDecoder.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/common/AddressDecoder.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/common/AddressDecoder.h.func.html delete mode 100644 html/DRAMSys/library/src/common/AddressDecoder.h.gcov.html delete mode 100644 html/DRAMSys/library/src/common/TlmRecorder.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/common/TlmRecorder.cpp.func.html delete mode 100644 html/DRAMSys/library/src/common/TlmRecorder.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/common/TlmRecorder.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/common/TlmRecorder.h.func.html delete mode 100644 html/DRAMSys/library/src/common/TlmRecorder.h.gcov.html delete mode 100644 html/DRAMSys/library/src/common/dramExtensions.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/common/dramExtensions.cpp.func.html delete mode 100644 html/DRAMSys/library/src/common/dramExtensions.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/common/dramExtensions.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/common/dramExtensions.h.func.html delete mode 100644 html/DRAMSys/library/src/common/dramExtensions.h.gcov.html delete mode 100644 html/DRAMSys/library/src/common/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/common/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/common/index.html delete mode 100644 html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func.html delete mode 100644 html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.gcov.html delete mode 100644 html/DRAMSys/library/src/common/utils.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/common/utils.cpp.func.html delete mode 100644 html/DRAMSys/library/src/common/utils.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/common/utils.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/common/utils.h.func.html delete mode 100644 html/DRAMSys/library/src/common/utils.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/Configuration.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/Configuration.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/Configuration.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/Configuration.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/Configuration.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/Configuration.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/configuration/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/configuration/index.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpec.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.gcov.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/configuration/memspec/index.html delete mode 100644 html/DRAMSys/library/src/controller/BankMachine.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/BankMachine.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/BankMachine.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/BankMachine.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/BankMachine.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/BankMachine.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/Command.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/Command.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/Command.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/Command.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/Command.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/Command.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/Controller.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/Controller.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/Controller.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/ControllerIF.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/ControllerIF.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/ControllerIF.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/ControllerRecordable.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/checker/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/controller/checker/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/controller/checker/index.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/controller/cmdmux/index.html delete mode 100644 html/DRAMSys/library/src/controller/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/controller/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/controller/index.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/controller/powerdown/index.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/controller/refresh/index.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/controller/respqueue/index.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.gcov.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/controller/scheduler/index.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Bit.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Bit.cpp.func.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Bit.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Bit.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Bit.h.func.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Bit.h.gcov.html delete mode 100644 html/DRAMSys/library/src/error/ECC/ECC.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/ECC/ECC.cpp.func.html delete mode 100644 html/DRAMSys/library/src/error/ECC/ECC.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Word.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Word.cpp.func.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Word.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Word.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Word.h.func.html delete mode 100644 html/DRAMSys/library/src/error/ECC/Word.h.gcov.html delete mode 100644 html/DRAMSys/library/src/error/ECC/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/error/ECC/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/error/ECC/index.html delete mode 100644 html/DRAMSys/library/src/error/eccbaseclass.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/eccbaseclass.cpp.func.html delete mode 100644 html/DRAMSys/library/src/error/eccbaseclass.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/error/eccbaseclass.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/eccbaseclass.h.func.html delete mode 100644 html/DRAMSys/library/src/error/eccbaseclass.h.gcov.html delete mode 100644 html/DRAMSys/library/src/error/ecchamming.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/ecchamming.cpp.func.html delete mode 100644 html/DRAMSys/library/src/error/ecchamming.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/error/ecchamming.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/ecchamming.h.func.html delete mode 100644 html/DRAMSys/library/src/error/ecchamming.h.gcov.html delete mode 100644 html/DRAMSys/library/src/error/errormodel.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/errormodel.cpp.func.html delete mode 100644 html/DRAMSys/library/src/error/errormodel.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/error/errormodel.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/error/errormodel.h.func.html delete mode 100644 html/DRAMSys/library/src/error/errormodel.h.gcov.html delete mode 100644 html/DRAMSys/library/src/error/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/error/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/error/index.html delete mode 100644 html/DRAMSys/library/src/simulation/Arbiter.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/Arbiter.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/Arbiter.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/Arbiter.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/Arbiter.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/Arbiter.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/DRAMSys.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/DRAMSys.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/DRAMSys.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/TemperatureController.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/Dram.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR3.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramDDR4.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramHBM2.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramRecordable.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func-sort-c.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.gcov.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/simulation/dram/index.html delete mode 100644 html/DRAMSys/library/src/simulation/index-sort-f.html delete mode 100644 html/DRAMSys/library/src/simulation/index-sort-l.html delete mode 100644 html/DRAMSys/library/src/simulation/index.html delete mode 100644 html/DRAMSys/simulator/MemoryManager.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/simulator/MemoryManager.cpp.func.html delete mode 100644 html/DRAMSys/simulator/MemoryManager.cpp.gcov.html delete mode 100644 html/DRAMSys/simulator/StlPlayer.h.func-sort-c.html delete mode 100644 html/DRAMSys/simulator/StlPlayer.h.func.html delete mode 100644 html/DRAMSys/simulator/StlPlayer.h.gcov.html delete mode 100644 html/DRAMSys/simulator/TracePlayer.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/simulator/TracePlayer.cpp.func.html delete mode 100644 html/DRAMSys/simulator/TracePlayer.cpp.gcov.html delete mode 100644 html/DRAMSys/simulator/TracePlayer.h.func-sort-c.html delete mode 100644 html/DRAMSys/simulator/TracePlayer.h.func.html delete mode 100644 html/DRAMSys/simulator/TracePlayer.h.gcov.html delete mode 100644 html/DRAMSys/simulator/TracePlayerListener.h.func-sort-c.html delete mode 100644 html/DRAMSys/simulator/TracePlayerListener.h.func.html delete mode 100644 html/DRAMSys/simulator/TracePlayerListener.h.gcov.html delete mode 100644 html/DRAMSys/simulator/TraceSetup.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/simulator/TraceSetup.cpp.func.html delete mode 100644 html/DRAMSys/simulator/TraceSetup.cpp.gcov.html delete mode 100644 html/DRAMSys/simulator/TraceSetup.h.func-sort-c.html delete mode 100644 html/DRAMSys/simulator/TraceSetup.h.func.html delete mode 100644 html/DRAMSys/simulator/TraceSetup.h.gcov.html delete mode 100644 html/DRAMSys/simulator/index-sort-f.html delete mode 100644 html/DRAMSys/simulator/index-sort-l.html delete mode 100644 html/DRAMSys/simulator/index.html delete mode 100644 html/DRAMSys/simulator/main.cpp.func-sort-c.html delete mode 100644 html/DRAMSys/simulator/main.cpp.func.html delete mode 100644 html/DRAMSys/simulator/main.cpp.gcov.html delete mode 100644 html/gcov.css delete mode 100644 html/index-sort-f.html delete mode 100644 html/index-sort-l.html delete mode 100644 html/index.html diff --git a/html/DRAMSys/library/src/common/AddressDecoder.cpp.func-sort-c.html b/html/DRAMSys/library/src/common/AddressDecoder.cpp.func-sort-c.html deleted file mode 100644 index a49c5700..00000000 --- a/html/DRAMSys/library/src/common/AddressDecoder.cpp.func-sort-c.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - AddressDecoder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11313782.5 %
Date:2020-06-30 17:34:44Functions:77100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN14AddressDecoder23getUnsignedAttrFromJsonEN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEES9_30
_Z41__static_initialization_and_destruction_0ii30
_ZN14AddressDecoder5printEv30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/AddressDecoder.cpp.func.html b/html/DRAMSys/library/src/common/AddressDecoder.cpp.func.html deleted file mode 100644 index 08e0325a..00000000 --- a/html/DRAMSys/library/src/common/AddressDecoder.cpp.func.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - AddressDecoder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11313782.5 %
Date:2020-06-30 17:34:44Functions:77100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN14AddressDecoder23getUnsignedAttrFromJsonEN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEES9_30
_Z41__static_initialization_and_destruction_0ii30
_ZN14AddressDecoder5printEv30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/AddressDecoder.cpp.gcov.html b/html/DRAMSys/library/src/common/AddressDecoder.cpp.gcov.html deleted file mode 100644 index 9316d48d..00000000 --- a/html/DRAMSys/library/src/common/AddressDecoder.cpp.gcov.html +++ /dev/null @@ -1,367 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - AddressDecoder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11313782.5 %
Date:2020-06-30 17:34:44Functions:77100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47          10 : /* EOF */
-      48             : /* EOF */
-      49          10 : /* EOF */
-      50             : /* EOF */
-      51          10 : /* EOF */
-      52             : /* EOF */
-      53          20 : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68         210 : /* EOF */
-      69             : /* EOF */
-      70         210 : /* EOF */
-      71         355 : /* EOF */
-      72             : /* EOF */
-      73        2573 : /* EOF */
-      74             : /* EOF */
-      75        1848 : /* EOF */
-      76         924 : /* EOF */
-      77        2772 : /* EOF */
-      78             : /* EOF */
-      79           0 : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82         210 : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85         270 : /* EOF */
-      86             : /* EOF */
-      87          90 : /* EOF */
-      88          60 : /* EOF */
-      89          60 : /* EOF */
-      90           0 : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93          30 : /* EOF */
-      94             : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97             : /* EOF */
-      98           0 : /* EOF */
-      99             : /* EOF */
-     100           0 : /* EOF */
-     101           0 : /* EOF */
-     102           0 : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109          90 : /* EOF */
-     110             : /* EOF */
-     111         160 : /* EOF */
-     112             : /* EOF */
-     113          10 : /* EOF */
-     114          10 : /* EOF */
-     115          30 : /* EOF */
-     116          25 : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119         180 : /* EOF */
-     120         180 : /* EOF */
-     121         180 : /* EOF */
-     122         180 : /* EOF */
-     123         180 : /* EOF */
-     124         180 : /* EOF */
-     125         180 : /* EOF */
-     126             : /* EOF */
-     127          60 : /* EOF */
-     128          60 : /* EOF */
-     129          60 : /* EOF */
-     130          60 : /* EOF */
-     131          60 : /* EOF */
-     132          60 : /* EOF */
-     133          60 : /* EOF */
-     134             : /* EOF */
-     135          30 : /* EOF */
-     136             : /* EOF */
-     137          30 : /* EOF */
-     138          30 : /* EOF */
-     139             : /* EOF */
-     140          30 : /* EOF */
-     141          30 : /* EOF */
-     142             : /* EOF */
-     143          30 : /* EOF */
-     144          30 : /* EOF */
-     145             : /* EOF */
-     146          30 : /* EOF */
-     147          30 : /* EOF */
-     148          30 : /* EOF */
-     149          30 : /* EOF */
-     150           0 : /* EOF */
-     151          30 : /* EOF */
-     152             : /* EOF */
-     153      252938 : /* EOF */
-     154             : /* EOF */
-     155      252938 : /* EOF */
-     156           0 : /* EOF */
-     157             : /* EOF */
-     158             : /* EOF */
-     159             : /* EOF */
-     160             : /* EOF */
-     161     1015742 : /* EOF */
-     162             : /* EOF */
-     163             : /* EOF */
-     164        1330 : /* EOF */
-     165        1330 : /* EOF */
-     166        1330 : /* EOF */
-     167             : /* EOF */
-     168             : /* EOF */
-     169      252938 : /* EOF */
-     170             : /* EOF */
-     171      563220 : /* EOF */
-     172       57344 : /* EOF */
-     173             : /* EOF */
-     174      509866 : /* EOF */
-     175        2660 : /* EOF */
-     176             : /* EOF */
-     177     1295380 : /* EOF */
-     178      526336 : /* EOF */
-     179             : /* EOF */
-     180     2387566 : /* EOF */
-     181     1254460 : /* EOF */
-     182             : /* EOF */
-     183    12244168 : /* EOF */
-     184     7825528 : /* EOF */
-     185             : /* EOF */
-     186     7835968 : /* EOF */
-     187     4886728 : /* EOF */
-     188             : /* EOF */
-     189     2148190 : /* EOF */
-     190     1094876 : /* EOF */
-     191             : /* EOF */
-     192      252938 : /* EOF */
-     193      252938 : /* EOF */
-     194             : /* EOF */
-     195      252938 : /* EOF */
-     196             : /* EOF */
-     197             : /* EOF */
-     198          30 : /* EOF */
-     199             : /* EOF */
-     200          60 : /* EOF */
-     201          60 : /* EOF */
-     202          30 : /* EOF */
-     203             : /* EOF */
-     204          67 : /* EOF */
-     205             : /* EOF */
-     206          14 : /* EOF */
-     207          28 : /* EOF */
-     208             : /* EOF */
-     209           0 : /* EOF */
-     210           0 : /* EOF */
-     211             : /* EOF */
-     212          35 : /* EOF */
-     213             : /* EOF */
-     214             : /* EOF */
-     215          65 : /* EOF */
-     216             : /* EOF */
-     217          10 : /* EOF */
-     218          25 : /* EOF */
-     219             : /* EOF */
-     220           5 : /* EOF */
-     221           0 : /* EOF */
-     222             : /* EOF */
-     223          25 : /* EOF */
-     224             : /* EOF */
-     225             : /* EOF */
-     226          86 : /* EOF */
-     227             : /* EOF */
-     228          52 : /* EOF */
-     229         104 : /* EOF */
-     230             : /* EOF */
-     231           0 : /* EOF */
-     232           0 : /* EOF */
-     233             : /* EOF */
-     234         130 : /* EOF */
-     235             : /* EOF */
-     236             : /* EOF */
-     237         137 : /* EOF */
-     238             : /* EOF */
-     239         154 : /* EOF */
-     240         323 : /* EOF */
-     241             : /* EOF */
-     242          15 : /* EOF */
-     243           5 : /* EOF */
-     244             : /* EOF */
-     245         385 : /* EOF */
-     246             : /* EOF */
-     247             : /* EOF */
-     248         517 : /* EOF */
-     249             : /* EOF */
-     250         914 : /* EOF */
-     251        1898 : /* EOF */
-     252             : /* EOF */
-     253          70 : /* EOF */
-     254           0 : /* EOF */
-     255             : /* EOF */
-     256        2285 : /* EOF */
-     257             : /* EOF */
-     258             : /* EOF */
-     259         339 : /* EOF */
-     260             : /* EOF */
-     261         558 : /* EOF */
-     262        1166 : /* EOF */
-     263             : /* EOF */
-     264          50 : /* EOF */
-     265           0 : /* EOF */
-     266             : /* EOF */
-     267        1395 : /* EOF */
-     268             : /* EOF */
-     269             : /* EOF */
-     270         133 : /* EOF */
-     271             : /* EOF */
-     272         146 : /* EOF */
-     273         307 : /* EOF */
-     274             : /* EOF */
-     275          15 : /* EOF */
-     276           0 : /* EOF */
-     277             : /* EOF */
-     278         365 : /* EOF */
-     279             : /* EOF */
-     280             : /* EOF */
-     281          30 : /* EOF */
-     282         120 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/AddressDecoder.h.func-sort-c.html b/html/DRAMSys/library/src/common/AddressDecoder.h.func-sort-c.html deleted file mode 100644 index 6b6b1b19..00000000 --- a/html/DRAMSys/library/src/common/AddressDecoder.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - AddressDecoder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2450.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/AddressDecoder.h.func.html b/html/DRAMSys/library/src/common/AddressDecoder.h.func.html deleted file mode 100644 index a738edb3..00000000 --- a/html/DRAMSys/library/src/common/AddressDecoder.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - AddressDecoder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2450.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/AddressDecoder.h.gcov.html b/html/DRAMSys/library/src/common/AddressDecoder.h.gcov.html deleted file mode 100644 index 46d860b8..00000000 --- a/html/DRAMSys/library/src/common/AddressDecoder.h.gcov.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/AddressDecoder.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - AddressDecoder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2450.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58      252938 : /* EOF */
-      59      252938 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/TlmRecorder.cpp.func-sort-c.html b/html/DRAMSys/library/src/common/TlmRecorder.cpp.func-sort-c.html deleted file mode 100644 index 2f95ce2b..00000000 --- a/html/DRAMSys/library/src/common/TlmRecorder.cpp.func-sort-c.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - TlmRecorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25227791.0 %
Date:2020-06-30 17:34:44Functions:232688.5 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11TlmRecorder11recordPowerEdd0
_ZN11TlmRecorder22insertDebugMessageInDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKN7sc_core7sc_timeE0
_GLOBAL__sub_I__ZN11TlmRecorderC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_S5_30
_Z41__static_initialization_and_destruction_0ii30
_ZN11TlmRecorder15closeConnectionEv37
_ZN11TlmRecorder17executeSqlCommandENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TlmRecorder17insertGeneralInfoEv37
_ZN11TlmRecorder20insertCommandLengthsEv37
_ZN11TlmRecorder20prepareSqlStatementsEv37
_ZN11TlmRecorder33setUpTransactionTerminatingPhasesEv37
_ZN11TlmRecorder6openDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TlmRecorder16updateDataStrobeERKN7sc_core7sc_timeES3_RN3tlm19tlm_generic_payloadE252938
_ZN11TlmRecorder15insertRangeInDBEjRKN7sc_core7sc_timeES3_254719
_ZN11TlmRecorder21insertTransactionInDBERNS_11TransactionE254719
_ZN11TlmRecorder27removeTransactionFromSystemERN3tlm19tlm_generic_payloadE254719
_ZN11TlmRecorder26introduceTransactionSystemERN3tlm19tlm_generic_payloadE254778
_ZN11TlmRecorder15insertPhaseInDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKN7sc_core7sc_timeES9_j924402
_ZN11TlmRecorder11Transaction11setPhaseEndENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN7sc_core7sc_timeE924511
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/TlmRecorder.cpp.func.html b/html/DRAMSys/library/src/common/TlmRecorder.cpp.func.html deleted file mode 100644 index df73c4c7..00000000 --- a/html/DRAMSys/library/src/common/TlmRecorder.cpp.func.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - TlmRecorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25227791.0 %
Date:2020-06-30 17:34:44Functions:232688.5 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11TlmRecorderC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_S5_30
_Z41__static_initialization_and_destruction_0ii30
_ZN11TlmRecorder11Transaction11setPhaseEndENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN7sc_core7sc_timeE924511
_ZN11TlmRecorder11recordPowerEdd0
_ZN11TlmRecorder15closeConnectionEv37
_ZN11TlmRecorder15insertPhaseInDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKN7sc_core7sc_timeES9_j924402
_ZN11TlmRecorder15insertRangeInDBEjRKN7sc_core7sc_timeES3_254719
_ZN11TlmRecorder16updateDataStrobeERKN7sc_core7sc_timeES3_RN3tlm19tlm_generic_payloadE252938
_ZN11TlmRecorder17executeSqlCommandENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TlmRecorder17insertGeneralInfoEv37
_ZN11TlmRecorder20insertCommandLengthsEv37
_ZN11TlmRecorder20prepareSqlStatementsEv37
_ZN11TlmRecorder21insertTransactionInDBERNS_11TransactionE254719
_ZN11TlmRecorder22insertDebugMessageInDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKN7sc_core7sc_timeE0
_ZN11TlmRecorder26introduceTransactionSystemERN3tlm19tlm_generic_payloadE254778
_ZN11TlmRecorder27removeTransactionFromSystemERN3tlm19tlm_generic_payloadE254719
_ZN11TlmRecorder33setUpTransactionTerminatingPhasesEv37
_ZN11TlmRecorder6openDBENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/TlmRecorder.cpp.gcov.html b/html/DRAMSys/library/src/common/TlmRecorder.cpp.gcov.html deleted file mode 100644 index 076215c9..00000000 --- a/html/DRAMSys/library/src/common/TlmRecorder.cpp.gcov.html +++ /dev/null @@ -1,557 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - TlmRecorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25227791.0 %
Date:2020-06-30 17:34:44Functions:232688.5 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49          37 : /* EOF */
-      50             : /* EOF */
-      51         777 : /* EOF */
-      52             : /* EOF */
-      53          37 : /* EOF */
-      54          37 : /* EOF */
-      55         148 : /* EOF */
-      56             : /* EOF */
-      57          37 : /* EOF */
-      58          37 : /* EOF */
-      59          37 : /* EOF */
-      60          37 : /* EOF */
-      61          37 : /* EOF */
-      62             : /* EOF */
-      63         111 : /* EOF */
-      64          37 : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67          37 : /* EOF */
-      68             : /* EOF */
-      69         740 : /* EOF */
-      70             : /* EOF */
-      71          37 : /* EOF */
-      72          37 : /* EOF */
-      73          37 : /* EOF */
-      74          37 : /* EOF */
-      75          37 : /* EOF */
-      76          37 : /* EOF */
-      77          37 : /* EOF */
-      78          37 : /* EOF */
-      79          37 : /* EOF */
-      80          37 : /* EOF */
-      81          37 : /* EOF */
-      82          37 : /* EOF */
-      83          37 : /* EOF */
-      84             : /* EOF */
-      85           0 : /* EOF */
-      86             : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89           0 : /* EOF */
-      90           0 : /* EOF */
-      91             : /* EOF */
-      92     1849057 : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95     2103835 : /* EOF */
-      96      254778 : /* EOF */
-      97             : /* EOF */
-      98     3698114 : /* EOF */
-      99     5547171 : /* EOF */
-     100     7396228 : /* EOF */
-     101             : /* EOF */
-     102     1849057 : /* EOF */
-     103      924546 : /* EOF */
-     104             : /* EOF */
-     105     3698184 : /* EOF */
-     106             : /* EOF */
-     107      924511 : /* EOF */
-     108             : /* EOF */
-     109     3698044 : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112     7396228 : /* EOF */
-     113     1849057 : /* EOF */
-     114     1849057 : /* EOF */
-     115      254719 : /* EOF */
-     116             : /* EOF */
-     117     3698114 : /* EOF */
-     118     1849057 : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121      252938 : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125      505876 : /* EOF */
-     126      505876 : /* EOF */
-     127      252938 : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130           0 : /* EOF */
-     131             : /* EOF */
-     132           0 : /* EOF */
-     133           0 : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136             : /* EOF */
-     137             : /* EOF */
-     138      254778 : /* EOF */
-     139             : /* EOF */
-     140      254778 : /* EOF */
-     141      254778 : /* EOF */
-     142      764334 : /* EOF */
-     143      509556 : /* EOF */
-     144      254778 : /* EOF */
-     145      254778 : /* EOF */
-     146      509556 : /* EOF */
-     147      509556 : /* EOF */
-     148             : /* EOF */
-     149      509556 : /* EOF */
-     150        3680 : /* EOF */
-     151             : /* EOF */
-     152      505876 : /* EOF */
-     153      758814 : /* EOF */
-     154             : /* EOF */
-     155             : /* EOF */
-     156             : /* EOF */
-     157             : /* EOF */
-     158      254778 : /* EOF */
-     159             : /* EOF */
-     160             : /* EOF */
-     161         250 : /* EOF */
-     162             : /* EOF */
-     163      254778 : /* EOF */
-     164             : /* EOF */
-     165      254719 : /* EOF */
-     166             : /* EOF */
-     167             : /* EOF */
-     168             : /* EOF */
-     169             : /* EOF */
-     170             : /* EOF */
-     171             : /* EOF */
-     172      254719 : /* EOF */
-     173      254719 : /* EOF */
-     174      509438 : /* EOF */
-     175      254719 : /* EOF */
-     176             : /* EOF */
-     177         287 : /* EOF */
-     178             : /* EOF */
-     179         287 : /* EOF */
-     180      255867 : /* EOF */
-     181             : /* EOF */
-     182      254719 : /* EOF */
-     183     1943278 : /* EOF */
-     184     2773206 : /* EOF */
-     185             : /* EOF */
-     186             : /* EOF */
-     187             : /* EOF */
-     188      764157 : /* EOF */
-     189      764157 : /* EOF */
-     190      254719 : /* EOF */
-     191             : /* EOF */
-     192             : /* EOF */
-     193         287 : /* EOF */
-     194         574 : /* EOF */
-     195         287 : /* EOF */
-     196             : /* EOF */
-     197             : /* EOF */
-     198      924546 : /* EOF */
-     199             : /* EOF */
-     200     6471822 : /* EOF */
-     201      924546 : /* EOF */
-     202             : /* EOF */
-     203      924511 : /* EOF */
-     204             : /* EOF */
-     205             : /* EOF */
-     206             : /* EOF */
-     207             : /* EOF */
-     208     1850652 : /* EOF */
-     209     1852282 : /* EOF */
-     210      926141 : /* EOF */
-     211      924511 : /* EOF */
-     212             : /* EOF */
-     213             : /* EOF */
-     214             : /* EOF */
-     215             : /* EOF */
-     216           0 : /* EOF */
-     217             : /* EOF */
-     218             : /* EOF */
-     219             : /* EOF */
-     220          37 : /* EOF */
-     221             : /* EOF */
-     222          74 : /* EOF */
-     223          37 : /* EOF */
-     224          17 : /* EOF */
-     225           0 : /* EOF */
-     226             : /* EOF */
-     227             : /* EOF */
-     228             : /* EOF */
-     229          74 : /* EOF */
-     230           0 : /* EOF */
-     231           0 : /* EOF */
-     232             : /* EOF */
-     233          37 : /* EOF */
-     234             : /* EOF */
-     235          37 : /* EOF */
-     236             : /* EOF */
-     237          74 : /* EOF */
-     238          74 : /* EOF */
-     239             : /* EOF */
-     240          37 : /* EOF */
-     241           0 : /* EOF */
-     242             : /* EOF */
-     243          37 : /* EOF */
-     244          74 : /* EOF */
-     245          37 : /* EOF */
-     246          74 : /* EOF */
-     247          37 : /* EOF */
-     248             : /* EOF */
-     249          74 : /* EOF */
-     250          37 : /* EOF */
-     251             : /* EOF */
-     252          37 : /* EOF */
-     253             : /* EOF */
-     254         111 : /* EOF */
-     255             : /* EOF */
-     256             : /* EOF */
-     257          37 : /* EOF */
-     258             : /* EOF */
-     259             : /* EOF */
-     260             : /* EOF */
-     261          37 : /* EOF */
-     262             : /* EOF */
-     263             : /* EOF */
-     264             : /* EOF */
-     265          37 : /* EOF */
-     266             : /* EOF */
-     267          37 : /* EOF */
-     268             : /* EOF */
-     269          37 : /* EOF */
-     270             : /* EOF */
-     271          37 : /* EOF */
-     272             : /* EOF */
-     273          37 : /* EOF */
-     274             : /* EOF */
-     275          37 : /* EOF */
-     276             : /* EOF */
-     277          37 : /* EOF */
-     278          74 : /* EOF */
-     279          74 : /* EOF */
-     280          37 : /* EOF */
-     281          37 : /* EOF */
-     282             : /* EOF */
-     283          37 : /* EOF */
-     284          37 : /* EOF */
-     285          37 : /* EOF */
-     286          37 : /* EOF */
-     287          37 : /* EOF */
-     288             : /* EOF */
-     289             : /* EOF */
-     290          37 : /* EOF */
-     291          37 : /* EOF */
-     292             : /* EOF */
-     293          37 : /* EOF */
-     294          37 : /* EOF */
-     295          37 : /* EOF */
-     296          74 : /* EOF */
-     297             : /* EOF */
-     298          74 : /* EOF */
-     299             : /* EOF */
-     300          74 : /* EOF */
-     301          74 : /* EOF */
-     302          74 : /* EOF */
-     303          74 : /* EOF */
-     304          74 : /* EOF */
-     305             : /* EOF */
-     306          74 : /* EOF */
-     307             : /* EOF */
-     308          74 : /* EOF */
-     309             : /* EOF */
-     310          74 : /* EOF */
-     311             : /* EOF */
-     312          74 : /* EOF */
-     313          37 : /* EOF */
-     314             : /* EOF */
-     315           0 : /* EOF */
-     316             : /* EOF */
-     317           0 : /* EOF */
-     318           0 : /* EOF */
-     319           0 : /* EOF */
-     320           0 : /* EOF */
-     321           0 : /* EOF */
-     322             : /* EOF */
-     323          37 : /* EOF */
-     324             : /* EOF */
-     325          37 : /* EOF */
-     326          37 : /* EOF */
-     327          74 : /* EOF */
-     328          37 : /* EOF */
-     329          37 : /* EOF */
-     330          37 : /* EOF */
-     331          37 : /* EOF */
-     332          37 : /* EOF */
-     333          74 : /* EOF */
-     334          37 : /* EOF */
-     335          74 : /* EOF */
-     336          37 : /* EOF */
-     337          74 : /* EOF */
-     338          37 : /* EOF */
-     339          74 : /* EOF */
-     340          37 : /* EOF */
-     341          37 : /* EOF */
-     342          37 : /* EOF */
-     343             : /* EOF */
-     344           0 : /* EOF */
-     345           0 : /* EOF */
-     346           0 : /* EOF */
-     347          37 : /* EOF */
-     348          37 : /* EOF */
-     349          18 : /* EOF */
-     350          18 : /* EOF */
-     351          36 : /* EOF */
-     352          54 : /* EOF */
-     353             : /* EOF */
-     354          19 : /* EOF */
-     355          19 : /* EOF */
-     356             : /* EOF */
-     357          37 : /* EOF */
-     358          37 : /* EOF */
-     359          37 : /* EOF */
-     360             : /* EOF */
-     361          37 : /* EOF */
-     362             : /* EOF */
-     363          37 : /* EOF */
-     364             : /* EOF */
-     365          74 : /* EOF */
-     366          74 : /* EOF */
-     367          74 : /* EOF */
-     368          74 : /* EOF */
-     369          74 : /* EOF */
-     370          74 : /* EOF */
-     371          74 : /* EOF */
-     372          74 : /* EOF */
-     373          74 : /* EOF */
-     374          74 : /* EOF */
-     375          74 : /* EOF */
-     376          74 : /* EOF */
-     377          74 : /* EOF */
-     378          74 : /* EOF */
-     379          74 : /* EOF */
-     380             : /* EOF */
-     381          37 : /* EOF */
-     382          37 : /* EOF */
-     383             : /* EOF */
-     384      254719 : /* EOF */
-     385             : /* EOF */
-     386      254719 : /* EOF */
-     387      254719 : /* EOF */
-     388      254719 : /* EOF */
-     389      254719 : /* EOF */
-     390      254719 : /* EOF */
-     391      764157 : /* EOF */
-     392      254719 : /* EOF */
-     393      764157 : /* EOF */
-     394      254719 : /* EOF */
-     395      764157 : /* EOF */
-     396      254719 : /* EOF */
-     397      764157 : /* EOF */
-     398      254719 : /* EOF */
-     399      764157 : /* EOF */
-     400      254719 : /* EOF */
-     401      509438 : /* EOF */
-     402      254719 : /* EOF */
-     403      764157 : /* EOF */
-     404      254719 : /* EOF */
-     405      509438 : /* EOF */
-     406      254719 : /* EOF */
-     407      509438 : /* EOF */
-     408      254719 : /* EOF */
-     409      509438 : /* EOF */
-     410      509438 : /* EOF */
-     411      254719 : /* EOF */
-     412             : /* EOF */
-     413      254719 : /* EOF */
-     414             : /* EOF */
-     415      254719 : /* EOF */
-     416             : /* EOF */
-     417      254719 : /* EOF */
-     418             : /* EOF */
-     419             : /* EOF */
-     420      254719 : /* EOF */
-     421      254719 : /* EOF */
-     422      254719 : /* EOF */
-     423      254719 : /* EOF */
-     424      254719 : /* EOF */
-     425      924402 : /* EOF */
-     426             : /* EOF */
-     427             : /* EOF */
-     428             : /* EOF */
-     429     1848804 : /* EOF */
-     430      924402 : /* EOF */
-     431      924402 : /* EOF */
-     432      924402 : /* EOF */
-     433      924402 : /* EOF */
-     434      924402 : /* EOF */
-     435      924402 : /* EOF */
-     436             : /* EOF */
-     437             : /* EOF */
-     438     1433914 : /* EOF */
-     439             : /* EOF */
-     440     1433914 : /* EOF */
-     441     1433914 : /* EOF */
-     442           0 : /* EOF */
-     443             : /* EOF */
-     444             : /* EOF */
-     445     1433914 : /* EOF */
-     446     1433914 : /* EOF */
-     447             : /* EOF */
-     448          37 : /* EOF */
-     449             : /* EOF */
-     450             : /* EOF */
-     451             : /* EOF */
-     452          37 : /* EOF */
-     453          37 : /* EOF */
-     454          37 : /* EOF */
-     455           0 : /* EOF */
-     456           0 : /* EOF */
-     457             : /* EOF */
-     458             : /* EOF */
-     459             : /* EOF */
-     460          37 : /* EOF */
-     461             : /* EOF */
-     462          37 : /* EOF */
-     463             : /* EOF */
-     464          37 : /* EOF */
-     465          37 : /* EOF */
-     466          37 : /* EOF */
-     467             : /* EOF */
-     468             : /* EOF */
-     469             : /* EOF */
-     470          37 : /* EOF */
-     471          37 : /* EOF */
-     472         127 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/TlmRecorder.h.func-sort-c.html b/html/DRAMSys/library/src/common/TlmRecorder.h.func-sort-c.html deleted file mode 100644 index 20ef8334..00000000 --- a/html/DRAMSys/library/src/common/TlmRecorder.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - TlmRecorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:77100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/TlmRecorder.h.func.html b/html/DRAMSys/library/src/common/TlmRecorder.h.func.html deleted file mode 100644 index fc659479..00000000 --- a/html/DRAMSys/library/src/common/TlmRecorder.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - TlmRecorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:77100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/TlmRecorder.h.gcov.html b/html/DRAMSys/library/src/common/TlmRecorder.h.gcov.html deleted file mode 100644 index 922d76d6..00000000 --- a/html/DRAMSys/library/src/common/TlmRecorder.h.gcov.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/TlmRecorder.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - TlmRecorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:77100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66          74 : /* EOF */
-      67             : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70          74 : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74          74 : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86     2946086 : /* EOF */
-      87     1273890 : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98    15264502 : /* EOF */
-      99     3698184 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/dramExtensions.cpp.func-sort-c.html b/html/DRAMSys/library/src/common/dramExtensions.cpp.func-sort-c.html deleted file mode 100644 index 728812fd..00000000 --- a/html/DRAMSys/library/src/common/dramExtensions.cpp.func-sort-c.html +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - dramExtensions.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4713235.6 %
Date:2020-06-30 17:34:44Functions:215736.8 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13DramExtension10getChannelEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension10getChannelERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getBankGroupERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getExtensionEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getPayloadIDERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12incrementRowEv0
_ZN13DramExtension6getRowERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension7getBankERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension7getRankERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9copy_fromERKN3tlm18tlm_extension_baseE0
_ZN13DramExtension9getColumnEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getColumnERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getThreadEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getThreadERKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension19getTimeOfGenerationEPKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension19getTimeOfGenerationERKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension9copy_fromERKN3tlm18tlm_extension_baseE0
_ZN3RowppEv0
_ZNK13DramExtension14getBurstlengthEv0
_ZNK13DramExtension5cloneEv0
_ZNK19GenerationExtension5cloneEv0
_ZeqRK4BankS1_0
_ZeqRK4RankS1_0
_ZeqRK6ColumnS1_0
_ZeqRK6ThreadS1_0
_ZeqRK7ChannelS1_0
_ZeqRK9BankGroupS1_0
_ZltRK4BankS1_0
_ZltRK6ThreadS1_0
_ZneRK3RowS1_0
_ZneRK4BankS1_0
_ZneRK4RankS1_0
_ZneRK6ColumnS1_0
_ZneRK6ThreadS1_0
_ZneRK7ChannelS1_0
_ZneRK9BankGroupS1_0
_GLOBAL__sub_I__ZN13DramExtensionC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13DramExtensionC2ERK6ThreadRK4RankRK9BankGroupRK4BankRK3RowRK6Columnjm136
_ZN13DramExtensionC2ERK6ThreadRK7ChannelRK4RankRK9BankGroupRK4BankRK3RowRK6Columnjm252938
_ZN19GenerationExtension12getExtensionEPKN3tlm19tlm_generic_payloadE252938
_ZNK13DramExtension7getRankEv254719
_ZN13DramExtensionC2Ev254778
_ZN13DramExtension12getBankGroupEPKN3tlm19tlm_generic_payloadE418705
_ZN13DramExtension7getRankEPKN3tlm19tlm_generic_payloadE671643
_ZNK13DramExtension12getPayloadIDEv1011722
_ZN13DramExtension7getBankEPKN3tlm19tlm_generic_payloadE1177519
_ZNK13DramExtension12getBankGroupEv1685146
_ZNK13DramExtension6getRowEv1685146
_ZNK13DramExtension7getBankEv1685146
_ZNK13DramExtension9getColumnEv1685146
_ZN13DramExtension12getPayloadIDEPKN3tlm19tlm_generic_payloadE2404567
_ZNK13DramExtension10getChannelEv2696868
_ZNK13DramExtension9getThreadEv2951646
_ZN13DramExtension12getExtensionERKN3tlm19tlm_generic_payloadE12127284
_ZeqRK3RowS1_18361423
_ZN13DramExtension6getRowEPKN3tlm19tlm_generic_payloadE18522627
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/dramExtensions.cpp.func.html b/html/DRAMSys/library/src/common/dramExtensions.cpp.func.html deleted file mode 100644 index fc89e8a4..00000000 --- a/html/DRAMSys/library/src/common/dramExtensions.cpp.func.html +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - dramExtensions.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4713235.6 %
Date:2020-06-30 17:34:44Functions:215736.8 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13DramExtensionC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13DramExtension10getChannelEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension10getChannelERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getBankGroupEPKN3tlm19tlm_generic_payloadE418705
_ZN13DramExtension12getBankGroupERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getExtensionEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12getExtensionERKN3tlm19tlm_generic_payloadE12127284
_ZN13DramExtension12getPayloadIDEPKN3tlm19tlm_generic_payloadE2404567
_ZN13DramExtension12getPayloadIDERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension12incrementRowEv0
_ZN13DramExtension6getRowEPKN3tlm19tlm_generic_payloadE18522627
_ZN13DramExtension6getRowERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension7getBankEPKN3tlm19tlm_generic_payloadE1177519
_ZN13DramExtension7getBankERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension7getRankEPKN3tlm19tlm_generic_payloadE671643
_ZN13DramExtension7getRankERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9copy_fromERKN3tlm18tlm_extension_baseE0
_ZN13DramExtension9getColumnEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getColumnERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getThreadEPKN3tlm19tlm_generic_payloadE0
_ZN13DramExtension9getThreadERKN3tlm19tlm_generic_payloadE0
_ZN13DramExtensionC2ERK6ThreadRK4RankRK9BankGroupRK4BankRK3RowRK6Columnjm136
_ZN13DramExtensionC2ERK6ThreadRK7ChannelRK4RankRK9BankGroupRK4BankRK3RowRK6Columnjm252938
_ZN13DramExtensionC2Ev254778
_ZN19GenerationExtension12getExtensionEPKN3tlm19tlm_generic_payloadE252938
_ZN19GenerationExtension19getTimeOfGenerationEPKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension19getTimeOfGenerationERKN3tlm19tlm_generic_payloadE0
_ZN19GenerationExtension9copy_fromERKN3tlm18tlm_extension_baseE0
_ZN3RowppEv0
_ZNK13DramExtension10getChannelEv2696868
_ZNK13DramExtension12getBankGroupEv1685146
_ZNK13DramExtension12getPayloadIDEv1011722
_ZNK13DramExtension14getBurstlengthEv0
_ZNK13DramExtension5cloneEv0
_ZNK13DramExtension6getRowEv1685146
_ZNK13DramExtension7getBankEv1685146
_ZNK13DramExtension7getRankEv254719
_ZNK13DramExtension9getColumnEv1685146
_ZNK13DramExtension9getThreadEv2951646
_ZNK19GenerationExtension5cloneEv0
_ZeqRK3RowS1_18361423
_ZeqRK4BankS1_0
_ZeqRK4RankS1_0
_ZeqRK6ColumnS1_0
_ZeqRK6ThreadS1_0
_ZeqRK7ChannelS1_0
_ZeqRK9BankGroupS1_0
_ZltRK4BankS1_0
_ZltRK6ThreadS1_0
_ZneRK3RowS1_0
_ZneRK4BankS1_0
_ZneRK4RankS1_0
_ZneRK6ColumnS1_0
_ZneRK6ThreadS1_0
_ZneRK7ChannelS1_0
_ZneRK9BankGroupS1_0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/dramExtensions.cpp.gcov.html b/html/DRAMSys/library/src/common/dramExtensions.cpp.gcov.html deleted file mode 100644 index 24492eef..00000000 --- a/html/DRAMSys/library/src/common/dramExtensions.cpp.gcov.html +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - dramExtensions.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4713235.6 %
Date:2020-06-30 17:34:44Functions:215736.8 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45      254778 : /* EOF */
-      46             : /* EOF */
-      47     2038224 : /* EOF */
-      48             : /* EOF */
-      49         136 : /* EOF */
-      50             : /* EOF */
-      51         136 : /* EOF */
-      52             : /* EOF */
-      53         408 : /* EOF */
-      54             : /* EOF */
-      55      252938 : /* EOF */
-      56             : /* EOF */
-      57      252938 : /* EOF */
-      58             : /* EOF */
-      59      505876 : /* EOF */
-      60             : /* EOF */
-      61           0 : /* EOF */
-      62             : /* EOF */
-      63    35322345 : /* EOF */
-      64    35322345 : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70    12127284 : /* EOF */
-      71             : /* EOF */
-      72    12127284 : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75           0 : /* EOF */
-      76             : /* EOF */
-      77           0 : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80           0 : /* EOF */
-      81             : /* EOF */
-      82           0 : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85           0 : /* EOF */
-      86             : /* EOF */
-      87           0 : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90           0 : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95      671643 : /* EOF */
-      96             : /* EOF */
-      97     1343286 : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100           0 : /* EOF */
-     101             : /* EOF */
-     102           0 : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105      418705 : /* EOF */
-     106             : /* EOF */
-     107      837410 : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110           0 : /* EOF */
-     111             : /* EOF */
-     112           0 : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115     1177519 : /* EOF */
-     116             : /* EOF */
-     117     2355038 : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120           0 : /* EOF */
-     121             : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125    18522627 : /* EOF */
-     126             : /* EOF */
-     127    37045254 : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130           0 : /* EOF */
-     131             : /* EOF */
-     132           0 : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135           0 : /* EOF */
-     136             : /* EOF */
-     137           0 : /* EOF */
-     138             : /* EOF */
-     139             : /* EOF */
-     140           0 : /* EOF */
-     141             : /* EOF */
-     142           0 : /* EOF */
-     143             : /* EOF */
-     144             : /* EOF */
-     145     2404567 : /* EOF */
-     146             : /* EOF */
-     147     4809134 : /* EOF */
-     148             : /* EOF */
-     149             : /* EOF */
-     150           0 : /* EOF */
-     151             : /* EOF */
-     152           0 : /* EOF */
-     153             : /* EOF */
-     154             : /* EOF */
-     155           0 : /* EOF */
-     156             : /* EOF */
-     157           0 : /* EOF */
-     158             : /* EOF */
-     159             : /* EOF */
-     160           0 : /* EOF */
-     161             : /* EOF */
-     162           0 : /* EOF */
-     163           0 : /* EOF */
-     164           0 : /* EOF */
-     165           0 : /* EOF */
-     166           0 : /* EOF */
-     167           0 : /* EOF */
-     168           0 : /* EOF */
-     169           0 : /* EOF */
-     170           0 : /* EOF */
-     171           0 : /* EOF */
-     172             : /* EOF */
-     173     2951646 : /* EOF */
-     174             : /* EOF */
-     175     2951646 : /* EOF */
-     176             : /* EOF */
-     177             : /* EOF */
-     178     2696868 : /* EOF */
-     179             : /* EOF */
-     180     2696868 : /* EOF */
-     181             : /* EOF */
-     182             : /* EOF */
-     183      254719 : /* EOF */
-     184             : /* EOF */
-     185      926362 : /* EOF */
-     186             : /* EOF */
-     187             : /* EOF */
-     188     1685146 : /* EOF */
-     189             : /* EOF */
-     190     2103851 : /* EOF */
-     191             : /* EOF */
-     192             : /* EOF */
-     193     1685146 : /* EOF */
-     194             : /* EOF */
-     195     2862665 : /* EOF */
-     196             : /* EOF */
-     197             : /* EOF */
-     198     1685146 : /* EOF */
-     199             : /* EOF */
-     200    20207773 : /* EOF */
-     201             : /* EOF */
-     202             : /* EOF */
-     203     1685146 : /* EOF */
-     204             : /* EOF */
-     205     1685146 : /* EOF */
-     206             : /* EOF */
-     207             : /* EOF */
-     208           0 : /* EOF */
-     209             : /* EOF */
-     210           0 : /* EOF */
-     211             : /* EOF */
-     212             : /* EOF */
-     213     1011722 : /* EOF */
-     214             : /* EOF */
-     215     3416289 : /* EOF */
-     216             : /* EOF */
-     217             : /* EOF */
-     218           0 : /* EOF */
-     219             : /* EOF */
-     220           0 : /* EOF */
-     221           0 : /* EOF */
-     222             : /* EOF */
-     223           0 : /* EOF */
-     224             : /* EOF */
-     225           0 : /* EOF */
-     226             : /* EOF */
-     227             : /* EOF */
-     228           0 : /* EOF */
-     229             : /* EOF */
-     230           0 : /* EOF */
-     231           0 : /* EOF */
-     232             : /* EOF */
-     233           0 : /* EOF */
-     234             : /* EOF */
-     235      252938 : /* EOF */
-     236             : /* EOF */
-     237      252938 : /* EOF */
-     238      252938 : /* EOF */
-     239             : /* EOF */
-     240      252938 : /* EOF */
-     241             : /* EOF */
-     242             : /* EOF */
-     243           0 : /* EOF */
-     244             : /* EOF */
-     245           0 : /* EOF */
-     246             : /* EOF */
-     247             : /* EOF */
-     248           0 : /* EOF */
-     249             : /* EOF */
-     250           0 : /* EOF */
-     251             : /* EOF */
-     252             : /* EOF */
-     253             : /* EOF */
-     254           0 : /* EOF */
-     255             : /* EOF */
-     256           0 : /* EOF */
-     257             : /* EOF */
-     258             : /* EOF */
-     259           0 : /* EOF */
-     260             : /* EOF */
-     261           0 : /* EOF */
-     262             : /* EOF */
-     263             : /* EOF */
-     264           0 : /* EOF */
-     265             : /* EOF */
-     266           0 : /* EOF */
-     267             : /* EOF */
-     268             : /* EOF */
-     269             : /* EOF */
-     270           0 : /* EOF */
-     271             : /* EOF */
-     272           0 : /* EOF */
-     273             : /* EOF */
-     274             : /* EOF */
-     275           0 : /* EOF */
-     276             : /* EOF */
-     277           0 : /* EOF */
-     278             : /* EOF */
-     279             : /* EOF */
-     280             : /* EOF */
-     281           0 : /* EOF */
-     282             : /* EOF */
-     283           0 : /* EOF */
-     284             : /* EOF */
-     285             : /* EOF */
-     286           0 : /* EOF */
-     287             : /* EOF */
-     288           0 : /* EOF */
-     289             : /* EOF */
-     290             : /* EOF */
-     291             : /* EOF */
-     292           0 : /* EOF */
-     293             : /* EOF */
-     294           0 : /* EOF */
-     295             : /* EOF */
-     296             : /* EOF */
-     297           0 : /* EOF */
-     298             : /* EOF */
-     299           0 : /* EOF */
-     300             : /* EOF */
-     301             : /* EOF */
-     302             : /* EOF */
-     303           0 : /* EOF */
-     304             : /* EOF */
-     305           0 : /* EOF */
-     306             : /* EOF */
-     307             : /* EOF */
-     308           0 : /* EOF */
-     309             : /* EOF */
-     310           0 : /* EOF */
-     311             : /* EOF */
-     312             : /* EOF */
-     313           0 : /* EOF */
-     314             : /* EOF */
-     315           0 : /* EOF */
-     316             : /* EOF */
-     317             : /* EOF */
-     318             : /* EOF */
-     319          30 : /* EOF */
-     320             : /* EOF */
-     321    18361423 : /* EOF */
-     322             : /* EOF */
-     323    18361423 : /* EOF */
-     324             : /* EOF */
-     325    18361423 : /* EOF */
-     326             : /* EOF */
-     327             : /* EOF */
-     328           0 : /* EOF */
-     329             : /* EOF */
-     330           0 : /* EOF */
-     331             : /* EOF */
-     332             : /* EOF */
-     333           0 : /* EOF */
-     334             : /* EOF */
-     335           0 : /* EOF */
-     336           0 : /* EOF */
-     337             : /* EOF */
-     338             : /* EOF */
-     339             : /* EOF */
-     340             : /* EOF */
-     341           0 : /* EOF */
-     342             : /* EOF */
-     343           0 : /* EOF */
-     344             : /* EOF */
-     345             : /* EOF */
-     346           0 : /* EOF */
-     347             : /* EOF */
-     348           0 : /* EOF */
-     349          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/dramExtensions.h.func-sort-c.html b/html/DRAMSys/library/src/common/dramExtensions.h.func-sort-c.html deleted file mode 100644 index 7fd8bf7d..00000000 --- a/html/DRAMSys/library/src/common/dramExtensions.h.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - dramExtensions.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1818100.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13DramExtensionD2Ev0
_ZN19GenerationExtensionD2Ev0
_ZN19GenerationExtensionD0Ev252908
_ZN13DramExtensionD0Ev253044
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/dramExtensions.h.func.html b/html/DRAMSys/library/src/common/dramExtensions.h.func.html deleted file mode 100644 index 9b4a65b6..00000000 --- a/html/DRAMSys/library/src/common/dramExtensions.h.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - dramExtensions.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1818100.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13DramExtensionD0Ev253044
_ZN13DramExtensionD2Ev0
_ZN19GenerationExtensionD0Ev252908
_ZN19GenerationExtensionD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/dramExtensions.h.gcov.html b/html/DRAMSys/library/src/common/dramExtensions.h.gcov.html deleted file mode 100644 index 9e02640b..00000000 --- a/html/DRAMSys/library/src/common/dramExtensions.h.gcov.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/dramExtensions.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - dramExtensions.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1818100.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47      253074 : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51     1521219 : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61      507852 : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65     1266441 : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75      508264 : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79      254719 : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88             : /* EOF */
-      89      513371 : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93      479713 : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103      513275 : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107    17463095 : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115             : /* EOF */
-     116             : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129         526 : /* EOF */
-     130             : /* EOF */
-     131      507852 : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136             : /* EOF */
-     137             : /* EOF */
-     138             : /* EOF */
-     139             : /* EOF */
-     140             : /* EOF */
-     141             : /* EOF */
-     142             : /* EOF */
-     143             : /* EOF */
-     144             : /* EOF */
-     145             : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148             : /* EOF */
-     149             : /* EOF */
-     150      507852 : /* EOF */
-     151             : /* EOF */
-     152             : /* EOF */
-     153             : /* EOF */
-     154      254719 : /* EOF */
-     155             : /* EOF */
-     156             : /* EOF */
-     157             : /* EOF */
-     158             : /* EOF */
-     159             : /* EOF */
-     160             : /* EOF */
-     161             : /* EOF */
-     162     2616076 : /* EOF */
-     163             : /* EOF */
-     164             : /* EOF */
-     165             : /* EOF */
-     166             : /* EOF */
-     167             : /* EOF */
-     168             : /* EOF */
-     169             : /* EOF */
-     170             : /* EOF */
-     171             : /* EOF */
-     172             : /* EOF */
-     173             : /* EOF */
-     174             : /* EOF */
-     175             : /* EOF */
-     176             : /* EOF */
-     177             : /* EOF */
-     178             : /* EOF */
-     179             : /* EOF */
-     180             : /* EOF */
-     181             : /* EOF */
-     182             : /* EOF */
-     183             : /* EOF */
-     184             : /* EOF */
-     185             : /* EOF */
-     186             : /* EOF */
-     187             : /* EOF */
-     188             : /* EOF */
-     189             : /* EOF */
-     190             : /* EOF */
-     191             : /* EOF */
-     192             : /* EOF */
-     193             : /* EOF */
-     194             : /* EOF */
-     195             : /* EOF */
-     196             : /* EOF */
-     197             : /* EOF */
-     198             : /* EOF */
-     199             : /* EOF */
-     200             : /* EOF */
-     201             : /* EOF */
-     202             : /* EOF */
-     203             : /* EOF */
-     204             : /* EOF */
-     205             : /* EOF */
-     206             : /* EOF */
-     207             : /* EOF */
-     208             : /* EOF */
-     209             : /* EOF */
-     210             : /* EOF */
-     211             : /* EOF */
-     212             : /* EOF */
-     213             : /* EOF */
-     214             : /* EOF */
-     215             : /* EOF */
-     216             : /* EOF */
-     217             : /* EOF */
-     218             : /* EOF */
-     219             : /* EOF */
-     220             : /* EOF */
-     221             : /* EOF */
-     222             : /* EOF */
-     223             : /* EOF */
-     224             : /* EOF */
-     225      505816 : /* EOF */
-     226             : /* EOF */
-     227             : /* EOF */
-     228             : /* EOF */
-     229      758814 : /* EOF */
-     230             : /* EOF */
-     231             : /* EOF */
-     232             : /* EOF */
-     233             : /* EOF */
-     234             : /* EOF */
-     235             : /* EOF */
-     236      505876 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/index-sort-f.html b/html/DRAMSys/library/src/common/index-sort-f.html deleted file mode 100644 index 67e0dce5..00000000 --- a/html/DRAMSys/library/src/common/index-sort-f.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/commonHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:500113544.1 %
Date:2020-06-30 17:34:44Functions:6513847.1 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
tlm2_base_protocol_checker.h -
0.2%0.2%
-
0.2 %1 / 4720.0 %0 / 28
dramExtensions.cpp -
35.6%35.6%
-
35.6 %47 / 13236.8 %21 / 57
dramExtensions.h -
100.0%
-
100.0 %18 / 1850.0 %2 / 4
utils.cpp -
51.7%51.7%
-
51.7 %30 / 5866.7 %8 / 12
TlmRecorder.cpp -
91.0%91.0%
-
91.0 %252 / 27788.5 %23 / 26
AddressDecoder.h -
50.0%50.0%
-
50.0 %2 / 4-0 / 0
utils.h -
100.0%
-
100.0 %30 / 30100.0 %1 / 1
TlmRecorder.h -
100.0%
-
100.0 %7 / 7100.0 %3 / 3
AddressDecoder.cpp -
82.5%82.5%
-
82.5 %113 / 137100.0 %7 / 7
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/index-sort-l.html b/html/DRAMSys/library/src/common/index-sort-l.html deleted file mode 100644 index f712921d..00000000 --- a/html/DRAMSys/library/src/common/index-sort-l.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/commonHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:500113544.1 %
Date:2020-06-30 17:34:44Functions:6513847.1 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
tlm2_base_protocol_checker.h -
0.2%0.2%
-
0.2 %1 / 4720.0 %0 / 28
dramExtensions.cpp -
35.6%35.6%
-
35.6 %47 / 13236.8 %21 / 57
AddressDecoder.h -
50.0%50.0%
-
50.0 %2 / 4-0 / 0
utils.cpp -
51.7%51.7%
-
51.7 %30 / 5866.7 %8 / 12
AddressDecoder.cpp -
82.5%82.5%
-
82.5 %113 / 137100.0 %7 / 7
TlmRecorder.cpp -
91.0%91.0%
-
91.0 %252 / 27788.5 %23 / 26
TlmRecorder.h -
100.0%
-
100.0 %7 / 7100.0 %3 / 3
dramExtensions.h -
100.0%
-
100.0 %18 / 1850.0 %2 / 4
utils.h -
100.0%
-
100.0 %30 / 30100.0 %1 / 1
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/index.html b/html/DRAMSys/library/src/common/index.html deleted file mode 100644 index 31d242f7..00000000 --- a/html/DRAMSys/library/src/common/index.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/commonHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:500113544.1 %
Date:2020-06-30 17:34:44Functions:6513847.1 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
AddressDecoder.cpp -
82.5%82.5%
-
82.5 %113 / 137100.0 %7 / 7
AddressDecoder.h -
50.0%50.0%
-
50.0 %2 / 4-0 / 0
TlmRecorder.cpp -
91.0%91.0%
-
91.0 %252 / 27788.5 %23 / 26
TlmRecorder.h -
100.0%
-
100.0 %7 / 7100.0 %3 / 3
dramExtensions.cpp -
35.6%35.6%
-
35.6 %47 / 13236.8 %21 / 57
dramExtensions.h -
100.0%
-
100.0 %18 / 1850.0 %2 / 4
tlm2_base_protocol_checker.h -
0.2%0.2%
-
0.2 %1 / 4720.0 %0 / 28
utils.cpp -
51.7%51.7%
-
51.7 %30 / 5866.7 %8 / 12
utils.h -
100.0%
-
100.0 %30 / 30100.0 %1 / 1
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func-sort-c.html b/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func-sort-c.html deleted file mode 100644 index 3fd62047..00000000 --- a/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func-sort-c.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/tlm2_base_protocol_checker.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - tlm2_base_protocol_checker.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14720.2 %
Date:2020-06-30 17:34:44Functions:0280.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE11b_transportERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE15nb_transport_bwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE18get_direct_mem_ptrERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE18remember_gp_optionERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE19check_initial_stateERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE19check_response_pathERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE22b_transport_pre_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.4600
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.5820
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.5990
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE24check_trans_not_modifiedERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE24transport_dbg_pre_checksERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE25invalidate_direct_mem_ptrEyy0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE25transport_dbg_post_checksERN3tlm19tlm_generic_payloadEj0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE26nb_transport_bw_pre_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE26nb_transport_fw_pre_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE28nb_transport_response_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeEPKcSB_SB_0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE29get_direct_mem_ptr_pre_checksERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE30get_direct_mem_ptr_post_checksERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EEC1EN7sc_core14sc_module_nameE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EED0Ev0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EED1Ev0
_ZN9tlm_utils6path_tC2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func.html b/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func.html deleted file mode 100644 index c55a87b4..00000000 --- a/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.func.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/tlm2_base_protocol_checker.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - tlm2_base_protocol_checker.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14720.2 %
Date:2020-06-30 17:34:44Functions:0280.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE11b_transportERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE15nb_transport_bwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE18get_direct_mem_ptrERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE18remember_gp_optionERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE19check_initial_stateERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE19check_response_pathERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE22b_transport_pre_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.4600
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.5820
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE23b_transport_post_checksERN3tlm19tlm_generic_payloadERN7sc_core7sc_timeE.isra.5990
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE24check_trans_not_modifiedERN3tlm19tlm_generic_payloadEPKc0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE24transport_dbg_pre_checksERN3tlm19tlm_generic_payloadE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE25invalidate_direct_mem_ptrEyy0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE25transport_dbg_post_checksERN3tlm19tlm_generic_payloadEj0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE26nb_transport_bw_pre_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE26nb_transport_fw_pre_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE28nb_transport_response_checksERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeEPKcSB_SB_0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE29get_direct_mem_ptr_pre_checksERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EE30get_direct_mem_ptr_post_checksERN3tlm19tlm_generic_payloadERNS2_7tlm_dmiE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EEC1EN7sc_core14sc_module_nameE0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EED0Ev0
_ZN9tlm_utils26tlm2_base_protocol_checkerILj32EED1Ev0
_ZN9tlm_utils6path_tC2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.gcov.html b/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.gcov.html deleted file mode 100644 index b3cf78ce..00000000 --- a/html/DRAMSys/library/src/common/tlm2_base_protocol_checker.h.gcov.html +++ /dev/null @@ -1,1128 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/tlm2_base_protocol_checker.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - tlm2_base_protocol_checker.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14720.2 %
Date:2020-06-30 17:34:44Functions:0280.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115             : /* EOF */
-     116             : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136             : /* EOF */
-     137             : /* EOF */
-     138             : /* EOF */
-     139             : /* EOF */
-     140             : /* EOF */
-     141             : /* EOF */
-     142             : /* EOF */
-     143             : /* EOF */
-     144             : /* EOF */
-     145             : /* EOF */
-     146             : /* EOF */
-     147           0 : /* EOF */
-     148           0 : /* EOF */
-     149           0 : /* EOF */
-     150           0 : /* EOF */
-     151           0 : /* EOF */
-     152           0 : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155             : /* EOF */
-     156             : /* EOF */
-     157             : /* EOF */
-     158             : /* EOF */
-     159             : /* EOF */
-     160             : /* EOF */
-     161             : /* EOF */
-     162          90 : /* EOF */
-     163             : /* EOF */
-     164             : /* EOF */
-     165             : /* EOF */
-     166             : /* EOF */
-     167             : /* EOF */
-     168             : /* EOF */
-     169           0 : /* EOF */
-     170             : /* EOF */
-     171             : /* EOF */
-     172             : /* EOF */
-     173             : /* EOF */
-     174             : /* EOF */
-     175             : /* EOF */
-     176             : /* EOF */
-     177             : /* EOF */
-     178             : /* EOF */
-     179             : /* EOF */
-     180             : /* EOF */
-     181             : /* EOF */
-     182             : /* EOF */
-     183             : /* EOF */
-     184           0 : /* EOF */
-     185           0 : /* EOF */
-     186             : /* EOF */
-     187           0 : /* EOF */
-     188           0 : /* EOF */
-     189           0 : /* EOF */
-     190             : /* EOF */
-     191             : /* EOF */
-     192             : /* EOF */
-     193             : /* EOF */
-     194             : /* EOF */
-     195             : /* EOF */
-     196             : /* EOF */
-     197             : /* EOF */
-     198             : /* EOF */
-     199             : /* EOF */
-     200             : /* EOF */
-     201             : /* EOF */
-     202             : /* EOF */
-     203             : /* EOF */
-     204             : /* EOF */
-     205             : /* EOF */
-     206             : /* EOF */
-     207             : /* EOF */
-     208             : /* EOF */
-     209             : /* EOF */
-     210           0 : /* EOF */
-     211             : /* EOF */
-     212             : /* EOF */
-     213           0 : /* EOF */
-     214             : /* EOF */
-     215           0 : /* EOF */
-     216           0 : /* EOF */
-     217             : /* EOF */
-     218             : /* EOF */
-     219           0 : /* EOF */
-     220             : /* EOF */
-     221           0 : /* EOF */
-     222           0 : /* EOF */
-     223             : /* EOF */
-     224           0 : /* EOF */
-     225             : /* EOF */
-     226             : /* EOF */
-     227           0 : /* EOF */
-     228             : /* EOF */
-     229             : /* EOF */
-     230           0 : /* EOF */
-     231           0 : /* EOF */
-     232             : /* EOF */
-     233             : /* EOF */
-     234           0 : /* EOF */
-     235             : /* EOF */
-     236           0 : /* EOF */
-     237           0 : /* EOF */
-     238             : /* EOF */
-     239           0 : /* EOF */
-     240             : /* EOF */
-     241             : /* EOF */
-     242           0 : /* EOF */
-     243             : /* EOF */
-     244             : /* EOF */
-     245           0 : /* EOF */
-     246           0 : /* EOF */
-     247             : /* EOF */
-     248           0 : /* EOF */
-     249             : /* EOF */
-     250           0 : /* EOF */
-     251           0 : /* EOF */
-     252           0 : /* EOF */
-     253             : /* EOF */
-     254           0 : /* EOF */
-     255             : /* EOF */
-     256             : /* EOF */
-     257           0 : /* EOF */
-     258             : /* EOF */
-     259             : /* EOF */
-     260           0 : /* EOF */
-     261             : /* EOF */
-     262           0 : /* EOF */
-     263           0 : /* EOF */
-     264             : /* EOF */
-     265             : /* EOF */
-     266           0 : /* EOF */
-     267             : /* EOF */
-     268             : /* EOF */
-     269           0 : /* EOF */
-     270           0 : /* EOF */
-     271             : /* EOF */
-     272           0 : /* EOF */
-     273             : /* EOF */
-     274           0 : /* EOF */
-     275             : /* EOF */
-     276             : /* EOF */
-     277           0 : /* EOF */
-     278             : /* EOF */
-     279           0 : /* EOF */
-     280           0 : /* EOF */
-     281             : /* EOF */
-     282             : /* EOF */
-     283             : /* EOF */
-     284             : /* EOF */
-     285             : /* EOF */
-     286             : /* EOF */
-     287             : /* EOF */
-     288             : /* EOF */
-     289             : /* EOF */
-     290             : /* EOF */
-     291             : /* EOF */
-     292             : /* EOF */
-     293             : /* EOF */
-     294             : /* EOF */
-     295             : /* EOF */
-     296             : /* EOF */
-     297             : /* EOF */
-     298             : /* EOF */
-     299             : /* EOF */
-     300             : /* EOF */
-     301             : /* EOF */
-     302             : /* EOF */
-     303             : /* EOF */
-     304             : /* EOF */
-     305             : /* EOF */
-     306             : /* EOF */
-     307             : /* EOF */
-     308             : /* EOF */
-     309             : /* EOF */
-     310             : /* EOF */
-     311             : /* EOF */
-     312             : /* EOF */
-     313             : /* EOF */
-     314             : /* EOF */
-     315             : /* EOF */
-     316             : /* EOF */
-     317             : /* EOF */
-     318             : /* EOF */
-     319             : /* EOF */
-     320             : /* EOF */
-     321             : /* EOF */
-     322             : /* EOF */
-     323             : /* EOF */
-     324             : /* EOF */
-     325             : /* EOF */
-     326             : /* EOF */
-     327             : /* EOF */
-     328             : /* EOF */
-     329             : /* EOF */
-     330             : /* EOF */
-     331             : /* EOF */
-     332             : /* EOF */
-     333             : /* EOF */
-     334             : /* EOF */
-     335             : /* EOF */
-     336             : /* EOF */
-     337           0 : /* EOF */
-     338           0 : /* EOF */
-     339           0 : /* EOF */
-     340           0 : /* EOF */
-     341           0 : /* EOF */
-     342             : /* EOF */
-     343             : /* EOF */
-     344             : /* EOF */
-     345             : /* EOF */
-     346             : /* EOF */
-     347             : /* EOF */
-     348             : /* EOF */
-     349             : /* EOF */
-     350             : /* EOF */
-     351             : /* EOF */
-     352             : /* EOF */
-     353             : /* EOF */
-     354             : /* EOF */
-     355             : /* EOF */
-     356             : /* EOF */
-     357             : /* EOF */
-     358             : /* EOF */
-     359             : /* EOF */
-     360             : /* EOF */
-     361             : /* EOF */
-     362             : /* EOF */
-     363             : /* EOF */
-     364             : /* EOF */
-     365             : /* EOF */
-     366             : /* EOF */
-     367             : /* EOF */
-     368             : /* EOF */
-     369             : /* EOF */
-     370             : /* EOF */
-     371             : /* EOF */
-     372             : /* EOF */
-     373             : /* EOF */
-     374             : /* EOF */
-     375           0 : /* EOF */
-     376             : /* EOF */
-     377             : /* EOF */
-     378             : /* EOF */
-     379           0 : /* EOF */
-     380             : /* EOF */
-     381           0 : /* EOF */
-     382           0 : /* EOF */
-     383           0 : /* EOF */
-     384             : /* EOF */
-     385           0 : /* EOF */
-     386             : /* EOF */
-     387             : /* EOF */
-     388           0 : /* EOF */
-     389             : /* EOF */
-     390           0 : /* EOF */
-     391           0 : /* EOF */
-     392             : /* EOF */
-     393             : /* EOF */
-     394             : /* EOF */
-     395           0 : /* EOF */
-     396           0 : /* EOF */
-     397           0 : /* EOF */
-     398             : /* EOF */
-     399           0 : /* EOF */
-     400             : /* EOF */
-     401             : /* EOF */
-     402           0 : /* EOF */
-     403             : /* EOF */
-     404             : /* EOF */
-     405             : /* EOF */
-     406           0 : /* EOF */
-     407           0 : /* EOF */
-     408           0 : /* EOF */
-     409           0 : /* EOF */
-     410             : /* EOF */
-     411             : /* EOF */
-     412           0 : /* EOF */
-     413             : /* EOF */
-     414             : /* EOF */
-     415             : /* EOF */
-     416           0 : /* EOF */
-     417           0 : /* EOF */
-     418           0 : /* EOF */
-     419             : /* EOF */
-     420           0 : /* EOF */
-     421           0 : /* EOF */
-     422           0 : /* EOF */
-     423             : /* EOF */
-     424             : /* EOF */
-     425           0 : /* EOF */
-     426           0 : /* EOF */
-     427           0 : /* EOF */
-     428             : /* EOF */
-     429           0 : /* EOF */
-     430           0 : /* EOF */
-     431           0 : /* EOF */
-     432             : /* EOF */
-     433           0 : /* EOF */
-     434             : /* EOF */
-     435             : /* EOF */
-     436           0 : /* EOF */
-     437           0 : /* EOF */
-     438           0 : /* EOF */
-     439             : /* EOF */
-     440           0 : /* EOF */
-     441             : /* EOF */
-     442           0 : /* EOF */
-     443           0 : /* EOF */
-     444           0 : /* EOF */
-     445             : /* EOF */
-     446             : /* EOF */
-     447             : /* EOF */
-     448           0 : /* EOF */
-     449             : /* EOF */
-     450             : /* EOF */
-     451           0 : /* EOF */
-     452             : /* EOF */
-     453           0 : /* EOF */
-     454           0 : /* EOF */
-     455             : /* EOF */
-     456           0 : /* EOF */
-     457           0 : /* EOF */
-     458           0 : /* EOF */
-     459             : /* EOF */
-     460           0 : /* EOF */
-     461             : /* EOF */
-     462           0 : /* EOF */
-     463           0 : /* EOF */
-     464             : /* EOF */
-     465             : /* EOF */
-     466           0 : /* EOF */
-     467           0 : /* EOF */
-     468             : /* EOF */
-     469           0 : /* EOF */
-     470           0 : /* EOF */
-     471           0 : /* EOF */
-     472           0 : /* EOF */
-     473           0 : /* EOF */
-     474             : /* EOF */
-     475           0 : /* EOF */
-     476           0 : /* EOF */
-     477             : /* EOF */
-     478             : /* EOF */
-     479           0 : /* EOF */
-     480             : /* EOF */
-     481             : /* EOF */
-     482             : /* EOF */
-     483             : /* EOF */
-     484             : /* EOF */
-     485           0 : /* EOF */
-     486           0 : /* EOF */
-     487             : /* EOF */
-     488             : /* EOF */
-     489           0 : /* EOF */
-     490           0 : /* EOF */
-     491           0 : /* EOF */
-     492           0 : /* EOF */
-     493           0 : /* EOF */
-     494             : /* EOF */
-     495             : /* EOF */
-     496             : /* EOF */
-     497             : /* EOF */
-     498             : /* EOF */
-     499           0 : /* EOF */
-     500           0 : /* EOF */
-     501           0 : /* EOF */
-     502             : /* EOF */
-     503           0 : /* EOF */
-     504             : /* EOF */
-     505             : /* EOF */
-     506           0 : /* EOF */
-     507             : /* EOF */
-     508             : /* EOF */
-     509             : /* EOF */
-     510           0 : /* EOF */
-     511           0 : /* EOF */
-     512           0 : /* EOF */
-     513             : /* EOF */
-     514           0 : /* EOF */
-     515           0 : /* EOF */
-     516           0 : /* EOF */
-     517             : /* EOF */
-     518           0 : /* EOF */
-     519             : /* EOF */
-     520           0 : /* EOF */
-     521             : /* EOF */
-     522             : /* EOF */
-     523           0 : /* EOF */
-     524             : /* EOF */
-     525             : /* EOF */
-     526             : /* EOF */
-     527             : /* EOF */
-     528           0 : /* EOF */
-     529           0 : /* EOF */
-     530           0 : /* EOF */
-     531           0 : /* EOF */
-     532             : /* EOF */
-     533           0 : /* EOF */
-     534           0 : /* EOF */
-     535             : /* EOF */
-     536           0 : /* EOF */
-     537             : /* EOF */
-     538             : /* EOF */
-     539           0 : /* EOF */
-     540             : /* EOF */
-     541           0 : /* EOF */
-     542           0 : /* EOF */
-     543             : /* EOF */
-     544           0 : /* EOF */
-     545           0 : /* EOF */
-     546           0 : /* EOF */
-     547             : /* EOF */
-     548           0 : /* EOF */
-     549             : /* EOF */
-     550             : /* EOF */
-     551           0 : /* EOF */
-     552           0 : /* EOF */
-     553             : /* EOF */
-     554             : /* EOF */
-     555           0 : /* EOF */
-     556           0 : /* EOF */
-     557             : /* EOF */
-     558           0 : /* EOF */
-     559           0 : /* EOF */
-     560           0 : /* EOF */
-     561           0 : /* EOF */
-     562           0 : /* EOF */
-     563             : /* EOF */
-     564           0 : /* EOF */
-     565           0 : /* EOF */
-     566           0 : /* EOF */
-     567           0 : /* EOF */
-     568             : /* EOF */
-     569             : /* EOF */
-     570             : /* EOF */
-     571             : /* EOF */
-     572             : /* EOF */
-     573           0 : /* EOF */
-     574           0 : /* EOF */
-     575           0 : /* EOF */
-     576             : /* EOF */
-     577           0 : /* EOF */
-     578             : /* EOF */
-     579             : /* EOF */
-     580           0 : /* EOF */
-     581             : /* EOF */
-     582             : /* EOF */
-     583             : /* EOF */
-     584             : /* EOF */
-     585           0 : /* EOF */
-     586           0 : /* EOF */
-     587           0 : /* EOF */
-     588           0 : /* EOF */
-     589           0 : /* EOF */
-     590           0 : /* EOF */
-     591             : /* EOF */
-     592             : /* EOF */
-     593             : /* EOF */
-     594           0 : /* EOF */
-     595           0 : /* EOF */
-     596             : /* EOF */
-     597             : /* EOF */
-     598           0 : /* EOF */
-     599           0 : /* EOF */
-     600           0 : /* EOF */
-     601           0 : /* EOF */
-     602             : /* EOF */
-     603           0 : /* EOF */
-     604           0 : /* EOF */
-     605           0 : /* EOF */
-     606           0 : /* EOF */
-     607           0 : /* EOF */
-     608             : /* EOF */
-     609             : /* EOF */
-     610           0 : /* EOF */
-     611           0 : /* EOF */
-     612             : /* EOF */
-     613           0 : /* EOF */
-     614           0 : /* EOF */
-     615           0 : /* EOF */
-     616           0 : /* EOF */
-     617           0 : /* EOF */
-     618             : /* EOF */
-     619             : /* EOF */
-     620           0 : /* EOF */
-     621           0 : /* EOF */
-     622             : /* EOF */
-     623           0 : /* EOF */
-     624           0 : /* EOF */
-     625           0 : /* EOF */
-     626           0 : /* EOF */
-     627             : /* EOF */
-     628           0 : /* EOF */
-     629             : /* EOF */
-     630           0 : /* EOF */
-     631           0 : /* EOF */
-     632             : /* EOF */
-     633             : /* EOF */
-     634           0 : /* EOF */
-     635           0 : /* EOF */
-     636             : /* EOF */
-     637           0 : /* EOF */
-     638           0 : /* EOF */
-     639           0 : /* EOF */
-     640           0 : /* EOF */
-     641           0 : /* EOF */
-     642             : /* EOF */
-     643           0 : /* EOF */
-     644           0 : /* EOF */
-     645             : /* EOF */
-     646             : /* EOF */
-     647           0 : /* EOF */
-     648             : /* EOF */
-     649             : /* EOF */
-     650             : /* EOF */
-     651           0 : /* EOF */
-     652           0 : /* EOF */
-     653           0 : /* EOF */
-     654           0 : /* EOF */
-     655             : /* EOF */
-     656             : /* EOF */
-     657             : /* EOF */
-     658           0 : /* EOF */
-     659           0 : /* EOF */
-     660           0 : /* EOF */
-     661           0 : /* EOF */
-     662           0 : /* EOF */
-     663             : /* EOF */
-     664           0 : /* EOF */
-     665           0 : /* EOF */
-     666           0 : /* EOF */
-     667             : /* EOF */
-     668           0 : /* EOF */
-     669             : /* EOF */
-     670           0 : /* EOF */
-     671           0 : /* EOF */
-     672           0 : /* EOF */
-     673             : /* EOF */
-     674           0 : /* EOF */
-     675             : /* EOF */
-     676           0 : /* EOF */
-     677           0 : /* EOF */
-     678           0 : /* EOF */
-     679           0 : /* EOF */
-     680             : /* EOF */
-     681           0 : /* EOF */
-     682           0 : /* EOF */
-     683           0 : /* EOF */
-     684           0 : /* EOF */
-     685             : /* EOF */
-     686           0 : /* EOF */
-     687           0 : /* EOF */
-     688           0 : /* EOF */
-     689           0 : /* EOF */
-     690             : /* EOF */
-     691           0 : /* EOF */
-     692           0 : /* EOF */
-     693           0 : /* EOF */
-     694           0 : /* EOF */
-     695             : /* EOF */
-     696           0 : /* EOF */
-     697           0 : /* EOF */
-     698           0 : /* EOF */
-     699           0 : /* EOF */
-     700             : /* EOF */
-     701             : /* EOF */
-     702             : /* EOF */
-     703           0 : /* EOF */
-     704           0 : /* EOF */
-     705           0 : /* EOF */
-     706             : /* EOF */
-     707           0 : /* EOF */
-     708           0 : /* EOF */
-     709             : /* EOF */
-     710           0 : /* EOF */
-     711           0 : /* EOF */
-     712             : /* EOF */
-     713           0 : /* EOF */
-     714           0 : /* EOF */
-     715           0 : /* EOF */
-     716           0 : /* EOF */
-     717             : /* EOF */
-     718           0 : /* EOF */
-     719           0 : /* EOF */
-     720             : /* EOF */
-     721           0 : /* EOF */
-     722           0 : /* EOF */
-     723           0 : /* EOF */
-     724           0 : /* EOF */
-     725             : /* EOF */
-     726             : /* EOF */
-     727           0 : /* EOF */
-     728           0 : /* EOF */
-     729           0 : /* EOF */
-     730             : /* EOF */
-     731           0 : /* EOF */
-     732           0 : /* EOF */
-     733           0 : /* EOF */
-     734           0 : /* EOF */
-     735             : /* EOF */
-     736           0 : /* EOF */
-     737           0 : /* EOF */
-     738           0 : /* EOF */
-     739             : /* EOF */
-     740             : /* EOF */
-     741           0 : /* EOF */
-     742             : /* EOF */
-     743             : /* EOF */
-     744             : /* EOF */
-     745             : /* EOF */
-     746           0 : /* EOF */
-     747           0 : /* EOF */
-     748           0 : /* EOF */
-     749           0 : /* EOF */
-     750           0 : /* EOF */
-     751           0 : /* EOF */
-     752             : /* EOF */
-     753             : /* EOF */
-     754           0 : /* EOF */
-     755             : /* EOF */
-     756             : /* EOF */
-     757             : /* EOF */
-     758           0 : /* EOF */
-     759             : /* EOF */
-     760           0 : /* EOF */
-     761           0 : /* EOF */
-     762             : /* EOF */
-     763           0 : /* EOF */
-     764             : /* EOF */
-     765           0 : /* EOF */
-     766           0 : /* EOF */
-     767           0 : /* EOF */
-     768           0 : /* EOF */
-     769             : /* EOF */
-     770           0 : /* EOF */
-     771           0 : /* EOF */
-     772           0 : /* EOF */
-     773           0 : /* EOF */
-     774             : /* EOF */
-     775           0 : /* EOF */
-     776           0 : /* EOF */
-     777           0 : /* EOF */
-     778           0 : /* EOF */
-     779           0 : /* EOF */
-     780             : /* EOF */
-     781           0 : /* EOF */
-     782           0 : /* EOF */
-     783           0 : /* EOF */
-     784           0 : /* EOF */
-     785             : /* EOF */
-     786           0 : /* EOF */
-     787           0 : /* EOF */
-     788           0 : /* EOF */
-     789           0 : /* EOF */
-     790             : /* EOF */
-     791           0 : /* EOF */
-     792           0 : /* EOF */
-     793           0 : /* EOF */
-     794           0 : /* EOF */
-     795             : /* EOF */
-     796           0 : /* EOF */
-     797             : /* EOF */
-     798           0 : /* EOF */
-     799           0 : /* EOF */
-     800           0 : /* EOF */
-     801           0 : /* EOF */
-     802             : /* EOF */
-     803           0 : /* EOF */
-     804           0 : /* EOF */
-     805           0 : /* EOF */
-     806           0 : /* EOF */
-     807           0 : /* EOF */
-     808             : /* EOF */
-     809           0 : /* EOF */
-     810           0 : /* EOF */
-     811           0 : /* EOF */
-     812           0 : /* EOF */
-     813           0 : /* EOF */
-     814             : /* EOF */
-     815             : /* EOF */
-     816           0 : /* EOF */
-     817             : /* EOF */
-     818           0 : /* EOF */
-     819           0 : /* EOF */
-     820           0 : /* EOF */
-     821           0 : /* EOF */
-     822             : /* EOF */
-     823           0 : /* EOF */
-     824           0 : /* EOF */
-     825             : /* EOF */
-     826             : /* EOF */
-     827             : /* EOF */
-     828           0 : /* EOF */
-     829           0 : /* EOF */
-     830           0 : /* EOF */
-     831           0 : /* EOF */
-     832           0 : /* EOF */
-     833           0 : /* EOF */
-     834           0 : /* EOF */
-     835             : /* EOF */
-     836           0 : /* EOF */
-     837             : /* EOF */
-     838             : /* EOF */
-     839           0 : /* EOF */
-     840             : /* EOF */
-     841             : /* EOF */
-     842             : /* EOF */
-     843           0 : /* EOF */
-     844           0 : /* EOF */
-     845           0 : /* EOF */
-     846           0 : /* EOF */
-     847           0 : /* EOF */
-     848           0 : /* EOF */
-     849           0 : /* EOF */
-     850           0 : /* EOF */
-     851           0 : /* EOF */
-     852             : /* EOF */
-     853           0 : /* EOF */
-     854           0 : /* EOF */
-     855           0 : /* EOF */
-     856             : /* EOF */
-     857             : /* EOF */
-     858           0 : /* EOF */
-     859           0 : /* EOF */
-     860           0 : /* EOF */
-     861           0 : /* EOF */
-     862             : /* EOF */
-     863             : /* EOF */
-     864           0 : /* EOF */
-     865             : /* EOF */
-     866             : /* EOF */
-     867           0 : /* EOF */
-     868             : /* EOF */
-     869             : /* EOF */
-     870             : /* EOF */
-     871           0 : /* EOF */
-     872             : /* EOF */
-     873           0 : /* EOF */
-     874           0 : /* EOF */
-     875           0 : /* EOF */
-     876             : /* EOF */
-     877           0 : /* EOF */
-     878           0 : /* EOF */
-     879           0 : /* EOF */
-     880             : /* EOF */
-     881           0 : /* EOF */
-     882           0 : /* EOF */
-     883           0 : /* EOF */
-     884             : /* EOF */
-     885           0 : /* EOF */
-     886           0 : /* EOF */
-     887           0 : /* EOF */
-     888             : /* EOF */
-     889           0 : /* EOF */
-     890           0 : /* EOF */
-     891           0 : /* EOF */
-     892             : /* EOF */
-     893           0 : /* EOF */
-     894           0 : /* EOF */
-     895           0 : /* EOF */
-     896             : /* EOF */
-     897             : /* EOF */
-     898           0 : /* EOF */
-     899             : /* EOF */
-     900             : /* EOF */
-     901             : /* EOF */
-     902             : /* EOF */
-     903             : /* EOF */
-     904             : /* EOF */
-     905             : /* EOF */
-     906           0 : /* EOF */
-     907           0 : /* EOF */
-     908           0 : /* EOF */
-     909             : /* EOF */
-     910           0 : /* EOF */
-     911           0 : /* EOF */
-     912           0 : /* EOF */
-     913             : /* EOF */
-     914           0 : /* EOF */
-     915             : /* EOF */
-     916             : /* EOF */
-     917           0 : /* EOF */
-     918             : /* EOF */
-     919             : /* EOF */
-     920             : /* EOF */
-     921           0 : /* EOF */
-     922             : /* EOF */
-     923           0 : /* EOF */
-     924           0 : /* EOF */
-     925           0 : /* EOF */
-     926           0 : /* EOF */
-     927           0 : /* EOF */
-     928           0 : /* EOF */
-     929           0 : /* EOF */
-     930           0 : /* EOF */
-     931             : /* EOF */
-     932           0 : /* EOF */
-     933             : /* EOF */
-     934             : /* EOF */
-     935           0 : /* EOF */
-     936             : /* EOF */
-     937             : /* EOF */
-     938           0 : /* EOF */
-     939             : /* EOF */
-     940           0 : /* EOF */
-     941           0 : /* EOF */
-     942           0 : /* EOF */
-     943             : /* EOF */
-     944             : /* EOF */
-     945           0 : /* EOF */
-     946           0 : /* EOF */
-     947           0 : /* EOF */
-     948           0 : /* EOF */
-     949           0 : /* EOF */
-     950             : /* EOF */
-     951           0 : /* EOF */
-     952           0 : /* EOF */
-     953           0 : /* EOF */
-     954             : /* EOF */
-     955           0 : /* EOF */
-     956           0 : /* EOF */
-     957           0 : /* EOF */
-     958             : /* EOF */
-     959           0 : /* EOF */
-     960           0 : /* EOF */
-     961           0 : /* EOF */
-     962             : /* EOF */
-     963           0 : /* EOF */
-     964           0 : /* EOF */
-     965           0 : /* EOF */
-     966             : /* EOF */
-     967           0 : /* EOF */
-     968             : /* EOF */
-     969             : /* EOF */
-     970           0 : /* EOF */
-     971             : /* EOF */
-     972             : /* EOF */
-     973           0 : /* EOF */
-     974             : /* EOF */
-     975           0 : /* EOF */
-     976           0 : /* EOF */
-     977           0 : /* EOF */
-     978             : /* EOF */
-     979           0 : /* EOF */
-     980           0 : /* EOF */
-     981           0 : /* EOF */
-     982             : /* EOF */
-     983             : /* EOF */
-     984           0 : /* EOF */
-     985           0 : /* EOF */
-     986           0 : /* EOF */
-     987           0 : /* EOF */
-     988           0 : /* EOF */
-     989           0 : /* EOF */
-     990           0 : /* EOF */
-     991           0 : /* EOF */
-     992             : /* EOF */
-     993           0 : /* EOF */
-     994             : /* EOF */
-     995             : /* EOF */
-     996           0 : /* EOF */
-     997             : /* EOF */
-     998             : /* EOF */
-     999           0 : /* EOF */
-    1000           0 : /* EOF */
-    1001           0 : /* EOF */
-    1002           0 : /* EOF */
-    1003           0 : /* EOF */
-    1004           0 : /* EOF */
-    1005           0 : /* EOF */
-    1006           0 : /* EOF */
-    1007             : /* EOF */
-    1008           0 : /* EOF */
-    1009           0 : /* EOF */
-    1010           0 : /* EOF */
-    1011             : /* EOF */
-    1012           0 : /* EOF */
-    1013           0 : /* EOF */
-    1014           0 : /* EOF */
-    1015           0 : /* EOF */
-    1016             : /* EOF */
-    1017           0 : /* EOF */
-    1018             : /* EOF */
-    1019           0 : /* EOF */
-    1020           0 : /* EOF */
-    1021           0 : /* EOF */
-    1022             : /* EOF */
-    1023           0 : /* EOF */
-    1024             : /* EOF */
-    1025           0 : /* EOF */
-    1026             : /* EOF */
-    1027           0 : /* EOF */
-    1028           0 : /* EOF */
-    1029           0 : /* EOF */
-    1030           0 : /* EOF */
-    1031           0 : /* EOF */
-    1032           0 : /* EOF */
-    1033           0 : /* EOF */
-    1034           0 : /* EOF */
-    1035             : /* EOF */
-    1036             : /* EOF */
-    1037             : /* EOF */
-    1038           0 : /* EOF */
-    1039           0 : /* EOF */
-    1040           0 : /* EOF */
-    1041             : /* EOF */
-    1042           0 : /* EOF */
-    1043           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/utils.cpp.func-sort-c.html b/html/DRAMSys/library/src/common/utils.cpp.func-sort-c.html deleted file mode 100644 index 0b7b1310..00000000 --- a/html/DRAMSys/library/src/common/utils.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - utils.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:305851.7 %
Date:2020-06-30 17:34:44Functions:81266.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12TimeInterval10intersectsES_0
_ZN12TimeInterval16timeIsInIntervalEN7sc_core7sc_timeE0
_ZN12TimeInterval9getLengthEv0
_GLOBAL__sub_I__ZN12TimeInterval16timeIsInIntervalEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_Z10setUpDummyRN3tlm19tlm_generic_payloadE4Rank4Bank136
_Z12getPhaseNameB5cxx11N3tlm9tlm_phaseE1849057
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/utils.cpp.func.html b/html/DRAMSys/library/src/common/utils.cpp.func.html deleted file mode 100644 index e86c3d63..00000000 --- a/html/DRAMSys/library/src/common/utils.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - utils.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:305851.7 %
Date:2020-06-30 17:34:44Functions:81266.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12TimeInterval16timeIsInIntervalEN7sc_core7sc_timeE30
_Z10setUpDummyRN3tlm19tlm_generic_payloadE4Rank4Bank136
_Z12getPhaseNameB5cxx11N3tlm9tlm_phaseE1849057
_Z41__static_initialization_and_destruction_0ii30
_ZN12TimeInterval10intersectsES_0
_ZN12TimeInterval16timeIsInIntervalEN7sc_core7sc_timeE0
_ZN12TimeInterval9getLengthEv0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/utils.cpp.gcov.html b/html/DRAMSys/library/src/common/utils.cpp.gcov.html deleted file mode 100644 index 6d8a3138..00000000 --- a/html/DRAMSys/library/src/common/utils.cpp.gcov.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - utils.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:305851.7 %
Date:2020-06-30 17:34:44Functions:81266.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49           0 : /* EOF */
-      50             : /* EOF */
-      51           0 : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-      55             : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60           0 : /* EOF */
-      61             : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64             : /* EOF */
-      65           0 : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68     1849057 : /* EOF */
-      69             : /* EOF */
-      70     3698114 : /* EOF */
-      71     1849057 : /* EOF */
-      72     3698114 : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75         330 : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80        1650 : /* EOF */
-      81         660 : /* EOF */
-      82             : /* EOF */
-      83           0 : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87           0 : /* EOF */
-      88             : /* EOF */
-      89           0 : /* EOF */
-      90             : /* EOF */
-      91           0 : /* EOF */
-      92             : /* EOF */
-      93           0 : /* EOF */
-      94             : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97             : /* EOF */
-      98           0 : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101           0 : /* EOF */
-     102           0 : /* EOF */
-     103             : /* EOF */
-     104        1275 : /* EOF */
-     105             : /* EOF */
-     106        1275 : /* EOF */
-     107             : /* EOF */
-     108        1275 : /* EOF */
-     109        1275 : /* EOF */
-     110             : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116             : /* EOF */
-     117         180 : /* EOF */
-     118             : /* EOF */
-     119         180 : /* EOF */
-     120             : /* EOF */
-     121         180 : /* EOF */
-     122         180 : /* EOF */
-     123             : /* EOF */
-     124           0 : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127           0 : /* EOF */
-     128           0 : /* EOF */
-     129             : /* EOF */
-     130          60 : /* EOF */
-     131             : /* EOF */
-     132          60 : /* EOF */
-     133             : /* EOF */
-     134          60 : /* EOF */
-     135          60 : /* EOF */
-     136             : /* EOF */
-     137           0 : /* EOF */
-     138             : /* EOF */
-     139             : /* EOF */
-     140           0 : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143         136 : /* EOF */
-     144             : /* EOF */
-     145         272 : /* EOF */
-     146         272 : /* EOF */
-     147         272 : /* EOF */
-     148         272 : /* EOF */
-     149         136 : /* EOF */
-     150         272 : /* EOF */
-     151         272 : /* EOF */
-     152         680 : /* EOF */
-     153         408 : /* EOF */
-     154         226 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/utils.h.func-sort-c.html b/html/DRAMSys/library/src/common/utils.h.func-sort-c.html deleted file mode 100644 index 76bdf6c9..00000000 --- a/html/DRAMSys/library/src/common/utils.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - utils.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3030100.0 %
Date:2020-06-30 17:34:44Functions:11100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZL7loadbarjjjj252938
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/utils.h.func.html b/html/DRAMSys/library/src/common/utils.h.func.html deleted file mode 100644 index afcbf08b..00000000 --- a/html/DRAMSys/library/src/common/utils.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - utils.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3030100.0 %
Date:2020-06-30 17:34:44Functions:11100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZL7loadbarjjjj252938
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/common/utils.h.gcov.html b/html/DRAMSys/library/src/common/utils.h.gcov.html deleted file mode 100644 index 1b5c8c5e..00000000 --- a/html/DRAMSys/library/src/common/utils.h.gcov.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/common/utils.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/common - utils.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3030100.0 %
Date:2020-06-30 17:34:44Functions:11100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53     8867403 : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57      764334 : /* EOF */
-      58     4291266 : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68      252938 : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73      252938 : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76        3204 : /* EOF */
-      77        3204 : /* EOF */
-      78        3204 : /* EOF */
-      79        9612 : /* EOF */
-      80       82551 : /* EOF */
-      81       79347 : /* EOF */
-      82             : /* EOF */
-      83        3204 : /* EOF */
-      84         150 : /* EOF */
-      85        3204 : /* EOF */
-      86         155 : /* EOF */
-      87        3204 : /* EOF */
-      88         239 : /* EOF */
-      89        3204 : /* EOF */
-      90        1036 : /* EOF */
-      91        3204 : /* EOF */
-      92         162 : /* EOF */
-      93        3204 : /* EOF */
-      94         157 : /* EOF */
-      95        3204 : /* EOF */
-      96         230 : /* EOF */
-      97        3204 : /* EOF */
-      98        1045 : /* EOF */
-      99             : /* EOF */
-     100      158562 : /* EOF */
-     101       77679 : /* EOF */
-     102        3204 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/Configuration.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/Configuration.cpp.func-sort-c.html deleted file mode 100644 index adfdf791..00000000 --- a/html/DRAMSys/library/src/configuration/Configuration.cpp.func-sort-c.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration - Configuration.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:15317587.4 %
Date:2020-06-30 17:34:44Functions:121392.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13Configuration15getDataBusWidthEv0
_GLOBAL__sub_I__ZN13Configuration10memspecUriB5cxx11E30
_Z15string2TimeUnitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13Configuration18setPathToResourcesENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_ZN13Configuration20getSimMemSizeInBytesEv37
_ZN13Configuration22adjustNumBytesAfterECCEj37
_ZN13Configuration16getBytesPerBurstEv2501
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/Configuration.cpp.func.html b/html/DRAMSys/library/src/configuration/Configuration.cpp.func.html deleted file mode 100644 index 81d65dff..00000000 --- a/html/DRAMSys/library/src/configuration/Configuration.cpp.func.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration - Configuration.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:15317587.4 %
Date:2020-06-30 17:34:44Functions:121392.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13Configuration10memspecUriB5cxx11E30
_Z15string2TimeUnitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13Configuration15getDataBusWidthEv0
_ZN13Configuration16getBytesPerBurstEv2501
_ZN13Configuration18setPathToResourcesENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_ZN13Configuration20getSimMemSizeInBytesEv37
_ZN13Configuration22adjustNumBytesAfterECCEj37
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/Configuration.cpp.gcov.html b/html/DRAMSys/library/src/configuration/Configuration.cpp.gcov.html deleted file mode 100644 index 6d70895d..00000000 --- a/html/DRAMSys/library/src/configuration/Configuration.cpp.gcov.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration - Configuration.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:15317587.4 %
Date:2020-06-30 17:34:44Functions:121392.3 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56          90 : /* EOF */
-      57          90 : /* EOF */
-      58             : /* EOF */
-      59          30 : /* EOF */
-      60             : /* EOF */
-      61          30 : /* EOF */
-      62             : /* EOF */
-      63          30 : /* EOF */
-      64             : /* EOF */
-      65          30 : /* EOF */
-      66             : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69           0 : /* EOF */
-      70             : /* EOF */
-      71           0 : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74           0 : /* EOF */
-      75             : /* EOF */
-      76           0 : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80        1110 : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83        1110 : /* EOF */
-      84          60 : /* EOF */
-      85        1080 : /* EOF */
-      86          60 : /* EOF */
-      87        1050 : /* EOF */
-      88          30 : /* EOF */
-      89        1020 : /* EOF */
-      90          60 : /* EOF */
-      91         990 : /* EOF */
-      92          60 : /* EOF */
-      93         960 : /* EOF */
-      94          60 : /* EOF */
-      95         930 : /* EOF */
-      96          30 : /* EOF */
-      97         900 : /* EOF */
-      98          30 : /* EOF */
-      99         870 : /* EOF */
-     100          30 : /* EOF */
-     101         840 : /* EOF */
-     102          60 : /* EOF */
-     103         810 : /* EOF */
-     104          30 : /* EOF */
-     105             : /* EOF */
-     106         780 : /* EOF */
-     107          60 : /* EOF */
-     108         750 : /* EOF */
-     109          30 : /* EOF */
-     110         720 : /* EOF */
-     111          30 : /* EOF */
-     112         690 : /* EOF */
-     113          30 : /* EOF */
-     114         660 : /* EOF */
-     115             : /* EOF */
-     116          30 : /* EOF */
-     117          30 : /* EOF */
-     118           0 : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122         630 : /* EOF */
-     123          30 : /* EOF */
-     124         600 : /* EOF */
-     125          30 : /* EOF */
-     126         570 : /* EOF */
-     127          30 : /* EOF */
-     128         540 : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133          30 : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136         510 : /* EOF */
-     137          30 : /* EOF */
-     138         480 : /* EOF */
-     139          30 : /* EOF */
-     140         450 : /* EOF */
-     141          60 : /* EOF */
-     142             : /* EOF */
-     143         420 : /* EOF */
-     144          30 : /* EOF */
-     145         390 : /* EOF */
-     146          60 : /* EOF */
-     147         360 : /* EOF */
-     148          60 : /* EOF */
-     149             : /* EOF */
-     150         330 : /* EOF */
-     151             : /* EOF */
-     152          30 : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155          60 : /* EOF */
-     156             : /* EOF */
-     157         300 : /* EOF */
-     158          30 : /* EOF */
-     159         270 : /* EOF */
-     160          30 : /* EOF */
-     161         240 : /* EOF */
-     162          60 : /* EOF */
-     163         210 : /* EOF */
-     164             : /* EOF */
-     165          60 : /* EOF */
-     166          30 : /* EOF */
-     167             : /* EOF */
-     168         180 : /* EOF */
-     169          60 : /* EOF */
-     170         150 : /* EOF */
-     171          30 : /* EOF */
-     172         120 : /* EOF */
-     173          30 : /* EOF */
-     174          90 : /* EOF */
-     175          30 : /* EOF */
-     176          60 : /* EOF */
-     177          30 : /* EOF */
-     178          30 : /* EOF */
-     179          30 : /* EOF */
-     180             : /* EOF */
-     181           0 : /* EOF */
-     182             : /* EOF */
-     183        1110 : /* EOF */
-     184             : /* EOF */
-     185          30 : /* EOF */
-     186             : /* EOF */
-     187          60 : /* EOF */
-     188         120 : /* EOF */
-     189          30 : /* EOF */
-     190             : /* EOF */
-     191             : /* EOF */
-     192          37 : /* EOF */
-     193             : /* EOF */
-     194             : /* EOF */
-     195         111 : /* EOF */
-     196          37 : /* EOF */
-     197          37 : /* EOF */
-     198          37 : /* EOF */
-     199          37 : /* EOF */
-     200          37 : /* EOF */
-     201          37 : /* EOF */
-     202          37 : /* EOF */
-     203             : /* EOF */
-     204          37 : /* EOF */
-     205             : /* EOF */
-     206          37 : /* EOF */
-     207             : /* EOF */
-     208          37 : /* EOF */
-     209             : /* EOF */
-     210          74 : /* EOF */
-     211         111 : /* EOF */
-     212         111 : /* EOF */
-     213         111 : /* EOF */
-     214         111 : /* EOF */
-     215         111 : /* EOF */
-     216         111 : /* EOF */
-     217         111 : /* EOF */
-     218         111 : /* EOF */
-     219         111 : /* EOF */
-     220         111 : /* EOF */
-     221         111 : /* EOF */
-     222         111 : /* EOF */
-     223          37 : /* EOF */
-     224             : /* EOF */
-     225             : /* EOF */
-     226          74 : /* EOF */
-     227             : /* EOF */
-     228             : /* EOF */
-     229             : /* EOF */
-     230             : /* EOF */
-     231             : /* EOF */
-     232             : /* EOF */
-     233           0 : /* EOF */
-     234             : /* EOF */
-     235        2501 : /* EOF */
-     236             : /* EOF */
-     237             : /* EOF */
-     238             : /* EOF */
-     239        2501 : /* EOF */
-     240             : /* EOF */
-     241        5002 : /* EOF */
-     242             : /* EOF */
-     243             : /* EOF */
-     244             : /* EOF */
-     245          37 : /* EOF */
-     246             : /* EOF */
-     247             : /* EOF */
-     248          74 : /* EOF */
-     249             : /* EOF */
-     250           0 : /* EOF */
-     251             : /* EOF */
-     252             : /* EOF */
-     253           0 : /* EOF */
-     254             : /* EOF */
-     255             : /* EOF */
-     256             : /* EOF */
-     257           0 : /* EOF */
-     258           0 : /* EOF */
-     259             : /* EOF */
-     260             : /* EOF */
-     261             : /* EOF */
-     262          30 : /* EOF */
-     263             : /* EOF */
-     264          90 : /* EOF */
-     265         600 : /* EOF */
-     266        1800 : /* EOF */
-     267          30 : /* EOF */
-     268             : /* EOF */
-     269          30 : /* EOF */
-     270             : /* EOF */
-     271          90 : /* EOF */
-     272         480 : /* EOF */
-     273        1320 : /* EOF */
-     274          30 : /* EOF */
-     275             : /* EOF */
-     276          30 : /* EOF */
-     277             : /* EOF */
-     278          30 : /* EOF */
-     279          90 : /* EOF */
-     280         480 : /* EOF */
-     281        1320 : /* EOF */
-     282          30 : /* EOF */
-     283             : /* EOF */
-     284          30 : /* EOF */
-     285             : /* EOF */
-     286          30 : /* EOF */
-     287          90 : /* EOF */
-     288          60 : /* EOF */
-     289             : /* EOF */
-     290          90 : /* EOF */
-     291             : /* EOF */
-     292          30 : /* EOF */
-     293           5 : /* EOF */
-     294          25 : /* EOF */
-     295           6 : /* EOF */
-     296          19 : /* EOF */
-     297          12 : /* EOF */
-     298           7 : /* EOF */
-     299           0 : /* EOF */
-     300           7 : /* EOF */
-     301           0 : /* EOF */
-     302           7 : /* EOF */
-     303           7 : /* EOF */
-     304           0 : /* EOF */
-     305           0 : /* EOF */
-     306           0 : /* EOF */
-     307           0 : /* EOF */
-     308           0 : /* EOF */
-     309           0 : /* EOF */
-     310             : /* EOF */
-     311           0 : /* EOF */
-     312         120 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/Configuration.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/Configuration.h.func-sort-c.html deleted file mode 100644 index f3ce2547..00000000 --- a/html/DRAMSys/library/src/configuration/Configuration.h.func-sort-c.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration - Configuration.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13ConfigurationC2Ev30
_ZN13ConfigurationD2Ev30
_ZN13Configuration11getInstanceEv2953377
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/Configuration.h.func.html b/html/DRAMSys/library/src/configuration/Configuration.h.func.html deleted file mode 100644 index 4fa5339d..00000000 --- a/html/DRAMSys/library/src/configuration/Configuration.h.func.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration - Configuration.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13Configuration11getInstanceEv2953377
_ZN13ConfigurationC2Ev30
_ZN13ConfigurationD2Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/Configuration.h.gcov.html b/html/DRAMSys/library/src/configuration/Configuration.h.gcov.html deleted file mode 100644 index 1df7a769..00000000 --- a/html/DRAMSys/library/src/configuration/Configuration.h.gcov.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/Configuration.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration - Configuration.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53         360 : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56     2953377 : /* EOF */
-      57             : /* EOF */
-      58     2953377 : /* EOF */
-      59     2953377 : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62         660 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func-sort-c.html deleted file mode 100644 index 54f82043..00000000 --- a/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/TemperatureSimConfig.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration - TemperatureSimConfig.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:202290.9 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN20TemperatureSimConfigD2Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func.html b/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func.html deleted file mode 100644 index 7e1f3dd2..00000000 --- a/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/TemperatureSimConfig.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration - TemperatureSimConfig.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:202290.9 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN20TemperatureSimConfigD2Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.gcov.html b/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.gcov.html deleted file mode 100644 index 13f43176..00000000 --- a/html/DRAMSys/library/src/configuration/TemperatureSimConfig.h.gcov.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/TemperatureSimConfig.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration - TemperatureSimConfig.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:202290.9 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47         420 : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55          60 : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76          30 : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80          30 : /* EOF */
-      81          60 : /* EOF */
-      82          90 : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85         120 : /* EOF */
-      86             : /* EOF */
-      87          60 : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90           0 : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96         390 : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99         240 : /* EOF */
-     100         240 : /* EOF */
-     101         120 : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106         240 : /* EOF */
-     107         120 : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110          60 : /* EOF */
-     111          30 : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115          30 : /* EOF */
-     116         120 : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121          30 : /* EOF */
-     122         120 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/index-sort-f.html b/html/DRAMSys/library/src/configuration/index-sort-f.html deleted file mode 100644 index 9e49af90..00000000 --- a/html/DRAMSys/library/src/configuration/index-sort-f.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/configurationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17820288.1 %
Date:2020-06-30 17:34:44Functions:171894.4 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Configuration.cpp -
87.4%87.4%
-
87.4 %153 / 17592.3 %12 / 13
TemperatureSimConfig.h -
90.9%90.9%
-
90.9 %20 / 22100.0 %2 / 2
Configuration.h -
100.0%
-
100.0 %5 / 5100.0 %3 / 3
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/index-sort-l.html b/html/DRAMSys/library/src/configuration/index-sort-l.html deleted file mode 100644 index a8bf346a..00000000 --- a/html/DRAMSys/library/src/configuration/index-sort-l.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/configurationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17820288.1 %
Date:2020-06-30 17:34:44Functions:171894.4 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Configuration.cpp -
87.4%87.4%
-
87.4 %153 / 17592.3 %12 / 13
TemperatureSimConfig.h -
90.9%90.9%
-
90.9 %20 / 22100.0 %2 / 2
Configuration.h -
100.0%
-
100.0 %5 / 5100.0 %3 / 3
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/index.html b/html/DRAMSys/library/src/configuration/index.html deleted file mode 100644 index 579f3385..00000000 --- a/html/DRAMSys/library/src/configuration/index.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/configurationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17820288.1 %
Date:2020-06-30 17:34:44Functions:171894.4 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Configuration.cpp -
87.4%87.4%
-
87.4 %153 / 17592.3 %12 / 13
Configuration.h -
100.0%
-
100.0 %5 / 5100.0 %3 / 3
TemperatureSimConfig.h -
90.9%90.9%
-
90.9 %20 / 22100.0 %2 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func-sort-c.html deleted file mode 100644 index 96f6e118..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1717100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7MemSpecC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEEjjjjjjjj30
_Z41__static_initialization_and_destruction_0ii30
_ZN7MemSpecC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEEjjjjjjjj30
_ZNK7MemSpec16getCommandLengthE7Command192026
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func.html deleted file mode 100644 index bdef0067..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1717100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7MemSpecC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEEjjjjjjjj30
_Z41__static_initialization_and_destruction_0ii30
_ZN7MemSpecC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEEjjjjjjjj30
_ZNK7MemSpec16getCommandLengthE7Command192026
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.gcov.html deleted file mode 100644 index ddb35233..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpec.cpp.gcov.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1717100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46          30 : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50          30 : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59          90 : /* EOF */
-      60          90 : /* EOF */
-      61          90 : /* EOF */
-      62          90 : /* EOF */
-      63          90 : /* EOF */
-      64          90 : /* EOF */
-      65          30 : /* EOF */
-      66          30 : /* EOF */
-      67          30 : /* EOF */
-      68         570 : /* EOF */
-      69             : /* EOF */
-      70         120 : /* EOF */
-      71          30 : /* EOF */
-      72             : /* EOF */
-      73      192026 : /* EOF */
-      74             : /* EOF */
-      75      576078 : /* EOF */
-      76          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func-sort-c.html deleted file mode 100644 index ffd065f5..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN7MemSpecD0Ev0
_ZN7MemSpecD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func.html deleted file mode 100644 index c8e07b2a..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN7MemSpecD0Ev0
_ZN7MemSpecD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.gcov.html deleted file mode 100644 index 24133ec6..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpec.h.gcov.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpec.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpec.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func-sort-c.html deleted file mode 100644 index 642382c3..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:697690.8 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZNK11MemSpecDDR320getRefreshIntervalPBEv0
_ZN11MemSpecDDR3C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE5
_GLOBAL__sub_I__ZN11MemSpecDDR3C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK11MemSpecDDR320getRefreshIntervalABEv160
_ZNK11MemSpecDDR316getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE2200
_ZNK11MemSpecDDR323getIntervalOnDataStrobeE7Command2660
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func.html deleted file mode 100644 index 567f8fd6..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:697690.8 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11MemSpecDDR3C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN11MemSpecDDR3C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE5
_ZNK11MemSpecDDR316getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE2200
_ZNK11MemSpecDDR320getRefreshIntervalABEv160
_ZNK11MemSpecDDR320getRefreshIntervalPBEv0
_ZNK11MemSpecDDR323getIntervalOnDataStrobeE7Command2660
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.gcov.html deleted file mode 100644 index 257c3f1d..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp.gcov.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:697690.8 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41           5 : /* EOF */
-      42             : /* EOF */
-      43           5 : /* EOF */
-      44           5 : /* EOF */
-      45           5 : /* EOF */
-      46             : /* EOF */
-      47           5 : /* EOF */
-      48          20 : /* EOF */
-      49          20 : /* EOF */
-      50           5 : /* EOF */
-      51           5 : /* EOF */
-      52          15 : /* EOF */
-      53             : /* EOF */
-      54          15 : /* EOF */
-      55          15 : /* EOF */
-      56          15 : /* EOF */
-      57          15 : /* EOF */
-      58          15 : /* EOF */
-      59          15 : /* EOF */
-      60          15 : /* EOF */
-      61          15 : /* EOF */
-      62          15 : /* EOF */
-      63          15 : /* EOF */
-      64          15 : /* EOF */
-      65          15 : /* EOF */
-      66          15 : /* EOF */
-      67          15 : /* EOF */
-      68          15 : /* EOF */
-      69          15 : /* EOF */
-      70          15 : /* EOF */
-      71          15 : /* EOF */
-      72          15 : /* EOF */
-      73          15 : /* EOF */
-      74          15 : /* EOF */
-      75          15 : /* EOF */
-      76          15 : /* EOF */
-      77          15 : /* EOF */
-      78          15 : /* EOF */
-      79          15 : /* EOF */
-      80          15 : /* EOF */
-      81          15 : /* EOF */
-      82          15 : /* EOF */
-      83          15 : /* EOF */
-      84          15 : /* EOF */
-      85          15 : /* EOF */
-      86          15 : /* EOF */
-      87          15 : /* EOF */
-      88          15 : /* EOF */
-      89          15 : /* EOF */
-      90         470 : /* EOF */
-      91           5 : /* EOF */
-      92             : /* EOF */
-      93         160 : /* EOF */
-      94             : /* EOF */
-      95         320 : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98           0 : /* EOF */
-      99             : /* EOF */
-     100           0 : /* EOF */
-     101           0 : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105        2200 : /* EOF */
-     106             : /* EOF */
-     107        2200 : /* EOF */
-     108         350 : /* EOF */
-     109        1850 : /* EOF */
-     110         500 : /* EOF */
-     111        1350 : /* EOF */
-     112         320 : /* EOF */
-     113        1030 : /* EOF */
-     114           0 : /* EOF */
-     115        1030 : /* EOF */
-     116        1010 : /* EOF */
-     117          20 : /* EOF */
-     118           0 : /* EOF */
-     119          20 : /* EOF */
-     120          20 : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123           0 : /* EOF */
-     124             : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129        2660 : /* EOF */
-     130             : /* EOF */
-     131        2660 : /* EOF */
-     132        3200 : /* EOF */
-     133        2020 : /* EOF */
-     134       10100 : /* EOF */
-     135             : /* EOF */
-     136             : /* EOF */
-     137           0 : /* EOF */
-     138             : /* EOF */
-     139             : /* EOF */
-     140          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func-sort-c.html deleted file mode 100644 index 0869a838..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecDDR3D0Ev0
_ZN11MemSpecDDR3D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func.html deleted file mode 100644 index a77d6429..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecDDR3D0Ev0
_ZN11MemSpecDDR3D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.gcov.html deleted file mode 100644 index 08775fcd..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR3.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func-sort-c.html deleted file mode 100644 index de51e881..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func-sort-c.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:859391.4 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZNK11MemSpecDDR420getRefreshIntervalPBEv0
_GLOBAL__sub_I__ZN11MemSpecDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK11MemSpecDDR420getRefreshIntervalABEv1548
_ZNK11MemSpecDDR416getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE166614
_ZNK11MemSpecDDR423getIntervalOnDataStrobeE7Command205824
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func.html deleted file mode 100644 index 07fc3645..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.func.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:859391.4 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11MemSpecDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK11MemSpecDDR416getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE166614
_ZNK11MemSpecDDR420getRefreshIntervalABEv1548
_ZNK11MemSpecDDR420getRefreshIntervalPBEv0
_ZNK11MemSpecDDR423getIntervalOnDataStrobeE7Command205824
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.gcov.html deleted file mode 100644 index c5ba1f9b..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp.gcov.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:859391.4 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           6 : /* EOF */
-      43             : /* EOF */
-      44           6 : /* EOF */
-      45           6 : /* EOF */
-      46           6 : /* EOF */
-      47           6 : /* EOF */
-      48          24 : /* EOF */
-      49          24 : /* EOF */
-      50          24 : /* EOF */
-      51          24 : /* EOF */
-      52          24 : /* EOF */
-      53          24 : /* EOF */
-      54           6 : /* EOF */
-      55          18 : /* EOF */
-      56             : /* EOF */
-      57          18 : /* EOF */
-      58          18 : /* EOF */
-      59          18 : /* EOF */
-      60          18 : /* EOF */
-      61          18 : /* EOF */
-      62          18 : /* EOF */
-      63          18 : /* EOF */
-      64          18 : /* EOF */
-      65          18 : /* EOF */
-      66          18 : /* EOF */
-      67          18 : /* EOF */
-      68          18 : /* EOF */
-      69          18 : /* EOF */
-      70          18 : /* EOF */
-      71           6 : /* EOF */
-      72          24 : /* EOF */
-      73           0 : /* EOF */
-      74          12 : /* EOF */
-      75          12 : /* EOF */
-      76           6 : /* EOF */
-      77          24 : /* EOF */
-      78           0 : /* EOF */
-      79          12 : /* EOF */
-      80          12 : /* EOF */
-      81          18 : /* EOF */
-      82          18 : /* EOF */
-      83          18 : /* EOF */
-      84          18 : /* EOF */
-      85          18 : /* EOF */
-      86          18 : /* EOF */
-      87          18 : /* EOF */
-      88          18 : /* EOF */
-      89          18 : /* EOF */
-      90          18 : /* EOF */
-      91          18 : /* EOF */
-      92          18 : /* EOF */
-      93          18 : /* EOF */
-      94          18 : /* EOF */
-      95          18 : /* EOF */
-      96          18 : /* EOF */
-      97          18 : /* EOF */
-      98          18 : /* EOF */
-      99          18 : /* EOF */
-     100          18 : /* EOF */
-     101          18 : /* EOF */
-     102          18 : /* EOF */
-     103          18 : /* EOF */
-     104          18 : /* EOF */
-     105          18 : /* EOF */
-     106          18 : /* EOF */
-     107         618 : /* EOF */
-     108           6 : /* EOF */
-     109             : /* EOF */
-     110        1548 : /* EOF */
-     111             : /* EOF */
-     112        3096 : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115           0 : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122      166614 : /* EOF */
-     123             : /* EOF */
-     124      166614 : /* EOF */
-     125          48 : /* EOF */
-     126      166566 : /* EOF */
-     127       63552 : /* EOF */
-     128      103014 : /* EOF */
-     129           0 : /* EOF */
-     130      103014 : /* EOF */
-     131       60528 : /* EOF */
-     132       42486 : /* EOF */
-     133       39360 : /* EOF */
-     134        3126 : /* EOF */
-     135       12096 : /* EOF */
-     136         102 : /* EOF */
-     137         102 : /* EOF */
-     138             : /* EOF */
-     139             : /* EOF */
-     140           0 : /* EOF */
-     141             : /* EOF */
-     142             : /* EOF */
-     143             : /* EOF */
-     144             : /* EOF */
-     145             : /* EOF */
-     146      205824 : /* EOF */
-     147             : /* EOF */
-     148      205824 : /* EOF */
-     149      605280 : /* EOF */
-     150       84768 : /* EOF */
-     151      423840 : /* EOF */
-     152             : /* EOF */
-     153             : /* EOF */
-     154           0 : /* EOF */
-     155             : /* EOF */
-     156             : /* EOF */
-     157          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func-sort-c.html deleted file mode 100644 index 8ec9d42b..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecDDR4D0Ev0
_ZN11MemSpecDDR4D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func.html deleted file mode 100644 index 731c9854..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecDDR4D0Ev0
_ZN11MemSpecDDR4D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.gcov.html deleted file mode 100644 index 86f62152..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecDDR4.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func-sort-c.html deleted file mode 100644 index 704acc9d..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR5C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK12MemSpecGDDR516getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK12MemSpecGDDR520getRefreshIntervalABEv0
_ZNK12MemSpecGDDR520getRefreshIntervalPBEv0
_ZNK12MemSpecGDDR523getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN12MemSpecGDDR5C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func.html deleted file mode 100644 index b48720c7..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12MemSpecGDDR5C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN12MemSpecGDDR5C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK12MemSpecGDDR516getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK12MemSpecGDDR520getRefreshIntervalABEv0
_ZNK12MemSpecGDDR520getRefreshIntervalPBEv0
_ZNK12MemSpecGDDR523getIntervalOnDataStrobeE7Command0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.gcov.html deleted file mode 100644 index 2161c215..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp.gcov.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41           0 : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51           0 : /* EOF */
-      52           0 : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67           0 : /* EOF */
-      68           0 : /* EOF */
-      69           0 : /* EOF */
-      70           0 : /* EOF */
-      71           0 : /* EOF */
-      72           0 : /* EOF */
-      73           0 : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81           0 : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85           0 : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89             : /* EOF */
-      90           0 : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95           0 : /* EOF */
-      96             : /* EOF */
-      97           0 : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100           0 : /* EOF */
-     101             : /* EOF */
-     102           0 : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105             : /* EOF */
-     106           0 : /* EOF */
-     107           0 : /* EOF */
-     108             : /* EOF */
-     109           0 : /* EOF */
-     110             : /* EOF */
-     111           0 : /* EOF */
-     112           0 : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125           0 : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131           0 : /* EOF */
-     132             : /* EOF */
-     133           0 : /* EOF */
-     134           0 : /* EOF */
-     135           0 : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139             : /* EOF */
-     140             : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143             : /* EOF */
-     144          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func-sort-c.html deleted file mode 100644 index 87f6ee55..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR5D0Ev0
_ZN12MemSpecGDDR5D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func.html deleted file mode 100644 index 2d75933b..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR5D0Ev0
_ZN12MemSpecGDDR5D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.gcov.html deleted file mode 100644 index 64a14179..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func-sort-c.html deleted file mode 100644 index ba0be62c..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecGDDR5XC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK13MemSpecGDDR5X16getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK13MemSpecGDDR5X20getRefreshIntervalABEv0
_ZNK13MemSpecGDDR5X20getRefreshIntervalPBEv0
_ZNK13MemSpecGDDR5X23getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN13MemSpecGDDR5XC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func.html deleted file mode 100644 index e8776338..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13MemSpecGDDR5XC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemSpecGDDR5XC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK13MemSpecGDDR5X16getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK13MemSpecGDDR5X20getRefreshIntervalABEv0
_ZNK13MemSpecGDDR5X20getRefreshIntervalPBEv0
_ZNK13MemSpecGDDR5X23getIntervalOnDataStrobeE7Command0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.gcov.html deleted file mode 100644 index 0f275061..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp.gcov.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1791.3 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41           0 : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51           0 : /* EOF */
-      52           0 : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67           0 : /* EOF */
-      68           0 : /* EOF */
-      69           0 : /* EOF */
-      70           0 : /* EOF */
-      71           0 : /* EOF */
-      72           0 : /* EOF */
-      73           0 : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81           0 : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85           0 : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89             : /* EOF */
-      90           0 : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95           0 : /* EOF */
-      96             : /* EOF */
-      97           0 : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100           0 : /* EOF */
-     101             : /* EOF */
-     102           0 : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105             : /* EOF */
-     106           0 : /* EOF */
-     107           0 : /* EOF */
-     108             : /* EOF */
-     109           0 : /* EOF */
-     110             : /* EOF */
-     111           0 : /* EOF */
-     112           0 : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125           0 : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131           0 : /* EOF */
-     132             : /* EOF */
-     133           0 : /* EOF */
-     134           0 : /* EOF */
-     135           0 : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139             : /* EOF */
-     140             : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143             : /* EOF */
-     144          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func-sort-c.html deleted file mode 100644 index 323eefc7..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecGDDR5XD0Ev0
_ZN13MemSpecGDDR5XD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func.html deleted file mode 100644 index 53349eed..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecGDDR5XD0Ev0
_ZN13MemSpecGDDR5XD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.gcov.html deleted file mode 100644 index 74587f73..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR5X.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func-sort-c.html deleted file mode 100644 index 4b91e552..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1811.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR6C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK12MemSpecGDDR616getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK12MemSpecGDDR620getRefreshIntervalABEv0
_ZNK12MemSpecGDDR620getRefreshIntervalPBEv0
_ZNK12MemSpecGDDR623getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN12MemSpecGDDR6C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func.html deleted file mode 100644 index 18bd0174..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1811.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12MemSpecGDDR6C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN12MemSpecGDDR6C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK12MemSpecGDDR616getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK12MemSpecGDDR620getRefreshIntervalABEv0
_ZNK12MemSpecGDDR620getRefreshIntervalPBEv0
_ZNK12MemSpecGDDR623getIntervalOnDataStrobeE7Command0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.gcov.html deleted file mode 100644 index f9875199..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp.gcov.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1811.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41           0 : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51           0 : /* EOF */
-      52           0 : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67           0 : /* EOF */
-      68           0 : /* EOF */
-      69           0 : /* EOF */
-      70           0 : /* EOF */
-      71           0 : /* EOF */
-      72           0 : /* EOF */
-      73           0 : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81           0 : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85           0 : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89           0 : /* EOF */
-      90           0 : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94           0 : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97           0 : /* EOF */
-      98             : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102           0 : /* EOF */
-     103             : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107             : /* EOF */
-     108           0 : /* EOF */
-     109           0 : /* EOF */
-     110             : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124           0 : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127           0 : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133           0 : /* EOF */
-     134             : /* EOF */
-     135           0 : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140           0 : /* EOF */
-     141             : /* EOF */
-     142             : /* EOF */
-     143           0 : /* EOF */
-     144             : /* EOF */
-     145             : /* EOF */
-     146          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func-sort-c.html deleted file mode 100644 index 20d10572..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR6D0Ev0
_ZN12MemSpecGDDR6D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func.html deleted file mode 100644 index 22063825..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12MemSpecGDDR6D0Ev0
_ZN12MemSpecGDDR6D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.gcov.html deleted file mode 100644 index 163bfb6c..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecGDDR6.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func-sort-c.html deleted file mode 100644 index 3c3cfaaa..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:657389.0 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZNK11MemSpecHBM220getRefreshIntervalPBEv0
_ZN11MemSpecHBM2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE7
_GLOBAL__sub_I__ZN11MemSpecHBM2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK11MemSpecHBM220getRefreshIntervalABEv2562
_ZNK11MemSpecHBM223getIntervalOnDataStrobeE7Command57344
_ZNK11MemSpecHBM216getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE58380
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func.html deleted file mode 100644 index 2d064c06..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:657389.0 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11MemSpecHBM2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN11MemSpecHBM2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE7
_ZNK11MemSpecHBM216getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE58380
_ZNK11MemSpecHBM220getRefreshIntervalABEv2562
_ZNK11MemSpecHBM220getRefreshIntervalPBEv0
_ZNK11MemSpecHBM223getIntervalOnDataStrobeE7Command57344
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.gcov.html deleted file mode 100644 index 7ba0bf36..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp.gcov.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:657389.0 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41           7 : /* EOF */
-      42             : /* EOF */
-      43           7 : /* EOF */
-      44           7 : /* EOF */
-      45           7 : /* EOF */
-      46           7 : /* EOF */
-      47          28 : /* EOF */
-      48          28 : /* EOF */
-      49          28 : /* EOF */
-      50          28 : /* EOF */
-      51          21 : /* EOF */
-      52          28 : /* EOF */
-      53             : /* EOF */
-      54          21 : /* EOF */
-      55          21 : /* EOF */
-      56          21 : /* EOF */
-      57          21 : /* EOF */
-      58          21 : /* EOF */
-      59          21 : /* EOF */
-      60          21 : /* EOF */
-      61          21 : /* EOF */
-      62          21 : /* EOF */
-      63          21 : /* EOF */
-      64          21 : /* EOF */
-      65          21 : /* EOF */
-      66          21 : /* EOF */
-      67          21 : /* EOF */
-      68          21 : /* EOF */
-      69          21 : /* EOF */
-      70          21 : /* EOF */
-      71          21 : /* EOF */
-      72          21 : /* EOF */
-      73          21 : /* EOF */
-      74          21 : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77          21 : /* EOF */
-      78          21 : /* EOF */
-      79          21 : /* EOF */
-      80          21 : /* EOF */
-      81          21 : /* EOF */
-      82         560 : /* EOF */
-      83             : /* EOF */
-      84           7 : /* EOF */
-      85           7 : /* EOF */
-      86             : /* EOF */
-      87        2562 : /* EOF */
-      88             : /* EOF */
-      89        5124 : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94           0 : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97       58380 : /* EOF */
-      98             : /* EOF */
-      99       58380 : /* EOF */
-     100         154 : /* EOF */
-     101       58226 : /* EOF */
-     102             : /* EOF */
-     103       29400 : /* EOF */
-     104       14441 : /* EOF */
-     105             : /* EOF */
-     106       14959 : /* EOF */
-     107             : /* EOF */
-     108       28826 : /* EOF */
-     109           0 : /* EOF */
-     110       28826 : /* EOF */
-     111       14336 : /* EOF */
-     112       14490 : /* EOF */
-     113           0 : /* EOF */
-     114       14490 : /* EOF */
-     115       57344 : /* EOF */
-     116         154 : /* EOF */
-     117         154 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128       57344 : /* EOF */
-     129             : /* EOF */
-     130       57344 : /* EOF */
-     131       86016 : /* EOF */
-     132      143360 : /* EOF */
-     133       28672 : /* EOF */
-     134       57344 : /* EOF */
-     135      114688 : /* EOF */
-     136             : /* EOF */
-     137             : /* EOF */
-     138           0 : /* EOF */
-     139             : /* EOF */
-     140             : /* EOF */
-     141          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func-sort-c.html deleted file mode 100644 index 5472fda5..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecHBM2D0Ev0
_ZN11MemSpecHBM2D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func.html deleted file mode 100644 index d05a479e..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11MemSpecHBM2D0Ev0
_ZN11MemSpecHBM2D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.gcov.html deleted file mode 100644 index 903c97b4..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecHBM2.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func-sort-c.html deleted file mode 100644 index e003ae0e..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:788492.9 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZNK13MemSpecLPDDR420getRefreshIntervalABEv0
_ZN13MemSpecLPDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE12
_GLOBAL__sub_I__ZN13MemSpecLPDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZNK13MemSpecLPDDR420getRefreshIntervalPBEv91668
_ZNK13MemSpecLPDDR416getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE191436
_ZNK13MemSpecLPDDR423getIntervalOnDataStrobeE7Command240048
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func.html deleted file mode 100644 index 8062f9dd..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:788492.9 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13MemSpecLPDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemSpecLPDDR4C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE12
_ZNK13MemSpecLPDDR416getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE191436
_ZNK13MemSpecLPDDR420getRefreshIntervalABEv0
_ZNK13MemSpecLPDDR420getRefreshIntervalPBEv91668
_ZNK13MemSpecLPDDR423getIntervalOnDataStrobeE7Command240048
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.gcov.html deleted file mode 100644 index 85520012..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp.gcov.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:788492.9 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41          12 : /* EOF */
-      42             : /* EOF */
-      43          12 : /* EOF */
-      44          12 : /* EOF */
-      45          12 : /* EOF */
-      46             : /* EOF */
-      47          12 : /* EOF */
-      48          48 : /* EOF */
-      49          48 : /* EOF */
-      50          12 : /* EOF */
-      51             : /* EOF */
-      52          36 : /* EOF */
-      53          36 : /* EOF */
-      54          36 : /* EOF */
-      55          36 : /* EOF */
-      56          36 : /* EOF */
-      57          36 : /* EOF */
-      58          36 : /* EOF */
-      59          36 : /* EOF */
-      60          36 : /* EOF */
-      61          36 : /* EOF */
-      62          36 : /* EOF */
-      63          36 : /* EOF */
-      64          36 : /* EOF */
-      65          36 : /* EOF */
-      66          36 : /* EOF */
-      67          36 : /* EOF */
-      68          36 : /* EOF */
-      69          36 : /* EOF */
-      70          36 : /* EOF */
-      71          36 : /* EOF */
-      72          36 : /* EOF */
-      73          36 : /* EOF */
-      74          36 : /* EOF */
-      75          36 : /* EOF */
-      76          36 : /* EOF */
-      77          36 : /* EOF */
-      78          36 : /* EOF */
-      79          36 : /* EOF */
-      80          36 : /* EOF */
-      81          36 : /* EOF */
-      82        1032 : /* EOF */
-      83             : /* EOF */
-      84          12 : /* EOF */
-      85          12 : /* EOF */
-      86          12 : /* EOF */
-      87          12 : /* EOF */
-      88          12 : /* EOF */
-      89          12 : /* EOF */
-      90          12 : /* EOF */
-      91          12 : /* EOF */
-      92          12 : /* EOF */
-      93          12 : /* EOF */
-      94          12 : /* EOF */
-      95          12 : /* EOF */
-      96             : /* EOF */
-      97           0 : /* EOF */
-      98             : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102       91668 : /* EOF */
-     103             : /* EOF */
-     104      183336 : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107      191436 : /* EOF */
-     108             : /* EOF */
-     109      191436 : /* EOF */
-     110        2160 : /* EOF */
-     111      189276 : /* EOF */
-     112           0 : /* EOF */
-     113      189276 : /* EOF */
-     114      203256 : /* EOF */
-     115      121524 : /* EOF */
-     116       10620 : /* EOF */
-     117      119400 : /* EOF */
-     118      322380 : /* EOF */
-     119       54924 : /* EOF */
-     120      314208 : /* EOF */
-     121        2556 : /* EOF */
-     122        6336 : /* EOF */
-     123        1500 : /* EOF */
-     124           0 : /* EOF */
-     125        1500 : /* EOF */
-     126        1500 : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129           0 : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135      240048 : /* EOF */
-     136             : /* EOF */
-     137      240048 : /* EOF */
-     138      666000 : /* EOF */
-     139      932400 : /* EOF */
-     140      106848 : /* EOF */
-     141      641088 : /* EOF */
-     142      854784 : /* EOF */
-     143             : /* EOF */
-     144             : /* EOF */
-     145           0 : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func-sort-c.html deleted file mode 100644 index 6dca86b9..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecLPDDR4D0Ev0
_ZN13MemSpecLPDDR4D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func.html deleted file mode 100644 index 5a063331..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecLPDDR4D0Ev0
_ZN13MemSpecLPDDR4D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.gcov.html deleted file mode 100644 index 547f5192..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func-sort-c.html deleted file mode 100644 index b5fa02ec..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1841.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecWideIOC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK13MemSpecWideIO16getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK13MemSpecWideIO20getRefreshIntervalABEv0
_ZNK13MemSpecWideIO20getRefreshIntervalPBEv0
_ZNK13MemSpecWideIO23getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN13MemSpecWideIOC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func.html deleted file mode 100644 index 9901d05a..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1841.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13MemSpecWideIOC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemSpecWideIOC2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK13MemSpecWideIO16getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK13MemSpecWideIO20getRefreshIntervalABEv0
_ZNK13MemSpecWideIO20getRefreshIntervalPBEv0
_ZNK13MemSpecWideIO23getIntervalOnDataStrobeE7Command0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.gcov.html deleted file mode 100644 index fba58cee..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp.gcov.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1841.2 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41           0 : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67           0 : /* EOF */
-      68           0 : /* EOF */
-      69           0 : /* EOF */
-      70           0 : /* EOF */
-      71           0 : /* EOF */
-      72           0 : /* EOF */
-      73           0 : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81           0 : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85           0 : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89           0 : /* EOF */
-      90           0 : /* EOF */
-      91           0 : /* EOF */
-      92           0 : /* EOF */
-      93           0 : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97           0 : /* EOF */
-      98             : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101           0 : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104           0 : /* EOF */
-     105             : /* EOF */
-     106           0 : /* EOF */
-     107           0 : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129           0 : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135           0 : /* EOF */
-     136             : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140           0 : /* EOF */
-     141           0 : /* EOF */
-     142           0 : /* EOF */
-     143             : /* EOF */
-     144             : /* EOF */
-     145           0 : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func-sort-c.html deleted file mode 100644 index a98a19ec..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecWideIOD0Ev0
_ZN13MemSpecWideIOD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func.html deleted file mode 100644 index 20623ddd..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemSpecWideIOD0Ev0
_ZN13MemSpecWideIOD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.gcov.html deleted file mode 100644 index 7af8c24f..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func-sort-c.html deleted file mode 100644 index 8ae783de..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1691.4 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN14MemSpecWideIO2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK14MemSpecWideIO216getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK14MemSpecWideIO220getRefreshIntervalABEv0
_ZNK14MemSpecWideIO220getRefreshIntervalPBEv0
_ZNK14MemSpecWideIO223getIntervalOnDataStrobeE7Command0
_GLOBAL__sub_I__ZN14MemSpecWideIO2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func.html deleted file mode 100644 index d6ebdf32..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1691.4 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN14MemSpecWideIO2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN14MemSpecWideIO2C2ERN8nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerEEE0
_ZNK14MemSpecWideIO216getExecutionTimeE7CommandRKN3tlm19tlm_generic_payloadE0
_ZNK14MemSpecWideIO220getRefreshIntervalABEv0
_ZNK14MemSpecWideIO220getRefreshIntervalPBEv0
_ZNK14MemSpecWideIO223getIntervalOnDataStrobeE7Command0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.gcov.html deleted file mode 100644 index 28f02c89..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp.gcov.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1691.4 %
Date:2020-06-30 17:34:44Functions:2728.6 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41           0 : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67           0 : /* EOF */
-      68           0 : /* EOF */
-      69           0 : /* EOF */
-      70           0 : /* EOF */
-      71           0 : /* EOF */
-      72           0 : /* EOF */
-      73           0 : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80             : /* EOF */
-      81           0 : /* EOF */
-      82             : /* EOF */
-      83           0 : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86           0 : /* EOF */
-      87             : /* EOF */
-      88           0 : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97           0 : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100           0 : /* EOF */
-     101           0 : /* EOF */
-     102           0 : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107           0 : /* EOF */
-     108           0 : /* EOF */
-     109           0 : /* EOF */
-     110           0 : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114           0 : /* EOF */
-     115             : /* EOF */
-     116             : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120           0 : /* EOF */
-     121             : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127           0 : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130           0 : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func-sort-c.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func-sort-c.html deleted file mode 100644 index 8334a6e8..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN14MemSpecWideIO2D0Ev0
_ZN14MemSpecWideIO2D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func.html deleted file mode 100644 index 86fbf3aa..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN14MemSpecWideIO2D0Ev0
_ZN14MemSpecWideIO2D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.gcov.html b/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.gcov.html deleted file mode 100644 index 6190b79b..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/configuration/memspec - MemSpecWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/index-sort-f.html b/html/DRAMSys/library/src/configuration/memspec/index-sort-f.html deleted file mode 100644 index cd1f2b8f..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/index-sort-f.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/configuration/memspecHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:31974542.8 %
Date:2020-06-30 17:34:44Functions:388743.7 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
MemSpecDDR3.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecLPDDR4.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecHBM2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5X.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpec.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR6.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecDDR4.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.cpp -
1.2%1.2%
-
1.2 %1 / 8428.6 %2 / 7
MemSpecWideIO2.cpp -
1.4%1.4%
-
1.4 %1 / 6928.6 %2 / 7
MemSpecGDDR6.cpp -
1.2%1.2%
-
1.2 %1 / 8128.6 %2 / 7
MemSpecGDDR5.cpp -
1.3%1.3%
-
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR5X.cpp -
1.3%1.3%
-
1.3 %1 / 7928.6 %2 / 7
MemSpecDDR3.cpp -
90.8%90.8%
-
90.8 %69 / 7685.7 %6 / 7
MemSpecDDR4.cpp -
91.4%91.4%
-
91.4 %85 / 9385.7 %6 / 7
MemSpecLPDDR4.cpp -
92.9%92.9%
-
92.9 %78 / 8485.7 %6 / 7
MemSpecHBM2.cpp -
89.0%89.0%
-
89.0 %65 / 7385.7 %6 / 7
MemSpec.cpp -
100.0%
-
100.0 %17 / 17100.0 %4 / 4
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/index-sort-l.html b/html/DRAMSys/library/src/configuration/memspec/index-sort-l.html deleted file mode 100644 index 1588841f..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/index-sort-l.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/configuration/memspecHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:31974542.8 %
Date:2020-06-30 17:34:44Functions:388743.7 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
MemSpecDDR3.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecLPDDR4.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecHBM2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5X.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpec.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR6.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecDDR4.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.cpp -
1.2%1.2%
-
1.2 %1 / 8428.6 %2 / 7
MemSpecGDDR5.cpp -
1.3%1.3%
-
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR5X.cpp -
1.3%1.3%
-
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR6.cpp -
1.2%1.2%
-
1.2 %1 / 8128.6 %2 / 7
MemSpecWideIO2.cpp -
1.4%1.4%
-
1.4 %1 / 6928.6 %2 / 7
MemSpecHBM2.cpp -
89.0%89.0%
-
89.0 %65 / 7385.7 %6 / 7
MemSpecDDR3.cpp -
90.8%90.8%
-
90.8 %69 / 7685.7 %6 / 7
MemSpecDDR4.cpp -
91.4%91.4%
-
91.4 %85 / 9385.7 %6 / 7
MemSpecLPDDR4.cpp -
92.9%92.9%
-
92.9 %78 / 8485.7 %6 / 7
MemSpec.cpp -
100.0%
-
100.0 %17 / 17100.0 %4 / 4
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/configuration/memspec/index.html b/html/DRAMSys/library/src/configuration/memspec/index.html deleted file mode 100644 index 561d4bd6..00000000 --- a/html/DRAMSys/library/src/configuration/memspec/index.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/configuration/memspec - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/configuration/memspecHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:31974542.8 %
Date:2020-06-30 17:34:44Functions:388743.7 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
MemSpec.cpp -
100.0%
-
100.0 %17 / 17100.0 %4 / 4
MemSpec.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecDDR3.cpp -
90.8%90.8%
-
90.8 %69 / 7685.7 %6 / 7
MemSpecDDR3.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecDDR4.cpp -
91.4%91.4%
-
91.4 %85 / 9385.7 %6 / 7
MemSpecDDR4.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5.cpp -
1.3%1.3%
-
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR5.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR5X.cpp -
1.3%1.3%
-
1.3 %1 / 7928.6 %2 / 7
MemSpecGDDR5X.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecGDDR6.cpp -
1.2%1.2%
-
1.2 %1 / 8128.6 %2 / 7
MemSpecGDDR6.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecHBM2.cpp -
89.0%89.0%
-
89.0 %65 / 7385.7 %6 / 7
MemSpecHBM2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecLPDDR4.cpp -
92.9%92.9%
-
92.9 %78 / 8485.7 %6 / 7
MemSpecLPDDR4.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO.cpp -
1.2%1.2%
-
1.2 %1 / 8428.6 %2 / 7
MemSpecWideIO.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
MemSpecWideIO2.cpp -
1.4%1.4%
-
1.4 %1 / 6928.6 %2 / 7
MemSpecWideIO2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/BankMachine.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/BankMachine.cpp.func-sort-c.html deleted file mode 100644 index 81786ff7..00000000 --- a/html/DRAMSys/library/src/controller/BankMachine.cpp.func-sort-c.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - BankMachine.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14916689.8 %
Date:2020-06-30 17:34:44Functions:192095.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11BankMachine7getRankEv0
_GLOBAL__sub_I__ZN11BankMachineC2EP11SchedulerIFP9CheckerIF4Bank30
_Z41__static_initialization_and_destruction_0ii30
_ZN15BankMachineOpenC2EP11SchedulerIFP9CheckerIF4Bank80
_ZN23BankMachineOpenAdaptiveC2EP11SchedulerIFP9CheckerIF4Bank96
_ZN25BankMachineClosedAdaptiveC2EP11SchedulerIFP9CheckerIF4Bank96
_ZN17BankMachineClosedC2EP11SchedulerIFP9CheckerIF4Bank224
_ZN11BankMachineC2EP11SchedulerIFP9CheckerIF4Bank496
_ZN11BankMachine6isIdleEv29802
_ZN15BankMachineOpen5startEv71650
_ZN11BankMachine12getBankGroupEv87408
_ZN11BankMachine5blockEv133592
_ZN11BankMachine11updateStateE7Command426310
_ZN11BankMachine10getOpenRowEv2541205
_ZN17BankMachineClosed5startEv3416112
_ZN23BankMachineOpenAdaptive5startEv4507416
_ZN25BankMachineClosedAdaptive5startEv5314560
_ZN11BankMachine8getStateEv5446696
_ZN11BankMachine14getNextCommandEv13032248
_ZN11BankMachine7getBankEv13390075
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/BankMachine.cpp.func.html b/html/DRAMSys/library/src/controller/BankMachine.cpp.func.html deleted file mode 100644 index 96b534a6..00000000 --- a/html/DRAMSys/library/src/controller/BankMachine.cpp.func.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - BankMachine.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14916689.8 %
Date:2020-06-30 17:34:44Functions:192095.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11BankMachineC2EP11SchedulerIFP9CheckerIF4Bank30
_Z41__static_initialization_and_destruction_0ii30
_ZN11BankMachine10getOpenRowEv2541205
_ZN11BankMachine11updateStateE7Command426310
_ZN11BankMachine12getBankGroupEv87408
_ZN11BankMachine14getNextCommandEv13032248
_ZN11BankMachine5blockEv133592
_ZN11BankMachine6isIdleEv29802
_ZN11BankMachine7getBankEv13390075
_ZN11BankMachine7getRankEv0
_ZN11BankMachine8getStateEv5446696
_ZN11BankMachineC2EP11SchedulerIFP9CheckerIF4Bank496
_ZN15BankMachineOpen5startEv71650
_ZN15BankMachineOpenC2EP11SchedulerIFP9CheckerIF4Bank80
_ZN17BankMachineClosed5startEv3416112
_ZN17BankMachineClosedC2EP11SchedulerIFP9CheckerIF4Bank224
_ZN23BankMachineOpenAdaptive5startEv4507416
_ZN23BankMachineOpenAdaptiveC2EP11SchedulerIFP9CheckerIF4Bank96
_ZN25BankMachineClosedAdaptive5startEv5314560
_ZN25BankMachineClosedAdaptiveC2EP11SchedulerIFP9CheckerIF4Bank96
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/BankMachine.cpp.gcov.html b/html/DRAMSys/library/src/controller/BankMachine.cpp.gcov.html deleted file mode 100644 index abffb038..00000000 --- a/html/DRAMSys/library/src/controller/BankMachine.cpp.gcov.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - BankMachine.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:14916689.8 %
Date:2020-06-30 17:34:44Functions:192095.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39         496 : /* EOF */
-      40        2480 : /* EOF */
-      41             : /* EOF */
-      42         496 : /* EOF */
-      43         496 : /* EOF */
-      44         496 : /* EOF */
-      45         496 : /* EOF */
-      46             : /* EOF */
-      47    13032248 : /* EOF */
-      48             : /* EOF */
-      49    26064496 : /* EOF */
-      50     3905130 : /* EOF */
-      51             : /* EOF */
-      52    22159366 : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55      426310 : /* EOF */
-      56             : /* EOF */
-      57      426310 : /* EOF */
-      58             : /* EOF */
-      59      161204 : /* EOF */
-      60      161204 : /* EOF */
-      61      161204 : /* EOF */
-      62      161204 : /* EOF */
-      63        5812 : /* EOF */
-      64        5812 : /* EOF */
-      65        5812 : /* EOF */
-      66       95182 : /* EOF */
-      67       95182 : /* EOF */
-      68       95182 : /* EOF */
-      69      157756 : /* EOF */
-      70      157756 : /* EOF */
-      71      157756 : /* EOF */
-      72      157756 : /* EOF */
-      73         320 : /* EOF */
-      74         320 : /* EOF */
-      75         320 : /* EOF */
-      76        5756 : /* EOF */
-      77        5756 : /* EOF */
-      78        5756 : /* EOF */
-      79        5756 : /* EOF */
-      80         200 : /* EOF */
-      81         200 : /* EOF */
-      82         200 : /* EOF */
-      83             : /* EOF */
-      84      426310 : /* EOF */
-      85             : /* EOF */
-      86      133592 : /* EOF */
-      87             : /* EOF */
-      88      133592 : /* EOF */
-      89      133592 : /* EOF */
-      90             : /* EOF */
-      91           0 : /* EOF */
-      92             : /* EOF */
-      93           0 : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96       87408 : /* EOF */
-      97             : /* EOF */
-      98       87408 : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101    13390075 : /* EOF */
-     102             : /* EOF */
-     103    13390075 : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106     2541205 : /* EOF */
-     107             : /* EOF */
-     108     2541205 : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111     5446696 : /* EOF */
-     112             : /* EOF */
-     113     5446696 : /* EOF */
-     114             : /* EOF */
-     115             : /* EOF */
-     116       29802 : /* EOF */
-     117             : /* EOF */
-     118       29802 : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121          80 : /* EOF */
-     122          80 : /* EOF */
-     123             : /* EOF */
-     124       71650 : /* EOF */
-     125             : /* EOF */
-     126      143300 : /* EOF */
-     127             : /* EOF */
-     128       71650 : /* EOF */
-     129        9195 : /* EOF */
-     130             : /* EOF */
-     131       62455 : /* EOF */
-     132       62455 : /* EOF */
-     133        9405 : /* EOF */
-     134             : /* EOF */
-     135       53050 : /* EOF */
-     136             : /* EOF */
-     137       10950 : /* EOF */
-     138        5475 : /* EOF */
-     139             : /* EOF */
-     140       47575 : /* EOF */
-     141             : /* EOF */
-     142       47575 : /* EOF */
-     143             : /* EOF */
-     144       42970 : /* EOF */
-     145             : /* EOF */
-     146       21610 : /* EOF */
-     147       10805 : /* EOF */
-     148             : /* EOF */
-     149       32165 : /* EOF */
-     150             : /* EOF */
-     151       64330 : /* EOF */
-     152       32165 : /* EOF */
-     153             : /* EOF */
-     154             : /* EOF */
-     155           0 : /* EOF */
-     156             : /* EOF */
-     157        4605 : /* EOF */
-     158             : /* EOF */
-     159        9210 : /* EOF */
-     160        4605 : /* EOF */
-     161             : /* EOF */
-     162             : /* EOF */
-     163       53050 : /* EOF */
-     164             : /* EOF */
-     165             : /* EOF */
-     166         224 : /* EOF */
-     167         224 : /* EOF */
-     168             : /* EOF */
-     169     3416112 : /* EOF */
-     170             : /* EOF */
-     171     6832224 : /* EOF */
-     172             : /* EOF */
-     173     3416112 : /* EOF */
-     174           0 : /* EOF */
-     175             : /* EOF */
-     176     3416112 : /* EOF */
-     177     3416112 : /* EOF */
-     178     2164015 : /* EOF */
-     179             : /* EOF */
-     180     1252097 : /* EOF */
-     181             : /* EOF */
-     182      658756 : /* EOF */
-     183      329378 : /* EOF */
-     184             : /* EOF */
-     185      922719 : /* EOF */
-     186             : /* EOF */
-     187      919009 : /* EOF */
-     188             : /* EOF */
-     189      409066 : /* EOF */
-     190      204533 : /* EOF */
-     191             : /* EOF */
-     192      714476 : /* EOF */
-     193             : /* EOF */
-     194     1428952 : /* EOF */
-     195      714476 : /* EOF */
-     196             : /* EOF */
-     197             : /* EOF */
-     198           0 : /* EOF */
-     199             : /* EOF */
-     200     1252097 : /* EOF */
-     201             : /* EOF */
-     202             : /* EOF */
-     203          96 : /* EOF */
-     204          96 : /* EOF */
-     205             : /* EOF */
-     206     4507416 : /* EOF */
-     207             : /* EOF */
-     208     9014832 : /* EOF */
-     209             : /* EOF */
-     210     4507416 : /* EOF */
-     211           0 : /* EOF */
-     212             : /* EOF */
-     213     4507416 : /* EOF */
-     214     4507416 : /* EOF */
-     215       59676 : /* EOF */
-     216             : /* EOF */
-     217     4447740 : /* EOF */
-     218             : /* EOF */
-     219     4175280 : /* EOF */
-     220     2087640 : /* EOF */
-     221             : /* EOF */
-     222     2360100 : /* EOF */
-     223             : /* EOF */
-     224     2321532 : /* EOF */
-     225             : /* EOF */
-     226     2310144 : /* EOF */
-     227             : /* EOF */
-     228      603744 : /* EOF */
-     229             : /* EOF */
-     230     1137984 : /* EOF */
-     231      568992 : /* EOF */
-     232             : /* EOF */
-     233       34752 : /* EOF */
-     234             : /* EOF */
-     235       69504 : /* EOF */
-     236       34752 : /* EOF */
-     237             : /* EOF */
-     238             : /* EOF */
-     239           0 : /* EOF */
-     240             : /* EOF */
-     241             : /* EOF */
-     242             : /* EOF */
-     243     1706400 : /* EOF */
-     244             : /* EOF */
-     245       15492 : /* EOF */
-     246       15492 : /* EOF */
-     247             : /* EOF */
-     248     1690908 : /* EOF */
-     249             : /* EOF */
-     250     3381816 : /* EOF */
-     251     1690908 : /* EOF */
-     252             : /* EOF */
-     253             : /* EOF */
-     254           0 : /* EOF */
-     255             : /* EOF */
-     256             : /* EOF */
-     257       11388 : /* EOF */
-     258             : /* EOF */
-     259       22776 : /* EOF */
-     260       11388 : /* EOF */
-     261             : /* EOF */
-     262             : /* EOF */
-     263     4447740 : /* EOF */
-     264             : /* EOF */
-     265             : /* EOF */
-     266          96 : /* EOF */
-     267          96 : /* EOF */
-     268             : /* EOF */
-     269     5314560 : /* EOF */
-     270             : /* EOF */
-     271    10629120 : /* EOF */
-     272             : /* EOF */
-     273     5314560 : /* EOF */
-     274           0 : /* EOF */
-     275             : /* EOF */
-     276     5314560 : /* EOF */
-     277     5314560 : /* EOF */
-     278        8322 : /* EOF */
-     279             : /* EOF */
-     280     5306238 : /* EOF */
-     281             : /* EOF */
-     282     5607996 : /* EOF */
-     283     2803998 : /* EOF */
-     284             : /* EOF */
-     285     2502240 : /* EOF */
-     286             : /* EOF */
-     287     2493630 : /* EOF */
-     288             : /* EOF */
-     289     2493630 : /* EOF */
-     290             : /* EOF */
-     291     1822446 : /* EOF */
-     292             : /* EOF */
-     293           0 : /* EOF */
-     294           0 : /* EOF */
-     295             : /* EOF */
-     296     1822446 : /* EOF */
-     297             : /* EOF */
-     298     3644892 : /* EOF */
-     299     1822446 : /* EOF */
-     300             : /* EOF */
-     301             : /* EOF */
-     302           0 : /* EOF */
-     303             : /* EOF */
-     304             : /* EOF */
-     305             : /* EOF */
-     306      671184 : /* EOF */
-     307             : /* EOF */
-     308     1057464 : /* EOF */
-     309      528732 : /* EOF */
-     310             : /* EOF */
-     311      142452 : /* EOF */
-     312             : /* EOF */
-     313      284904 : /* EOF */
-     314      142452 : /* EOF */
-     315             : /* EOF */
-     316             : /* EOF */
-     317           0 : /* EOF */
-     318             : /* EOF */
-     319             : /* EOF */
-     320           0 : /* EOF */
-     321             : /* EOF */
-     322           0 : /* EOF */
-     323           0 : /* EOF */
-     324           0 : /* EOF */
-     325             : /* EOF */
-     326             : /* EOF */
-     327     5306238 : /* EOF */
-     328         120 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/BankMachine.h.func-sort-c.html b/html/DRAMSys/library/src/controller/BankMachine.h.func-sort-c.html deleted file mode 100644 index 18d208df..00000000 --- a/html/DRAMSys/library/src/controller/BankMachine.h.func-sort-c.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - BankMachine.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:44100.0 %
Date:2020-06-30 17:34:44Functions:4850.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN15BankMachineOpenD2Ev0
_ZN17BankMachineClosedD2Ev0
_ZN23BankMachineOpenAdaptiveD2Ev0
_ZN25BankMachineClosedAdaptiveD2Ev0
_ZN15BankMachineOpenD0Ev80
_ZN23BankMachineOpenAdaptiveD0Ev96
_ZN25BankMachineClosedAdaptiveD0Ev96
_ZN17BankMachineClosedD0Ev224
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/BankMachine.h.func.html b/html/DRAMSys/library/src/controller/BankMachine.h.func.html deleted file mode 100644 index 3a74d303..00000000 --- a/html/DRAMSys/library/src/controller/BankMachine.h.func.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - BankMachine.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:44100.0 %
Date:2020-06-30 17:34:44Functions:4850.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN15BankMachineOpenD0Ev80
_ZN15BankMachineOpenD2Ev0
_ZN17BankMachineClosedD0Ev224
_ZN17BankMachineClosedD2Ev0
_ZN23BankMachineOpenAdaptiveD0Ev96
_ZN23BankMachineOpenAdaptiveD2Ev0
_ZN25BankMachineClosedAdaptiveD0Ev96
_ZN25BankMachineClosedAdaptiveD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/BankMachine.h.gcov.html b/html/DRAMSys/library/src/controller/BankMachine.h.gcov.html deleted file mode 100644 index 748e98a6..00000000 --- a/html/DRAMSys/library/src/controller/BankMachine.h.gcov.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/BankMachine.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - BankMachine.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:44100.0 %
Date:2020-06-30 17:34:44Functions:4850.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88          80 : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95         224 : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102          96 : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109          96 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/Command.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/Command.cpp.func-sort-c.html deleted file mode 100644 index ccc98822..00000000 --- a/html/DRAMSys/library/src/controller/Command.cpp.func-sort-c.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - Command.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182572.0 %
Date:2020-06-30 17:34:44Functions:101376.9 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_Z13isBankCommand7Command0
_Z15commandToStringB5cxx117Command0
_Z23phaseToDRAMPowerCommandN3tlm9tlm_phaseE0
_GLOBAL__sub_I__Z15commandToStringB5cxx117Command30
_Z41__static_initialization_and_destruction_0ii30
_Z16numberOfCommandsv161
_Z12isRasCommand7Command261849
_Z11getEndPhaseN3tlm9tlm_phaseE418630
_Z14phaseToCommandN3tlm9tlm_phaseE418665
_Z13isRankCommand7Command418705
_Z13phaseNeedsEndN3tlm9tlm_phaseE418705
_Z14commandToPhase7Command418705
_Z12isCasCommand7Command1205043
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/Command.cpp.func.html b/html/DRAMSys/library/src/controller/Command.cpp.func.html deleted file mode 100644 index 10428a72..00000000 --- a/html/DRAMSys/library/src/controller/Command.cpp.func.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - Command.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182572.0 %
Date:2020-06-30 17:34:44Functions:101376.9 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__Z15commandToStringB5cxx117Command30
_Z11getEndPhaseN3tlm9tlm_phaseE418630
_Z12isCasCommand7Command1205043
_Z12isRasCommand7Command261849
_Z13isBankCommand7Command0
_Z13isRankCommand7Command418705
_Z13phaseNeedsEndN3tlm9tlm_phaseE418705
_Z14commandToPhase7Command418705
_Z14phaseToCommandN3tlm9tlm_phaseE418665
_Z15commandToStringB5cxx117Command0
_Z16numberOfCommandsv161
_Z23phaseToDRAMPowerCommandN3tlm9tlm_phaseE0
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/Command.cpp.gcov.html b/html/DRAMSys/library/src/controller/Command.cpp.gcov.html deleted file mode 100644 index 658474ef..00000000 --- a/html/DRAMSys/library/src/controller/Command.cpp.gcov.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - Command.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182572.0 %
Date:2020-06-30 17:34:44Functions:101376.9 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67         161 : /* EOF */
-      68             : /* EOF */
-      69         161 : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72      418705 : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91      418735 : /* EOF */
-      92      837410 : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95      418665 : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114     1255995 : /* EOF */
-     115             : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136           0 : /* EOF */
-     137             : /* EOF */
-     138             : /* EOF */
-     139      418705 : /* EOF */
-     140             : /* EOF */
-     141     1256115 : /* EOF */
-     142             : /* EOF */
-     143             : /* EOF */
-     144      418630 : /* EOF */
-     145             : /* EOF */
-     146             : /* EOF */
-     147      418630 : /* EOF */
-     148             : /* EOF */
-     149             : /* EOF */
-     150           0 : /* EOF */
-     151             : /* EOF */
-     152             : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155             : /* EOF */
-     156      418705 : /* EOF */
-     157             : /* EOF */
-     158             : /* EOF */
-     159      418705 : /* EOF */
-     160             : /* EOF */
-     161             : /* EOF */
-     162     1205043 : /* EOF */
-     163             : /* EOF */
-     164             : /* EOF */
-     165     1205043 : /* EOF */
-     166             : /* EOF */
-     167             : /* EOF */
-     168      261849 : /* EOF */
-     169             : /* EOF */
-     170             : /* EOF */
-     171      261849 : /* EOF */
-     172          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/Command.h.func-sort-c.html b/html/DRAMSys/library/src/controller/Command.h.func-sort-c.html deleted file mode 100644 index d17ba67d..00000000 --- a/html/DRAMSys/library/src/controller/Command.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - Command.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2424100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/Command.h.func.html b/html/DRAMSys/library/src/controller/Command.h.func.html deleted file mode 100644 index 40e9dd8f..00000000 --- a/html/DRAMSys/library/src/controller/Command.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - Command.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2424100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/Command.h.gcov.html b/html/DRAMSys/library/src/controller/Command.h.gcov.html deleted file mode 100644 index c3357d8e..00000000 --- a/html/DRAMSys/library/src/controller/Command.h.gcov.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Command.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - Command.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2424100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46        1710 : /* EOF */
-      47        1710 : /* EOF */
-      48        1710 : /* EOF */
-      49        1710 : /* EOF */
-      50        1710 : /* EOF */
-      51        1710 : /* EOF */
-      52        1710 : /* EOF */
-      53        1710 : /* EOF */
-      54        1710 : /* EOF */
-      55        1710 : /* EOF */
-      56        1710 : /* EOF */
-      57        1710 : /* EOF */
-      58        1710 : /* EOF */
-      59        1710 : /* EOF */
-      60        1710 : /* EOF */
-      61             : /* EOF */
-      62        1710 : /* EOF */
-      63        1710 : /* EOF */
-      64        1710 : /* EOF */
-      65        1710 : /* EOF */
-      66        1710 : /* EOF */
-      67        1710 : /* EOF */
-      68        1710 : /* EOF */
-      69        1710 : /* EOF */
-      70        1710 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/Controller.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/Controller.cpp.func-sort-c.html deleted file mode 100644 index 9943bae1..00000000 --- a/html/DRAMSys/library/src/controller/Controller.cpp.func-sort-c.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Controller.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - Controller.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:19222087.3 %
Date:2020-06-30 17:34:44Functions:111573.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10Controller13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN10Controller14sendToFrontendEPN3tlm19tlm_generic_payloadENS0_9tlm_phaseE0
_ZN10Controller15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN10ControllerD0Ev0
_GLOBAL__sub_I__ZN10ControllerC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10Controller13finishEndRespEv252908
_ZN10Controller10sendToDramE7CommandPN3tlm19tlm_generic_payloadE418705
_ZN10Controller15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505846
_ZN10Controller14startBeginRespEv984087
_ZN10Controller11startEndReqEv989802
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/Controller.cpp.func.html b/html/DRAMSys/library/src/controller/Controller.cpp.func.html deleted file mode 100644 index 98625b1a..00000000 --- a/html/DRAMSys/library/src/controller/Controller.cpp.func.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Controller.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - Controller.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:19222087.3 %
Date:2020-06-30 17:34:44Functions:111573.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10ControllerC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10Controller10sendToDramE7CommandPN3tlm19tlm_generic_payloadE418705
_ZN10Controller11startEndReqEv989802
_ZN10Controller13finishEndRespEv252908
_ZN10Controller13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN10Controller14sendToFrontendEPN3tlm19tlm_generic_payloadENS0_9tlm_phaseE0
_ZN10Controller14startBeginRespEv984087
_ZN10Controller15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN10Controller15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505846
_ZN10ControllerD0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/Controller.cpp.gcov.html b/html/DRAMSys/library/src/controller/Controller.cpp.gcov.html deleted file mode 100644 index 1a2ea3c4..00000000 --- a/html/DRAMSys/library/src/controller/Controller.cpp.gcov.html +++ /dev/null @@ -1,528 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/Controller.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - Controller.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:19222087.3 %
Date:2020-06-30 17:34:44Functions:111573.3 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64          37 : /* EOF */
-      65         296 : /* EOF */
-      66             : /* EOF */
-      67         148 : /* EOF */
-      68          37 : /* EOF */
-      69             : /* EOF */
-      70          37 : /* EOF */
-      71          37 : /* EOF */
-      72         148 : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75          74 : /* EOF */
-      76           5 : /* EOF */
-      77          64 : /* EOF */
-      78           6 : /* EOF */
-      79          52 : /* EOF */
-      80           0 : /* EOF */
-      81          52 : /* EOF */
-      82          12 : /* EOF */
-      83          28 : /* EOF */
-      84           0 : /* EOF */
-      85          28 : /* EOF */
-      86          14 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89           0 : /* EOF */
-      90           0 : /* EOF */
-      91           0 : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94           0 : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97          74 : /* EOF */
-      98          26 : /* EOF */
-      99          22 : /* EOF */
-     100           6 : /* EOF */
-     101          10 : /* EOF */
-     102           5 : /* EOF */
-     103             : /* EOF */
-     104           0 : /* EOF */
-     105             : /* EOF */
-     106          74 : /* EOF */
-     107          46 : /* EOF */
-     108          28 : /* EOF */
-     109          28 : /* EOF */
-     110             : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113          74 : /* EOF */
-     114          74 : /* EOF */
-     115           0 : /* EOF */
-     116           0 : /* EOF */
-     117             : /* EOF */
-     118           0 : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121          74 : /* EOF */
-     122             : /* EOF */
-     123         165 : /* EOF */
-     124         240 : /* EOF */
-     125             : /* EOF */
-     126          64 : /* EOF */
-     127             : /* EOF */
-     128         204 : /* EOF */
-     129         288 : /* EOF */
-     130             : /* EOF */
-     131          40 : /* EOF */
-     132             : /* EOF */
-     133         462 : /* EOF */
-     134         672 : /* EOF */
-     135             : /* EOF */
-     136          12 : /* EOF */
-     137             : /* EOF */
-     138         198 : /* EOF */
-     139         288 : /* EOF */
-     140             : /* EOF */
-     141             : /* EOF */
-     142           0 : /* EOF */
-     143             : /* EOF */
-     144         121 : /* EOF */
-     145             : /* EOF */
-     146         336 : /* EOF */
-     147         126 : /* EOF */
-     148             : /* EOF */
-     149             : /* EOF */
-     150             : /* EOF */
-     151          74 : /* EOF */
-     152             : /* EOF */
-     153          96 : /* EOF */
-     154             : /* EOF */
-     155          64 : /* EOF */
-     156          32 : /* EOF */
-     157             : /* EOF */
-     158             : /* EOF */
-     159          10 : /* EOF */
-     160             : /* EOF */
-     161          25 : /* EOF */
-     162             : /* EOF */
-     163          10 : /* EOF */
-     164          10 : /* EOF */
-     165             : /* EOF */
-     166             : /* EOF */
-     167             : /* EOF */
-     168           0 : /* EOF */
-     169             : /* EOF */
-     170             : /* EOF */
-     171          74 : /* EOF */
-     172             : /* EOF */
-     173           0 : /* EOF */
-     174           0 : /* EOF */
-     175             : /* EOF */
-     176          74 : /* EOF */
-     177             : /* EOF */
-     178          85 : /* EOF */
-     179             : /* EOF */
-     180             : /* EOF */
-     181         120 : /* EOF */
-     182          30 : /* EOF */
-     183             : /* EOF */
-     184             : /* EOF */
-     185          24 : /* EOF */
-     186             : /* EOF */
-     187          36 : /* EOF */
-     188             : /* EOF */
-     189             : /* EOF */
-     190             : /* EOF */
-     191          48 : /* EOF */
-     192          12 : /* EOF */
-     193             : /* EOF */
-     194             : /* EOF */
-     195             : /* EOF */
-     196           0 : /* EOF */
-     197             : /* EOF */
-     198          74 : /* EOF */
-     199          37 : /* EOF */
-     200             : /* EOF */
-     201         222 : /* EOF */
-     202             : /* EOF */
-     203          37 : /* EOF */
-     204             : /* EOF */
-     205         190 : /* EOF */
-     206          42 : /* EOF */
-     207         190 : /* EOF */
-     208          42 : /* EOF */
-     209         644 : /* EOF */
-     210         496 : /* EOF */
-     211          37 : /* EOF */
-     212          37 : /* EOF */
-     213          37 : /* EOF */
-     214          37 : /* EOF */
-     215          37 : /* EOF */
-     216             : /* EOF */
-     217     1090262 : /* EOF */
-     218             : /* EOF */
-     219             : /* EOF */
-     220     1449345 : /* EOF */
-     221      252908 : /* EOF */
-     222             : /* EOF */
-     223             : /* EOF */
-     224     1090262 : /* EOF */
-     225      984087 : /* EOF */
-     226             : /* EOF */
-     227             : /* EOF */
-     228     2080071 : /* EOF */
-     229             : /* EOF */
-     230      505876 : /* EOF */
-     231      252938 : /* EOF */
-     232      505876 : /* EOF */
-     233             : /* EOF */
-     234             : /* EOF */
-     235             : /* EOF */
-     236     5455705 : /* EOF */
-     237     1094657 : /* EOF */
-     238     5455705 : /* EOF */
-     239     1094657 : /* EOF */
-     240             : /* EOF */
-     241             : /* EOF */
-     242     1090262 : /* EOF */
-     243     2180524 : /* EOF */
-     244             : /* EOF */
-     245     2184919 : /* EOF */
-     246             : /* EOF */
-     247     3283971 : /* EOF */
-     248     1094657 : /* EOF */
-     249         100 : /* EOF */
-     250             : /* EOF */
-     251             : /* EOF */
-     252             : /* EOF */
-     253     3283671 : /* EOF */
-     254     1094557 : /* EOF */
-     255        2511 : /* EOF */
-     256             : /* EOF */
-     257             : /* EOF */
-     258             : /* EOF */
-     259    18492478 : /* EOF */
-     260             : /* EOF */
-     261    26064496 : /* EOF */
-     262    13032248 : /* EOF */
-     263     1952565 : /* EOF */
-     264             : /* EOF */
-     265             : /* EOF */
-     266             : /* EOF */
-     267             : /* EOF */
-     268             : /* EOF */
-     269     1090262 : /* EOF */
-     270     1090262 : /* EOF */
-     271             : /* EOF */
-     272     1037862 : /* EOF */
-     273      518931 : /* EOF */
-     274             : /* EOF */
-     275      418705 : /* EOF */
-     276      418705 : /* EOF */
-     277      418705 : /* EOF */
-     278             : /* EOF */
-     279      418705 : /* EOF */
-     280             : /* EOF */
-     281       10983 : /* EOF */
-     282        8168 : /* EOF */
-     283             : /* EOF */
-     284             : /* EOF */
-     285      836284 : /* EOF */
-     286             : /* EOF */
-     287      837410 : /* EOF */
-     288      837410 : /* EOF */
-     289      418705 : /* EOF */
-     290             : /* EOF */
-     291      418705 : /* EOF */
-     292             : /* EOF */
-     293      252938 : /* EOF */
-     294      505876 : /* EOF */
-     295             : /* EOF */
-     296      252938 : /* EOF */
-     297      252938 : /* EOF */
-     298      505876 : /* EOF */
-     299             : /* EOF */
-     300      505876 : /* EOF */
-     301             : /* EOF */
-     302      837410 : /* EOF */
-     303        3000 : /* EOF */
-     304             : /* EOF */
-     305      418705 : /* EOF */
-     306             : /* EOF */
-     307             : /* EOF */
-     308             : /* EOF */
-     309             : /* EOF */
-     310             : /* EOF */
-     311             : /* EOF */
-     312     2080071 : /* EOF */
-     313      989802 : /* EOF */
-     314             : /* EOF */
-     315             : /* EOF */
-     316             : /* EOF */
-     317     2180524 : /* EOF */
-     318    17417848 : /* EOF */
-     319             : /* EOF */
-     320    13056800 : /* EOF */
-     321    26113600 : /* EOF */
-     322    12769583 : /* EOF */
-     323             : /* EOF */
-     324     5455705 : /* EOF */
-     325     3283971 : /* EOF */
-     326     5455705 : /* EOF */
-     327     3283971 : /* EOF */
-     328             : /* EOF */
-     329     2180524 : /* EOF */
-     330     2180514 : /* EOF */
-     331     1090262 : /* EOF */
-     332             : /* EOF */
-     333      505846 : /* EOF */
-     334             : /* EOF */
-     335             : /* EOF */
-     336     1011692 : /* EOF */
-     337             : /* EOF */
-     338      505846 : /* EOF */
-     339             : /* EOF */
-     340      252938 : /* EOF */
-     341      758814 : /* EOF */
-     342      252938 : /* EOF */
-     343             : /* EOF */
-     344      252908 : /* EOF */
-     345             : /* EOF */
-     346      758724 : /* EOF */
-     347      252908 : /* EOF */
-     348             : /* EOF */
-     349             : /* EOF */
-     350             : /* EOF */
-     351             : /* EOF */
-     352             : /* EOF */
-     353             : /* EOF */
-     354             : /* EOF */
-     355      505846 : /* EOF */
-     356             : /* EOF */
-     357             : /* EOF */
-     358           0 : /* EOF */
-     359             : /* EOF */
-     360             : /* EOF */
-     361           0 : /* EOF */
-     362           0 : /* EOF */
-     363             : /* EOF */
-     364             : /* EOF */
-     365           0 : /* EOF */
-     366             : /* EOF */
-     367           0 : /* EOF */
-     368             : /* EOF */
-     369             : /* EOF */
-     370      252938 : /* EOF */
-     371             : /* EOF */
-     372      252938 : /* EOF */
-     373             : /* EOF */
-     374             : /* EOF */
-     375      252938 : /* EOF */
-     376          60 : /* EOF */
-     377      252938 : /* EOF */
-     378             : /* EOF */
-     379      252938 : /* EOF */
-     380      505876 : /* EOF */
-     381         140 : /* EOF */
-     382             : /* EOF */
-     383      505876 : /* EOF */
-     384             : /* EOF */
-     385      252938 : /* EOF */
-     386      252938 : /* EOF */
-     387      505876 : /* EOF */
-     388      252938 : /* EOF */
-     389             : /* EOF */
-     390      989802 : /* EOF */
-     391             : /* EOF */
-     392      989802 : /* EOF */
-     393             : /* EOF */
-     394      505876 : /* EOF */
-     395      505876 : /* EOF */
-     396      252938 : /* EOF */
-     397             : /* EOF */
-     398             : /* EOF */
-     399             : /* EOF */
-     400      989802 : /* EOF */
-     401             : /* EOF */
-     402      984087 : /* EOF */
-     403             : /* EOF */
-     404      984087 : /* EOF */
-     405             : /* EOF */
-     406      984087 : /* EOF */
-     407      505876 : /* EOF */
-     408             : /* EOF */
-     409             : /* EOF */
-     410      731149 : /* EOF */
-     411     1462298 : /* EOF */
-     412     1317940 : /* EOF */
-     413             : /* EOF */
-     414      984087 : /* EOF */
-     415             : /* EOF */
-     416      252908 : /* EOF */
-     417             : /* EOF */
-     418      252908 : /* EOF */
-     419             : /* EOF */
-     420             : /* EOF */
-     421      505816 : /* EOF */
-     422      252908 : /* EOF */
-     423      505816 : /* EOF */
-     424      252908 : /* EOF */
-     425             : /* EOF */
-     426      252908 : /* EOF */
-     427      252908 : /* EOF */
-     428          30 : /* EOF */
-     429      252908 : /* EOF */
-     430             : /* EOF */
-     431           0 : /* EOF */
-     432             : /* EOF */
-     433           0 : /* EOF */
-     434           0 : /* EOF */
-     435           0 : /* EOF */
-     436             : /* EOF */
-     437      418705 : /* EOF */
-     438             : /* EOF */
-     439      418705 : /* EOF */
-     440      418705 : /* EOF */
-     441             : /* EOF */
-     442      418705 : /* EOF */
-     443      418825 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/ControllerIF.h.func-sort-c.html b/html/DRAMSys/library/src/controller/ControllerIF.h.func-sort-c.html deleted file mode 100644 index 96c7f683..00000000 --- a/html/DRAMSys/library/src/controller/ControllerIF.h.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerIF.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - ControllerIF.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4646100.0 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12ControllerIFD0Ev0
_ZN12ControllerIFC2EN7sc_core14sc_module_nameE37
_ZN12ControllerIFD2Ev37
_ZN12ControllerIF17IdleTimeCollector3endEv97
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/ControllerIF.h.func.html b/html/DRAMSys/library/src/controller/ControllerIF.h.func.html deleted file mode 100644 index 526bbfb9..00000000 --- a/html/DRAMSys/library/src/controller/ControllerIF.h.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerIF.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - ControllerIF.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4646100.0 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12ControllerIF17IdleTimeCollector3endEv97
_ZN12ControllerIFC2EN7sc_core14sc_module_nameE37
_ZN12ControllerIFD0Ev0
_ZN12ControllerIFD2Ev37
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/ControllerIF.h.gcov.html b/html/DRAMSys/library/src/controller/ControllerIF.h.gcov.html deleted file mode 100644 index 1d6c244d..00000000 --- a/html/DRAMSys/library/src/controller/ControllerIF.h.gcov.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerIF.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - ControllerIF.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4646100.0 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20          37 : /* EOF */
-      21         148 : /* EOF */
-      22          37 : /* EOF */
-      23          37 : /* EOF */
-      24          37 : /* EOF */
-      25         111 : /* EOF */
-      26             : /* EOF */
-      27          74 : /* EOF */
-      28         148 : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32          74 : /* EOF */
-      33             : /* EOF */
-      34          37 : /* EOF */
-      35             : /* EOF */
-      36          37 : /* EOF */
-      37             : /* EOF */
-      38          37 : /* EOF */
-      39             : /* EOF */
-      40         111 : /* EOF */
-      41         185 : /* EOF */
-      42          37 : /* EOF */
-      43         185 : /* EOF */
-      44          74 : /* EOF */
-      45          74 : /* EOF */
-      46         111 : /* EOF */
-      47          37 : /* EOF */
-      48         185 : /* EOF */
-      49          74 : /* EOF */
-      50          74 : /* EOF */
-      51         111 : /* EOF */
-      52          37 : /* EOF */
-      53         185 : /* EOF */
-      54          74 : /* EOF */
-      55          74 : /* EOF */
-      56          37 : /* EOF */
-      57          37 : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61          37 : /* EOF */
-      62         148 : /* EOF */
-      63             : /* EOF */
-      64          37 : /* EOF */
-      65          37 : /* EOF */
-      66          74 : /* EOF */
-      67          37 : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76         111 : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81          67 : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84         134 : /* EOF */
-      85          67 : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88             : /* EOF */
-      89          97 : /* EOF */
-      90             : /* EOF */
-      91          97 : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94         201 : /* EOF */
-      95          67 : /* EOF */
-      96             : /* EOF */
-      97          97 : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101          74 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func-sort-c.html deleted file mode 100644 index e4745626..00000000 --- a/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:252889.3 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN20ControllerRecordable15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_GLOBAL__sub_I__ZN20ControllerRecordable15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN20ControllerRecordable10sendToDramE7CommandPN3tlm19tlm_generic_payloadE418705
_ZN20ControllerRecordable15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505846
_ZN20ControllerRecordable14sendToFrontendEPN3tlm19tlm_generic_payloadENS0_9tlm_phaseE505876
_ZN20ControllerRecordable11recordPhaseERN3tlm19tlm_generic_payloadENS0_9tlm_phaseEN7sc_core7sc_timeE1011722
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func.html b/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func.html deleted file mode 100644 index 232fe827..00000000 --- a/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:252889.3 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN20ControllerRecordable15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN20ControllerRecordable10sendToDramE7CommandPN3tlm19tlm_generic_payloadE418705
_ZN20ControllerRecordable11recordPhaseERN3tlm19tlm_generic_payloadENS0_9tlm_phaseEN7sc_core7sc_timeE1011722
_ZN20ControllerRecordable14sendToFrontendEPN3tlm19tlm_generic_payloadENS0_9tlm_phaseE505876
_ZN20ControllerRecordable15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN20ControllerRecordable15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505846
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.gcov.html b/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.gcov.html deleted file mode 100644 index f2c21060..00000000 --- a/html/DRAMSys/library/src/controller/ControllerRecordable.cpp.gcov.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:252889.3 %
Date:2020-06-30 17:34:44Functions:6785.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40      505846 : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43      505846 : /* EOF */
-      44      505846 : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50           0 : /* EOF */
-      51           0 : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54      505876 : /* EOF */
-      55             : /* EOF */
-      56      505876 : /* EOF */
-      57      505876 : /* EOF */
-      58     1011752 : /* EOF */
-      59      505876 : /* EOF */
-      60             : /* EOF */
-      61      418705 : /* EOF */
-      62             : /* EOF */
-      63      418705 : /* EOF */
-      64             : /* EOF */
-      65      252938 : /* EOF */
-      66      252938 : /* EOF */
-      67             : /* EOF */
-      68      418705 : /* EOF */
-      69      418705 : /* EOF */
-      70             : /* EOF */
-      71     1011722 : /* EOF */
-      72             : /* EOF */
-      73     2023444 : /* EOF */
-      74             : /* EOF */
-      75     1011722 : /* EOF */
-      76     1011722 : /* EOF */
-      77     1011722 : /* EOF */
-      78     1011722 : /* EOF */
-      79     1011722 : /* EOF */
-      80     1011722 : /* EOF */
-      81     1011722 : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88     2023444 : /* EOF */
-      89     1011842 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.h.func-sort-c.html b/html/DRAMSys/library/src/controller/ControllerRecordable.h.func-sort-c.html deleted file mode 100644 index 267cefbb..00000000 --- a/html/DRAMSys/library/src/controller/ControllerRecordable.h.func-sort-c.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:33100.0 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN20ControllerRecordableD2Ev0
_ZN20ControllerRecordableC2EN7sc_core14sc_module_nameEP11TlmRecorder37
_ZN20ControllerRecordableD0Ev37
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.h.func.html b/html/DRAMSys/library/src/controller/ControllerRecordable.h.func.html deleted file mode 100644 index 39e53140..00000000 --- a/html/DRAMSys/library/src/controller/ControllerRecordable.h.func.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:33100.0 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN20ControllerRecordableC2EN7sc_core14sc_module_nameEP11TlmRecorder37
_ZN20ControllerRecordableD0Ev37
_ZN20ControllerRecordableD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/ControllerRecordable.h.gcov.html b/html/DRAMSys/library/src/controller/ControllerRecordable.h.gcov.html deleted file mode 100644 index 13d0aa70..00000000 --- a/html/DRAMSys/library/src/controller/ControllerRecordable.h.gcov.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/ControllerRecordable.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller - ControllerRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:33100.0 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41          37 : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          37 : /* EOF */
-      45          37 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func-sort-c.html deleted file mode 100644 index d2dc3dcd..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25328289.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerDDR3C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerDDR36insertE7Command4Rank9BankGroup4Bank2275
_ZNK11CheckerDDR324timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank54425
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func.html deleted file mode 100644 index 4d7102cc..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25328289.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerDDR3C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerDDR36insertE7Command4Rank9BankGroup4Bank2275
_ZNK11CheckerDDR324timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank54425
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.gcov.html deleted file mode 100644 index a4df13eb..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.cpp.gcov.html +++ /dev/null @@ -1,516 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:25328289.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37          75 : /* EOF */
-      38             : /* EOF */
-      39           5 : /* EOF */
-      40           5 : /* EOF */
-      41           5 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44          20 : /* EOF */
-      45          20 : /* EOF */
-      46          20 : /* EOF */
-      47          20 : /* EOF */
-      48          20 : /* EOF */
-      49             : /* EOF */
-      50          15 : /* EOF */
-      51             : /* EOF */
-      52          15 : /* EOF */
-      53          30 : /* EOF */
-      54          25 : /* EOF */
-      55          20 : /* EOF */
-      56          25 : /* EOF */
-      57          20 : /* EOF */
-      58          20 : /* EOF */
-      59          20 : /* EOF */
-      60          25 : /* EOF */
-      61           5 : /* EOF */
-      62             : /* EOF */
-      63       54425 : /* EOF */
-      64             : /* EOF */
-      65       54425 : /* EOF */
-      66      108850 : /* EOF */
-      67             : /* EOF */
-      68       54425 : /* EOF */
-      69             : /* EOF */
-      70       32415 : /* EOF */
-      71       10805 : /* EOF */
-      72       54025 : /* EOF */
-      73             : /* EOF */
-      74       32415 : /* EOF */
-      75       10805 : /* EOF */
-      76       26280 : /* EOF */
-      77             : /* EOF */
-      78       35930 : /* EOF */
-      79       10805 : /* EOF */
-      80       17575 : /* EOF */
-      81             : /* EOF */
-      82       32415 : /* EOF */
-      83       10805 : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86       32415 : /* EOF */
-      87       10805 : /* EOF */
-      88           0 : /* EOF */
-      89             : /* EOF */
-      90       10805 : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93           0 : /* EOF */
-      94           0 : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97       32415 : /* EOF */
-      98       10805 : /* EOF */
-      99       43220 : /* EOF */
-     100             : /* EOF */
-     101       21610 : /* EOF */
-     102       10805 : /* EOF */
-     103       43220 : /* EOF */
-     104             : /* EOF */
-     105       32415 : /* EOF */
-     106       10805 : /* EOF */
-     107           0 : /* EOF */
-     108             : /* EOF */
-     109       21610 : /* EOF */
-     110       10805 : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113       32415 : /* EOF */
-     114       10805 : /* EOF */
-     115       43220 : /* EOF */
-     116             : /* EOF */
-     117       32415 : /* EOF */
-     118       10805 : /* EOF */
-     119       43220 : /* EOF */
-     120             : /* EOF */
-     121       43620 : /* EOF */
-     122             : /* EOF */
-     123       96495 : /* EOF */
-     124       32165 : /* EOF */
-     125      160825 : /* EOF */
-     126             : /* EOF */
-     127       96495 : /* EOF */
-     128       32165 : /* EOF */
-     129       68640 : /* EOF */
-     130             : /* EOF */
-     131      104555 : /* EOF */
-     132       32165 : /* EOF */
-     133       32240 : /* EOF */
-     134             : /* EOF */
-     135       96495 : /* EOF */
-     136       32165 : /* EOF */
-     137           0 : /* EOF */
-     138             : /* EOF */
-     139       96495 : /* EOF */
-     140       32165 : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143       96495 : /* EOF */
-     144       32165 : /* EOF */
-     145      108020 : /* EOF */
-     146             : /* EOF */
-     147      108980 : /* EOF */
-     148       32165 : /* EOF */
-     149       62425 : /* EOF */
-     150             : /* EOF */
-     151       96495 : /* EOF */
-     152       32165 : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155       96495 : /* EOF */
-     156       32165 : /* EOF */
-     157           0 : /* EOF */
-     158             : /* EOF */
-     159       96495 : /* EOF */
-     160       32165 : /* EOF */
-     161       71400 : /* EOF */
-     162             : /* EOF */
-     163       96495 : /* EOF */
-     164       32165 : /* EOF */
-     165       71400 : /* EOF */
-     166             : /* EOF */
-     167       11455 : /* EOF */
-     168             : /* EOF */
-     169       16425 : /* EOF */
-     170        5475 : /* EOF */
-     171       16020 : /* EOF */
-     172             : /* EOF */
-     173       16425 : /* EOF */
-     174        5475 : /* EOF */
-     175       21480 : /* EOF */
-     176             : /* EOF */
-     177       16425 : /* EOF */
-     178        5475 : /* EOF */
-     179           0 : /* EOF */
-     180             : /* EOF */
-     181       16425 : /* EOF */
-     182        5475 : /* EOF */
-     183           0 : /* EOF */
-     184             : /* EOF */
-     185       16425 : /* EOF */
-     186        5475 : /* EOF */
-     187       16020 : /* EOF */
-     188             : /* EOF */
-     189       16425 : /* EOF */
-     190        5475 : /* EOF */
-     191       10200 : /* EOF */
-     192             : /* EOF */
-     193       16425 : /* EOF */
-     194        5475 : /* EOF */
-     195       10200 : /* EOF */
-     196             : /* EOF */
-     197       16425 : /* EOF */
-     198        5475 : /* EOF */
-     199       16000 : /* EOF */
-     200             : /* EOF */
-     201       16425 : /* EOF */
-     202        5475 : /* EOF */
-     203       10200 : /* EOF */
-     204             : /* EOF */
-     205       16425 : /* EOF */
-     206        5475 : /* EOF */
-     207       10200 : /* EOF */
-     208             : /* EOF */
-     209       16425 : /* EOF */
-     210       23625 : /* EOF */
-     211             : /* EOF */
-     212        5980 : /* EOF */
-     213             : /* EOF */
-     214       13815 : /* EOF */
-     215        4605 : /* EOF */
-     216       18420 : /* EOF */
-     217             : /* EOF */
-     218       13815 : /* EOF */
-     219        4605 : /* EOF */
-     220        4875 : /* EOF */
-     221             : /* EOF */
-     222       13815 : /* EOF */
-     223        4605 : /* EOF */
-     224       18420 : /* EOF */
-     225             : /* EOF */
-     226       13815 : /* EOF */
-     227        4605 : /* EOF */
-     228        3900 : /* EOF */
-     229             : /* EOF */
-     230        1375 : /* EOF */
-     231             : /* EOF */
-     232         120 : /* EOF */
-     233          40 : /* EOF */
-     234         160 : /* EOF */
-     235             : /* EOF */
-     236         120 : /* EOF */
-     237          40 : /* EOF */
-     238           0 : /* EOF */
-     239             : /* EOF */
-     240         120 : /* EOF */
-     241          40 : /* EOF */
-     242           0 : /* EOF */
-     243             : /* EOF */
-     244         120 : /* EOF */
-     245          40 : /* EOF */
-     246         160 : /* EOF */
-     247             : /* EOF */
-     248         120 : /* EOF */
-     249          40 : /* EOF */
-     250           0 : /* EOF */
-     251             : /* EOF */
-     252         120 : /* EOF */
-     253          40 : /* EOF */
-     254         160 : /* EOF */
-     255             : /* EOF */
-     256        1335 : /* EOF */
-     257             : /* EOF */
-     258        2490 : /* EOF */
-     259         830 : /* EOF */
-     260        3320 : /* EOF */
-     261             : /* EOF */
-     262        2490 : /* EOF */
-     263         830 : /* EOF */
-     264           0 : /* EOF */
-     265             : /* EOF */
-     266        2490 : /* EOF */
-     267         830 : /* EOF */
-     268           0 : /* EOF */
-     269             : /* EOF */
-     270        2490 : /* EOF */
-     271         830 : /* EOF */
-     272        3320 : /* EOF */
-     273             : /* EOF */
-     274        2490 : /* EOF */
-     275         830 : /* EOF */
-     276        3320 : /* EOF */
-     277             : /* EOF */
-     278        2490 : /* EOF */
-     279         830 : /* EOF */
-     280        3240 : /* EOF */
-     281             : /* EOF */
-     282        2490 : /* EOF */
-     283         830 : /* EOF */
-     284        3120 : /* EOF */
-     285             : /* EOF */
-     286        2490 : /* EOF */
-     287         830 : /* EOF */
-     288        2960 : /* EOF */
-     289             : /* EOF */
-     290         505 : /* EOF */
-     291             : /* EOF */
-     292        1065 : /* EOF */
-     293         355 : /* EOF */
-     294        1420 : /* EOF */
-     295             : /* EOF */
-     296        1065 : /* EOF */
-     297             : /* EOF */
-     298         700 : /* EOF */
-     299             : /* EOF */
-     300        1065 : /* EOF */
-     301         355 : /* EOF */
-     302           0 : /* EOF */
-     303             : /* EOF */
-     304        1065 : /* EOF */
-     305         355 : /* EOF */
-     306        1420 : /* EOF */
-     307             : /* EOF */
-     308        1065 : /* EOF */
-     309         355 : /* EOF */
-     310           0 : /* EOF */
-     311             : /* EOF */
-     312        1065 : /* EOF */
-     313         355 : /* EOF */
-     314        1420 : /* EOF */
-     315             : /* EOF */
-     316        1065 : /* EOF */
-     317         355 : /* EOF */
-     318         700 : /* EOF */
-     319             : /* EOF */
-     320         150 : /* EOF */
-     321             : /* EOF */
-     322          60 : /* EOF */
-     323          20 : /* EOF */
-     324          80 : /* EOF */
-     325             : /* EOF */
-     326         130 : /* EOF */
-     327             : /* EOF */
-     328         165 : /* EOF */
-     329          55 : /* EOF */
-     330           0 : /* EOF */
-     331             : /* EOF */
-     332         165 : /* EOF */
-     333          55 : /* EOF */
-     334           0 : /* EOF */
-     335             : /* EOF */
-     336         165 : /* EOF */
-     337          55 : /* EOF */
-     338           0 : /* EOF */
-     339             : /* EOF */
-     340         165 : /* EOF */
-     341          55 : /* EOF */
-     342          80 : /* EOF */
-     343             : /* EOF */
-     344         165 : /* EOF */
-     345          55 : /* EOF */
-     346          80 : /* EOF */
-     347             : /* EOF */
-     348         165 : /* EOF */
-     349          55 : /* EOF */
-     350          40 : /* EOF */
-     351             : /* EOF */
-     352         165 : /* EOF */
-     353          55 : /* EOF */
-     354          80 : /* EOF */
-     355             : /* EOF */
-     356         165 : /* EOF */
-     357          55 : /* EOF */
-     358           0 : /* EOF */
-     359             : /* EOF */
-     360          75 : /* EOF */
-     361             : /* EOF */
-     362          75 : /* EOF */
-     363          25 : /* EOF */
-     364         100 : /* EOF */
-     365             : /* EOF */
-     366          50 : /* EOF */
-     367             : /* EOF */
-     368         120 : /* EOF */
-     369          40 : /* EOF */
-     370         160 : /* EOF */
-     371             : /* EOF */
-     372         120 : /* EOF */
-     373          40 : /* EOF */
-     374           0 : /* EOF */
-     375             : /* EOF */
-     376         120 : /* EOF */
-     377          40 : /* EOF */
-     378           0 : /* EOF */
-     379             : /* EOF */
-     380         120 : /* EOF */
-     381          40 : /* EOF */
-     382         160 : /* EOF */
-     383             : /* EOF */
-     384         120 : /* EOF */
-     385          40 : /* EOF */
-     386         160 : /* EOF */
-     387             : /* EOF */
-     388         120 : /* EOF */
-     389          40 : /* EOF */
-     390         160 : /* EOF */
-     391             : /* EOF */
-     392         120 : /* EOF */
-     393          40 : /* EOF */
-     394         160 : /* EOF */
-     395             : /* EOF */
-     396         120 : /* EOF */
-     397          40 : /* EOF */
-     398           0 : /* EOF */
-     399             : /* EOF */
-     400          10 : /* EOF */
-     401             : /* EOF */
-     402          30 : /* EOF */
-     403          10 : /* EOF */
-     404          40 : /* EOF */
-     405             : /* EOF */
-     406             : /* EOF */
-     407           0 : /* EOF */
-     408             : /* EOF */
-     409      217700 : /* EOF */
-     410             : /* EOF */
-     411       54425 : /* EOF */
-     412             : /* EOF */
-     413             : /* EOF */
-     414        2275 : /* EOF */
-     415             : /* EOF */
-     416             : /* EOF */
-     417             : /* EOF */
-     418             : /* EOF */
-     419        9100 : /* EOF */
-     420       11375 : /* EOF */
-     421        6825 : /* EOF */
-     422             : /* EOF */
-     423        4550 : /* EOF */
-     424             : /* EOF */
-     425        2275 : /* EOF */
-     426             : /* EOF */
-     427        1500 : /* EOF */
-     428         460 : /* EOF */
-     429        1000 : /* EOF */
-     430             : /* EOF */
-     431        2365 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func-sort-c.html deleted file mode 100644 index 6014d036..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerDDR3D0Ev5
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func.html deleted file mode 100644 index 26d34832..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerDDR3D0Ev5
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.gcov.html deleted file mode 100644 index 22766102..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR3.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR3.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          15 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func-sort-c.html deleted file mode 100644 index 456641f3..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18730860.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerDDR4C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerDDR46insertE7Command4Rank9BankGroup4Bank166614
_ZNK11CheckerDDR424timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank5298882
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func.html deleted file mode 100644 index ae2e63bf..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18730860.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerDDR4C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerDDR46insertE7Command4Rank9BankGroup4Bank166614
_ZNK11CheckerDDR424timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank5298882
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.gcov.html deleted file mode 100644 index dc96b501..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.cpp.gcov.html +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18730860.7 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37         114 : /* EOF */
-      38             : /* EOF */
-      39           6 : /* EOF */
-      40           6 : /* EOF */
-      41           6 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44          24 : /* EOF */
-      45          24 : /* EOF */
-      46          24 : /* EOF */
-      47          24 : /* EOF */
-      48          24 : /* EOF */
-      49          24 : /* EOF */
-      50          24 : /* EOF */
-      51             : /* EOF */
-      52          18 : /* EOF */
-      53             : /* EOF */
-      54          18 : /* EOF */
-      55          36 : /* EOF */
-      56          30 : /* EOF */
-      57          24 : /* EOF */
-      58          24 : /* EOF */
-      59          30 : /* EOF */
-      60          24 : /* EOF */
-      61          24 : /* EOF */
-      62          24 : /* EOF */
-      63          30 : /* EOF */
-      64           6 : /* EOF */
-      65             : /* EOF */
-      66     5298882 : /* EOF */
-      67             : /* EOF */
-      68     5298882 : /* EOF */
-      69    10597764 : /* EOF */
-      70             : /* EOF */
-      71     5298882 : /* EOF */
-      72             : /* EOF */
-      73     1586196 : /* EOF */
-      74      528732 : /* EOF */
-      75     2643660 : /* EOF */
-      76             : /* EOF */
-      77     1586196 : /* EOF */
-      78      528732 : /* EOF */
-      79           0 : /* EOF */
-      80             : /* EOF */
-      81     1586196 : /* EOF */
-      82      528732 : /* EOF */
-      83           0 : /* EOF */
-      84             : /* EOF */
-      85     1586196 : /* EOF */
-      86      528732 : /* EOF */
-      87           0 : /* EOF */
-      88             : /* EOF */
-      89     1586196 : /* EOF */
-      90      528732 : /* EOF */
-      91     2113608 : /* EOF */
-      92             : /* EOF */
-      93     1586196 : /* EOF */
-      94      528732 : /* EOF */
-      95     2113968 : /* EOF */
-      96             : /* EOF */
-      97     1586196 : /* EOF */
-      98      528732 : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101      528732 : /* EOF */
-     102             : /* EOF */
-     103     1586196 : /* EOF */
-     104      528732 : /* EOF */
-     105     2643660 : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108     1586196 : /* EOF */
-     109      528732 : /* EOF */
-     110     2114928 : /* EOF */
-     111             : /* EOF */
-     112     1586196 : /* EOF */
-     113      528732 : /* EOF */
-     114     2114928 : /* EOF */
-     115             : /* EOF */
-     116     1057464 : /* EOF */
-     117      528732 : /* EOF */
-     118     2114928 : /* EOF */
-     119             : /* EOF */
-     120     1586196 : /* EOF */
-     121      528732 : /* EOF */
-     122     2114928 : /* EOF */
-     123             : /* EOF */
-     124     1586196 : /* EOF */
-     125      528732 : /* EOF */
-     126     2114928 : /* EOF */
-     127             : /* EOF */
-     128     1057464 : /* EOF */
-     129      528732 : /* EOF */
-     130     2114928 : /* EOF */
-     131             : /* EOF */
-     132     1586196 : /* EOF */
-     133      528732 : /* EOF */
-     134           0 : /* EOF */
-     135             : /* EOF */
-     136     1586196 : /* EOF */
-     137      528732 : /* EOF */
-     138           0 : /* EOF */
-     139             : /* EOF */
-     140     4770150 : /* EOF */
-     141             : /* EOF */
-     142     5894694 : /* EOF */
-     143     1964898 : /* EOF */
-     144     9824490 : /* EOF */
-     145             : /* EOF */
-     146     5894694 : /* EOF */
-     147     1964898 : /* EOF */
-     148           0 : /* EOF */
-     149             : /* EOF */
-     150     5894694 : /* EOF */
-     151     1964898 : /* EOF */
-     152           0 : /* EOF */
-     153             : /* EOF */
-     154     5894694 : /* EOF */
-     155     1964898 : /* EOF */
-     156           0 : /* EOF */
-     157             : /* EOF */
-     158     5894694 : /* EOF */
-     159     1964898 : /* EOF */
-     160           0 : /* EOF */
-     161             : /* EOF */
-     162     5894694 : /* EOF */
-     163     1964898 : /* EOF */
-     164     7856568 : /* EOF */
-     165             : /* EOF */
-     166     5894694 : /* EOF */
-     167     1964898 : /* EOF */
-     168     7857240 : /* EOF */
-     169             : /* EOF */
-     170     5894694 : /* EOF */
-     171     1964898 : /* EOF */
-     172           0 : /* EOF */
-     173             : /* EOF */
-     174     5894694 : /* EOF */
-     175     1964898 : /* EOF */
-     176     7858272 : /* EOF */
-     177             : /* EOF */
-     178     5894694 : /* EOF */
-     179     1964898 : /* EOF */
-     180     7858920 : /* EOF */
-     181             : /* EOF */
-     182     5894694 : /* EOF */
-     183     1964898 : /* EOF */
-     184           0 : /* EOF */
-     185             : /* EOF */
-     186     5894694 : /* EOF */
-     187     1964898 : /* EOF */
-     188           0 : /* EOF */
-     189             : /* EOF */
-     190     5894694 : /* EOF */
-     191     1964898 : /* EOF */
-     192           0 : /* EOF */
-     193             : /* EOF */
-     194     2805252 : /* EOF */
-     195             : /* EOF */
-     196     8411994 : /* EOF */
-     197     2803998 : /* EOF */
-     198    11203176 : /* EOF */
-     199             : /* EOF */
-     200     8411994 : /* EOF */
-     201     2803998 : /* EOF */
-     202    11215200 : /* EOF */
-     203             : /* EOF */
-     204     8411994 : /* EOF */
-     205     2803998 : /* EOF */
-     206    11215968 : /* EOF */
-     207             : /* EOF */
-     208     8411994 : /* EOF */
-     209     2803998 : /* EOF */
-     210    16028928 : /* EOF */
-     211             : /* EOF */
-     212     8411994 : /* EOF */
-     213     2803998 : /* EOF */
-     214    14003970 : /* EOF */
-     215             : /* EOF */
-     216     8411994 : /* EOF */
-     217     2803998 : /* EOF */
-     218           0 : /* EOF */
-     219             : /* EOF */
-     220     8411994 : /* EOF */
-     221     2803998 : /* EOF */
-     222    11183640 : /* EOF */
-     223             : /* EOF */
-     224     8411994 : /* EOF */
-     225     2803998 : /* EOF */
-     226           0 : /* EOF */
-     227             : /* EOF */
-     228     8411994 : /* EOF */
-     229     2803998 : /* EOF */
-     230           0 : /* EOF */
-     231             : /* EOF */
-     232     8411994 : /* EOF */
-     233     2803998 : /* EOF */
-     234    11183640 : /* EOF */
-     235             : /* EOF */
-     236     8411994 : /* EOF */
-     237     2803998 : /* EOF */
-     238           0 : /* EOF */
-     239             : /* EOF */
-     240     8411994 : /* EOF */
-     241    14017980 : /* EOF */
-     242             : /* EOF */
-     243        1254 : /* EOF */
-     244             : /* EOF */
-     245           0 : /* EOF */
-     246           0 : /* EOF */
-     247           0 : /* EOF */
-     248             : /* EOF */
-     249           0 : /* EOF */
-     250           0 : /* EOF */
-     251           0 : /* EOF */
-     252             : /* EOF */
-     253           0 : /* EOF */
-     254           0 : /* EOF */
-     255           0 : /* EOF */
-     256             : /* EOF */
-     257           0 : /* EOF */
-     258           0 : /* EOF */
-     259           0 : /* EOF */
-     260             : /* EOF */
-     261        1254 : /* EOF */
-     262             : /* EOF */
-     263        3168 : /* EOF */
-     264        1056 : /* EOF */
-     265        4224 : /* EOF */
-     266             : /* EOF */
-     267        3168 : /* EOF */
-     268        1056 : /* EOF */
-     269           0 : /* EOF */
-     270             : /* EOF */
-     271        3168 : /* EOF */
-     272        1056 : /* EOF */
-     273        5250 : /* EOF */
-     274             : /* EOF */
-     275        3168 : /* EOF */
-     276        1056 : /* EOF */
-     277        4224 : /* EOF */
-     278             : /* EOF */
-     279        3168 : /* EOF */
-     280        1056 : /* EOF */
-     281        4224 : /* EOF */
-     282             : /* EOF */
-     283        3168 : /* EOF */
-     284        1056 : /* EOF */
-     285           0 : /* EOF */
-     286             : /* EOF */
-     287         198 : /* EOF */
-     288             : /* EOF */
-     289         594 : /* EOF */
-     290         198 : /* EOF */
-     291         792 : /* EOF */
-     292             : /* EOF */
-     293         594 : /* EOF */
-     294         198 : /* EOF */
-     295         504 : /* EOF */
-     296             : /* EOF */
-     297         594 : /* EOF */
-     298         198 : /* EOF */
-     299         990 : /* EOF */
-     300             : /* EOF */
-     301         594 : /* EOF */
-     302         198 : /* EOF */
-     303           0 : /* EOF */
-     304             : /* EOF */
-     305         594 : /* EOF */
-     306         198 : /* EOF */
-     307         792 : /* EOF */
-     308             : /* EOF */
-     309         594 : /* EOF */
-     310         198 : /* EOF */
-     311           0 : /* EOF */
-     312             : /* EOF */
-     313         594 : /* EOF */
-     314         198 : /* EOF */
-     315         744 : /* EOF */
-     316             : /* EOF */
-     317         594 : /* EOF */
-     318         198 : /* EOF */
-     319           0 : /* EOF */
-     320             : /* EOF */
-     321           0 : /* EOF */
-     322             : /* EOF */
-     323           0 : /* EOF */
-     324           0 : /* EOF */
-     325           0 : /* EOF */
-     326             : /* EOF */
-     327           0 : /* EOF */
-     328           0 : /* EOF */
-     329           0 : /* EOF */
-     330             : /* EOF */
-     331           0 : /* EOF */
-     332           0 : /* EOF */
-     333           0 : /* EOF */
-     334             : /* EOF */
-     335           0 : /* EOF */
-     336           0 : /* EOF */
-     337           0 : /* EOF */
-     338             : /* EOF */
-     339           0 : /* EOF */
-     340           0 : /* EOF */
-     341           0 : /* EOF */
-     342             : /* EOF */
-     343           0 : /* EOF */
-     344           0 : /* EOF */
-     345           0 : /* EOF */
-     346             : /* EOF */
-     347           0 : /* EOF */
-     348           0 : /* EOF */
-     349           0 : /* EOF */
-     350             : /* EOF */
-     351           0 : /* EOF */
-     352             : /* EOF */
-     353           0 : /* EOF */
-     354           0 : /* EOF */
-     355           0 : /* EOF */
-     356             : /* EOF */
-     357           0 : /* EOF */
-     358             : /* EOF */
-     359           0 : /* EOF */
-     360           0 : /* EOF */
-     361           0 : /* EOF */
-     362             : /* EOF */
-     363           0 : /* EOF */
-     364           0 : /* EOF */
-     365           0 : /* EOF */
-     366             : /* EOF */
-     367           0 : /* EOF */
-     368           0 : /* EOF */
-     369           0 : /* EOF */
-     370             : /* EOF */
-     371           0 : /* EOF */
-     372           0 : /* EOF */
-     373           0 : /* EOF */
-     374             : /* EOF */
-     375           0 : /* EOF */
-     376           0 : /* EOF */
-     377           0 : /* EOF */
-     378             : /* EOF */
-     379           0 : /* EOF */
-     380           0 : /* EOF */
-     381           0 : /* EOF */
-     382             : /* EOF */
-     383           0 : /* EOF */
-     384           0 : /* EOF */
-     385           0 : /* EOF */
-     386             : /* EOF */
-     387           0 : /* EOF */
-     388           0 : /* EOF */
-     389           0 : /* EOF */
-     390             : /* EOF */
-     391           0 : /* EOF */
-     392             : /* EOF */
-     393           0 : /* EOF */
-     394           0 : /* EOF */
-     395           0 : /* EOF */
-     396             : /* EOF */
-     397           0 : /* EOF */
-     398             : /* EOF */
-     399           0 : /* EOF */
-     400           0 : /* EOF */
-     401           0 : /* EOF */
-     402             : /* EOF */
-     403           0 : /* EOF */
-     404           0 : /* EOF */
-     405           0 : /* EOF */
-     406             : /* EOF */
-     407           0 : /* EOF */
-     408           0 : /* EOF */
-     409           0 : /* EOF */
-     410             : /* EOF */
-     411           0 : /* EOF */
-     412           0 : /* EOF */
-     413           0 : /* EOF */
-     414             : /* EOF */
-     415           0 : /* EOF */
-     416           0 : /* EOF */
-     417           0 : /* EOF */
-     418             : /* EOF */
-     419           0 : /* EOF */
-     420           0 : /* EOF */
-     421           0 : /* EOF */
-     422             : /* EOF */
-     423           0 : /* EOF */
-     424           0 : /* EOF */
-     425           0 : /* EOF */
-     426             : /* EOF */
-     427           0 : /* EOF */
-     428           0 : /* EOF */
-     429           0 : /* EOF */
-     430             : /* EOF */
-     431           0 : /* EOF */
-     432             : /* EOF */
-     433           0 : /* EOF */
-     434           0 : /* EOF */
-     435           0 : /* EOF */
-     436             : /* EOF */
-     437             : /* EOF */
-     438           0 : /* EOF */
-     439             : /* EOF */
-     440    21195528 : /* EOF */
-     441             : /* EOF */
-     442     5298882 : /* EOF */
-     443             : /* EOF */
-     444             : /* EOF */
-     445      166614 : /* EOF */
-     446             : /* EOF */
-     447             : /* EOF */
-     448             : /* EOF */
-     449             : /* EOF */
-     450      833070 : /* EOF */
-     451      833070 : /* EOF */
-     452      666456 : /* EOF */
-     453      499842 : /* EOF */
-     454      333228 : /* EOF */
-     455             : /* EOF */
-     456      166614 : /* EOF */
-     457             : /* EOF */
-     458      190656 : /* EOF */
-     459       63528 : /* EOF */
-     460      127104 : /* EOF */
-     461             : /* EOF */
-     462      166704 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func-sort-c.html deleted file mode 100644 index 808fa173..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerDDR4D0Ev6
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func.html deleted file mode 100644 index a1ebbff8..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerDDR4D0Ev6
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.gcov.html deleted file mode 100644 index d40679f5..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerDDR4.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerDDR4.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          18 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func-sort-c.html deleted file mode 100644 index d984585f..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR56insertE7Command4Rank9BankGroup4Bank0
_ZNK12CheckerGDDR524timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN12CheckerGDDR5C2Ev30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func.html deleted file mode 100644 index 166bbf28..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CheckerGDDR5C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN12CheckerGDDR56insertE7Command4Rank9BankGroup4Bank0
_ZNK12CheckerGDDR524timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.gcov.html deleted file mode 100644 index 4f3a4c50..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp.gcov.html +++ /dev/null @@ -1,636 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37           0 : /* EOF */
-      38             : /* EOF */
-      39           0 : /* EOF */
-      40           0 : /* EOF */
-      41           0 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54             : /* EOF */
-      55           0 : /* EOF */
-      56             : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66             : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69           0 : /* EOF */
-      70           0 : /* EOF */
-      71             : /* EOF */
-      72           0 : /* EOF */
-      73             : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77             : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81             : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89             : /* EOF */
-      90           0 : /* EOF */
-      91           0 : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97             : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100           0 : /* EOF */
-     101             : /* EOF */
-     102           0 : /* EOF */
-     103             : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109           0 : /* EOF */
-     110           0 : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120             : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124             : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127           0 : /* EOF */
-     128             : /* EOF */
-     129           0 : /* EOF */
-     130           0 : /* EOF */
-     131           0 : /* EOF */
-     132             : /* EOF */
-     133           0 : /* EOF */
-     134           0 : /* EOF */
-     135           0 : /* EOF */
-     136             : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140             : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143           0 : /* EOF */
-     144           0 : /* EOF */
-     145           0 : /* EOF */
-     146             : /* EOF */
-     147           0 : /* EOF */
-     148           0 : /* EOF */
-     149           0 : /* EOF */
-     150             : /* EOF */
-     151           0 : /* EOF */
-     152           0 : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155           0 : /* EOF */
-     156           0 : /* EOF */
-     157           0 : /* EOF */
-     158             : /* EOF */
-     159           0 : /* EOF */
-     160           0 : /* EOF */
-     161           0 : /* EOF */
-     162             : /* EOF */
-     163           0 : /* EOF */
-     164           0 : /* EOF */
-     165           0 : /* EOF */
-     166             : /* EOF */
-     167           0 : /* EOF */
-     168           0 : /* EOF */
-     169           0 : /* EOF */
-     170             : /* EOF */
-     171           0 : /* EOF */
-     172           0 : /* EOF */
-     173           0 : /* EOF */
-     174             : /* EOF */
-     175           0 : /* EOF */
-     176           0 : /* EOF */
-     177           0 : /* EOF */
-     178             : /* EOF */
-     179           0 : /* EOF */
-     180           0 : /* EOF */
-     181           0 : /* EOF */
-     182             : /* EOF */
-     183           0 : /* EOF */
-     184           0 : /* EOF */
-     185           0 : /* EOF */
-     186             : /* EOF */
-     187           0 : /* EOF */
-     188           0 : /* EOF */
-     189           0 : /* EOF */
-     190             : /* EOF */
-     191           0 : /* EOF */
-     192           0 : /* EOF */
-     193           0 : /* EOF */
-     194             : /* EOF */
-     195           0 : /* EOF */
-     196             : /* EOF */
-     197           0 : /* EOF */
-     198           0 : /* EOF */
-     199           0 : /* EOF */
-     200             : /* EOF */
-     201           0 : /* EOF */
-     202           0 : /* EOF */
-     203           0 : /* EOF */
-     204             : /* EOF */
-     205           0 : /* EOF */
-     206           0 : /* EOF */
-     207           0 : /* EOF */
-     208             : /* EOF */
-     209           0 : /* EOF */
-     210           0 : /* EOF */
-     211           0 : /* EOF */
-     212             : /* EOF */
-     213           0 : /* EOF */
-     214           0 : /* EOF */
-     215           0 : /* EOF */
-     216             : /* EOF */
-     217           0 : /* EOF */
-     218           0 : /* EOF */
-     219           0 : /* EOF */
-     220             : /* EOF */
-     221           0 : /* EOF */
-     222           0 : /* EOF */
-     223           0 : /* EOF */
-     224             : /* EOF */
-     225           0 : /* EOF */
-     226           0 : /* EOF */
-     227           0 : /* EOF */
-     228             : /* EOF */
-     229           0 : /* EOF */
-     230           0 : /* EOF */
-     231           0 : /* EOF */
-     232             : /* EOF */
-     233           0 : /* EOF */
-     234           0 : /* EOF */
-     235           0 : /* EOF */
-     236             : /* EOF */
-     237           0 : /* EOF */
-     238           0 : /* EOF */
-     239           0 : /* EOF */
-     240             : /* EOF */
-     241           0 : /* EOF */
-     242           0 : /* EOF */
-     243           0 : /* EOF */
-     244             : /* EOF */
-     245           0 : /* EOF */
-     246           0 : /* EOF */
-     247           0 : /* EOF */
-     248             : /* EOF */
-     249           0 : /* EOF */
-     250           0 : /* EOF */
-     251             : /* EOF */
-     252           0 : /* EOF */
-     253           0 : /* EOF */
-     254             : /* EOF */
-     255           0 : /* EOF */
-     256             : /* EOF */
-     257           0 : /* EOF */
-     258           0 : /* EOF */
-     259           0 : /* EOF */
-     260             : /* EOF */
-     261           0 : /* EOF */
-     262           0 : /* EOF */
-     263           0 : /* EOF */
-     264             : /* EOF */
-     265           0 : /* EOF */
-     266           0 : /* EOF */
-     267           0 : /* EOF */
-     268             : /* EOF */
-     269           0 : /* EOF */
-     270           0 : /* EOF */
-     271           0 : /* EOF */
-     272             : /* EOF */
-     273           0 : /* EOF */
-     274           0 : /* EOF */
-     275           0 : /* EOF */
-     276             : /* EOF */
-     277           0 : /* EOF */
-     278             : /* EOF */
-     279           0 : /* EOF */
-     280           0 : /* EOF */
-     281           0 : /* EOF */
-     282             : /* EOF */
-     283           0 : /* EOF */
-     284           0 : /* EOF */
-     285           0 : /* EOF */
-     286             : /* EOF */
-     287           0 : /* EOF */
-     288           0 : /* EOF */
-     289           0 : /* EOF */
-     290             : /* EOF */
-     291           0 : /* EOF */
-     292           0 : /* EOF */
-     293           0 : /* EOF */
-     294             : /* EOF */
-     295           0 : /* EOF */
-     296           0 : /* EOF */
-     297           0 : /* EOF */
-     298             : /* EOF */
-     299           0 : /* EOF */
-     300           0 : /* EOF */
-     301           0 : /* EOF */
-     302             : /* EOF */
-     303           0 : /* EOF */
-     304           0 : /* EOF */
-     305           0 : /* EOF */
-     306             : /* EOF */
-     307           0 : /* EOF */
-     308           0 : /* EOF */
-     309           0 : /* EOF */
-     310             : /* EOF */
-     311           0 : /* EOF */
-     312             : /* EOF */
-     313           0 : /* EOF */
-     314           0 : /* EOF */
-     315           0 : /* EOF */
-     316             : /* EOF */
-     317           0 : /* EOF */
-     318           0 : /* EOF */
-     319           0 : /* EOF */
-     320             : /* EOF */
-     321           0 : /* EOF */
-     322           0 : /* EOF */
-     323           0 : /* EOF */
-     324             : /* EOF */
-     325           0 : /* EOF */
-     326           0 : /* EOF */
-     327           0 : /* EOF */
-     328             : /* EOF */
-     329           0 : /* EOF */
-     330           0 : /* EOF */
-     331           0 : /* EOF */
-     332             : /* EOF */
-     333           0 : /* EOF */
-     334           0 : /* EOF */
-     335           0 : /* EOF */
-     336             : /* EOF */
-     337           0 : /* EOF */
-     338           0 : /* EOF */
-     339           0 : /* EOF */
-     340             : /* EOF */
-     341           0 : /* EOF */
-     342           0 : /* EOF */
-     343           0 : /* EOF */
-     344             : /* EOF */
-     345           0 : /* EOF */
-     346           0 : /* EOF */
-     347           0 : /* EOF */
-     348             : /* EOF */
-     349           0 : /* EOF */
-     350             : /* EOF */
-     351           0 : /* EOF */
-     352           0 : /* EOF */
-     353           0 : /* EOF */
-     354             : /* EOF */
-     355           0 : /* EOF */
-     356           0 : /* EOF */
-     357           0 : /* EOF */
-     358             : /* EOF */
-     359           0 : /* EOF */
-     360           0 : /* EOF */
-     361           0 : /* EOF */
-     362             : /* EOF */
-     363           0 : /* EOF */
-     364           0 : /* EOF */
-     365           0 : /* EOF */
-     366             : /* EOF */
-     367           0 : /* EOF */
-     368           0 : /* EOF */
-     369           0 : /* EOF */
-     370             : /* EOF */
-     371           0 : /* EOF */
-     372           0 : /* EOF */
-     373           0 : /* EOF */
-     374             : /* EOF */
-     375           0 : /* EOF */
-     376           0 : /* EOF */
-     377           0 : /* EOF */
-     378             : /* EOF */
-     379           0 : /* EOF */
-     380           0 : /* EOF */
-     381           0 : /* EOF */
-     382             : /* EOF */
-     383           0 : /* EOF */
-     384           0 : /* EOF */
-     385           0 : /* EOF */
-     386             : /* EOF */
-     387           0 : /* EOF */
-     388           0 : /* EOF */
-     389           0 : /* EOF */
-     390             : /* EOF */
-     391           0 : /* EOF */
-     392           0 : /* EOF */
-     393           0 : /* EOF */
-     394             : /* EOF */
-     395           0 : /* EOF */
-     396           0 : /* EOF */
-     397             : /* EOF */
-     398           0 : /* EOF */
-     399           0 : /* EOF */
-     400             : /* EOF */
-     401           0 : /* EOF */
-     402             : /* EOF */
-     403             : /* EOF */
-     404           0 : /* EOF */
-     405           0 : /* EOF */
-     406           0 : /* EOF */
-     407             : /* EOF */
-     408           0 : /* EOF */
-     409           0 : /* EOF */
-     410             : /* EOF */
-     411           0 : /* EOF */
-     412           0 : /* EOF */
-     413             : /* EOF */
-     414           0 : /* EOF */
-     415             : /* EOF */
-     416           0 : /* EOF */
-     417           0 : /* EOF */
-     418           0 : /* EOF */
-     419             : /* EOF */
-     420           0 : /* EOF */
-     421           0 : /* EOF */
-     422           0 : /* EOF */
-     423             : /* EOF */
-     424           0 : /* EOF */
-     425           0 : /* EOF */
-     426           0 : /* EOF */
-     427             : /* EOF */
-     428           0 : /* EOF */
-     429           0 : /* EOF */
-     430           0 : /* EOF */
-     431             : /* EOF */
-     432           0 : /* EOF */
-     433           0 : /* EOF */
-     434           0 : /* EOF */
-     435             : /* EOF */
-     436           0 : /* EOF */
-     437             : /* EOF */
-     438           0 : /* EOF */
-     439           0 : /* EOF */
-     440           0 : /* EOF */
-     441             : /* EOF */
-     442           0 : /* EOF */
-     443             : /* EOF */
-     444           0 : /* EOF */
-     445           0 : /* EOF */
-     446           0 : /* EOF */
-     447             : /* EOF */
-     448           0 : /* EOF */
-     449           0 : /* EOF */
-     450           0 : /* EOF */
-     451             : /* EOF */
-     452           0 : /* EOF */
-     453           0 : /* EOF */
-     454           0 : /* EOF */
-     455             : /* EOF */
-     456           0 : /* EOF */
-     457           0 : /* EOF */
-     458           0 : /* EOF */
-     459             : /* EOF */
-     460           0 : /* EOF */
-     461           0 : /* EOF */
-     462           0 : /* EOF */
-     463             : /* EOF */
-     464           0 : /* EOF */
-     465             : /* EOF */
-     466           0 : /* EOF */
-     467           0 : /* EOF */
-     468           0 : /* EOF */
-     469             : /* EOF */
-     470           0 : /* EOF */
-     471             : /* EOF */
-     472           0 : /* EOF */
-     473           0 : /* EOF */
-     474           0 : /* EOF */
-     475             : /* EOF */
-     476           0 : /* EOF */
-     477           0 : /* EOF */
-     478           0 : /* EOF */
-     479             : /* EOF */
-     480           0 : /* EOF */
-     481           0 : /* EOF */
-     482           0 : /* EOF */
-     483             : /* EOF */
-     484           0 : /* EOF */
-     485           0 : /* EOF */
-     486           0 : /* EOF */
-     487             : /* EOF */
-     488           0 : /* EOF */
-     489           0 : /* EOF */
-     490           0 : /* EOF */
-     491             : /* EOF */
-     492           0 : /* EOF */
-     493           0 : /* EOF */
-     494           0 : /* EOF */
-     495             : /* EOF */
-     496           0 : /* EOF */
-     497           0 : /* EOF */
-     498           0 : /* EOF */
-     499             : /* EOF */
-     500           0 : /* EOF */
-     501           0 : /* EOF */
-     502           0 : /* EOF */
-     503             : /* EOF */
-     504           0 : /* EOF */
-     505           0 : /* EOF */
-     506           0 : /* EOF */
-     507             : /* EOF */
-     508           0 : /* EOF */
-     509           0 : /* EOF */
-     510           0 : /* EOF */
-     511             : /* EOF */
-     512           0 : /* EOF */
-     513             : /* EOF */
-     514           0 : /* EOF */
-     515           0 : /* EOF */
-     516           0 : /* EOF */
-     517             : /* EOF */
-     518             : /* EOF */
-     519           0 : /* EOF */
-     520             : /* EOF */
-     521             : /* EOF */
-     522           0 : /* EOF */
-     523             : /* EOF */
-     524           0 : /* EOF */
-     525             : /* EOF */
-     526             : /* EOF */
-     527           0 : /* EOF */
-     528             : /* EOF */
-     529             : /* EOF */
-     530             : /* EOF */
-     531             : /* EOF */
-     532           0 : /* EOF */
-     533           0 : /* EOF */
-     534           0 : /* EOF */
-     535           0 : /* EOF */
-     536           0 : /* EOF */
-     537             : /* EOF */
-     538           0 : /* EOF */
-     539             : /* EOF */
-     540           0 : /* EOF */
-     541           0 : /* EOF */
-     542           0 : /* EOF */
-     543             : /* EOF */
-     544           0 : /* EOF */
-     545           0 : /* EOF */
-     546           0 : /* EOF */
-     547             : /* EOF */
-     548             : /* EOF */
-     549           0 : /* EOF */
-     550           0 : /* EOF */
-     551          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func-sort-c.html deleted file mode 100644 index 0d5c1e82..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR5D0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func.html deleted file mode 100644 index b92b3e8d..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR5D0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.gcov.html deleted file mode 100644 index ee020294..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func-sort-c.html deleted file mode 100644 index d90fa150..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerGDDR5X6insertE7Command4Rank9BankGroup4Bank0
_ZNK13CheckerGDDR5X24timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN13CheckerGDDR5XC2Ev30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func.html deleted file mode 100644 index a89b2ed6..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13CheckerGDDR5XC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13CheckerGDDR5X6insertE7Command4Rank9BankGroup4Bank0
_ZNK13CheckerGDDR5X24timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.gcov.html deleted file mode 100644 index b7d0a57f..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp.gcov.html +++ /dev/null @@ -1,636 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13700.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37           0 : /* EOF */
-      38             : /* EOF */
-      39           0 : /* EOF */
-      40           0 : /* EOF */
-      41           0 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54             : /* EOF */
-      55           0 : /* EOF */
-      56             : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66             : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69           0 : /* EOF */
-      70           0 : /* EOF */
-      71             : /* EOF */
-      72           0 : /* EOF */
-      73             : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77             : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81             : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89             : /* EOF */
-      90           0 : /* EOF */
-      91           0 : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97             : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100           0 : /* EOF */
-     101             : /* EOF */
-     102           0 : /* EOF */
-     103             : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109           0 : /* EOF */
-     110           0 : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120             : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124             : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127           0 : /* EOF */
-     128             : /* EOF */
-     129           0 : /* EOF */
-     130           0 : /* EOF */
-     131           0 : /* EOF */
-     132             : /* EOF */
-     133           0 : /* EOF */
-     134           0 : /* EOF */
-     135           0 : /* EOF */
-     136             : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140             : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143           0 : /* EOF */
-     144           0 : /* EOF */
-     145           0 : /* EOF */
-     146             : /* EOF */
-     147           0 : /* EOF */
-     148           0 : /* EOF */
-     149           0 : /* EOF */
-     150             : /* EOF */
-     151           0 : /* EOF */
-     152           0 : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155           0 : /* EOF */
-     156           0 : /* EOF */
-     157           0 : /* EOF */
-     158             : /* EOF */
-     159           0 : /* EOF */
-     160           0 : /* EOF */
-     161           0 : /* EOF */
-     162             : /* EOF */
-     163           0 : /* EOF */
-     164           0 : /* EOF */
-     165           0 : /* EOF */
-     166             : /* EOF */
-     167           0 : /* EOF */
-     168           0 : /* EOF */
-     169           0 : /* EOF */
-     170             : /* EOF */
-     171           0 : /* EOF */
-     172           0 : /* EOF */
-     173           0 : /* EOF */
-     174             : /* EOF */
-     175           0 : /* EOF */
-     176           0 : /* EOF */
-     177           0 : /* EOF */
-     178             : /* EOF */
-     179           0 : /* EOF */
-     180           0 : /* EOF */
-     181           0 : /* EOF */
-     182             : /* EOF */
-     183           0 : /* EOF */
-     184           0 : /* EOF */
-     185           0 : /* EOF */
-     186             : /* EOF */
-     187           0 : /* EOF */
-     188           0 : /* EOF */
-     189           0 : /* EOF */
-     190             : /* EOF */
-     191           0 : /* EOF */
-     192           0 : /* EOF */
-     193           0 : /* EOF */
-     194             : /* EOF */
-     195           0 : /* EOF */
-     196             : /* EOF */
-     197           0 : /* EOF */
-     198           0 : /* EOF */
-     199           0 : /* EOF */
-     200             : /* EOF */
-     201           0 : /* EOF */
-     202           0 : /* EOF */
-     203           0 : /* EOF */
-     204             : /* EOF */
-     205           0 : /* EOF */
-     206           0 : /* EOF */
-     207           0 : /* EOF */
-     208             : /* EOF */
-     209           0 : /* EOF */
-     210           0 : /* EOF */
-     211           0 : /* EOF */
-     212             : /* EOF */
-     213           0 : /* EOF */
-     214           0 : /* EOF */
-     215           0 : /* EOF */
-     216             : /* EOF */
-     217           0 : /* EOF */
-     218           0 : /* EOF */
-     219           0 : /* EOF */
-     220             : /* EOF */
-     221           0 : /* EOF */
-     222           0 : /* EOF */
-     223           0 : /* EOF */
-     224             : /* EOF */
-     225           0 : /* EOF */
-     226           0 : /* EOF */
-     227           0 : /* EOF */
-     228             : /* EOF */
-     229           0 : /* EOF */
-     230           0 : /* EOF */
-     231           0 : /* EOF */
-     232             : /* EOF */
-     233           0 : /* EOF */
-     234           0 : /* EOF */
-     235           0 : /* EOF */
-     236             : /* EOF */
-     237           0 : /* EOF */
-     238           0 : /* EOF */
-     239           0 : /* EOF */
-     240             : /* EOF */
-     241           0 : /* EOF */
-     242           0 : /* EOF */
-     243           0 : /* EOF */
-     244             : /* EOF */
-     245           0 : /* EOF */
-     246           0 : /* EOF */
-     247           0 : /* EOF */
-     248             : /* EOF */
-     249           0 : /* EOF */
-     250           0 : /* EOF */
-     251             : /* EOF */
-     252           0 : /* EOF */
-     253           0 : /* EOF */
-     254             : /* EOF */
-     255           0 : /* EOF */
-     256             : /* EOF */
-     257           0 : /* EOF */
-     258           0 : /* EOF */
-     259           0 : /* EOF */
-     260             : /* EOF */
-     261           0 : /* EOF */
-     262           0 : /* EOF */
-     263           0 : /* EOF */
-     264             : /* EOF */
-     265           0 : /* EOF */
-     266           0 : /* EOF */
-     267           0 : /* EOF */
-     268             : /* EOF */
-     269           0 : /* EOF */
-     270           0 : /* EOF */
-     271           0 : /* EOF */
-     272             : /* EOF */
-     273           0 : /* EOF */
-     274           0 : /* EOF */
-     275           0 : /* EOF */
-     276             : /* EOF */
-     277           0 : /* EOF */
-     278             : /* EOF */
-     279           0 : /* EOF */
-     280           0 : /* EOF */
-     281           0 : /* EOF */
-     282             : /* EOF */
-     283           0 : /* EOF */
-     284           0 : /* EOF */
-     285           0 : /* EOF */
-     286             : /* EOF */
-     287           0 : /* EOF */
-     288           0 : /* EOF */
-     289           0 : /* EOF */
-     290             : /* EOF */
-     291           0 : /* EOF */
-     292           0 : /* EOF */
-     293           0 : /* EOF */
-     294             : /* EOF */
-     295           0 : /* EOF */
-     296           0 : /* EOF */
-     297           0 : /* EOF */
-     298             : /* EOF */
-     299           0 : /* EOF */
-     300           0 : /* EOF */
-     301           0 : /* EOF */
-     302             : /* EOF */
-     303           0 : /* EOF */
-     304           0 : /* EOF */
-     305           0 : /* EOF */
-     306             : /* EOF */
-     307           0 : /* EOF */
-     308           0 : /* EOF */
-     309           0 : /* EOF */
-     310             : /* EOF */
-     311           0 : /* EOF */
-     312             : /* EOF */
-     313           0 : /* EOF */
-     314           0 : /* EOF */
-     315           0 : /* EOF */
-     316             : /* EOF */
-     317           0 : /* EOF */
-     318           0 : /* EOF */
-     319           0 : /* EOF */
-     320             : /* EOF */
-     321           0 : /* EOF */
-     322           0 : /* EOF */
-     323           0 : /* EOF */
-     324             : /* EOF */
-     325           0 : /* EOF */
-     326           0 : /* EOF */
-     327           0 : /* EOF */
-     328             : /* EOF */
-     329           0 : /* EOF */
-     330           0 : /* EOF */
-     331           0 : /* EOF */
-     332             : /* EOF */
-     333           0 : /* EOF */
-     334           0 : /* EOF */
-     335           0 : /* EOF */
-     336             : /* EOF */
-     337           0 : /* EOF */
-     338           0 : /* EOF */
-     339           0 : /* EOF */
-     340             : /* EOF */
-     341           0 : /* EOF */
-     342           0 : /* EOF */
-     343           0 : /* EOF */
-     344             : /* EOF */
-     345           0 : /* EOF */
-     346           0 : /* EOF */
-     347           0 : /* EOF */
-     348             : /* EOF */
-     349           0 : /* EOF */
-     350             : /* EOF */
-     351           0 : /* EOF */
-     352           0 : /* EOF */
-     353           0 : /* EOF */
-     354             : /* EOF */
-     355           0 : /* EOF */
-     356           0 : /* EOF */
-     357           0 : /* EOF */
-     358             : /* EOF */
-     359           0 : /* EOF */
-     360           0 : /* EOF */
-     361           0 : /* EOF */
-     362             : /* EOF */
-     363           0 : /* EOF */
-     364           0 : /* EOF */
-     365           0 : /* EOF */
-     366             : /* EOF */
-     367           0 : /* EOF */
-     368           0 : /* EOF */
-     369           0 : /* EOF */
-     370             : /* EOF */
-     371           0 : /* EOF */
-     372           0 : /* EOF */
-     373           0 : /* EOF */
-     374             : /* EOF */
-     375           0 : /* EOF */
-     376           0 : /* EOF */
-     377           0 : /* EOF */
-     378             : /* EOF */
-     379           0 : /* EOF */
-     380           0 : /* EOF */
-     381           0 : /* EOF */
-     382             : /* EOF */
-     383           0 : /* EOF */
-     384           0 : /* EOF */
-     385           0 : /* EOF */
-     386             : /* EOF */
-     387           0 : /* EOF */
-     388           0 : /* EOF */
-     389           0 : /* EOF */
-     390             : /* EOF */
-     391           0 : /* EOF */
-     392           0 : /* EOF */
-     393           0 : /* EOF */
-     394             : /* EOF */
-     395           0 : /* EOF */
-     396           0 : /* EOF */
-     397             : /* EOF */
-     398           0 : /* EOF */
-     399           0 : /* EOF */
-     400             : /* EOF */
-     401           0 : /* EOF */
-     402             : /* EOF */
-     403             : /* EOF */
-     404           0 : /* EOF */
-     405           0 : /* EOF */
-     406           0 : /* EOF */
-     407             : /* EOF */
-     408           0 : /* EOF */
-     409           0 : /* EOF */
-     410             : /* EOF */
-     411           0 : /* EOF */
-     412           0 : /* EOF */
-     413             : /* EOF */
-     414           0 : /* EOF */
-     415             : /* EOF */
-     416           0 : /* EOF */
-     417           0 : /* EOF */
-     418           0 : /* EOF */
-     419             : /* EOF */
-     420           0 : /* EOF */
-     421           0 : /* EOF */
-     422           0 : /* EOF */
-     423             : /* EOF */
-     424           0 : /* EOF */
-     425           0 : /* EOF */
-     426           0 : /* EOF */
-     427             : /* EOF */
-     428           0 : /* EOF */
-     429           0 : /* EOF */
-     430           0 : /* EOF */
-     431             : /* EOF */
-     432           0 : /* EOF */
-     433           0 : /* EOF */
-     434           0 : /* EOF */
-     435             : /* EOF */
-     436           0 : /* EOF */
-     437             : /* EOF */
-     438           0 : /* EOF */
-     439           0 : /* EOF */
-     440           0 : /* EOF */
-     441             : /* EOF */
-     442           0 : /* EOF */
-     443             : /* EOF */
-     444           0 : /* EOF */
-     445           0 : /* EOF */
-     446           0 : /* EOF */
-     447             : /* EOF */
-     448           0 : /* EOF */
-     449           0 : /* EOF */
-     450           0 : /* EOF */
-     451             : /* EOF */
-     452           0 : /* EOF */
-     453           0 : /* EOF */
-     454           0 : /* EOF */
-     455             : /* EOF */
-     456           0 : /* EOF */
-     457           0 : /* EOF */
-     458           0 : /* EOF */
-     459             : /* EOF */
-     460           0 : /* EOF */
-     461           0 : /* EOF */
-     462           0 : /* EOF */
-     463             : /* EOF */
-     464           0 : /* EOF */
-     465             : /* EOF */
-     466           0 : /* EOF */
-     467           0 : /* EOF */
-     468           0 : /* EOF */
-     469             : /* EOF */
-     470           0 : /* EOF */
-     471             : /* EOF */
-     472           0 : /* EOF */
-     473           0 : /* EOF */
-     474           0 : /* EOF */
-     475             : /* EOF */
-     476           0 : /* EOF */
-     477           0 : /* EOF */
-     478           0 : /* EOF */
-     479             : /* EOF */
-     480           0 : /* EOF */
-     481           0 : /* EOF */
-     482           0 : /* EOF */
-     483             : /* EOF */
-     484           0 : /* EOF */
-     485           0 : /* EOF */
-     486           0 : /* EOF */
-     487             : /* EOF */
-     488           0 : /* EOF */
-     489           0 : /* EOF */
-     490           0 : /* EOF */
-     491             : /* EOF */
-     492           0 : /* EOF */
-     493           0 : /* EOF */
-     494           0 : /* EOF */
-     495             : /* EOF */
-     496           0 : /* EOF */
-     497           0 : /* EOF */
-     498           0 : /* EOF */
-     499             : /* EOF */
-     500           0 : /* EOF */
-     501           0 : /* EOF */
-     502           0 : /* EOF */
-     503             : /* EOF */
-     504           0 : /* EOF */
-     505           0 : /* EOF */
-     506           0 : /* EOF */
-     507             : /* EOF */
-     508           0 : /* EOF */
-     509           0 : /* EOF */
-     510           0 : /* EOF */
-     511             : /* EOF */
-     512           0 : /* EOF */
-     513             : /* EOF */
-     514           0 : /* EOF */
-     515           0 : /* EOF */
-     516           0 : /* EOF */
-     517             : /* EOF */
-     518             : /* EOF */
-     519           0 : /* EOF */
-     520             : /* EOF */
-     521             : /* EOF */
-     522           0 : /* EOF */
-     523             : /* EOF */
-     524           0 : /* EOF */
-     525             : /* EOF */
-     526             : /* EOF */
-     527           0 : /* EOF */
-     528             : /* EOF */
-     529             : /* EOF */
-     530             : /* EOF */
-     531             : /* EOF */
-     532           0 : /* EOF */
-     533           0 : /* EOF */
-     534           0 : /* EOF */
-     535           0 : /* EOF */
-     536           0 : /* EOF */
-     537             : /* EOF */
-     538           0 : /* EOF */
-     539             : /* EOF */
-     540           0 : /* EOF */
-     541           0 : /* EOF */
-     542           0 : /* EOF */
-     543             : /* EOF */
-     544           0 : /* EOF */
-     545           0 : /* EOF */
-     546           0 : /* EOF */
-     547             : /* EOF */
-     548             : /* EOF */
-     549           0 : /* EOF */
-     550           0 : /* EOF */
-     551          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func-sort-c.html deleted file mode 100644 index aef249ed..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerGDDR5XD0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func.html deleted file mode 100644 index 49f39f2a..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerGDDR5XD0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.gcov.html deleted file mode 100644 index 3455df81..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR5X.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR5X.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func-sort-c.html deleted file mode 100644 index 78000dfe..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13830.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR66insertE7Command4Rank9BankGroup4Bank0
_ZNK12CheckerGDDR624timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN12CheckerGDDR6C2Ev30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func.html deleted file mode 100644 index 5300d12e..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13830.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CheckerGDDR6C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN12CheckerGDDR66insertE7Command4Rank9BankGroup4Bank0
_ZNK12CheckerGDDR624timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.gcov.html deleted file mode 100644 index e6b0187c..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp.gcov.html +++ /dev/null @@ -1,653 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13830.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37           0 : /* EOF */
-      38             : /* EOF */
-      39           0 : /* EOF */
-      40           0 : /* EOF */
-      41           0 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-      55             : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65             : /* EOF */
-      66           0 : /* EOF */
-      67             : /* EOF */
-      68           0 : /* EOF */
-      69           0 : /* EOF */
-      70             : /* EOF */
-      71           0 : /* EOF */
-      72             : /* EOF */
-      73           0 : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76             : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80             : /* EOF */
-      81           0 : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84             : /* EOF */
-      85           0 : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88             : /* EOF */
-      89           0 : /* EOF */
-      90           0 : /* EOF */
-      91           0 : /* EOF */
-      92             : /* EOF */
-      93           0 : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96             : /* EOF */
-      97           0 : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101           0 : /* EOF */
-     102             : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108           0 : /* EOF */
-     109           0 : /* EOF */
-     110           0 : /* EOF */
-     111             : /* EOF */
-     112           0 : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115             : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119             : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127             : /* EOF */
-     128           0 : /* EOF */
-     129           0 : /* EOF */
-     130           0 : /* EOF */
-     131             : /* EOF */
-     132           0 : /* EOF */
-     133           0 : /* EOF */
-     134           0 : /* EOF */
-     135             : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139             : /* EOF */
-     140           0 : /* EOF */
-     141             : /* EOF */
-     142           0 : /* EOF */
-     143           0 : /* EOF */
-     144           0 : /* EOF */
-     145             : /* EOF */
-     146           0 : /* EOF */
-     147           0 : /* EOF */
-     148           0 : /* EOF */
-     149             : /* EOF */
-     150           0 : /* EOF */
-     151           0 : /* EOF */
-     152           0 : /* EOF */
-     153             : /* EOF */
-     154           0 : /* EOF */
-     155           0 : /* EOF */
-     156           0 : /* EOF */
-     157             : /* EOF */
-     158           0 : /* EOF */
-     159           0 : /* EOF */
-     160           0 : /* EOF */
-     161             : /* EOF */
-     162           0 : /* EOF */
-     163           0 : /* EOF */
-     164           0 : /* EOF */
-     165             : /* EOF */
-     166           0 : /* EOF */
-     167           0 : /* EOF */
-     168           0 : /* EOF */
-     169             : /* EOF */
-     170           0 : /* EOF */
-     171           0 : /* EOF */
-     172           0 : /* EOF */
-     173             : /* EOF */
-     174           0 : /* EOF */
-     175           0 : /* EOF */
-     176           0 : /* EOF */
-     177             : /* EOF */
-     178           0 : /* EOF */
-     179           0 : /* EOF */
-     180           0 : /* EOF */
-     181             : /* EOF */
-     182           0 : /* EOF */
-     183           0 : /* EOF */
-     184           0 : /* EOF */
-     185             : /* EOF */
-     186           0 : /* EOF */
-     187           0 : /* EOF */
-     188           0 : /* EOF */
-     189             : /* EOF */
-     190           0 : /* EOF */
-     191           0 : /* EOF */
-     192           0 : /* EOF */
-     193             : /* EOF */
-     194           0 : /* EOF */
-     195             : /* EOF */
-     196           0 : /* EOF */
-     197           0 : /* EOF */
-     198           0 : /* EOF */
-     199             : /* EOF */
-     200           0 : /* EOF */
-     201           0 : /* EOF */
-     202           0 : /* EOF */
-     203             : /* EOF */
-     204           0 : /* EOF */
-     205           0 : /* EOF */
-     206           0 : /* EOF */
-     207             : /* EOF */
-     208           0 : /* EOF */
-     209           0 : /* EOF */
-     210           0 : /* EOF */
-     211             : /* EOF */
-     212           0 : /* EOF */
-     213           0 : /* EOF */
-     214           0 : /* EOF */
-     215             : /* EOF */
-     216           0 : /* EOF */
-     217           0 : /* EOF */
-     218           0 : /* EOF */
-     219             : /* EOF */
-     220           0 : /* EOF */
-     221           0 : /* EOF */
-     222           0 : /* EOF */
-     223             : /* EOF */
-     224           0 : /* EOF */
-     225           0 : /* EOF */
-     226           0 : /* EOF */
-     227             : /* EOF */
-     228           0 : /* EOF */
-     229           0 : /* EOF */
-     230           0 : /* EOF */
-     231             : /* EOF */
-     232           0 : /* EOF */
-     233           0 : /* EOF */
-     234           0 : /* EOF */
-     235             : /* EOF */
-     236           0 : /* EOF */
-     237           0 : /* EOF */
-     238           0 : /* EOF */
-     239             : /* EOF */
-     240           0 : /* EOF */
-     241           0 : /* EOF */
-     242           0 : /* EOF */
-     243             : /* EOF */
-     244           0 : /* EOF */
-     245           0 : /* EOF */
-     246           0 : /* EOF */
-     247             : /* EOF */
-     248           0 : /* EOF */
-     249           0 : /* EOF */
-     250             : /* EOF */
-     251           0 : /* EOF */
-     252             : /* EOF */
-     253           0 : /* EOF */
-     254           0 : /* EOF */
-     255           0 : /* EOF */
-     256             : /* EOF */
-     257           0 : /* EOF */
-     258           0 : /* EOF */
-     259           0 : /* EOF */
-     260             : /* EOF */
-     261           0 : /* EOF */
-     262           0 : /* EOF */
-     263           0 : /* EOF */
-     264             : /* EOF */
-     265           0 : /* EOF */
-     266           0 : /* EOF */
-     267           0 : /* EOF */
-     268             : /* EOF */
-     269           0 : /* EOF */
-     270           0 : /* EOF */
-     271           0 : /* EOF */
-     272             : /* EOF */
-     273           0 : /* EOF */
-     274             : /* EOF */
-     275           0 : /* EOF */
-     276           0 : /* EOF */
-     277           0 : /* EOF */
-     278             : /* EOF */
-     279           0 : /* EOF */
-     280           0 : /* EOF */
-     281           0 : /* EOF */
-     282             : /* EOF */
-     283           0 : /* EOF */
-     284           0 : /* EOF */
-     285           0 : /* EOF */
-     286             : /* EOF */
-     287           0 : /* EOF */
-     288           0 : /* EOF */
-     289           0 : /* EOF */
-     290             : /* EOF */
-     291           0 : /* EOF */
-     292           0 : /* EOF */
-     293           0 : /* EOF */
-     294             : /* EOF */
-     295           0 : /* EOF */
-     296           0 : /* EOF */
-     297           0 : /* EOF */
-     298             : /* EOF */
-     299           0 : /* EOF */
-     300           0 : /* EOF */
-     301           0 : /* EOF */
-     302             : /* EOF */
-     303           0 : /* EOF */
-     304           0 : /* EOF */
-     305           0 : /* EOF */
-     306             : /* EOF */
-     307           0 : /* EOF */
-     308             : /* EOF */
-     309           0 : /* EOF */
-     310           0 : /* EOF */
-     311           0 : /* EOF */
-     312             : /* EOF */
-     313           0 : /* EOF */
-     314           0 : /* EOF */
-     315           0 : /* EOF */
-     316             : /* EOF */
-     317           0 : /* EOF */
-     318           0 : /* EOF */
-     319           0 : /* EOF */
-     320             : /* EOF */
-     321           0 : /* EOF */
-     322           0 : /* EOF */
-     323           0 : /* EOF */
-     324             : /* EOF */
-     325           0 : /* EOF */
-     326           0 : /* EOF */
-     327           0 : /* EOF */
-     328             : /* EOF */
-     329           0 : /* EOF */
-     330           0 : /* EOF */
-     331           0 : /* EOF */
-     332             : /* EOF */
-     333           0 : /* EOF */
-     334           0 : /* EOF */
-     335           0 : /* EOF */
-     336             : /* EOF */
-     337           0 : /* EOF */
-     338           0 : /* EOF */
-     339           0 : /* EOF */
-     340             : /* EOF */
-     341           0 : /* EOF */
-     342           0 : /* EOF */
-     343           0 : /* EOF */
-     344             : /* EOF */
-     345           0 : /* EOF */
-     346             : /* EOF */
-     347           0 : /* EOF */
-     348           0 : /* EOF */
-     349           0 : /* EOF */
-     350             : /* EOF */
-     351           0 : /* EOF */
-     352           0 : /* EOF */
-     353           0 : /* EOF */
-     354             : /* EOF */
-     355           0 : /* EOF */
-     356           0 : /* EOF */
-     357           0 : /* EOF */
-     358             : /* EOF */
-     359           0 : /* EOF */
-     360           0 : /* EOF */
-     361           0 : /* EOF */
-     362             : /* EOF */
-     363           0 : /* EOF */
-     364           0 : /* EOF */
-     365           0 : /* EOF */
-     366             : /* EOF */
-     367           0 : /* EOF */
-     368           0 : /* EOF */
-     369           0 : /* EOF */
-     370             : /* EOF */
-     371           0 : /* EOF */
-     372           0 : /* EOF */
-     373           0 : /* EOF */
-     374             : /* EOF */
-     375           0 : /* EOF */
-     376           0 : /* EOF */
-     377           0 : /* EOF */
-     378             : /* EOF */
-     379           0 : /* EOF */
-     380           0 : /* EOF */
-     381           0 : /* EOF */
-     382             : /* EOF */
-     383           0 : /* EOF */
-     384           0 : /* EOF */
-     385           0 : /* EOF */
-     386             : /* EOF */
-     387           0 : /* EOF */
-     388           0 : /* EOF */
-     389           0 : /* EOF */
-     390             : /* EOF */
-     391           0 : /* EOF */
-     392           0 : /* EOF */
-     393             : /* EOF */
-     394           0 : /* EOF */
-     395           0 : /* EOF */
-     396             : /* EOF */
-     397           0 : /* EOF */
-     398             : /* EOF */
-     399             : /* EOF */
-     400           0 : /* EOF */
-     401           0 : /* EOF */
-     402           0 : /* EOF */
-     403             : /* EOF */
-     404           0 : /* EOF */
-     405           0 : /* EOF */
-     406             : /* EOF */
-     407           0 : /* EOF */
-     408             : /* EOF */
-     409           0 : /* EOF */
-     410           0 : /* EOF */
-     411           0 : /* EOF */
-     412             : /* EOF */
-     413           0 : /* EOF */
-     414           0 : /* EOF */
-     415           0 : /* EOF */
-     416             : /* EOF */
-     417           0 : /* EOF */
-     418           0 : /* EOF */
-     419           0 : /* EOF */
-     420             : /* EOF */
-     421           0 : /* EOF */
-     422           0 : /* EOF */
-     423           0 : /* EOF */
-     424             : /* EOF */
-     425           0 : /* EOF */
-     426           0 : /* EOF */
-     427           0 : /* EOF */
-     428             : /* EOF */
-     429           0 : /* EOF */
-     430           0 : /* EOF */
-     431           0 : /* EOF */
-     432             : /* EOF */
-     433           0 : /* EOF */
-     434           0 : /* EOF */
-     435           0 : /* EOF */
-     436             : /* EOF */
-     437           0 : /* EOF */
-     438           0 : /* EOF */
-     439           0 : /* EOF */
-     440             : /* EOF */
-     441           0 : /* EOF */
-     442             : /* EOF */
-     443           0 : /* EOF */
-     444           0 : /* EOF */
-     445           0 : /* EOF */
-     446             : /* EOF */
-     447           0 : /* EOF */
-     448             : /* EOF */
-     449           0 : /* EOF */
-     450           0 : /* EOF */
-     451           0 : /* EOF */
-     452             : /* EOF */
-     453           0 : /* EOF */
-     454           0 : /* EOF */
-     455           0 : /* EOF */
-     456             : /* EOF */
-     457           0 : /* EOF */
-     458           0 : /* EOF */
-     459           0 : /* EOF */
-     460             : /* EOF */
-     461           0 : /* EOF */
-     462           0 : /* EOF */
-     463           0 : /* EOF */
-     464             : /* EOF */
-     465           0 : /* EOF */
-     466           0 : /* EOF */
-     467           0 : /* EOF */
-     468             : /* EOF */
-     469           0 : /* EOF */
-     470           0 : /* EOF */
-     471           0 : /* EOF */
-     472             : /* EOF */
-     473           0 : /* EOF */
-     474           0 : /* EOF */
-     475           0 : /* EOF */
-     476             : /* EOF */
-     477           0 : /* EOF */
-     478           0 : /* EOF */
-     479           0 : /* EOF */
-     480             : /* EOF */
-     481           0 : /* EOF */
-     482           0 : /* EOF */
-     483           0 : /* EOF */
-     484             : /* EOF */
-     485           0 : /* EOF */
-     486             : /* EOF */
-     487           0 : /* EOF */
-     488           0 : /* EOF */
-     489           0 : /* EOF */
-     490             : /* EOF */
-     491           0 : /* EOF */
-     492             : /* EOF */
-     493           0 : /* EOF */
-     494           0 : /* EOF */
-     495           0 : /* EOF */
-     496             : /* EOF */
-     497           0 : /* EOF */
-     498           0 : /* EOF */
-     499           0 : /* EOF */
-     500             : /* EOF */
-     501           0 : /* EOF */
-     502           0 : /* EOF */
-     503           0 : /* EOF */
-     504             : /* EOF */
-     505           0 : /* EOF */
-     506           0 : /* EOF */
-     507           0 : /* EOF */
-     508             : /* EOF */
-     509           0 : /* EOF */
-     510           0 : /* EOF */
-     511           0 : /* EOF */
-     512             : /* EOF */
-     513           0 : /* EOF */
-     514           0 : /* EOF */
-     515           0 : /* EOF */
-     516             : /* EOF */
-     517           0 : /* EOF */
-     518           0 : /* EOF */
-     519           0 : /* EOF */
-     520             : /* EOF */
-     521           0 : /* EOF */
-     522           0 : /* EOF */
-     523           0 : /* EOF */
-     524             : /* EOF */
-     525           0 : /* EOF */
-     526           0 : /* EOF */
-     527           0 : /* EOF */
-     528             : /* EOF */
-     529           0 : /* EOF */
-     530           0 : /* EOF */
-     531           0 : /* EOF */
-     532             : /* EOF */
-     533           0 : /* EOF */
-     534             : /* EOF */
-     535           0 : /* EOF */
-     536           0 : /* EOF */
-     537           0 : /* EOF */
-     538             : /* EOF */
-     539             : /* EOF */
-     540           0 : /* EOF */
-     541             : /* EOF */
-     542             : /* EOF */
-     543           0 : /* EOF */
-     544             : /* EOF */
-     545           0 : /* EOF */
-     546             : /* EOF */
-     547             : /* EOF */
-     548           0 : /* EOF */
-     549             : /* EOF */
-     550             : /* EOF */
-     551             : /* EOF */
-     552             : /* EOF */
-     553           0 : /* EOF */
-     554           0 : /* EOF */
-     555           0 : /* EOF */
-     556           0 : /* EOF */
-     557           0 : /* EOF */
-     558             : /* EOF */
-     559           0 : /* EOF */
-     560             : /* EOF */
-     561           0 : /* EOF */
-     562           0 : /* EOF */
-     563           0 : /* EOF */
-     564             : /* EOF */
-     565             : /* EOF */
-     566           0 : /* EOF */
-     567           0 : /* EOF */
-     568          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func-sort-c.html deleted file mode 100644 index 8f99fe25..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR6D0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func.html deleted file mode 100644 index fa586287..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CheckerGDDR6D0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.gcov.html deleted file mode 100644 index 0f5b2cc0..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerGDDR6.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerGDDR6.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func-sort-c.html deleted file mode 100644 index 42eed417..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17633951.9 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerHBM2C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerHBM26insertE7Command4Rank9BankGroup4Bank58380
_ZNK11CheckerHBM224timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank1250781
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func.html deleted file mode 100644 index 7ee12337..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17633951.9 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11CheckerHBM2C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN11CheckerHBM26insertE7Command4Rank9BankGroup4Bank58380
_ZNK11CheckerHBM224timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank1250781
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.gcov.html deleted file mode 100644 index d62a5cbc..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.cpp.gcov.html +++ /dev/null @@ -1,601 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17633951.9 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37         266 : /* EOF */
-      38             : /* EOF */
-      39          14 : /* EOF */
-      40          14 : /* EOF */
-      41          14 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44          56 : /* EOF */
-      45          56 : /* EOF */
-      46          56 : /* EOF */
-      47          56 : /* EOF */
-      48          56 : /* EOF */
-      49          56 : /* EOF */
-      50          56 : /* EOF */
-      51             : /* EOF */
-      52          42 : /* EOF */
-      53          56 : /* EOF */
-      54             : /* EOF */
-      55          42 : /* EOF */
-      56          70 : /* EOF */
-      57          28 : /* EOF */
-      58          56 : /* EOF */
-      59          84 : /* EOF */
-      60          84 : /* EOF */
-      61          56 : /* EOF */
-      62          56 : /* EOF */
-      63          14 : /* EOF */
-      64             : /* EOF */
-      65     1250781 : /* EOF */
-      66             : /* EOF */
-      67     1250781 : /* EOF */
-      68     2501562 : /* EOF */
-      69             : /* EOF */
-      70     1250781 : /* EOF */
-      71             : /* EOF */
-      72      613599 : /* EOF */
-      73      204533 : /* EOF */
-      74     1022665 : /* EOF */
-      75             : /* EOF */
-      76      613599 : /* EOF */
-      77      204533 : /* EOF */
-      78           0 : /* EOF */
-      79             : /* EOF */
-      80      613599 : /* EOF */
-      81      204533 : /* EOF */
-      82           0 : /* EOF */
-      83             : /* EOF */
-      84      613599 : /* EOF */
-      85      204533 : /* EOF */
-      86      813624 : /* EOF */
-      87             : /* EOF */
-      88      613599 : /* EOF */
-      89      204533 : /* EOF */
-      90      817796 : /* EOF */
-      91             : /* EOF */
-      92      204533 : /* EOF */
-      93             : /* EOF */
-      94      613599 : /* EOF */
-      95      204533 : /* EOF */
-      96           0 : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99      613599 : /* EOF */
-     100      204533 : /* EOF */
-     101           0 : /* EOF */
-     102             : /* EOF */
-     103      613599 : /* EOF */
-     104      204533 : /* EOF */
-     105           0 : /* EOF */
-     106             : /* EOF */
-     107      613599 : /* EOF */
-     108      204533 : /* EOF */
-     109      818132 : /* EOF */
-     110             : /* EOF */
-     111      613599 : /* EOF */
-     112      204533 : /* EOF */
-     113      818132 : /* EOF */
-     114             : /* EOF */
-     115      409066 : /* EOF */
-     116      204533 : /* EOF */
-     117           0 : /* EOF */
-     118             : /* EOF */
-     119      818132 : /* EOF */
-     120             : /* EOF */
-     121     1046248 : /* EOF */
-     122             : /* EOF */
-     123     2143428 : /* EOF */
-     124      714476 : /* EOF */
-     125     3572380 : /* EOF */
-     126             : /* EOF */
-     127     2143428 : /* EOF */
-     128      714476 : /* EOF */
-     129           0 : /* EOF */
-     130             : /* EOF */
-     131     2143428 : /* EOF */
-     132      714476 : /* EOF */
-     133     2856784 : /* EOF */
-     134             : /* EOF */
-     135     2143428 : /* EOF */
-     136      714476 : /* EOF */
-     137           0 : /* EOF */
-     138             : /* EOF */
-     139     2143428 : /* EOF */
-     140      714476 : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143     2143428 : /* EOF */
-     144      714476 : /* EOF */
-     145     2853592 : /* EOF */
-     146             : /* EOF */
-     147     2143428 : /* EOF */
-     148      714476 : /* EOF */
-     149     2857736 : /* EOF */
-     150             : /* EOF */
-     151     1428952 : /* EOF */
-     152      714476 : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155     2857904 : /* EOF */
-     156             : /* EOF */
-     157      331772 : /* EOF */
-     158             : /* EOF */
-     159      988134 : /* EOF */
-     160      329378 : /* EOF */
-     161     1312304 : /* EOF */
-     162             : /* EOF */
-     163      988134 : /* EOF */
-     164      329378 : /* EOF */
-     165     1317288 : /* EOF */
-     166             : /* EOF */
-     167      988134 : /* EOF */
-     168      329378 : /* EOF */
-     169     1317456 : /* EOF */
-     170             : /* EOF */
-     171      988134 : /* EOF */
-     172      329378 : /* EOF */
-     173     1485246 : /* EOF */
-     174             : /* EOF */
-     175      988134 : /* EOF */
-     176      329378 : /* EOF */
-     177     1964760 : /* EOF */
-     178             : /* EOF */
-     179      988134 : /* EOF */
-     180      329378 : /* EOF */
-     181           0 : /* EOF */
-     182             : /* EOF */
-     183      988134 : /* EOF */
-     184      329378 : /* EOF */
-     185     1500345 : /* EOF */
-     186             : /* EOF */
-     187      658756 : /* EOF */
-     188      329378 : /* EOF */
-     189           0 : /* EOF */
-     190             : /* EOF */
-     191      658756 : /* EOF */
-     192      329378 : /* EOF */
-     193           0 : /* EOF */
-     194             : /* EOF */
-     195      988134 : /* EOF */
-     196      329378 : /* EOF */
-     197     1500345 : /* EOF */
-     198             : /* EOF */
-     199      988134 : /* EOF */
-     200      329378 : /* EOF */
-     201           0 : /* EOF */
-     202             : /* EOF */
-     203      988134 : /* EOF */
-     204      329378 : /* EOF */
-     205           0 : /* EOF */
-     206             : /* EOF */
-     207      658756 : /* EOF */
-     208      329378 : /* EOF */
-     209           0 : /* EOF */
-     210             : /* EOF */
-     211      988134 : /* EOF */
-     212     1975260 : /* EOF */
-     213             : /* EOF */
-     214     1317512 : /* EOF */
-     215             : /* EOF */
-     216        2394 : /* EOF */
-     217             : /* EOF */
-     218           0 : /* EOF */
-     219           0 : /* EOF */
-     220           0 : /* EOF */
-     221             : /* EOF */
-     222           0 : /* EOF */
-     223           0 : /* EOF */
-     224           0 : /* EOF */
-     225             : /* EOF */
-     226           0 : /* EOF */
-     227           0 : /* EOF */
-     228           0 : /* EOF */
-     229             : /* EOF */
-     230           0 : /* EOF */
-     231           0 : /* EOF */
-     232           0 : /* EOF */
-     233             : /* EOF */
-     234           0 : /* EOF */
-     235             : /* EOF */
-     236        2394 : /* EOF */
-     237             : /* EOF */
-     238        5082 : /* EOF */
-     239        1694 : /* EOF */
-     240        8470 : /* EOF */
-     241             : /* EOF */
-     242        5082 : /* EOF */
-     243        1694 : /* EOF */
-     244           0 : /* EOF */
-     245             : /* EOF */
-     246        5082 : /* EOF */
-     247        1694 : /* EOF */
-     248        6776 : /* EOF */
-     249             : /* EOF */
-     250        5082 : /* EOF */
-     251        1694 : /* EOF */
-     252           0 : /* EOF */
-     253             : /* EOF */
-     254        5082 : /* EOF */
-     255        1694 : /* EOF */
-     256        6776 : /* EOF */
-     257             : /* EOF */
-     258        3388 : /* EOF */
-     259        1694 : /* EOF */
-     260           0 : /* EOF */
-     261             : /* EOF */
-     262        5082 : /* EOF */
-     263        1694 : /* EOF */
-     264           0 : /* EOF */
-     265             : /* EOF */
-     266        6776 : /* EOF */
-     267             : /* EOF */
-     268         700 : /* EOF */
-     269             : /* EOF */
-     270        2100 : /* EOF */
-     271         700 : /* EOF */
-     272        3500 : /* EOF */
-     273             : /* EOF */
-     274        2100 : /* EOF */
-     275         700 : /* EOF */
-     276        3500 : /* EOF */
-     277             : /* EOF */
-     278        2100 : /* EOF */
-     279         700 : /* EOF */
-     280        3500 : /* EOF */
-     281             : /* EOF */
-     282        2100 : /* EOF */
-     283         700 : /* EOF */
-     284           0 : /* EOF */
-     285             : /* EOF */
-     286        2100 : /* EOF */
-     287         700 : /* EOF */
-     288        2800 : /* EOF */
-     289             : /* EOF */
-     290        1400 : /* EOF */
-     291         700 : /* EOF */
-     292           0 : /* EOF */
-     293             : /* EOF */
-     294        2100 : /* EOF */
-     295         700 : /* EOF */
-     296        2576 : /* EOF */
-     297             : /* EOF */
-     298        2100 : /* EOF */
-     299         700 : /* EOF */
-     300           0 : /* EOF */
-     301             : /* EOF */
-     302        1400 : /* EOF */
-     303         700 : /* EOF */
-     304           0 : /* EOF */
-     305             : /* EOF */
-     306        2800 : /* EOF */
-     307             : /* EOF */
-     308           0 : /* EOF */
-     309             : /* EOF */
-     310           0 : /* EOF */
-     311           0 : /* EOF */
-     312           0 : /* EOF */
-     313             : /* EOF */
-     314           0 : /* EOF */
-     315           0 : /* EOF */
-     316           0 : /* EOF */
-     317             : /* EOF */
-     318           0 : /* EOF */
-     319           0 : /* EOF */
-     320           0 : /* EOF */
-     321             : /* EOF */
-     322           0 : /* EOF */
-     323           0 : /* EOF */
-     324           0 : /* EOF */
-     325             : /* EOF */
-     326           0 : /* EOF */
-     327           0 : /* EOF */
-     328           0 : /* EOF */
-     329             : /* EOF */
-     330           0 : /* EOF */
-     331           0 : /* EOF */
-     332           0 : /* EOF */
-     333             : /* EOF */
-     334           0 : /* EOF */
-     335           0 : /* EOF */
-     336           0 : /* EOF */
-     337             : /* EOF */
-     338           0 : /* EOF */
-     339           0 : /* EOF */
-     340           0 : /* EOF */
-     341             : /* EOF */
-     342           0 : /* EOF */
-     343           0 : /* EOF */
-     344           0 : /* EOF */
-     345             : /* EOF */
-     346           0 : /* EOF */
-     347           0 : /* EOF */
-     348           0 : /* EOF */
-     349             : /* EOF */
-     350           0 : /* EOF */
-     351           0 : /* EOF */
-     352           0 : /* EOF */
-     353             : /* EOF */
-     354           0 : /* EOF */
-     355           0 : /* EOF */
-     356             : /* EOF */
-     357           0 : /* EOF */
-     358           0 : /* EOF */
-     359             : /* EOF */
-     360           0 : /* EOF */
-     361             : /* EOF */
-     362             : /* EOF */
-     363           0 : /* EOF */
-     364           0 : /* EOF */
-     365           0 : /* EOF */
-     366             : /* EOF */
-     367           0 : /* EOF */
-     368           0 : /* EOF */
-     369             : /* EOF */
-     370           0 : /* EOF */
-     371             : /* EOF */
-     372           0 : /* EOF */
-     373             : /* EOF */
-     374           0 : /* EOF */
-     375           0 : /* EOF */
-     376           0 : /* EOF */
-     377             : /* EOF */
-     378           0 : /* EOF */
-     379           0 : /* EOF */
-     380           0 : /* EOF */
-     381             : /* EOF */
-     382           0 : /* EOF */
-     383           0 : /* EOF */
-     384           0 : /* EOF */
-     385             : /* EOF */
-     386           0 : /* EOF */
-     387           0 : /* EOF */
-     388           0 : /* EOF */
-     389             : /* EOF */
-     390           0 : /* EOF */
-     391           0 : /* EOF */
-     392           0 : /* EOF */
-     393             : /* EOF */
-     394           0 : /* EOF */
-     395             : /* EOF */
-     396           0 : /* EOF */
-     397             : /* EOF */
-     398           0 : /* EOF */
-     399           0 : /* EOF */
-     400           0 : /* EOF */
-     401             : /* EOF */
-     402           0 : /* EOF */
-     403             : /* EOF */
-     404           0 : /* EOF */
-     405             : /* EOF */
-     406           0 : /* EOF */
-     407           0 : /* EOF */
-     408           0 : /* EOF */
-     409             : /* EOF */
-     410           0 : /* EOF */
-     411           0 : /* EOF */
-     412           0 : /* EOF */
-     413             : /* EOF */
-     414           0 : /* EOF */
-     415           0 : /* EOF */
-     416           0 : /* EOF */
-     417             : /* EOF */
-     418           0 : /* EOF */
-     419           0 : /* EOF */
-     420           0 : /* EOF */
-     421             : /* EOF */
-     422           0 : /* EOF */
-     423           0 : /* EOF */
-     424           0 : /* EOF */
-     425             : /* EOF */
-     426           0 : /* EOF */
-     427             : /* EOF */
-     428           0 : /* EOF */
-     429             : /* EOF */
-     430           0 : /* EOF */
-     431           0 : /* EOF */
-     432           0 : /* EOF */
-     433             : /* EOF */
-     434           0 : /* EOF */
-     435             : /* EOF */
-     436           0 : /* EOF */
-     437             : /* EOF */
-     438           0 : /* EOF */
-     439           0 : /* EOF */
-     440           0 : /* EOF */
-     441             : /* EOF */
-     442           0 : /* EOF */
-     443           0 : /* EOF */
-     444           0 : /* EOF */
-     445             : /* EOF */
-     446           0 : /* EOF */
-     447           0 : /* EOF */
-     448           0 : /* EOF */
-     449             : /* EOF */
-     450           0 : /* EOF */
-     451           0 : /* EOF */
-     452           0 : /* EOF */
-     453             : /* EOF */
-     454           0 : /* EOF */
-     455           0 : /* EOF */
-     456           0 : /* EOF */
-     457             : /* EOF */
-     458           0 : /* EOF */
-     459           0 : /* EOF */
-     460           0 : /* EOF */
-     461             : /* EOF */
-     462           0 : /* EOF */
-     463           0 : /* EOF */
-     464           0 : /* EOF */
-     465             : /* EOF */
-     466           0 : /* EOF */
-     467           0 : /* EOF */
-     468           0 : /* EOF */
-     469             : /* EOF */
-     470           0 : /* EOF */
-     471           0 : /* EOF */
-     472           0 : /* EOF */
-     473             : /* EOF */
-     474           0 : /* EOF */
-     475             : /* EOF */
-     476           0 : /* EOF */
-     477             : /* EOF */
-     478           0 : /* EOF */
-     479           0 : /* EOF */
-     480           0 : /* EOF */
-     481             : /* EOF */
-     482           0 : /* EOF */
-     483             : /* EOF */
-     484             : /* EOF */
-     485           0 : /* EOF */
-     486             : /* EOF */
-     487     1250781 : /* EOF */
-     488             : /* EOF */
-     489             : /* EOF */
-     490       58380 : /* EOF */
-     491             : /* EOF */
-     492             : /* EOF */
-     493             : /* EOF */
-     494             : /* EOF */
-     495      291900 : /* EOF */
-     496      291900 : /* EOF */
-     497      233520 : /* EOF */
-     498      175140 : /* EOF */
-     499             : /* EOF */
-     500       58380 : /* EOF */
-     501       28672 : /* EOF */
-     502       29708 : /* EOF */
-     503       88200 : /* EOF */
-     504             : /* EOF */
-     505         308 : /* EOF */
-     506             : /* EOF */
-     507       58380 : /* EOF */
-     508             : /* EOF */
-     509       88200 : /* EOF */
-     510       29344 : /* EOF */
-     511       58800 : /* EOF */
-     512             : /* EOF */
-     513             : /* EOF */
-     514       58380 : /* EOF */
-     515           0 : /* EOF */
-     516       58470 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func-sort-c.html deleted file mode 100644 index 68ec3d7b..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerHBM2D0Ev14
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func.html deleted file mode 100644 index 45ac0a30..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11CheckerHBM2D0Ev14
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.gcov.html deleted file mode 100644 index 4234ac88..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerHBM2.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerHBM2.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          56 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func-sort-c.html deleted file mode 100644 index 7da042be..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17734551.3 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13CheckerLPDDR4C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13CheckerLPDDR46insertE7Command4Rank9BankGroup4Bank191436
_ZNK13CheckerLPDDR424timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank4496580
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func.html deleted file mode 100644 index f18f422b..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17734551.3 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13CheckerLPDDR4C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13CheckerLPDDR46insertE7Command4Rank9BankGroup4Bank191436
_ZNK13CheckerLPDDR424timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank4496580
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.gcov.html deleted file mode 100644 index e590d42c..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp.gcov.html +++ /dev/null @@ -1,600 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:17734551.3 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37         276 : /* EOF */
-      38             : /* EOF */
-      39          12 : /* EOF */
-      40          12 : /* EOF */
-      41          12 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44          48 : /* EOF */
-      45          48 : /* EOF */
-      46          48 : /* EOF */
-      47          48 : /* EOF */
-      48          48 : /* EOF */
-      49             : /* EOF */
-      50          36 : /* EOF */
-      51             : /* EOF */
-      52          36 : /* EOF */
-      53          84 : /* EOF */
-      54          60 : /* EOF */
-      55          60 : /* EOF */
-      56          60 : /* EOF */
-      57          60 : /* EOF */
-      58          72 : /* EOF */
-      59          84 : /* EOF */
-      60          72 : /* EOF */
-      61          48 : /* EOF */
-      62          36 : /* EOF */
-      63          84 : /* EOF */
-      64         120 : /* EOF */
-      65         144 : /* EOF */
-      66          36 : /* EOF */
-      67          12 : /* EOF */
-      68             : /* EOF */
-      69     4496580 : /* EOF */
-      70             : /* EOF */
-      71     4496580 : /* EOF */
-      72     8993160 : /* EOF */
-      73             : /* EOF */
-      74     4496580 : /* EOF */
-      75             : /* EOF */
-      76     1753452 : /* EOF */
-      77      584484 : /* EOF */
-      78     2337936 : /* EOF */
-      79             : /* EOF */
-      80     1753452 : /* EOF */
-      81      584484 : /* EOF */
-      82      632112 : /* EOF */
-      83             : /* EOF */
-      84     1753452 : /* EOF */
-      85      584484 : /* EOF */
-      86           0 : /* EOF */
-      87             : /* EOF */
-      88     1753452 : /* EOF */
-      89      584484 : /* EOF */
-      90     2337696 : /* EOF */
-      91             : /* EOF */
-      92     1753452 : /* EOF */
-      93      584484 : /* EOF */
-      94           0 : /* EOF */
-      95             : /* EOF */
-      96      584484 : /* EOF */
-      97             : /* EOF */
-      98     1706976 : /* EOF */
-      99      568992 : /* EOF */
-     100     2844960 : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103     1753452 : /* EOF */
-     104      584484 : /* EOF */
-     105     2337936 : /* EOF */
-     106             : /* EOF */
-     107     1753452 : /* EOF */
-     108      584484 : /* EOF */
-     109           0 : /* EOF */
-     110             : /* EOF */
-     111     1753452 : /* EOF */
-     112      584484 : /* EOF */
-     113     2337936 : /* EOF */
-     114             : /* EOF */
-     115     1753452 : /* EOF */
-     116      584484 : /* EOF */
-     117           0 : /* EOF */
-     118             : /* EOF */
-     119     1753452 : /* EOF */
-     120      584484 : /* EOF */
-     121           0 : /* EOF */
-     122             : /* EOF */
-     123     3912096 : /* EOF */
-     124             : /* EOF */
-     125     5176980 : /* EOF */
-     126     1725660 : /* EOF */
-     127     6902640 : /* EOF */
-     128             : /* EOF */
-     129     5176980 : /* EOF */
-     130     1725660 : /* EOF */
-     131           0 : /* EOF */
-     132             : /* EOF */
-     133     5176980 : /* EOF */
-     134     1725660 : /* EOF */
-     135           0 : /* EOF */
-     136             : /* EOF */
-     137     5176980 : /* EOF */
-     138     1725660 : /* EOF */
-     139           0 : /* EOF */
-     140             : /* EOF */
-     141     5176980 : /* EOF */
-     142     1725660 : /* EOF */
-     143           0 : /* EOF */
-     144             : /* EOF */
-     145     5176980 : /* EOF */
-     146     1725660 : /* EOF */
-     147     6902160 : /* EOF */
-     148             : /* EOF */
-     149     5176980 : /* EOF */
-     150     1725660 : /* EOF */
-     151           0 : /* EOF */
-     152             : /* EOF */
-     153     5176980 : /* EOF */
-     154     1725660 : /* EOF */
-     155     6247344 : /* EOF */
-     156             : /* EOF */
-     157     5176980 : /* EOF */
-     158     1725660 : /* EOF */
-     159           0 : /* EOF */
-     160             : /* EOF */
-     161     5176980 : /* EOF */
-     162     1725660 : /* EOF */
-     163           0 : /* EOF */
-     164             : /* EOF */
-     165     2186436 : /* EOF */
-     166             : /* EOF */
-     167     6262920 : /* EOF */
-     168     2087640 : /* EOF */
-     169     8345856 : /* EOF */
-     170             : /* EOF */
-     171     6262920 : /* EOF */
-     172     2087640 : /* EOF */
-     173     8350512 : /* EOF */
-     174             : /* EOF */
-     175     6262920 : /* EOF */
-     176     2087640 : /* EOF */
-     177     8173920 : /* EOF */
-     178             : /* EOF */
-     179     6262920 : /* EOF */
-     180     2087640 : /* EOF */
-     181     8331072 : /* EOF */
-     182             : /* EOF */
-     183     6262920 : /* EOF */
-     184     2087640 : /* EOF */
-     185    12518784 : /* EOF */
-     186             : /* EOF */
-     187     6262920 : /* EOF */
-     188     2087640 : /* EOF */
-     189           0 : /* EOF */
-     190             : /* EOF */
-     191     6262920 : /* EOF */
-     192     2087640 : /* EOF */
-     193           0 : /* EOF */
-     194             : /* EOF */
-     195     6262920 : /* EOF */
-     196     2087640 : /* EOF */
-     197           0 : /* EOF */
-     198             : /* EOF */
-     199     6262920 : /* EOF */
-     200     2087640 : /* EOF */
-     201           0 : /* EOF */
-     202             : /* EOF */
-     203     6262920 : /* EOF */
-     204     2087640 : /* EOF */
-     205    12518784 : /* EOF */
-     206             : /* EOF */
-     207     6262920 : /* EOF */
-     208     2087640 : /* EOF */
-     209    12518784 : /* EOF */
-     210             : /* EOF */
-     211     6262920 : /* EOF */
-     212     2087640 : /* EOF */
-     213           0 : /* EOF */
-     214             : /* EOF */
-     215     6262920 : /* EOF */
-     216    12521664 : /* EOF */
-     217             : /* EOF */
-     218       98796 : /* EOF */
-     219             : /* EOF */
-     220       40788 : /* EOF */
-     221       13596 : /* EOF */
-     222       81576 : /* EOF */
-     223             : /* EOF */
-     224       40788 : /* EOF */
-     225       13596 : /* EOF */
-     226       52848 : /* EOF */
-     227             : /* EOF */
-     228       40788 : /* EOF */
-     229       13596 : /* EOF */
-     230       54384 : /* EOF */
-     231             : /* EOF */
-     232       40788 : /* EOF */
-     233       13596 : /* EOF */
-     234       54336 : /* EOF */
-     235             : /* EOF */
-     236       40788 : /* EOF */
-     237       13596 : /* EOF */
-     238           0 : /* EOF */
-     239             : /* EOF */
-     240       85200 : /* EOF */
-     241             : /* EOF */
-     242           0 : /* EOF */
-     243           0 : /* EOF */
-     244           0 : /* EOF */
-     245             : /* EOF */
-     246           0 : /* EOF */
-     247           0 : /* EOF */
-     248           0 : /* EOF */
-     249             : /* EOF */
-     250           0 : /* EOF */
-     251           0 : /* EOF */
-     252           0 : /* EOF */
-     253             : /* EOF */
-     254           0 : /* EOF */
-     255           0 : /* EOF */
-     256           0 : /* EOF */
-     257             : /* EOF */
-     258           0 : /* EOF */
-     259           0 : /* EOF */
-     260           0 : /* EOF */
-     261             : /* EOF */
-     262           0 : /* EOF */
-     263           0 : /* EOF */
-     264           0 : /* EOF */
-     265             : /* EOF */
-     266           0 : /* EOF */
-     267           0 : /* EOF */
-     268           0 : /* EOF */
-     269             : /* EOF */
-     270           0 : /* EOF */
-     271           0 : /* EOF */
-     272           0 : /* EOF */
-     273             : /* EOF */
-     274       85200 : /* EOF */
-     275             : /* EOF */
-     276           0 : /* EOF */
-     277           0 : /* EOF */
-     278           0 : /* EOF */
-     279             : /* EOF */
-     280           0 : /* EOF */
-     281           0 : /* EOF */
-     282           0 : /* EOF */
-     283             : /* EOF */
-     284           0 : /* EOF */
-     285           0 : /* EOF */
-     286           0 : /* EOF */
-     287             : /* EOF */
-     288           0 : /* EOF */
-     289           0 : /* EOF */
-     290           0 : /* EOF */
-     291             : /* EOF */
-     292           0 : /* EOF */
-     293           0 : /* EOF */
-     294           0 : /* EOF */
-     295             : /* EOF */
-     296           0 : /* EOF */
-     297             : /* EOF */
-     298           0 : /* EOF */
-     299             : /* EOF */
-     300           0 : /* EOF */
-     301           0 : /* EOF */
-     302           0 : /* EOF */
-     303             : /* EOF */
-     304           0 : /* EOF */
-     305           0 : /* EOF */
-     306           0 : /* EOF */
-     307             : /* EOF */
-     308           0 : /* EOF */
-     309           0 : /* EOF */
-     310           0 : /* EOF */
-     311             : /* EOF */
-     312       85200 : /* EOF */
-     313             : /* EOF */
-     314      255600 : /* EOF */
-     315       85200 : /* EOF */
-     316      511200 : /* EOF */
-     317             : /* EOF */
-     318      255600 : /* EOF */
-     319       85200 : /* EOF */
-     320      511200 : /* EOF */
-     321             : /* EOF */
-     322      255600 : /* EOF */
-     323       85200 : /* EOF */
-     324      414780 : /* EOF */
-     325             : /* EOF */
-     326      255600 : /* EOF */
-     327       85200 : /* EOF */
-     328      414780 : /* EOF */
-     329             : /* EOF */
-     330      255600 : /* EOF */
-     331       85200 : /* EOF */
-     332      340800 : /* EOF */
-     333             : /* EOF */
-     334      255600 : /* EOF */
-     335       85200 : /* EOF */
-     336           0 : /* EOF */
-     337             : /* EOF */
-     338      255600 : /* EOF */
-     339       85200 : /* EOF */
-     340           0 : /* EOF */
-     341             : /* EOF */
-     342      255600 : /* EOF */
-     343       85200 : /* EOF */
-     344           0 : /* EOF */
-     345             : /* EOF */
-     346      255600 : /* EOF */
-     347       85200 : /* EOF */
-     348           0 : /* EOF */
-     349             : /* EOF */
-     350      255600 : /* EOF */
-     351       85200 : /* EOF */
-     352      255528 : /* EOF */
-     353             : /* EOF */
-     354      255600 : /* EOF */
-     355       85200 : /* EOF */
-     356           0 : /* EOF */
-     357             : /* EOF */
-     358      255600 : /* EOF */
-     359      426000 : /* EOF */
-     360             : /* EOF */
-     361           0 : /* EOF */
-     362             : /* EOF */
-     363           0 : /* EOF */
-     364           0 : /* EOF */
-     365           0 : /* EOF */
-     366             : /* EOF */
-     367           0 : /* EOF */
-     368           0 : /* EOF */
-     369           0 : /* EOF */
-     370             : /* EOF */
-     371           0 : /* EOF */
-     372           0 : /* EOF */
-     373           0 : /* EOF */
-     374             : /* EOF */
-     375           0 : /* EOF */
-     376           0 : /* EOF */
-     377           0 : /* EOF */
-     378             : /* EOF */
-     379           0 : /* EOF */
-     380           0 : /* EOF */
-     381           0 : /* EOF */
-     382             : /* EOF */
-     383           0 : /* EOF */
-     384           0 : /* EOF */
-     385           0 : /* EOF */
-     386             : /* EOF */
-     387           0 : /* EOF */
-     388           0 : /* EOF */
-     389           0 : /* EOF */
-     390             : /* EOF */
-     391           0 : /* EOF */
-     392           0 : /* EOF */
-     393           0 : /* EOF */
-     394             : /* EOF */
-     395           0 : /* EOF */
-     396             : /* EOF */
-     397           0 : /* EOF */
-     398           0 : /* EOF */
-     399           0 : /* EOF */
-     400             : /* EOF */
-     401           0 : /* EOF */
-     402             : /* EOF */
-     403           0 : /* EOF */
-     404           0 : /* EOF */
-     405           0 : /* EOF */
-     406             : /* EOF */
-     407           0 : /* EOF */
-     408           0 : /* EOF */
-     409           0 : /* EOF */
-     410             : /* EOF */
-     411           0 : /* EOF */
-     412           0 : /* EOF */
-     413           0 : /* EOF */
-     414             : /* EOF */
-     415           0 : /* EOF */
-     416           0 : /* EOF */
-     417           0 : /* EOF */
-     418             : /* EOF */
-     419           0 : /* EOF */
-     420           0 : /* EOF */
-     421           0 : /* EOF */
-     422             : /* EOF */
-     423           0 : /* EOF */
-     424           0 : /* EOF */
-     425           0 : /* EOF */
-     426             : /* EOF */
-     427           0 : /* EOF */
-     428           0 : /* EOF */
-     429           0 : /* EOF */
-     430             : /* EOF */
-     431           0 : /* EOF */
-     432           0 : /* EOF */
-     433           0 : /* EOF */
-     434             : /* EOF */
-     435           0 : /* EOF */
-     436           0 : /* EOF */
-     437           0 : /* EOF */
-     438             : /* EOF */
-     439           0 : /* EOF */
-     440             : /* EOF */
-     441           0 : /* EOF */
-     442           0 : /* EOF */
-     443           0 : /* EOF */
-     444             : /* EOF */
-     445           0 : /* EOF */
-     446             : /* EOF */
-     447           0 : /* EOF */
-     448           0 : /* EOF */
-     449           0 : /* EOF */
-     450             : /* EOF */
-     451           0 : /* EOF */
-     452           0 : /* EOF */
-     453           0 : /* EOF */
-     454             : /* EOF */
-     455           0 : /* EOF */
-     456           0 : /* EOF */
-     457           0 : /* EOF */
-     458             : /* EOF */
-     459           0 : /* EOF */
-     460           0 : /* EOF */
-     461           0 : /* EOF */
-     462             : /* EOF */
-     463           0 : /* EOF */
-     464           0 : /* EOF */
-     465           0 : /* EOF */
-     466             : /* EOF */
-     467           0 : /* EOF */
-     468           0 : /* EOF */
-     469           0 : /* EOF */
-     470             : /* EOF */
-     471           0 : /* EOF */
-     472           0 : /* EOF */
-     473           0 : /* EOF */
-     474             : /* EOF */
-     475           0 : /* EOF */
-     476           0 : /* EOF */
-     477           0 : /* EOF */
-     478             : /* EOF */
-     479           0 : /* EOF */
-     480           0 : /* EOF */
-     481           0 : /* EOF */
-     482             : /* EOF */
-     483           0 : /* EOF */
-     484             : /* EOF */
-     485           0 : /* EOF */
-     486           0 : /* EOF */
-     487           0 : /* EOF */
-     488             : /* EOF */
-     489             : /* EOF */
-     490           0 : /* EOF */
-     491             : /* EOF */
-     492             : /* EOF */
-     493    17986320 : /* EOF */
-     494             : /* EOF */
-     495     4496580 : /* EOF */
-     496             : /* EOF */
-     497             : /* EOF */
-     498      191436 : /* EOF */
-     499             : /* EOF */
-     500             : /* EOF */
-     501             : /* EOF */
-     502             : /* EOF */
-     503      957180 : /* EOF */
-     504      765744 : /* EOF */
-     505      574308 : /* EOF */
-     506             : /* EOF */
-     507      765744 : /* EOF */
-     508             : /* EOF */
-     509      191436 : /* EOF */
-     510             : /* EOF */
-     511      207756 : /* EOF */
-     512       69204 : /* EOF */
-     513      138504 : /* EOF */
-     514             : /* EOF */
-     515      191526 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func-sort-c.html deleted file mode 100644 index 84c08e27..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerLPDDR4D0Ev12
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func.html deleted file mode 100644 index 77dc7ca6..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerLPDDR4D0Ev12
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.gcov.html deleted file mode 100644 index 1cb40aec..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerLPDDR4.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerLPDDR4.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          36 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func-sort-c.html deleted file mode 100644 index 3b0589c5..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:12610.4 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerWideIO6insertE7Command4Rank9BankGroup4Bank0
_ZNK13CheckerWideIO24timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN13CheckerWideIOC2Ev30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func.html deleted file mode 100644 index 1fd9161f..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:12610.4 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13CheckerWideIOC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13CheckerWideIO6insertE7Command4Rank9BankGroup4Bank0
_ZNK13CheckerWideIO24timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.gcov.html deleted file mode 100644 index 3aac699e..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.cpp.gcov.html +++ /dev/null @@ -1,488 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:12610.4 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37           0 : /* EOF */
-      38             : /* EOF */
-      39           0 : /* EOF */
-      40           0 : /* EOF */
-      41           0 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49             : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62             : /* EOF */
-      63           0 : /* EOF */
-      64             : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67             : /* EOF */
-      68           0 : /* EOF */
-      69             : /* EOF */
-      70           0 : /* EOF */
-      71           0 : /* EOF */
-      72           0 : /* EOF */
-      73             : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77             : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81             : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89             : /* EOF */
-      90           0 : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93           0 : /* EOF */
-      94           0 : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97           0 : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101           0 : /* EOF */
-     102           0 : /* EOF */
-     103           0 : /* EOF */
-     104             : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107           0 : /* EOF */
-     108             : /* EOF */
-     109           0 : /* EOF */
-     110           0 : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118             : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122             : /* EOF */
-     123           0 : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-     126             : /* EOF */
-     127           0 : /* EOF */
-     128           0 : /* EOF */
-     129           0 : /* EOF */
-     130             : /* EOF */
-     131           0 : /* EOF */
-     132           0 : /* EOF */
-     133           0 : /* EOF */
-     134             : /* EOF */
-     135           0 : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138             : /* EOF */
-     139           0 : /* EOF */
-     140           0 : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143           0 : /* EOF */
-     144           0 : /* EOF */
-     145           0 : /* EOF */
-     146             : /* EOF */
-     147           0 : /* EOF */
-     148           0 : /* EOF */
-     149           0 : /* EOF */
-     150             : /* EOF */
-     151           0 : /* EOF */
-     152           0 : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155           0 : /* EOF */
-     156           0 : /* EOF */
-     157           0 : /* EOF */
-     158             : /* EOF */
-     159           0 : /* EOF */
-     160             : /* EOF */
-     161           0 : /* EOF */
-     162           0 : /* EOF */
-     163           0 : /* EOF */
-     164             : /* EOF */
-     165           0 : /* EOF */
-     166           0 : /* EOF */
-     167           0 : /* EOF */
-     168             : /* EOF */
-     169           0 : /* EOF */
-     170           0 : /* EOF */
-     171           0 : /* EOF */
-     172             : /* EOF */
-     173           0 : /* EOF */
-     174           0 : /* EOF */
-     175           0 : /* EOF */
-     176             : /* EOF */
-     177           0 : /* EOF */
-     178           0 : /* EOF */
-     179           0 : /* EOF */
-     180             : /* EOF */
-     181           0 : /* EOF */
-     182           0 : /* EOF */
-     183           0 : /* EOF */
-     184             : /* EOF */
-     185           0 : /* EOF */
-     186           0 : /* EOF */
-     187           0 : /* EOF */
-     188             : /* EOF */
-     189           0 : /* EOF */
-     190           0 : /* EOF */
-     191           0 : /* EOF */
-     192             : /* EOF */
-     193           0 : /* EOF */
-     194           0 : /* EOF */
-     195           0 : /* EOF */
-     196             : /* EOF */
-     197           0 : /* EOF */
-     198           0 : /* EOF */
-     199           0 : /* EOF */
-     200             : /* EOF */
-     201           0 : /* EOF */
-     202           0 : /* EOF */
-     203             : /* EOF */
-     204           0 : /* EOF */
-     205             : /* EOF */
-     206           0 : /* EOF */
-     207           0 : /* EOF */
-     208           0 : /* EOF */
-     209             : /* EOF */
-     210           0 : /* EOF */
-     211           0 : /* EOF */
-     212           0 : /* EOF */
-     213             : /* EOF */
-     214           0 : /* EOF */
-     215           0 : /* EOF */
-     216           0 : /* EOF */
-     217             : /* EOF */
-     218           0 : /* EOF */
-     219           0 : /* EOF */
-     220           0 : /* EOF */
-     221             : /* EOF */
-     222           0 : /* EOF */
-     223             : /* EOF */
-     224           0 : /* EOF */
-     225           0 : /* EOF */
-     226           0 : /* EOF */
-     227             : /* EOF */
-     228           0 : /* EOF */
-     229           0 : /* EOF */
-     230           0 : /* EOF */
-     231             : /* EOF */
-     232           0 : /* EOF */
-     233           0 : /* EOF */
-     234           0 : /* EOF */
-     235             : /* EOF */
-     236           0 : /* EOF */
-     237           0 : /* EOF */
-     238           0 : /* EOF */
-     239             : /* EOF */
-     240           0 : /* EOF */
-     241           0 : /* EOF */
-     242           0 : /* EOF */
-     243             : /* EOF */
-     244           0 : /* EOF */
-     245           0 : /* EOF */
-     246           0 : /* EOF */
-     247             : /* EOF */
-     248           0 : /* EOF */
-     249             : /* EOF */
-     250           0 : /* EOF */
-     251           0 : /* EOF */
-     252           0 : /* EOF */
-     253             : /* EOF */
-     254           0 : /* EOF */
-     255           0 : /* EOF */
-     256           0 : /* EOF */
-     257             : /* EOF */
-     258           0 : /* EOF */
-     259           0 : /* EOF */
-     260           0 : /* EOF */
-     261             : /* EOF */
-     262           0 : /* EOF */
-     263           0 : /* EOF */
-     264           0 : /* EOF */
-     265             : /* EOF */
-     266           0 : /* EOF */
-     267           0 : /* EOF */
-     268           0 : /* EOF */
-     269             : /* EOF */
-     270           0 : /* EOF */
-     271           0 : /* EOF */
-     272           0 : /* EOF */
-     273             : /* EOF */
-     274           0 : /* EOF */
-     275           0 : /* EOF */
-     276           0 : /* EOF */
-     277             : /* EOF */
-     278           0 : /* EOF */
-     279           0 : /* EOF */
-     280           0 : /* EOF */
-     281             : /* EOF */
-     282           0 : /* EOF */
-     283             : /* EOF */
-     284           0 : /* EOF */
-     285           0 : /* EOF */
-     286           0 : /* EOF */
-     287             : /* EOF */
-     288           0 : /* EOF */
-     289           0 : /* EOF */
-     290           0 : /* EOF */
-     291             : /* EOF */
-     292           0 : /* EOF */
-     293           0 : /* EOF */
-     294           0 : /* EOF */
-     295             : /* EOF */
-     296           0 : /* EOF */
-     297             : /* EOF */
-     298           0 : /* EOF */
-     299             : /* EOF */
-     300           0 : /* EOF */
-     301           0 : /* EOF */
-     302           0 : /* EOF */
-     303             : /* EOF */
-     304           0 : /* EOF */
-     305             : /* EOF */
-     306           0 : /* EOF */
-     307           0 : /* EOF */
-     308           0 : /* EOF */
-     309             : /* EOF */
-     310           0 : /* EOF */
-     311             : /* EOF */
-     312           0 : /* EOF */
-     313           0 : /* EOF */
-     314           0 : /* EOF */
-     315             : /* EOF */
-     316           0 : /* EOF */
-     317           0 : /* EOF */
-     318           0 : /* EOF */
-     319             : /* EOF */
-     320           0 : /* EOF */
-     321           0 : /* EOF */
-     322           0 : /* EOF */
-     323             : /* EOF */
-     324           0 : /* EOF */
-     325           0 : /* EOF */
-     326           0 : /* EOF */
-     327             : /* EOF */
-     328           0 : /* EOF */
-     329           0 : /* EOF */
-     330           0 : /* EOF */
-     331             : /* EOF */
-     332           0 : /* EOF */
-     333             : /* EOF */
-     334           0 : /* EOF */
-     335           0 : /* EOF */
-     336           0 : /* EOF */
-     337             : /* EOF */
-     338           0 : /* EOF */
-     339             : /* EOF */
-     340           0 : /* EOF */
-     341           0 : /* EOF */
-     342           0 : /* EOF */
-     343             : /* EOF */
-     344           0 : /* EOF */
-     345           0 : /* EOF */
-     346           0 : /* EOF */
-     347             : /* EOF */
-     348           0 : /* EOF */
-     349           0 : /* EOF */
-     350           0 : /* EOF */
-     351             : /* EOF */
-     352           0 : /* EOF */
-     353           0 : /* EOF */
-     354           0 : /* EOF */
-     355             : /* EOF */
-     356           0 : /* EOF */
-     357           0 : /* EOF */
-     358           0 : /* EOF */
-     359             : /* EOF */
-     360           0 : /* EOF */
-     361           0 : /* EOF */
-     362           0 : /* EOF */
-     363             : /* EOF */
-     364           0 : /* EOF */
-     365           0 : /* EOF */
-     366           0 : /* EOF */
-     367             : /* EOF */
-     368           0 : /* EOF */
-     369           0 : /* EOF */
-     370           0 : /* EOF */
-     371             : /* EOF */
-     372           0 : /* EOF */
-     373             : /* EOF */
-     374           0 : /* EOF */
-     375           0 : /* EOF */
-     376           0 : /* EOF */
-     377             : /* EOF */
-     378             : /* EOF */
-     379           0 : /* EOF */
-     380             : /* EOF */
-     381             : /* EOF */
-     382           0 : /* EOF */
-     383             : /* EOF */
-     384           0 : /* EOF */
-     385             : /* EOF */
-     386             : /* EOF */
-     387           0 : /* EOF */
-     388             : /* EOF */
-     389             : /* EOF */
-     390             : /* EOF */
-     391             : /* EOF */
-     392           0 : /* EOF */
-     393           0 : /* EOF */
-     394           0 : /* EOF */
-     395           0 : /* EOF */
-     396             : /* EOF */
-     397           0 : /* EOF */
-     398             : /* EOF */
-     399           0 : /* EOF */
-     400           0 : /* EOF */
-     401           0 : /* EOF */
-     402             : /* EOF */
-     403          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func-sort-c.html deleted file mode 100644 index 3acc04e7..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerWideIOD0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func.html deleted file mode 100644 index 8f353c6d..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13CheckerWideIOD0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.gcov.html deleted file mode 100644 index 1917edf2..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func-sort-c.html deleted file mode 100644 index 60ff6630..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13200.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN14CheckerWideIO26insertE7Command4Rank9BankGroup4Bank0
_ZNK14CheckerWideIO224timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
_GLOBAL__sub_I__ZN14CheckerWideIO2C2Ev30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func.html deleted file mode 100644 index 6eb0f810..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13200.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN14CheckerWideIO2C2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN14CheckerWideIO26insertE7Command4Rank9BankGroup4Bank0
_ZNK14CheckerWideIO224timeToSatisfyConstraintsE7Command4Rank9BankGroup4Bank0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.gcov.html deleted file mode 100644 index 552203ae..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp.gcov.html +++ /dev/null @@ -1,566 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13200.3 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37           0 : /* EOF */
-      38             : /* EOF */
-      39           0 : /* EOF */
-      40           0 : /* EOF */
-      41           0 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48           0 : /* EOF */
-      49             : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63             : /* EOF */
-      64           0 : /* EOF */
-      65             : /* EOF */
-      66           0 : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69           0 : /* EOF */
-      70             : /* EOF */
-      71           0 : /* EOF */
-      72           0 : /* EOF */
-      73           0 : /* EOF */
-      74             : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78             : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81           0 : /* EOF */
-      82             : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85           0 : /* EOF */
-      86             : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89           0 : /* EOF */
-      90             : /* EOF */
-      91           0 : /* EOF */
-      92             : /* EOF */
-      93           0 : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100           0 : /* EOF */
-     101             : /* EOF */
-     102           0 : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105             : /* EOF */
-     106           0 : /* EOF */
-     107           0 : /* EOF */
-     108           0 : /* EOF */
-     109             : /* EOF */
-     110           0 : /* EOF */
-     111           0 : /* EOF */
-     112           0 : /* EOF */
-     113             : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116           0 : /* EOF */
-     117             : /* EOF */
-     118           0 : /* EOF */
-     119             : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127             : /* EOF */
-     128           0 : /* EOF */
-     129           0 : /* EOF */
-     130           0 : /* EOF */
-     131             : /* EOF */
-     132           0 : /* EOF */
-     133           0 : /* EOF */
-     134           0 : /* EOF */
-     135             : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139             : /* EOF */
-     140           0 : /* EOF */
-     141           0 : /* EOF */
-     142           0 : /* EOF */
-     143             : /* EOF */
-     144           0 : /* EOF */
-     145           0 : /* EOF */
-     146           0 : /* EOF */
-     147             : /* EOF */
-     148           0 : /* EOF */
-     149           0 : /* EOF */
-     150           0 : /* EOF */
-     151             : /* EOF */
-     152           0 : /* EOF */
-     153           0 : /* EOF */
-     154           0 : /* EOF */
-     155             : /* EOF */
-     156           0 : /* EOF */
-     157           0 : /* EOF */
-     158           0 : /* EOF */
-     159             : /* EOF */
-     160           0 : /* EOF */
-     161             : /* EOF */
-     162           0 : /* EOF */
-     163           0 : /* EOF */
-     164           0 : /* EOF */
-     165             : /* EOF */
-     166           0 : /* EOF */
-     167           0 : /* EOF */
-     168           0 : /* EOF */
-     169             : /* EOF */
-     170           0 : /* EOF */
-     171           0 : /* EOF */
-     172           0 : /* EOF */
-     173             : /* EOF */
-     174           0 : /* EOF */
-     175           0 : /* EOF */
-     176           0 : /* EOF */
-     177             : /* EOF */
-     178           0 : /* EOF */
-     179           0 : /* EOF */
-     180           0 : /* EOF */
-     181             : /* EOF */
-     182           0 : /* EOF */
-     183           0 : /* EOF */
-     184           0 : /* EOF */
-     185             : /* EOF */
-     186           0 : /* EOF */
-     187           0 : /* EOF */
-     188           0 : /* EOF */
-     189             : /* EOF */
-     190           0 : /* EOF */
-     191           0 : /* EOF */
-     192           0 : /* EOF */
-     193             : /* EOF */
-     194           0 : /* EOF */
-     195           0 : /* EOF */
-     196           0 : /* EOF */
-     197             : /* EOF */
-     198           0 : /* EOF */
-     199           0 : /* EOF */
-     200           0 : /* EOF */
-     201             : /* EOF */
-     202           0 : /* EOF */
-     203           0 : /* EOF */
-     204           0 : /* EOF */
-     205             : /* EOF */
-     206           0 : /* EOF */
-     207           0 : /* EOF */
-     208           0 : /* EOF */
-     209             : /* EOF */
-     210           0 : /* EOF */
-     211           0 : /* EOF */
-     212             : /* EOF */
-     213           0 : /* EOF */
-     214             : /* EOF */
-     215           0 : /* EOF */
-     216           0 : /* EOF */
-     217           0 : /* EOF */
-     218             : /* EOF */
-     219           0 : /* EOF */
-     220           0 : /* EOF */
-     221           0 : /* EOF */
-     222             : /* EOF */
-     223           0 : /* EOF */
-     224           0 : /* EOF */
-     225           0 : /* EOF */
-     226             : /* EOF */
-     227           0 : /* EOF */
-     228           0 : /* EOF */
-     229           0 : /* EOF */
-     230             : /* EOF */
-     231           0 : /* EOF */
-     232           0 : /* EOF */
-     233           0 : /* EOF */
-     234             : /* EOF */
-     235           0 : /* EOF */
-     236             : /* EOF */
-     237           0 : /* EOF */
-     238           0 : /* EOF */
-     239           0 : /* EOF */
-     240             : /* EOF */
-     241           0 : /* EOF */
-     242           0 : /* EOF */
-     243           0 : /* EOF */
-     244             : /* EOF */
-     245           0 : /* EOF */
-     246           0 : /* EOF */
-     247           0 : /* EOF */
-     248             : /* EOF */
-     249           0 : /* EOF */
-     250           0 : /* EOF */
-     251           0 : /* EOF */
-     252             : /* EOF */
-     253           0 : /* EOF */
-     254           0 : /* EOF */
-     255           0 : /* EOF */
-     256             : /* EOF */
-     257           0 : /* EOF */
-     258           0 : /* EOF */
-     259           0 : /* EOF */
-     260             : /* EOF */
-     261           0 : /* EOF */
-     262           0 : /* EOF */
-     263           0 : /* EOF */
-     264             : /* EOF */
-     265           0 : /* EOF */
-     266           0 : /* EOF */
-     267           0 : /* EOF */
-     268             : /* EOF */
-     269           0 : /* EOF */
-     270             : /* EOF */
-     271           0 : /* EOF */
-     272           0 : /* EOF */
-     273           0 : /* EOF */
-     274             : /* EOF */
-     275           0 : /* EOF */
-     276           0 : /* EOF */
-     277           0 : /* EOF */
-     278             : /* EOF */
-     279           0 : /* EOF */
-     280           0 : /* EOF */
-     281           0 : /* EOF */
-     282             : /* EOF */
-     283           0 : /* EOF */
-     284           0 : /* EOF */
-     285           0 : /* EOF */
-     286             : /* EOF */
-     287           0 : /* EOF */
-     288           0 : /* EOF */
-     289           0 : /* EOF */
-     290             : /* EOF */
-     291           0 : /* EOF */
-     292           0 : /* EOF */
-     293           0 : /* EOF */
-     294             : /* EOF */
-     295           0 : /* EOF */
-     296           0 : /* EOF */
-     297           0 : /* EOF */
-     298             : /* EOF */
-     299           0 : /* EOF */
-     300           0 : /* EOF */
-     301           0 : /* EOF */
-     302             : /* EOF */
-     303           0 : /* EOF */
-     304           0 : /* EOF */
-     305           0 : /* EOF */
-     306             : /* EOF */
-     307           0 : /* EOF */
-     308             : /* EOF */
-     309           0 : /* EOF */
-     310           0 : /* EOF */
-     311           0 : /* EOF */
-     312             : /* EOF */
-     313           0 : /* EOF */
-     314           0 : /* EOF */
-     315           0 : /* EOF */
-     316             : /* EOF */
-     317           0 : /* EOF */
-     318           0 : /* EOF */
-     319           0 : /* EOF */
-     320             : /* EOF */
-     321           0 : /* EOF */
-     322           0 : /* EOF */
-     323           0 : /* EOF */
-     324             : /* EOF */
-     325           0 : /* EOF */
-     326           0 : /* EOF */
-     327           0 : /* EOF */
-     328             : /* EOF */
-     329           0 : /* EOF */
-     330           0 : /* EOF */
-     331           0 : /* EOF */
-     332             : /* EOF */
-     333           0 : /* EOF */
-     334           0 : /* EOF */
-     335           0 : /* EOF */
-     336             : /* EOF */
-     337           0 : /* EOF */
-     338           0 : /* EOF */
-     339           0 : /* EOF */
-     340             : /* EOF */
-     341           0 : /* EOF */
-     342           0 : /* EOF */
-     343           0 : /* EOF */
-     344             : /* EOF */
-     345           0 : /* EOF */
-     346           0 : /* EOF */
-     347           0 : /* EOF */
-     348             : /* EOF */
-     349           0 : /* EOF */
-     350           0 : /* EOF */
-     351           0 : /* EOF */
-     352             : /* EOF */
-     353           0 : /* EOF */
-     354           0 : /* EOF */
-     355             : /* EOF */
-     356           0 : /* EOF */
-     357             : /* EOF */
-     358           0 : /* EOF */
-     359           0 : /* EOF */
-     360           0 : /* EOF */
-     361             : /* EOF */
-     362           0 : /* EOF */
-     363           0 : /* EOF */
-     364           0 : /* EOF */
-     365             : /* EOF */
-     366           0 : /* EOF */
-     367           0 : /* EOF */
-     368           0 : /* EOF */
-     369             : /* EOF */
-     370           0 : /* EOF */
-     371           0 : /* EOF */
-     372           0 : /* EOF */
-     373             : /* EOF */
-     374           0 : /* EOF */
-     375           0 : /* EOF */
-     376           0 : /* EOF */
-     377             : /* EOF */
-     378           0 : /* EOF */
-     379             : /* EOF */
-     380           0 : /* EOF */
-     381           0 : /* EOF */
-     382           0 : /* EOF */
-     383             : /* EOF */
-     384           0 : /* EOF */
-     385             : /* EOF */
-     386           0 : /* EOF */
-     387           0 : /* EOF */
-     388           0 : /* EOF */
-     389             : /* EOF */
-     390           0 : /* EOF */
-     391           0 : /* EOF */
-     392           0 : /* EOF */
-     393             : /* EOF */
-     394           0 : /* EOF */
-     395           0 : /* EOF */
-     396           0 : /* EOF */
-     397             : /* EOF */
-     398           0 : /* EOF */
-     399           0 : /* EOF */
-     400           0 : /* EOF */
-     401             : /* EOF */
-     402           0 : /* EOF */
-     403           0 : /* EOF */
-     404           0 : /* EOF */
-     405             : /* EOF */
-     406           0 : /* EOF */
-     407             : /* EOF */
-     408           0 : /* EOF */
-     409           0 : /* EOF */
-     410           0 : /* EOF */
-     411             : /* EOF */
-     412           0 : /* EOF */
-     413             : /* EOF */
-     414           0 : /* EOF */
-     415           0 : /* EOF */
-     416           0 : /* EOF */
-     417             : /* EOF */
-     418           0 : /* EOF */
-     419           0 : /* EOF */
-     420           0 : /* EOF */
-     421             : /* EOF */
-     422           0 : /* EOF */
-     423           0 : /* EOF */
-     424           0 : /* EOF */
-     425             : /* EOF */
-     426           0 : /* EOF */
-     427           0 : /* EOF */
-     428           0 : /* EOF */
-     429             : /* EOF */
-     430           0 : /* EOF */
-     431           0 : /* EOF */
-     432           0 : /* EOF */
-     433             : /* EOF */
-     434           0 : /* EOF */
-     435           0 : /* EOF */
-     436           0 : /* EOF */
-     437             : /* EOF */
-     438           0 : /* EOF */
-     439           0 : /* EOF */
-     440           0 : /* EOF */
-     441             : /* EOF */
-     442           0 : /* EOF */
-     443           0 : /* EOF */
-     444           0 : /* EOF */
-     445             : /* EOF */
-     446           0 : /* EOF */
-     447           0 : /* EOF */
-     448           0 : /* EOF */
-     449             : /* EOF */
-     450           0 : /* EOF */
-     451             : /* EOF */
-     452           0 : /* EOF */
-     453           0 : /* EOF */
-     454           0 : /* EOF */
-     455             : /* EOF */
-     456             : /* EOF */
-     457           0 : /* EOF */
-     458             : /* EOF */
-     459             : /* EOF */
-     460           0 : /* EOF */
-     461             : /* EOF */
-     462           0 : /* EOF */
-     463             : /* EOF */
-     464             : /* EOF */
-     465           0 : /* EOF */
-     466             : /* EOF */
-     467             : /* EOF */
-     468             : /* EOF */
-     469             : /* EOF */
-     470           0 : /* EOF */
-     471           0 : /* EOF */
-     472           0 : /* EOF */
-     473           0 : /* EOF */
-     474             : /* EOF */
-     475           0 : /* EOF */
-     476             : /* EOF */
-     477           0 : /* EOF */
-     478           0 : /* EOF */
-     479           0 : /* EOF */
-     480             : /* EOF */
-     481          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func-sort-c.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func-sort-c.html deleted file mode 100644 index eb04eac0..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN14CheckerWideIO2D0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func.html deleted file mode 100644 index 285aafb5..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN14CheckerWideIO2D0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.gcov.html b/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.gcov.html deleted file mode 100644 index 2f4b5d0d..00000000 --- a/html/DRAMSys/library/src/controller/checker/CheckerWideIO2.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker/CheckerWideIO2.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/checker - CheckerWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/index-sort-f.html b/html/DRAMSys/library/src/controller/checker/index-sort-f.html deleted file mode 100644 index 0b49145b..00000000 --- a/html/DRAMSys/library/src/controller/checker/index-sort-f.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/checkerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:802298726.8 %
Date:2020-06-30 17:34:44Functions:386360.3 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CheckerWideIO2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR6.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerWideIO.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.cpp -
0.3%0.3%
-
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR5.cpp -
0.3%0.3%
-
0.3 %1 / 37040.0 %2 / 5
CheckerWideIO2.cpp -
0.3%0.3%
-
0.3 %1 / 32040.0 %2 / 5
CheckerGDDR6.cpp -
0.3%0.3%
-
0.3 %1 / 38340.0 %2 / 5
CheckerWideIO.cpp -
0.4%0.4%
-
0.4 %1 / 26140.0 %2 / 5
CheckerDDR4.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerLPDDR4.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerHBM2.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerDDR3.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerDDR4.cpp -
60.7%60.7%
-
60.7 %187 / 308100.0 %5 / 5
CheckerDDR3.cpp -
89.7%89.7%
-
89.7 %253 / 282100.0 %5 / 5
CheckerLPDDR4.cpp -
51.3%51.3%
-
51.3 %177 / 345100.0 %5 / 5
CheckerHBM2.cpp -
51.9%51.9%
-
51.9 %176 / 339100.0 %5 / 5
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/index-sort-l.html b/html/DRAMSys/library/src/controller/checker/index-sort-l.html deleted file mode 100644 index 621254a3..00000000 --- a/html/DRAMSys/library/src/controller/checker/index-sort-l.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/checkerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:802298726.8 %
Date:2020-06-30 17:34:44Functions:386360.3 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CheckerWideIO2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR6.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerWideIO.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.cpp -
0.3%0.3%
-
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR5.cpp -
0.3%0.3%
-
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR6.cpp -
0.3%0.3%
-
0.3 %1 / 38340.0 %2 / 5
CheckerWideIO.cpp -
0.4%0.4%
-
0.4 %1 / 26140.0 %2 / 5
CheckerWideIO2.cpp -
0.3%0.3%
-
0.3 %1 / 32040.0 %2 / 5
CheckerLPDDR4.cpp -
51.3%51.3%
-
51.3 %177 / 345100.0 %5 / 5
CheckerHBM2.cpp -
51.9%51.9%
-
51.9 %176 / 339100.0 %5 / 5
CheckerDDR4.cpp -
60.7%60.7%
-
60.7 %187 / 308100.0 %5 / 5
CheckerDDR3.cpp -
89.7%89.7%
-
89.7 %253 / 282100.0 %5 / 5
CheckerDDR4.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerLPDDR4.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerHBM2.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerDDR3.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/checker/index.html b/html/DRAMSys/library/src/controller/checker/index.html deleted file mode 100644 index 02bc1e83..00000000 --- a/html/DRAMSys/library/src/controller/checker/index.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/checker - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/checkerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:802298726.8 %
Date:2020-06-30 17:34:44Functions:386360.3 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CheckerDDR3.cpp -
89.7%89.7%
-
89.7 %253 / 282100.0 %5 / 5
CheckerDDR3.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerDDR4.cpp -
60.7%60.7%
-
60.7 %187 / 308100.0 %5 / 5
CheckerDDR4.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerGDDR5.cpp -
0.3%0.3%
-
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR5.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR5X.cpp -
0.3%0.3%
-
0.3 %1 / 37040.0 %2 / 5
CheckerGDDR5X.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerGDDR6.cpp -
0.3%0.3%
-
0.3 %1 / 38340.0 %2 / 5
CheckerGDDR6.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerHBM2.cpp -
51.9%51.9%
-
51.9 %176 / 339100.0 %5 / 5
CheckerHBM2.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerLPDDR4.cpp -
51.3%51.3%
-
51.3 %177 / 345100.0 %5 / 5
CheckerLPDDR4.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
CheckerWideIO.cpp -
0.4%0.4%
-
0.4 %1 / 26140.0 %2 / 5
CheckerWideIO.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
CheckerWideIO2.cpp -
0.3%0.3%
-
0.3 %1 / 32040.0 %2 / 5
CheckerWideIO2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func-sort-c.html deleted file mode 100644 index 6b8cfc3c..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1313100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CmdMuxOldest13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE30
_ZN12CmdMuxOldest13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE360325
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func.html deleted file mode 100644 index 0bd28fdc..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1313100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CmdMuxOldest13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE30
_ZN12CmdMuxOldest13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE360325
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.gcov.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.gcov.html deleted file mode 100644 index 5354253b..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp.gcov.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1313100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42      360325 : /* EOF */
-      43             : /* EOF */
-      44      360325 : /* EOF */
-      45      360325 : /* EOF */
-      46      360325 : /* EOF */
-      47      360325 : /* EOF */
-      48             : /* EOF */
-      49     3249832 : /* EOF */
-      50             : /* EOF */
-      51     1264591 : /* EOF */
-      52     1264591 : /* EOF */
-      53             : /* EOF */
-      54      163920 : /* EOF */
-      55      163920 : /* EOF */
-      56             : /* EOF */
-      57     1264591 : /* EOF */
-      58             : /* EOF */
-      59      360325 : /* EOF */
-      60          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func-sort-c.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func-sort-c.html deleted file mode 100644 index 03b70241..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CmdMuxOldestD2Ev0
_ZN12CmdMuxOldestD0Ev23
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func.html deleted file mode 100644 index fc5c0f3c..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CmdMuxOldestD0Ev23
_ZN12CmdMuxOldestD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.gcov.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.gcov.html deleted file mode 100644 index 8b470414..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h.gcov.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxOldest.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxOldest.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40          46 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func-sort-c.html deleted file mode 100644 index 571c4538..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1111100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CmdMuxStrict13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE30
_ZN12CmdMuxStrict13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE158606
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func.html deleted file mode 100644 index 3afd971b..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1111100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12CmdMuxStrict13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE30
_ZN12CmdMuxStrict13selectCommandERSt6vectorISt4pairI7CommandPN3tlm19tlm_generic_payloadEESaIS6_EE158606
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.gcov.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.gcov.html deleted file mode 100644 index 279bf239..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp.gcov.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1111100.0 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42      158606 : /* EOF */
-      43             : /* EOF */
-      44      915005 : /* EOF */
-      45             : /* EOF */
-      46      309253 : /* EOF */
-      47             : /* EOF */
-      48      273805 : /* EOF */
-      49             : /* EOF */
-      50       28672 : /* EOF */
-      51       28672 : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55      751877 : /* EOF */
-      56             : /* EOF */
-      57      261849 : /* EOF */
-      58       29708 : /* EOF */
-      59             : /* EOF */
-      60      200452 : /* EOF */
-      61          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func-sort-c.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func-sort-c.html deleted file mode 100644 index d29fe7a7..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CmdMuxStrictD2Ev0
_ZN12CmdMuxStrictD0Ev14
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func.html deleted file mode 100644 index 0d0418fc..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12CmdMuxStrictD0Ev14
_ZN12CmdMuxStrictD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.gcov.html b/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.gcov.html deleted file mode 100644 index 00649a18..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h.gcov.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux/CmdMuxStrict.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/cmdmux - CmdMuxStrict.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40          28 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/index-sort-f.html b/html/DRAMSys/library/src/controller/cmdmux/index-sort-f.html deleted file mode 100644 index d4d3b137..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/index-sort-f.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/cmdmuxHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2626100.0 %
Date:2020-06-30 17:34:44Functions:81080.0 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CmdMuxStrict.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
CmdMuxOldest.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
CmdMuxOldest.cpp -
100.0%
-
100.0 %13 / 13100.0 %3 / 3
CmdMuxStrict.cpp -
100.0%
-
100.0 %11 / 11100.0 %3 / 3
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/index-sort-l.html b/html/DRAMSys/library/src/controller/cmdmux/index-sort-l.html deleted file mode 100644 index 31d6649e..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/index-sort-l.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/cmdmuxHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2626100.0 %
Date:2020-06-30 17:34:44Functions:81080.0 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CmdMuxStrict.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
CmdMuxOldest.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
CmdMuxStrict.cpp -
100.0%
-
100.0 %11 / 11100.0 %3 / 3
CmdMuxOldest.cpp -
100.0%
-
100.0 %13 / 13100.0 %3 / 3
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/cmdmux/index.html b/html/DRAMSys/library/src/controller/cmdmux/index.html deleted file mode 100644 index affd16ff..00000000 --- a/html/DRAMSys/library/src/controller/cmdmux/index.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/cmdmux - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/cmdmuxHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2626100.0 %
Date:2020-06-30 17:34:44Functions:81080.0 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
CmdMuxOldest.cpp -
100.0%
-
100.0 %13 / 13100.0 %3 / 3
CmdMuxOldest.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
CmdMuxStrict.cpp -
100.0%
-
100.0 %11 / 11100.0 %3 / 3
CmdMuxStrict.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/index-sort-f.html b/html/DRAMSys/library/src/controller/index-sort-f.html deleted file mode 100644 index 5e8e92df..00000000 --- a/html/DRAMSys/library/src/controller/index-sort-f.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controllerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:46151689.3 %
Date:2020-06-30 17:34:44Functions:557078.6 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
BankMachine.h -
100.0%
-
100.0 %4 / 450.0 %4 / 8
ControllerRecordable.h -
100.0%
-
100.0 %3 / 366.7 %2 / 3
Controller.cpp -
87.3%87.3%
-
87.3 %192 / 22073.3 %11 / 15
ControllerIF.h -
100.0%
-
100.0 %46 / 4675.0 %3 / 4
Command.cpp -
72.0%72.0%
-
72.0 %18 / 2576.9 %10 / 13
ControllerRecordable.cpp -
89.3%89.3%
-
89.3 %25 / 2885.7 %6 / 7
BankMachine.cpp -
89.8%89.8%
-
89.8 %149 / 16695.0 %19 / 20
Command.h -
100.0%
-
100.0 %24 / 24-0 / 0
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/index-sort-l.html b/html/DRAMSys/library/src/controller/index-sort-l.html deleted file mode 100644 index 6c75bb1e..00000000 --- a/html/DRAMSys/library/src/controller/index-sort-l.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controllerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:46151689.3 %
Date:2020-06-30 17:34:44Functions:557078.6 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Command.cpp -
72.0%72.0%
-
72.0 %18 / 2576.9 %10 / 13
Controller.cpp -
87.3%87.3%
-
87.3 %192 / 22073.3 %11 / 15
ControllerRecordable.cpp -
89.3%89.3%
-
89.3 %25 / 2885.7 %6 / 7
BankMachine.cpp -
89.8%89.8%
-
89.8 %149 / 16695.0 %19 / 20
ControllerRecordable.h -
100.0%
-
100.0 %3 / 366.7 %2 / 3
BankMachine.h -
100.0%
-
100.0 %4 / 450.0 %4 / 8
Command.h -
100.0%
-
100.0 %24 / 24-0 / 0
ControllerIF.h -
100.0%
-
100.0 %46 / 4675.0 %3 / 4
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/index.html b/html/DRAMSys/library/src/controller/index.html deleted file mode 100644 index 9e93bbf5..00000000 --- a/html/DRAMSys/library/src/controller/index.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controllerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:46151689.3 %
Date:2020-06-30 17:34:44Functions:557078.6 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
BankMachine.cpp -
89.8%89.8%
-
89.8 %149 / 16695.0 %19 / 20
BankMachine.h -
100.0%
-
100.0 %4 / 450.0 %4 / 8
Command.cpp -
72.0%72.0%
-
72.0 %18 / 2576.9 %10 / 13
Command.h -
100.0%
-
100.0 %24 / 24-0 / 0
Controller.cpp -
87.3%87.3%
-
87.3 %192 / 22073.3 %11 / 15
ControllerIF.h -
100.0%
-
100.0 %46 / 4675.0 %3 / 4
ControllerRecordable.cpp -
89.3%89.3%
-
89.3 %25 / 2885.7 %6 / 7
ControllerRecordable.h -
100.0%
-
100.0 %3 / 366.7 %2 / 3
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func-sort-c.html deleted file mode 100644 index 0e700a88..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func-sort-c.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN21PowerDownManagerDummy14getNextCommandEv30
_ZN21PowerDownManagerDummy14getNextCommandEv1085867
_ZN21PowerDownManagerDummy5startEv2171734
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func.html deleted file mode 100644 index eb23f0d6..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.func.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN21PowerDownManagerDummy14getNextCommandEv30
_ZN21PowerDownManagerDummy14getNextCommandEv1085867
_ZN21PowerDownManagerDummy5startEv2171734
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.gcov.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.gcov.html deleted file mode 100644 index 8ba6b502..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:55100.0 %
Date:2020-06-30 17:34:44Functions:44100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39     1085867 : /* EOF */
-      40             : /* EOF */
-      41     2171734 : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44     2171734 : /* EOF */
-      45             : /* EOF */
-      46     4343468 : /* EOF */
-      47          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func-sort-c.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func-sort-c.html deleted file mode 100644 index 540c25bb..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func-sort-c.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:66100.0 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN21PowerDownManagerDummyD2Ev0
_ZN21PowerDownManagerDummyD0Ev32
_ZN21PowerDownManagerDummy11triggerExitEv50
_ZN21PowerDownManagerDummy12triggerEntryEv1400
_ZN21PowerDownManagerDummy19triggerInterruptionEv93042
_ZN21PowerDownManagerDummy11updateStateE7Command416430
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func.html deleted file mode 100644 index 2e9392c4..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.func.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:66100.0 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN21PowerDownManagerDummy11triggerExitEv50
_ZN21PowerDownManagerDummy11updateStateE7Command416430
_ZN21PowerDownManagerDummy12triggerEntryEv1400
_ZN21PowerDownManagerDummy19triggerInterruptionEv93042
_ZN21PowerDownManagerDummyD0Ev32
_ZN21PowerDownManagerDummyD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.gcov.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.gcov.html deleted file mode 100644 index a73d5f0c..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h.gcov.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerDummy.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:66100.0 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40          32 : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43          32 : /* EOF */
-      44             : /* EOF */
-      45        1400 : /* EOF */
-      46          50 : /* EOF */
-      47       93042 : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50      416430 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func-sort-c.html deleted file mode 100644 index 63f480a1..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func-sort-c.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:899296.7 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN25PowerDownManagerStaggeredC2E4RankP9CheckerIF10
_ZN25PowerDownManagerStaggered11triggerExitEv20
_GLOBAL__sub_I__ZN25PowerDownManagerStaggeredC2E4RankP9CheckerIF30
_Z41__static_initialization_and_destruction_0ii30
_ZN25PowerDownManagerStaggered12triggerEntryEv100
_ZN25PowerDownManagerStaggered19triggerInterruptionEv170
_ZN25PowerDownManagerStaggered11updateStateE7Command2275
_ZN25PowerDownManagerStaggered14getNextCommandEv8790
_ZN25PowerDownManagerStaggered5startEv17580
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func.html deleted file mode 100644 index 8f756f4d..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.func.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:899296.7 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN25PowerDownManagerStaggeredC2E4RankP9CheckerIF30
_Z41__static_initialization_and_destruction_0ii30
_ZN25PowerDownManagerStaggered11triggerExitEv20
_ZN25PowerDownManagerStaggered11updateStateE7Command2275
_ZN25PowerDownManagerStaggered12triggerEntryEv100
_ZN25PowerDownManagerStaggered14getNextCommandEv8790
_ZN25PowerDownManagerStaggered19triggerInterruptionEv170
_ZN25PowerDownManagerStaggered5startEv17580
_ZN25PowerDownManagerStaggeredC2E4RankP9CheckerIF10
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.gcov.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.gcov.html deleted file mode 100644 index 1ef2939b..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp.gcov.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:899296.7 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40          10 : /* EOF */
-      41          20 : /* EOF */
-      42             : /* EOF */
-      43          10 : /* EOF */
-      44          10 : /* EOF */
-      45             : /* EOF */
-      46         100 : /* EOF */
-      47             : /* EOF */
-      48         100 : /* EOF */
-      49             : /* EOF */
-      50         100 : /* EOF */
-      51          60 : /* EOF */
-      52         100 : /* EOF */
-      53             : /* EOF */
-      54          20 : /* EOF */
-      55             : /* EOF */
-      56          20 : /* EOF */
-      57          20 : /* EOF */
-      58          20 : /* EOF */
-      59             : /* EOF */
-      60          20 : /* EOF */
-      61          15 : /* EOF */
-      62          20 : /* EOF */
-      63             : /* EOF */
-      64         170 : /* EOF */
-      65             : /* EOF */
-      66         170 : /* EOF */
-      67             : /* EOF */
-      68         170 : /* EOF */
-      69          40 : /* EOF */
-      70         170 : /* EOF */
-      71             : /* EOF */
-      72        8790 : /* EOF */
-      73             : /* EOF */
-      74       17580 : /* EOF */
-      75         200 : /* EOF */
-      76             : /* EOF */
-      77       17380 : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80       17580 : /* EOF */
-      81             : /* EOF */
-      82       35160 : /* EOF */
-      83             : /* EOF */
-      84       17580 : /* EOF */
-      85             : /* EOF */
-      86         795 : /* EOF */
-      87          20 : /* EOF */
-      88         775 : /* EOF */
-      89          25 : /* EOF */
-      90         750 : /* EOF */
-      91          10 : /* EOF */
-      92         740 : /* EOF */
-      93         740 : /* EOF */
-      94             : /* EOF */
-      95        3180 : /* EOF */
-      96             : /* EOF */
-      97       16785 : /* EOF */
-      98             : /* EOF */
-      99         410 : /* EOF */
-     100         355 : /* EOF */
-     101             : /* EOF */
-     102          55 : /* EOF */
-     103             : /* EOF */
-     104        1640 : /* EOF */
-     105             : /* EOF */
-     106       16375 : /* EOF */
-     107             : /* EOF */
-     108          40 : /* EOF */
-     109         160 : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112       35160 : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115        2275 : /* EOF */
-     116             : /* EOF */
-     117        2275 : /* EOF */
-     118             : /* EOF */
-     119         500 : /* EOF */
-     120         500 : /* EOF */
-     121         500 : /* EOF */
-     122         340 : /* EOF */
-     123         340 : /* EOF */
-     124         340 : /* EOF */
-     125          10 : /* EOF */
-     126          10 : /* EOF */
-     127          10 : /* EOF */
-     128          15 : /* EOF */
-     129          15 : /* EOF */
-     130          15 : /* EOF */
-     131          15 : /* EOF */
-     132          15 : /* EOF */
-     133          15 : /* EOF */
-     134          15 : /* EOF */
-     135          15 : /* EOF */
-     136          10 : /* EOF */
-     137          10 : /* EOF */
-     138          10 : /* EOF */
-     139          10 : /* EOF */
-     140          10 : /* EOF */
-     141          10 : /* EOF */
-     142          10 : /* EOF */
-     143          10 : /* EOF */
-     144          10 : /* EOF */
-     145          15 : /* EOF */
-     146          15 : /* EOF */
-     147          15 : /* EOF */
-     148          15 : /* EOF */
-     149          10 : /* EOF */
-     150             : /* EOF */
-     151          10 : /* EOF */
-     152          10 : /* EOF */
-     153          10 : /* EOF */
-     154          20 : /* EOF */
-     155          20 : /* EOF */
-     156             : /* EOF */
-     157          10 : /* EOF */
-     158          10 : /* EOF */
-     159             : /* EOF */
-     160          10 : /* EOF */
-     161          10 : /* EOF */
-     162             : /* EOF */
-     163           0 : /* EOF */
-     164           0 : /* EOF */
-     165           0 : /* EOF */
-     166             : /* EOF */
-     167             : /* EOF */
-     168        2395 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func-sort-c.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func-sort-c.html deleted file mode 100644 index 832c36bb..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN25PowerDownManagerStaggeredD2Ev0
_ZN25PowerDownManagerStaggeredD0Ev10
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func.html deleted file mode 100644 index 5938dfe9..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN25PowerDownManagerStaggeredD0Ev10
_ZN25PowerDownManagerStaggeredD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.gcov.html b/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.gcov.html deleted file mode 100644 index 360664b5..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h.gcov.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown/PowerDownManagerStaggered.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/powerdown - PowerDownManagerStaggered.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42          10 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/index-sort-f.html b/html/DRAMSys/library/src/controller/powerdown/index-sort-f.html deleted file mode 100644 index c0d350d2..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/index-sort-f.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/powerdownHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10110497.1 %
Date:2020-06-30 17:34:44Functions:192190.5 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
PowerDownManagerStaggered.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
PowerDownManagerDummy.h -
100.0%
-
100.0 %6 / 683.3 %5 / 6
PowerDownManagerDummy.cpp -
100.0%
-
100.0 %5 / 5100.0 %4 / 4
PowerDownManagerStaggered.cpp -
96.7%96.7%
-
96.7 %89 / 92100.0 %9 / 9
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/index-sort-l.html b/html/DRAMSys/library/src/controller/powerdown/index-sort-l.html deleted file mode 100644 index b9242e62..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/index-sort-l.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/powerdownHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10110497.1 %
Date:2020-06-30 17:34:44Functions:192190.5 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
PowerDownManagerStaggered.cpp -
96.7%96.7%
-
96.7 %89 / 92100.0 %9 / 9
PowerDownManagerStaggered.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
PowerDownManagerDummy.cpp -
100.0%
-
100.0 %5 / 5100.0 %4 / 4
PowerDownManagerDummy.h -
100.0%
-
100.0 %6 / 683.3 %5 / 6
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/powerdown/index.html b/html/DRAMSys/library/src/controller/powerdown/index.html deleted file mode 100644 index 315dfdbd..00000000 --- a/html/DRAMSys/library/src/controller/powerdown/index.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/powerdown - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/powerdownHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10110497.1 %
Date:2020-06-30 17:34:44Functions:192190.5 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
PowerDownManagerDummy.cpp -
100.0%
-
100.0 %5 / 5100.0 %4 / 4
PowerDownManagerDummy.h -
100.0%
-
100.0 %6 / 683.3 %5 / 6
PowerDownManagerStaggered.cpp -
96.7%96.7%
-
96.7 %89 / 92100.0 %9 / 9
PowerDownManagerStaggered.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func-sort-c.html deleted file mode 100644 index a9dd0798..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:829784.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN22RefreshManagerBankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_Z41__static_initialization_and_destruction_0ii30
_ZN22RefreshManagerBankwise14getNextCommandEv548424
_ZN22RefreshManagerBankwise5startEv1096848
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func.html deleted file mode 100644 index 4a4bced0..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:829784.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN22RefreshManagerBankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_Z41__static_initialization_and_destruction_0ii30
_ZN22RefreshManagerBankwise14getNextCommandEv548424
_ZN22RefreshManagerBankwise5startEv1096848
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.gcov.html deleted file mode 100644 index 698fc885..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp.gcov.html +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:829784.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42          12 : /* EOF */
-      43          12 : /* EOF */
-      44          84 : /* EOF */
-      45             : /* EOF */
-      46          12 : /* EOF */
-      47          12 : /* EOF */
-      48          24 : /* EOF */
-      49             : /* EOF */
-      50          36 : /* EOF */
-      51         108 : /* EOF */
-      52             : /* EOF */
-      53         288 : /* EOF */
-      54         288 : /* EOF */
-      55             : /* EOF */
-      56          24 : /* EOF */
-      57             : /* EOF */
-      58          12 : /* EOF */
-      59          12 : /* EOF */
-      60          12 : /* EOF */
-      61             : /* EOF */
-      62      548424 : /* EOF */
-      63             : /* EOF */
-      64     1096848 : /* EOF */
-      65        4056 : /* EOF */
-      66        8112 : /* EOF */
-      67             : /* EOF */
-      68     1092792 : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71     1096848 : /* EOF */
-      72             : /* EOF */
-      73     2193696 : /* EOF */
-      74             : /* EOF */
-      75     2193696 : /* EOF */
-      76             : /* EOF */
-      77       89256 : /* EOF */
-      78       89256 : /* EOF */
-      79           0 : /* EOF */
-      80             : /* EOF */
-      81      267768 : /* EOF */
-      82             : /* EOF */
-      83         912 : /* EOF */
-      84         456 : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87       89256 : /* EOF */
-      88             : /* EOF */
-      89      157536 : /* EOF */
-      90      236304 : /* EOF */
-      91       78768 : /* EOF */
-      92       78768 : /* EOF */
-      93             : /* EOF */
-      94       78768 : /* EOF */
-      95             : /* EOF */
-      96       47820 : /* EOF */
-      97             : /* EOF */
-      98       14520 : /* EOF */
-      99             : /* EOF */
-     100         468 : /* EOF */
-     101         468 : /* EOF */
-     102         468 : /* EOF */
-     103         468 : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108       78768 : /* EOF */
-     109             : /* EOF */
-     110        1692 : /* EOF */
-     111        3384 : /* EOF */
-     112        1692 : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115             : /* EOF */
-     116       77076 : /* EOF */
-     117         564 : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120       76512 : /* EOF */
-     121             : /* EOF */
-     122       76512 : /* EOF */
-     123             : /* EOF */
-     124       76104 : /* EOF */
-     125       76104 : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129      308304 : /* EOF */
-     130      231228 : /* EOF */
-     131       77076 : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136       10488 : /* EOF */
-     137             : /* EOF */
-     138       37248 : /* EOF */
-     139             : /* EOF */
-     140       13224 : /* EOF */
-     141             : /* EOF */
-     142       10332 : /* EOF */
-     143       10332 : /* EOF */
-     144       10332 : /* EOF */
-     145             : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148             : /* EOF */
-     149             : /* EOF */
-     150             : /* EOF */
-     151         156 : /* EOF */
-     152         312 : /* EOF */
-     153         156 : /* EOF */
-     154             : /* EOF */
-     155             : /* EOF */
-     156             : /* EOF */
-     157       10332 : /* EOF */
-     158        1644 : /* EOF */
-     159             : /* EOF */
-     160        8688 : /* EOF */
-     161       41328 : /* EOF */
-     162       30996 : /* EOF */
-     163       10332 : /* EOF */
-     164             : /* EOF */
-     165             : /* EOF */
-     166             : /* EOF */
-     167             : /* EOF */
-     168     1007592 : /* EOF */
-     169             : /* EOF */
-     170             : /* EOF */
-     171      191436 : /* EOF */
-     172             : /* EOF */
-     173      191436 : /* EOF */
-     174             : /* EOF */
-     175        1500 : /* EOF */
-     176        1500 : /* EOF */
-     177        4500 : /* EOF */
-     178        3000 : /* EOF */
-     179         180 : /* EOF */
-     180             : /* EOF */
-     181        1500 : /* EOF */
-     182         936 : /* EOF */
-     183             : /* EOF */
-     184         564 : /* EOF */
-     185             : /* EOF */
-     186        1500 : /* EOF */
-     187             : /* EOF */
-     188          96 : /* EOF */
-     189         192 : /* EOF */
-     190             : /* EOF */
-     191             : /* EOF */
-     192           0 : /* EOF */
-     193             : /* EOF */
-     194           0 : /* EOF */
-     195           0 : /* EOF */
-     196           0 : /* EOF */
-     197           0 : /* EOF */
-     198           0 : /* EOF */
-     199           0 : /* EOF */
-     200           0 : /* EOF */
-     201           0 : /* EOF */
-     202           0 : /* EOF */
-     203           0 : /* EOF */
-     204             : /* EOF */
-     205           0 : /* EOF */
-     206           0 : /* EOF */
-     207           0 : /* EOF */
-     208             : /* EOF */
-     209      191556 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func-sort-c.html deleted file mode 100644 index 549375c0..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN22RefreshManagerBankwiseD0Ev12
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func.html deleted file mode 100644 index 49c830d5..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN22RefreshManagerBankwiseD0Ev12
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.gcov.html deleted file mode 100644 index 4a144ee3..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h.gcov.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerBankwise.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerBankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46          48 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func-sort-c.html deleted file mode 100644 index ffb67bc1..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func-sort-c.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1520.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN19RefreshManagerDummy14getNextCommandEv0
_ZN19RefreshManagerDummy5startEv0
_GLOBAL__sub_I__ZN19RefreshManagerDummy14getNextCommandEv30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func.html deleted file mode 100644 index 4be609f1..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.func.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1520.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN19RefreshManagerDummy14getNextCommandEv30
_ZN19RefreshManagerDummy14getNextCommandEv0
_ZN19RefreshManagerDummy5startEv0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.gcov.html deleted file mode 100644 index 862733fb..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1520.0 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39           0 : /* EOF */
-      40             : /* EOF */
-      41           0 : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45             : /* EOF */
-      46           0 : /* EOF */
-      47          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func-sort-c.html deleted file mode 100644 index a81ee993..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func-sort-c.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:020.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN19RefreshManagerDummy11updateStateE7CommandPN3tlm19tlm_generic_payloadE0
_ZN19RefreshManagerDummyD0Ev0
_ZN19RefreshManagerDummyD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func.html deleted file mode 100644 index ecb0768f..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.func.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:020.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN19RefreshManagerDummy11updateStateE7CommandPN3tlm19tlm_generic_payloadE0
_ZN19RefreshManagerDummyD0Ev0
_ZN19RefreshManagerDummyD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.gcov.html deleted file mode 100644 index ef9e8387..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h.gcov.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerDummy.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerDummy.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:020.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func-sort-c.html deleted file mode 100644 index b35975e2..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func-sort-c.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:798197.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN22RefreshManagerRankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_ZN22RefreshManagerRankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_ZN22RefreshManagerRankwise11updateStateE7CommandPN3tlm19tlm_generic_payloadE227269
_ZN22RefreshManagerRankwise14getNextCommandEv546133
_ZN22RefreshManagerRankwise5startEv1092466
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func.html deleted file mode 100644 index d9fbc1ac..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.func.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:798197.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN22RefreshManagerRankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
_ZN22RefreshManagerRankwise11updateStateE7CommandPN3tlm19tlm_generic_payloadE227269
_ZN22RefreshManagerRankwise14getNextCommandEv546133
_ZN22RefreshManagerRankwise5startEv1092466
_ZN22RefreshManagerRankwiseC2ERSt6vectorIP11BankMachineSaIS2_EEP18PowerDownManagerIF4RankP9CheckerIF30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.gcov.html deleted file mode 100644 index 75be20c8..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp.gcov.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:798197.5 %
Date:2020-06-30 17:34:44Functions:66100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42          30 : /* EOF */
-      43          30 : /* EOF */
-      44          90 : /* EOF */
-      45             : /* EOF */
-      46          30 : /* EOF */
-      47          30 : /* EOF */
-      48          60 : /* EOF */
-      49          30 : /* EOF */
-      50             : /* EOF */
-      51          30 : /* EOF */
-      52          30 : /* EOF */
-      53          30 : /* EOF */
-      54             : /* EOF */
-      55      546133 : /* EOF */
-      56             : /* EOF */
-      57     1092266 : /* EOF */
-      58         966 : /* EOF */
-      59             : /* EOF */
-      60     1091300 : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63     1092466 : /* EOF */
-      64             : /* EOF */
-      65     2184932 : /* EOF */
-      66             : /* EOF */
-      67     2184932 : /* EOF */
-      68             : /* EOF */
-      69        3956 : /* EOF */
-      70        3956 : /* EOF */
-      71          40 : /* EOF */
-      72             : /* EOF */
-      73       11748 : /* EOF */
-      74             : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79        3916 : /* EOF */
-      80             : /* EOF */
-      81        3778 : /* EOF */
-      82             : /* EOF */
-      83       72120 : /* EOF */
-      84       57488 : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88         120 : /* EOF */
-      89         864 : /* EOF */
-      90             : /* EOF */
-      91         480 : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98         120 : /* EOF */
-      99             : /* EOF */
-     100          96 : /* EOF */
-     101         192 : /* EOF */
-     102          96 : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106        3682 : /* EOF */
-     107        2790 : /* EOF */
-     108             : /* EOF */
-     109         892 : /* EOF */
-     110       14728 : /* EOF */
-     111        3682 : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115         138 : /* EOF */
-     116        2088 : /* EOF */
-     117             : /* EOF */
-     118        1578 : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125         138 : /* EOF */
-     126             : /* EOF */
-     127          42 : /* EOF */
-     128          84 : /* EOF */
-     129          42 : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134         384 : /* EOF */
-     135          96 : /* EOF */
-     136             : /* EOF */
-     137             : /* EOF */
-     138             : /* EOF */
-     139             : /* EOF */
-     140     1088510 : /* EOF */
-     141             : /* EOF */
-     142             : /* EOF */
-     143      227269 : /* EOF */
-     144             : /* EOF */
-     145      227269 : /* EOF */
-     146             : /* EOF */
-     147       93452 : /* EOF */
-     148       93452 : /* EOF */
-     149       93452 : /* EOF */
-     150         340 : /* EOF */
-     151         340 : /* EOF */
-     152         340 : /* EOF */
-     153         212 : /* EOF */
-     154         212 : /* EOF */
-     155         212 : /* EOF */
-     156         276 : /* EOF */
-     157         276 : /* EOF */
-     158             : /* EOF */
-     159             : /* EOF */
-     160          10 : /* EOF */
-     161          30 : /* EOF */
-     162          10 : /* EOF */
-     163             : /* EOF */
-     164             : /* EOF */
-     165             : /* EOF */
-     166         266 : /* EOF */
-     167          48 : /* EOF */
-     168             : /* EOF */
-     169         218 : /* EOF */
-     170             : /* EOF */
-     171         266 : /* EOF */
-     172             : /* EOF */
-     173         176 : /* EOF */
-     174         352 : /* EOF */
-     175             : /* EOF */
-     176             : /* EOF */
-     177             : /* EOF */
-     178          30 : /* EOF */
-     179          30 : /* EOF */
-     180          30 : /* EOF */
-     181          10 : /* EOF */
-     182          10 : /* EOF */
-     183          10 : /* EOF */
-     184             : /* EOF */
-     185          25 : /* EOF */
-     186          25 : /* EOF */
-     187          25 : /* EOF */
-     188             : /* EOF */
-     189      227389 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func-sort-c.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func-sort-c.html deleted file mode 100644 index 09a6172e..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN22RefreshManagerRankwiseD2Ev0
_ZN22RefreshManagerRankwiseD0Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func.html deleted file mode 100644 index 2c30bcdc..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN22RefreshManagerRankwiseD0Ev30
_ZN22RefreshManagerRankwiseD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.gcov.html b/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.gcov.html deleted file mode 100644 index 49d05306..00000000 --- a/html/DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh/RefreshManagerRankwise.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/refresh - RefreshManagerRankwise.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          30 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/index-sort-f.html b/html/DRAMSys/library/src/controller/refresh/index-sort-f.html deleted file mode 100644 index 3e870329..00000000 --- a/html/DRAMSys/library/src/controller/refresh/index-sort-f.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/refreshHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:16418787.7 %
Date:2020-06-30 17:34:44Functions:172373.9 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RefreshManagerDummy.h -
0.0%
-
0.0 %0 / 20.0 %0 / 3
RefreshManagerRankwise.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
RefreshManagerDummy.cpp -
20.0%20.0%
-
20.0 %1 / 550.0 %2 / 4
RefreshManagerBankwise.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
RefreshManagerRankwise.cpp -
97.5%97.5%
-
97.5 %79 / 81100.0 %6 / 6
RefreshManagerBankwise.cpp -
84.5%84.5%
-
84.5 %82 / 97100.0 %6 / 6
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/index-sort-l.html b/html/DRAMSys/library/src/controller/refresh/index-sort-l.html deleted file mode 100644 index a56e3977..00000000 --- a/html/DRAMSys/library/src/controller/refresh/index-sort-l.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/refreshHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:16418787.7 %
Date:2020-06-30 17:34:44Functions:172373.9 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RefreshManagerDummy.h -
0.0%
-
0.0 %0 / 20.0 %0 / 3
RefreshManagerDummy.cpp -
20.0%20.0%
-
20.0 %1 / 550.0 %2 / 4
RefreshManagerBankwise.cpp -
84.5%84.5%
-
84.5 %82 / 97100.0 %6 / 6
RefreshManagerRankwise.cpp -
97.5%97.5%
-
97.5 %79 / 81100.0 %6 / 6
RefreshManagerRankwise.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
RefreshManagerBankwise.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/refresh/index.html b/html/DRAMSys/library/src/controller/refresh/index.html deleted file mode 100644 index 6da23602..00000000 --- a/html/DRAMSys/library/src/controller/refresh/index.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/refresh - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/refreshHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:16418787.7 %
Date:2020-06-30 17:34:44Functions:172373.9 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RefreshManagerBankwise.cpp -
84.5%84.5%
-
84.5 %82 / 97100.0 %6 / 6
RefreshManagerBankwise.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
RefreshManagerDummy.cpp -
20.0%20.0%
-
20.0 %1 / 550.0 %2 / 4
RefreshManagerDummy.h -
0.0%
-
0.0 %0 / 20.0 %0 / 3
RefreshManagerRankwise.cpp -
97.5%97.5%
-
97.5 %79 / 81100.0 %6 / 6
RefreshManagerRankwise.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func-sort-c.html deleted file mode 100644 index b2415132..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func-sort-c.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1515100.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13RespQueueFifo13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13RespQueueFifo13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE252938
_ZN13RespQueueFifo11nextPayloadEv984087
_ZNK13RespQueueFifo14getTriggerTimeEv984087
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func.html deleted file mode 100644 index 1ff9f67d..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.func.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1515100.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13RespQueueFifo13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN13RespQueueFifo11nextPayloadEv984087
_ZN13RespQueueFifo13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE252938
_ZNK13RespQueueFifo14getTriggerTimeEv984087
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.gcov.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.gcov.html deleted file mode 100644 index 6a82259f..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp.gcov.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1515100.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39      252938 : /* EOF */
-      40             : /* EOF */
-      41      758814 : /* EOF */
-      42      252938 : /* EOF */
-      43             : /* EOF */
-      44      984087 : /* EOF */
-      45             : /* EOF */
-      46     1968174 : /* EOF */
-      47             : /* EOF */
-      48     2735724 : /* EOF */
-      49     1823816 : /* EOF */
-      50             : /* EOF */
-      51      505876 : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58      984087 : /* EOF */
-      59             : /* EOF */
-      60     1968174 : /* EOF */
-      61             : /* EOF */
-      62     2735724 : /* EOF */
-      63     1823816 : /* EOF */
-      64      911908 : /* EOF */
-      65             : /* EOF */
-      66       72179 : /* EOF */
-      67          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func-sort-c.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func-sort-c.html deleted file mode 100644 index 21c64826..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func.html deleted file mode 100644 index d4a87562..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.gcov.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.gcov.html deleted file mode 100644 index 30daea91..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueFifo.h.gcov.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueFifo.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          74 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func-sort-c.html deleted file mode 100644 index 5da5f479..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func-sort-c.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1175.9 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN16RespQueueReorder13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE0
_GLOBAL__sub_I__ZN16RespQueueReorder13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func.html deleted file mode 100644 index a835ecb6..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.func.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1175.9 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN16RespQueueReorder13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN16RespQueueReorder13insertPayloadEPN3tlm19tlm_generic_payloadEN7sc_core7sc_timeE0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.gcov.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.gcov.html deleted file mode 100644 index 0b59cec2..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp.gcov.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1175.9 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40           0 : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-      43           0 : /* EOF */
-      44             : /* EOF */
-      45           0 : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-      48             : /* EOF */
-      49           0 : /* EOF */
-      50             : /* EOF */
-      51           0 : /* EOF */
-      52           0 : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62           0 : /* EOF */
-      63             : /* EOF */
-      64           0 : /* EOF */
-      65             : /* EOF */
-      66           0 : /* EOF */
-      67             : /* EOF */
-      68           0 : /* EOF */
-      69           0 : /* EOF */
-      70           0 : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73           0 : /* EOF */
-      74          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func-sort-c.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func-sort-c.html deleted file mode 100644 index 7088cf22..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func.html deleted file mode 100644 index 1683f50e..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.gcov.html b/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.gcov.html deleted file mode 100644 index 1f5828fc..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/RespQueueReorder.h.gcov.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue/RespQueueReorder.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/respqueue - RespQueueReorder.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/index-sort-f.html b/html/DRAMSys/library/src/controller/respqueue/index-sort-f.html deleted file mode 100644 index cca5ee40..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/index-sort-f.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/respqueueHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:173450.0 %
Date:2020-06-30 17:34:44Functions:71070.0 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RespQueueReorder.cpp -
5.9%5.9%
-
5.9 %1 / 1740.0 %2 / 5
RespQueueReorder.h -
0.0%
-
0.0 %0 / 1-0 / 0
RespQueueFifo.h -
100.0%
-
100.0 %1 / 1-0 / 0
RespQueueFifo.cpp -
100.0%
-
100.0 %15 / 15100.0 %5 / 5
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/index-sort-l.html b/html/DRAMSys/library/src/controller/respqueue/index-sort-l.html deleted file mode 100644 index c35ea100..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/index-sort-l.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/respqueueHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:173450.0 %
Date:2020-06-30 17:34:44Functions:71070.0 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RespQueueReorder.h -
0.0%
-
0.0 %0 / 1-0 / 0
RespQueueReorder.cpp -
5.9%5.9%
-
5.9 %1 / 1740.0 %2 / 5
RespQueueFifo.h -
100.0%
-
100.0 %1 / 1-0 / 0
RespQueueFifo.cpp -
100.0%
-
100.0 %15 / 15100.0 %5 / 5
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/respqueue/index.html b/html/DRAMSys/library/src/controller/respqueue/index.html deleted file mode 100644 index 079f9e80..00000000 --- a/html/DRAMSys/library/src/controller/respqueue/index.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/respqueue - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/respqueueHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:173450.0 %
Date:2020-06-30 17:34:44Functions:71070.0 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
RespQueueFifo.cpp -
100.0%
-
100.0 %15 / 15100.0 %5 / 5
RespQueueFifo.h -
100.0%
-
100.0 %1 / 1-0 / 0
RespQueueReorder.cpp -
5.9%5.9%
-
5.9 %1 / 1740.0 %2 / 5
RespQueueReorder.h -
0.0%
-
0.0 %0 / 1-0 / 0
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func-sort-c.html deleted file mode 100644 index 5ce96a4c..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func-sort-c.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2727100.0 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13SchedulerFifoC2Ev26
_GLOBAL__sub_I__ZN13SchedulerFifoC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13SchedulerFifo12storeRequestEPN3tlm19tlm_generic_payloadE148696
_ZN13SchedulerFifo13removeRequestEPN3tlm19tlm_generic_payloadE148696
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func.html deleted file mode 100644 index 212af6a8..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.func.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2727100.0 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13SchedulerFifoC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13SchedulerFifo12storeRequestEPN3tlm19tlm_generic_payloadE148696
_ZN13SchedulerFifo13removeRequestEPN3tlm19tlm_generic_payloadE148696
_ZN13SchedulerFifoC2Ev26
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.gcov.html deleted file mode 100644 index c39c48e8..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp.gcov.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:2727100.0 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39          52 : /* EOF */
-      40             : /* EOF */
-      41         104 : /* EOF */
-      42          52 : /* EOF */
-      43          26 : /* EOF */
-      44          26 : /* EOF */
-      45             : /* EOF */
-      46      665070 : /* EOF */
-      47             : /* EOF */
-      48     1995210 : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51      516374 : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54      148696 : /* EOF */
-      55             : /* EOF */
-      56      297392 : /* EOF */
-      57      297392 : /* EOF */
-      58      148696 : /* EOF */
-      59             : /* EOF */
-      60      148696 : /* EOF */
-      61             : /* EOF */
-      62      446088 : /* EOF */
-      63      148696 : /* EOF */
-      64             : /* EOF */
-      65     7923528 : /* EOF */
-      66             : /* EOF */
-      67    15847056 : /* EOF */
-      68    23770584 : /* EOF */
-      69    11399674 : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74     2293800 : /* EOF */
-      75             : /* EOF */
-      76     6881400 : /* EOF */
-      77             : /* EOF */
-      78     4587600 : /* EOF */
-      79     2293800 : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85     2310144 : /* EOF */
-      86             : /* EOF */
-      87     6930432 : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90       16344 : /* EOF */
-      91         120 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func-sort-c.html deleted file mode 100644 index f910edad..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13SchedulerFifoD2Ev0
_ZN13SchedulerFifoD0Ev26
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func.html deleted file mode 100644 index 8400dade..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13SchedulerFifoD0Ev26
_ZN13SchedulerFifoD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.gcov.html deleted file mode 100644 index 89430a0b..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFifo.h.gcov.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFifo.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFifo.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45          26 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func-sort-c.html deleted file mode 100644 index 261c49c8..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:343889.5 %
Date:2020-06-30 17:34:44Functions:8988.9 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN15SchedulerFrFcfsC2Ev30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func.html deleted file mode 100644 index d4902252..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:343889.5 %
Date:2020-06-30 17:34:44Functions:8988.9 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN15SchedulerFrFcfsC2Ev30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.gcov.html deleted file mode 100644 index fadfaf4e..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp.gcov.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:343889.5 %
Date:2020-06-30 17:34:44Functions:8988.9 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41          12 : /* EOF */
-      42             : /* EOF */
-      43          24 : /* EOF */
-      44          12 : /* EOF */
-      45           6 : /* EOF */
-      46           6 : /* EOF */
-      47             : /* EOF */
-      48      322602 : /* EOF */
-      49             : /* EOF */
-      50      967806 : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53      219690 : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56      102912 : /* EOF */
-      57             : /* EOF */
-      58      205824 : /* EOF */
-      59      308736 : /* EOF */
-      60      102912 : /* EOF */
-      61             : /* EOF */
-      62      102912 : /* EOF */
-      63             : /* EOF */
-      64      205824 : /* EOF */
-      65      411840 : /* EOF */
-      66             : /* EOF */
-      67      103008 : /* EOF */
-      68             : /* EOF */
-      69      205824 : /* EOF */
-      70      102912 : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73           0 : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76     5314560 : /* EOF */
-      77             : /* EOF */
-      78    10629120 : /* EOF */
-      79    15943680 : /* EOF */
-      80             : /* EOF */
-      81     5306238 : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84     2493630 : /* EOF */
-      85    12477762 : /* EOF */
-      86             : /* EOF */
-      87     2496834 : /* EOF */
-      88     2493630 : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92     8437824 : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97     2493630 : /* EOF */
-      98             : /* EOF */
-      99     2493630 : /* EOF */
-     100    32485248 : /* EOF */
-     101             : /* EOF */
-     102     8494812 : /* EOF */
-     103             : /* EOF */
-     104     4316076 : /* EOF */
-     105     4316076 : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112           0 : /* EOF */
-     113             : /* EOF */
-     114           0 : /* EOF */
-     115             : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118         120 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func-sort-c.html deleted file mode 100644 index c9cd8a8b..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN15SchedulerFrFcfsD2Ev0
_ZN15SchedulerFrFcfsD0Ev6
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func.html deleted file mode 100644 index df2c08ac..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN15SchedulerFrFcfsD0Ev6
_ZN15SchedulerFrFcfsD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.gcov.html deleted file mode 100644 index 5a0164ff..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h.gcov.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfs.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfs.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45           6 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func-sort-c.html deleted file mode 100644 index 2c6cd7f3..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374778.7 %
Date:2020-06-30 17:34:44Functions:7977.8 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN18SchedulerFrFcfsGrpC2Ev30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func.html deleted file mode 100644 index f3100167..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374778.7 %
Date:2020-06-30 17:34:44Functions:7977.8 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN18SchedulerFrFcfsGrpC2Ev30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.gcov.html deleted file mode 100644 index a8d4d232..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp.gcov.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374778.7 %
Date:2020-06-30 17:34:44Functions:7977.8 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39          10 : /* EOF */
-      40             : /* EOF */
-      41          20 : /* EOF */
-      42          10 : /* EOF */
-      43           5 : /* EOF */
-      44           5 : /* EOF */
-      45             : /* EOF */
-      46        2130 : /* EOF */
-      47             : /* EOF */
-      48        6390 : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51         800 : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54        1330 : /* EOF */
-      55             : /* EOF */
-      56        2660 : /* EOF */
-      57        3990 : /* EOF */
-      58        1330 : /* EOF */
-      59             : /* EOF */
-      60        1330 : /* EOF */
-      61             : /* EOF */
-      62        1330 : /* EOF */
-      63        2660 : /* EOF */
-      64        7480 : /* EOF */
-      65             : /* EOF */
-      66        2410 : /* EOF */
-      67             : /* EOF */
-      68        2660 : /* EOF */
-      69        1330 : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72           0 : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75       62455 : /* EOF */
-      76             : /* EOF */
-      77      124910 : /* EOF */
-      78      187365 : /* EOF */
-      79             : /* EOF */
-      80       53050 : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83       47575 : /* EOF */
-      84       52180 : /* EOF */
-      85      877595 : /* EOF */
-      86             : /* EOF */
-      87      213240 : /* EOF */
-      88       86975 : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91       47575 : /* EOF */
-      92             : /* EOF */
-      93       90530 : /* EOF */
-      94             : /* EOF */
-      95       56235 : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98       73390 : /* EOF */
-      99             : /* EOF */
-     100        7170 : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106       34730 : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111       31545 : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115       30240 : /* EOF */
-     116             : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120           0 : /* EOF */
-     121             : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124             : /* EOF */
-     125           0 : /* EOF */
-     126             : /* EOF */
-     127           0 : /* EOF */
-     128           0 : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135           0 : /* EOF */
-     136             : /* EOF */
-     137           0 : /* EOF */
-     138             : /* EOF */
-     139             : /* EOF */
-     140           0 : /* EOF */
-     141         120 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func-sort-c.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func-sort-c.html deleted file mode 100644 index d7372492..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN18SchedulerFrFcfsGrpD2Ev0
_ZN18SchedulerFrFcfsGrpD0Ev5
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func.html deleted file mode 100644 index efa902eb..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN18SchedulerFrFcfsGrpD0Ev5
_ZN18SchedulerFrFcfsGrpD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.gcov.html b/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.gcov.html deleted file mode 100644 index 26c63590..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h.gcov.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler/SchedulerFrFcfsGrp.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/controller/scheduler - SchedulerFrFcfsGrp.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46           5 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/index-sort-f.html b/html/DRAMSys/library/src/controller/scheduler/index-sort-f.html deleted file mode 100644 index 99504d75..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/index-sort-f.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/schedulerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10111587.8 %
Date:2020-06-30 17:34:44Functions:273381.8 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
SchedulerFrFcfs.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
SchedulerFifo.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfsGrp.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfsGrp.cpp -
78.7%78.7%
-
78.7 %37 / 4777.8 %7 / 9
SchedulerFrFcfs.cpp -
89.5%89.5%
-
89.5 %34 / 3888.9 %8 / 9
SchedulerFifo.cpp -
100.0%
-
100.0 %27 / 27100.0 %9 / 9
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/index-sort-l.html b/html/DRAMSys/library/src/controller/scheduler/index-sort-l.html deleted file mode 100644 index ef617196..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/index-sort-l.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/schedulerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10111587.8 %
Date:2020-06-30 17:34:44Functions:273381.8 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
SchedulerFrFcfsGrp.cpp -
78.7%78.7%
-
78.7 %37 / 4777.8 %7 / 9
SchedulerFrFcfs.cpp -
89.5%89.5%
-
89.5 %34 / 3888.9 %8 / 9
SchedulerFrFcfs.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
SchedulerFifo.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfsGrp.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
SchedulerFifo.cpp -
100.0%
-
100.0 %27 / 27100.0 %9 / 9
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/controller/scheduler/index.html b/html/DRAMSys/library/src/controller/scheduler/index.html deleted file mode 100644 index a8da058d..00000000 --- a/html/DRAMSys/library/src/controller/scheduler/index.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/controller/scheduler - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/controller/schedulerHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:10111587.8 %
Date:2020-06-30 17:34:44Functions:273381.8 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
SchedulerFifo.cpp -
100.0%
-
100.0 %27 / 27100.0 %9 / 9
SchedulerFifo.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfs.cpp -
89.5%89.5%
-
89.5 %34 / 3888.9 %8 / 9
SchedulerFrFcfs.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
SchedulerFrFcfsGrp.cpp -
78.7%78.7%
-
78.7 %37 / 4777.8 %7 / 9
SchedulerFrFcfsGrp.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Bit.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/Bit.cpp.func-sort-c.html deleted file mode 100644 index 03c98546..00000000 --- a/html/DRAMSys/library/src/error/ECC/Bit.cpp.func-sort-c.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Bit.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11010.0 %
Date:2020-06-30 17:34:44Functions:1520.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN4CBit5PrintEv0
_ZN4CBitC2ENS_5VALUEE0
_ZN4CBitD0Ev0
_ZN4CBitD2Ev0
_GLOBAL__sub_I__ZN4CBitC2ENS_5VALUEE30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Bit.cpp.func.html b/html/DRAMSys/library/src/error/ECC/Bit.cpp.func.html deleted file mode 100644 index 1b0cb259..00000000 --- a/html/DRAMSys/library/src/error/ECC/Bit.cpp.func.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Bit.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11010.0 %
Date:2020-06-30 17:34:44Functions:1520.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN4CBitC2ENS_5VALUEE30
_ZN4CBit5PrintEv0
_ZN4CBitC2ENS_5VALUEE0
_ZN4CBitD0Ev0
_ZN4CBitD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Bit.cpp.gcov.html b/html/DRAMSys/library/src/error/ECC/Bit.cpp.gcov.html deleted file mode 100644 index d938b564..00000000 --- a/html/DRAMSys/library/src/error/ECC/Bit.cpp.gcov.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Bit.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11010.0 %
Date:2020-06-30 17:34:44Functions:1520.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7           0 : /* EOF */
-       8             : /* EOF */
-       9           0 : /* EOF */
-      10           0 : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13           0 : /* EOF */
-      14             : /* EOF */
-      15           0 : /* EOF */
-      16             : /* EOF */
-      17           0 : /* EOF */
-      18             : /* EOF */
-      19           0 : /* EOF */
-      20           0 : /* EOF */
-      21             : /* EOF */
-      22           0 : /* EOF */
-      23             : /* EOF */
-      24          60 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Bit.h.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/Bit.h.func-sort-c.html deleted file mode 100644 index 9de7e48c..00000000 --- a/html/DRAMSys/library/src/error/ECC/Bit.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Bit.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:080.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Bit.h.func.html b/html/DRAMSys/library/src/error/ECC/Bit.h.func.html deleted file mode 100644 index a5b89a57..00000000 --- a/html/DRAMSys/library/src/error/ECC/Bit.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Bit.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:080.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Bit.h.gcov.html b/html/DRAMSys/library/src/error/ECC/Bit.h.gcov.html deleted file mode 100644 index 2efb3f70..00000000 --- a/html/DRAMSys/library/src/error/ECC/Bit.h.gcov.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Bit.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Bit.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:080.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2           0 : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27           0 : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37           0 : /* EOF */
-      38           0 : /* EOF */
-      39             : /* EOF */
-      40           0 : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58             : /* EOF */
-      59           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/ECC.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/ECC.cpp.func-sort-c.html deleted file mode 100644 index 7c870b2f..00000000 --- a/html/DRAMSys/library/src/error/ECC/ECC.cpp.func-sort-c.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/ECC.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - ECC.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:0470.0 %
Date:2020-06-30 17:34:44Functions:080.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN3ECC10ExtendWordER5CWord0
_ZN3ECC15InsertCheckbitsER5CWordS0_0
_ZN3ECC15InsertParityBitER5CWord4CBit0
_ZN3ECC16ExtractCheckbitsE5CWordRS0_0
_ZN3ECC16ExtractParityBitE5CWordR4CBit0
_ZN3ECC16GetNumParityBitsEj0
_ZN3ECC18CalculateCheckbitsER5CWordS1_0
_ZN3ECC18CalculateParityBitE5CWordR4CBit0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/ECC.cpp.func.html b/html/DRAMSys/library/src/error/ECC/ECC.cpp.func.html deleted file mode 100644 index 4717be01..00000000 --- a/html/DRAMSys/library/src/error/ECC/ECC.cpp.func.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/ECC.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - ECC.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:0470.0 %
Date:2020-06-30 17:34:44Functions:080.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN3ECC10ExtendWordER5CWord0
_ZN3ECC15InsertCheckbitsER5CWordS0_0
_ZN3ECC15InsertParityBitER5CWord4CBit0
_ZN3ECC16ExtractCheckbitsE5CWordRS0_0
_ZN3ECC16ExtractParityBitE5CWordR4CBit0
_ZN3ECC16GetNumParityBitsEj0
_ZN3ECC18CalculateCheckbitsER5CWordS1_0
_ZN3ECC18CalculateParityBitE5CWordR4CBit0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/ECC.cpp.gcov.html b/html/DRAMSys/library/src/error/ECC/ECC.cpp.gcov.html deleted file mode 100644 index 7ee8d041..00000000 --- a/html/DRAMSys/library/src/error/ECC/ECC.cpp.gcov.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/ECC.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - ECC.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:0470.0 %
Date:2020-06-30 17:34:44Functions:080.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6           0 : /* EOF */
-       7             : /* EOF */
-       8           0 : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12           0 : /* EOF */
-      13           0 : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16           0 : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22           0 : /* EOF */
-      23             : /* EOF */
-      24           0 : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29           0 : /* EOF */
-      30           0 : /* EOF */
-      31           0 : /* EOF */
-      32           0 : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36           0 : /* EOF */
-      37           0 : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45             : /* EOF */
-      46           0 : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49           0 : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66             : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70           0 : /* EOF */
-      71           0 : /* EOF */
-      72             : /* EOF */
-      73           0 : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79           0 : /* EOF */
-      80             : /* EOF */
-      81           0 : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86           0 : /* EOF */
-      87             : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97           0 : /* EOF */
-      98             : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104           0 : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107           0 : /* EOF */
-     108           0 : /* EOF */
-     109           0 : /* EOF */
-     110             : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115           0 : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Word.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/Word.cpp.func-sort-c.html deleted file mode 100644 index d5eab843..00000000 --- a/html/DRAMSys/library/src/error/ECC/Word.cpp.func-sort-c.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Word.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1741.4 %
Date:2020-06-30 17:34:44Functions:1156.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN5CWord14PartShiftRightEjj0
_ZN5CWord5GetAtEj0
_ZN5CWord6AppendE4CBit0
_ZN5CWord6ResizeEj0
_ZN5CWord6RotateEv0
_ZN5CWordD0Ev0
_ZN5CWordD2Ev0
_GLOBAL__sub_I__ZN5CWordC2Ej30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Word.cpp.func.html b/html/DRAMSys/library/src/error/ECC/Word.cpp.func.html deleted file mode 100644 index ed4b7f1e..00000000 --- a/html/DRAMSys/library/src/error/ECC/Word.cpp.func.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Word.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1741.4 %
Date:2020-06-30 17:34:44Functions:1156.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN5CWordC2Ej30
_ZN5CWord14PartShiftRightEjj0
_ZN5CWord5GetAtEj0
_ZN5CWord6AppendE4CBit0
_ZN5CWord6ResizeEj0
_ZN5CWord6RotateEv0
_ZN5CWordD0Ev0
_ZN5CWordD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Word.cpp.gcov.html b/html/DRAMSys/library/src/error/ECC/Word.cpp.gcov.html deleted file mode 100644 index 42d2f2f4..00000000 --- a/html/DRAMSys/library/src/error/ECC/Word.cpp.gcov.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Word.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1741.4 %
Date:2020-06-30 17:34:44Functions:1156.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10           0 : /* EOF */
-      11           0 : /* EOF */
-      12             : /* EOF */
-      13           0 : /* EOF */
-      14           0 : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17           0 : /* EOF */
-      18             : /* EOF */
-      19           0 : /* EOF */
-      20             : /* EOF */
-      21           0 : /* EOF */
-      22             : /* EOF */
-      23           0 : /* EOF */
-      24           0 : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30           0 : /* EOF */
-      31             : /* EOF */
-      32           0 : /* EOF */
-      33           0 : /* EOF */
-      34           0 : /* EOF */
-      35           0 : /* EOF */
-      36           0 : /* EOF */
-      37           0 : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40           0 : /* EOF */
-      41           0 : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45           0 : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-      48             : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51           0 : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54           0 : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63           0 : /* EOF */
-      64             : /* EOF */
-      65           0 : /* EOF */
-      66             : /* EOF */
-      67           0 : /* EOF */
-      68           0 : /* EOF */
-      69           0 : /* EOF */
-      70             : /* EOF */
-      71           0 : /* EOF */
-      72             : /* EOF */
-      73           0 : /* EOF */
-      74             : /* EOF */
-      75           0 : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80             : /* EOF */
-      81           0 : /* EOF */
-      82             : /* EOF */
-      83           0 : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86           0 : /* EOF */
-      87             : /* EOF */
-      88           0 : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91           0 : /* EOF */
-      92           0 : /* EOF */
-      93             : /* EOF */
-      94           0 : /* EOF */
-      95             : /* EOF */
-      96           0 : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101           0 : /* EOF */
-     102             : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105             : /* EOF */
-     106           0 : /* EOF */
-     107             : /* EOF */
-     108           0 : /* EOF */
-     109           0 : /* EOF */
-     110           0 : /* EOF */
-     111             : /* EOF */
-     112           0 : /* EOF */
-     113             : /* EOF */
-     114           0 : /* EOF */
-     115             : /* EOF */
-     116             : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125           0 : /* EOF */
-     126             : /* EOF */
-     127           0 : /* EOF */
-     128           0 : /* EOF */
-     129           0 : /* EOF */
-     130             : /* EOF */
-     131           0 : /* EOF */
-     132           0 : /* EOF */
-     133             : /* EOF */
-     134           0 : /* EOF */
-     135             : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138             : /* EOF */
-     139           0 : /* EOF */
-     140           0 : /* EOF */
-     141           0 : /* EOF */
-     142           0 : /* EOF */
-     143             : /* EOF */
-     144          60 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Word.h.func-sort-c.html b/html/DRAMSys/library/src/error/ECC/Word.h.func-sort-c.html deleted file mode 100644 index 1d79fca8..00000000 --- a/html/DRAMSys/library/src/error/ECC/Word.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Word.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Word.h.func.html b/html/DRAMSys/library/src/error/ECC/Word.h.func.html deleted file mode 100644 index 7374eba3..00000000 --- a/html/DRAMSys/library/src/error/ECC/Word.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Word.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/Word.h.gcov.html b/html/DRAMSys/library/src/error/ECC/Word.h.gcov.html deleted file mode 100644 index 891df576..00000000 --- a/html/DRAMSys/library/src/error/ECC/Word.h.gcov.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC/Word.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error/ECC - Word.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6           0 : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/index-sort-f.html b/html/DRAMSys/library/src/error/ECC/index-sort-f.html deleted file mode 100644 index 6cfcf1c3..00000000 --- a/html/DRAMSys/library/src/error/ECC/index-sort-f.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/error/ECCHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:21421.4 %
Date:2020-06-30 17:34:44Functions:2287.1 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
ECC.cpp -
0.0%
-
0.0 %0 / 470.0 %0 / 8
Word.cpp -
1.4%1.4%
-
1.4 %1 / 746.7 %1 / 15
Bit.cpp -
10.0%10.0%
-
10.0 %1 / 1020.0 %1 / 5
Word.h -
0.0%
-
0.0 %0 / 3-0 / 0
Bit.h -
0.0%
-
0.0 %0 / 8-0 / 0
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/index-sort-l.html b/html/DRAMSys/library/src/error/ECC/index-sort-l.html deleted file mode 100644 index 6a016874..00000000 --- a/html/DRAMSys/library/src/error/ECC/index-sort-l.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/error/ECCHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:21421.4 %
Date:2020-06-30 17:34:44Functions:2287.1 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Word.h -
0.0%
-
0.0 %0 / 3-0 / 0
Bit.h -
0.0%
-
0.0 %0 / 8-0 / 0
ECC.cpp -
0.0%
-
0.0 %0 / 470.0 %0 / 8
Word.cpp -
1.4%1.4%
-
1.4 %1 / 746.7 %1 / 15
Bit.cpp -
10.0%10.0%
-
10.0 %1 / 1020.0 %1 / 5
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ECC/index.html b/html/DRAMSys/library/src/error/ECC/index.html deleted file mode 100644 index b216f0b0..00000000 --- a/html/DRAMSys/library/src/error/ECC/index.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ECC - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/error/ECCHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:21421.4 %
Date:2020-06-30 17:34:44Functions:2287.1 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Bit.cpp -
10.0%10.0%
-
10.0 %1 / 1020.0 %1 / 5
Bit.h -
0.0%
-
0.0 %0 / 8-0 / 0
ECC.cpp -
0.0%
-
0.0 %0 / 470.0 %0 / 8
Word.cpp -
1.4%1.4%
-
1.4 %1 / 746.7 %1 / 15
Word.h -
0.0%
-
0.0 %0 / 3-0 / 0
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/eccbaseclass.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/eccbaseclass.cpp.func-sort-c.html deleted file mode 100644 index d75c5a52..00000000 --- a/html/DRAMSys/library/src/error/eccbaseclass.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - eccbaseclass.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1352.9 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12ECCBaseClass15nb_transport_bwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN12ECCBaseClass15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_GLOBAL__sub_I__ZN12ECCBaseClass15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/eccbaseclass.cpp.func.html b/html/DRAMSys/library/src/error/eccbaseclass.cpp.func.html deleted file mode 100644 index a8cc4335..00000000 --- a/html/DRAMSys/library/src/error/eccbaseclass.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - eccbaseclass.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1352.9 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN12ECCBaseClass15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE30
_Z41__static_initialization_and_destruction_0ii30
_ZN12ECCBaseClass15nb_transport_bwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN12ECCBaseClass15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/eccbaseclass.cpp.gcov.html b/html/DRAMSys/library/src/error/eccbaseclass.cpp.gcov.html deleted file mode 100644 index aaa018fe..00000000 --- a/html/DRAMSys/library/src/error/eccbaseclass.cpp.gcov.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - eccbaseclass.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1352.9 %
Date:2020-06-30 17:34:44Functions:2450.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5           0 : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8           0 : /* EOF */
-       9             : /* EOF */
-      10           0 : /* EOF */
-      11             : /* EOF */
-      12           0 : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15           0 : /* EOF */
-      16           0 : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19           0 : /* EOF */
-      20           0 : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23           0 : /* EOF */
-      24           0 : /* EOF */
-      25           0 : /* EOF */
-      26             : /* EOF */
-      27           0 : /* EOF */
-      28             : /* EOF */
-      29           0 : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32           0 : /* EOF */
-      33           0 : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36           0 : /* EOF */
-      37           0 : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40           0 : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45           0 : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48           0 : /* EOF */
-      49             : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58           0 : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61           0 : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67             : /* EOF */
-      68           0 : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72           0 : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75           0 : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82           0 : /* EOF */
-      83          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/eccbaseclass.h.func-sort-c.html b/html/DRAMSys/library/src/error/eccbaseclass.h.func-sort-c.html deleted file mode 100644 index 04bf7a21..00000000 --- a/html/DRAMSys/library/src/error/eccbaseclass.h.func-sort-c.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - eccbaseclass.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:070.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12ECCBaseClassC2EN7sc_core14sc_module_nameE0
_ZN12ECCBaseClassD0Ev0
_ZN12ECCBaseClassD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/eccbaseclass.h.func.html b/html/DRAMSys/library/src/error/eccbaseclass.h.func.html deleted file mode 100644 index fa7bdb30..00000000 --- a/html/DRAMSys/library/src/error/eccbaseclass.h.func.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - eccbaseclass.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:070.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN12ECCBaseClassC2EN7sc_core14sc_module_nameE0
_ZN12ECCBaseClassD0Ev0
_ZN12ECCBaseClassD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/eccbaseclass.h.gcov.html b/html/DRAMSys/library/src/error/eccbaseclass.h.gcov.html deleted file mode 100644 index 1bc7e5b2..00000000 --- a/html/DRAMSys/library/src/error/eccbaseclass.h.gcov.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/eccbaseclass.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - eccbaseclass.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:070.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13           0 : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50           0 : /* EOF */
-      51           0 : /* EOF */
-      52           0 : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ecchamming.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/ecchamming.cpp.func-sort-c.html deleted file mode 100644 index fcbfa932..00000000 --- a/html/DRAMSys/library/src/error/ecchamming.cpp.func-sort-c.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - ecchamming.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1462.2 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10ECCHamming14AllocationSizeEj0
_ZN10ECCHamming6DecodeEPKhjPhj0
_ZN10ECCHamming6EncodeEPKhjPhj0
_GLOBAL__sub_I__ZN10ECCHamming14AllocationSizeEj30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ecchamming.cpp.func.html b/html/DRAMSys/library/src/error/ecchamming.cpp.func.html deleted file mode 100644 index 59c3c903..00000000 --- a/html/DRAMSys/library/src/error/ecchamming.cpp.func.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - ecchamming.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1462.2 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10ECCHamming14AllocationSizeEj30
_Z41__static_initialization_and_destruction_0ii30
_ZN10ECCHamming14AllocationSizeEj0
_ZN10ECCHamming6DecodeEPKhjPhj0
_ZN10ECCHamming6EncodeEPKhjPhj0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ecchamming.cpp.gcov.html b/html/DRAMSys/library/src/error/ecchamming.cpp.gcov.html deleted file mode 100644 index 2a22fbe8..00000000 --- a/html/DRAMSys/library/src/error/ecchamming.cpp.gcov.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - ecchamming.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1462.2 %
Date:2020-06-30 17:34:44Functions:2540.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5           0 : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8           0 : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11           0 : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15           0 : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21           0 : /* EOF */
-      22             : /* EOF */
-      23           0 : /* EOF */
-      24           0 : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27           0 : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30           0 : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33           0 : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36           0 : /* EOF */
-      37           0 : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40           0 : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53           0 : /* EOF */
-      54             : /* EOF */
-      55           0 : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59           0 : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65           0 : /* EOF */
-      66             : /* EOF */
-      67           0 : /* EOF */
-      68           0 : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71           0 : /* EOF */
-      72           0 : /* EOF */
-      73           0 : /* EOF */
-      74           0 : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77           0 : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80           0 : /* EOF */
-      81           0 : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87           0 : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90           0 : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93           0 : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96           0 : /* EOF */
-      97           0 : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102           0 : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105           0 : /* EOF */
-     106             : /* EOF */
-     107           0 : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110           0 : /* EOF */
-     111             : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115           0 : /* EOF */
-     116             : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119           0 : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127           0 : /* EOF */
-     128           0 : /* EOF */
-     129             : /* EOF */
-     130          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ecchamming.h.func-sort-c.html b/html/DRAMSys/library/src/error/ecchamming.h.func-sort-c.html deleted file mode 100644 index e5d35921..00000000 --- a/html/DRAMSys/library/src/error/ecchamming.h.func-sort-c.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - ecchamming.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:040.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10ECCHammingC2EN7sc_core14sc_module_nameE0
_ZN10ECCHammingD0Ev0
_ZN10ECCHammingD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ecchamming.h.func.html b/html/DRAMSys/library/src/error/ecchamming.h.func.html deleted file mode 100644 index 4dbdd6fd..00000000 --- a/html/DRAMSys/library/src/error/ecchamming.h.func.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - ecchamming.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:040.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10ECCHammingC2EN7sc_core14sc_module_nameE0
_ZN10ECCHammingD0Ev0
_ZN10ECCHammingD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/ecchamming.h.gcov.html b/html/DRAMSys/library/src/error/ecchamming.h.gcov.html deleted file mode 100644 index a1bc0f70..00000000 --- a/html/DRAMSys/library/src/error/ecchamming.h.gcov.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/ecchamming.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - ecchamming.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:040.0 %
Date:2020-06-30 17:34:44Functions:030.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7           0 : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16           0 : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-      43           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/errormodel.cpp.func-sort-c.html b/html/DRAMSys/library/src/error/errormodel.cpp.func-sort-c.html deleted file mode 100644 index 496b4f6a..00000000 --- a/html/DRAMSys/library/src/error/errormodel.cpp.func-sort-c.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - errormodel.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13090.3 %
Date:2020-06-30 17:34:44Functions:21910.5 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10errorModel10setContextE14DecodedAddress0
_ZN10errorModel12markBitFlipsEv0
_ZN10errorModel14getTemperatureEv0
_ZN10errorModel14parseInputDataEv0
_ZN10errorModel4initEv0
_ZN10errorModel6getBitEiiii0
_ZN10errorModel7refreshEj0
_ZN10errorModel8activateEj0
_ZN10errorModelD0Ev0
_GLOBAL__sub_I__ZN10errorModel4initEv30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/errormodel.cpp.func.html b/html/DRAMSys/library/src/error/errormodel.cpp.func.html deleted file mode 100644 index 58381a02..00000000 --- a/html/DRAMSys/library/src/error/errormodel.cpp.func.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - errormodel.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13090.3 %
Date:2020-06-30 17:34:44Functions:21910.5 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10errorModel4initEv30
_Z41__static_initialization_and_destruction_0ii30
_ZN10errorModel10setContextE14DecodedAddress0
_ZN10errorModel12markBitFlipsEv0
_ZN10errorModel14getTemperatureEv0
_ZN10errorModel14parseInputDataEv0
_ZN10errorModel4initEv0
_ZN10errorModel6getBitEiiii0
_ZN10errorModel7refreshEj0
_ZN10errorModel8activateEj0
_ZN10errorModelD0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/errormodel.cpp.gcov.html b/html/DRAMSys/library/src/error/errormodel.cpp.gcov.html deleted file mode 100644 index 4cb7bdb1..00000000 --- a/html/DRAMSys/library/src/error/errormodel.cpp.gcov.html +++ /dev/null @@ -1,828 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - errormodel.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:13090.3 %
Date:2020-06-30 17:34:44Functions:21910.5 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-      48             : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54           0 : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57           0 : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70           0 : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73           0 : /* EOF */
-      74           0 : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118             : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122             : /* EOF */
-     123           0 : /* EOF */
-     124             : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127             : /* EOF */
-     128           0 : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131           0 : /* EOF */
-     132           0 : /* EOF */
-     133           0 : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136           0 : /* EOF */
-     137             : /* EOF */
-     138             : /* EOF */
-     139           0 : /* EOF */
-     140             : /* EOF */
-     141             : /* EOF */
-     142           0 : /* EOF */
-     143             : /* EOF */
-     144             : /* EOF */
-     145           0 : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148           0 : /* EOF */
-     149             : /* EOF */
-     150           0 : /* EOF */
-     151             : /* EOF */
-     152             : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155           0 : /* EOF */
-     156             : /* EOF */
-     157             : /* EOF */
-     158           0 : /* EOF */
-     159             : /* EOF */
-     160             : /* EOF */
-     161           0 : /* EOF */
-     162           0 : /* EOF */
-     163           0 : /* EOF */
-     164           0 : /* EOF */
-     165             : /* EOF */
-     166           0 : /* EOF */
-     167             : /* EOF */
-     168           0 : /* EOF */
-     169           0 : /* EOF */
-     170           0 : /* EOF */
-     171           0 : /* EOF */
-     172             : /* EOF */
-     173             : /* EOF */
-     174             : /* EOF */
-     175             : /* EOF */
-     176             : /* EOF */
-     177             : /* EOF */
-     178             : /* EOF */
-     179             : /* EOF */
-     180             : /* EOF */
-     181           0 : /* EOF */
-     182             : /* EOF */
-     183             : /* EOF */
-     184             : /* EOF */
-     185           0 : /* EOF */
-     186             : /* EOF */
-     187           0 : /* EOF */
-     188             : /* EOF */
-     189           0 : /* EOF */
-     190             : /* EOF */
-     191             : /* EOF */
-     192             : /* EOF */
-     193           0 : /* EOF */
-     194             : /* EOF */
-     195             : /* EOF */
-     196             : /* EOF */
-     197           0 : /* EOF */
-     198             : /* EOF */
-     199             : /* EOF */
-     200           0 : /* EOF */
-     201             : /* EOF */
-     202           0 : /* EOF */
-     203             : /* EOF */
-     204             : /* EOF */
-     205           0 : /* EOF */
-     206           0 : /* EOF */
-     207             : /* EOF */
-     208             : /* EOF */
-     209             : /* EOF */
-     210             : /* EOF */
-     211             : /* EOF */
-     212           0 : /* EOF */
-     213             : /* EOF */
-     214             : /* EOF */
-     215           0 : /* EOF */
-     216           0 : /* EOF */
-     217           0 : /* EOF */
-     218             : /* EOF */
-     219             : /* EOF */
-     220             : /* EOF */
-     221           0 : /* EOF */
-     222             : /* EOF */
-     223           0 : /* EOF */
-     224             : /* EOF */
-     225             : /* EOF */
-     226           0 : /* EOF */
-     227             : /* EOF */
-     228             : /* EOF */
-     229           0 : /* EOF */
-     230           0 : /* EOF */
-     231           0 : /* EOF */
-     232           0 : /* EOF */
-     233             : /* EOF */
-     234             : /* EOF */
-     235           0 : /* EOF */
-     236             : /* EOF */
-     237             : /* EOF */
-     238             : /* EOF */
-     239             : /* EOF */
-     240             : /* EOF */
-     241           0 : /* EOF */
-     242             : /* EOF */
-     243           0 : /* EOF */
-     244           0 : /* EOF */
-     245             : /* EOF */
-     246             : /* EOF */
-     247             : /* EOF */
-     248           0 : /* EOF */
-     249             : /* EOF */
-     250             : /* EOF */
-     251           0 : /* EOF */
-     252             : /* EOF */
-     253             : /* EOF */
-     254             : /* EOF */
-     255             : /* EOF */
-     256           0 : /* EOF */
-     257             : /* EOF */
-     258           0 : /* EOF */
-     259             : /* EOF */
-     260           0 : /* EOF */
-     261           0 : /* EOF */
-     262           0 : /* EOF */
-     263             : /* EOF */
-     264           0 : /* EOF */
-     265             : /* EOF */
-     266           0 : /* EOF */
-     267             : /* EOF */
-     268             : /* EOF */
-     269           0 : /* EOF */
-     270             : /* EOF */
-     271             : /* EOF */
-     272             : /* EOF */
-     273           0 : /* EOF */
-     274             : /* EOF */
-     275           0 : /* EOF */
-     276           0 : /* EOF */
-     277           0 : /* EOF */
-     278             : /* EOF */
-     279             : /* EOF */
-     280           0 : /* EOF */
-     281             : /* EOF */
-     282             : /* EOF */
-     283             : /* EOF */
-     284             : /* EOF */
-     285           0 : /* EOF */
-     286             : /* EOF */
-     287           0 : /* EOF */
-     288             : /* EOF */
-     289             : /* EOF */
-     290             : /* EOF */
-     291           0 : /* EOF */
-     292           0 : /* EOF */
-     293             : /* EOF */
-     294           0 : /* EOF */
-     295             : /* EOF */
-     296             : /* EOF */
-     297           0 : /* EOF */
-     298             : /* EOF */
-     299             : /* EOF */
-     300             : /* EOF */
-     301             : /* EOF */
-     302             : /* EOF */
-     303           0 : /* EOF */
-     304           0 : /* EOF */
-     305             : /* EOF */
-     306           0 : /* EOF */
-     307           0 : /* EOF */
-     308           0 : /* EOF */
-     309           0 : /* EOF */
-     310           0 : /* EOF */
-     311           0 : /* EOF */
-     312           0 : /* EOF */
-     313             : /* EOF */
-     314             : /* EOF */
-     315           0 : /* EOF */
-     316             : /* EOF */
-     317             : /* EOF */
-     318           0 : /* EOF */
-     319             : /* EOF */
-     320             : /* EOF */
-     321             : /* EOF */
-     322           0 : /* EOF */
-     323             : /* EOF */
-     324           0 : /* EOF */
-     325           0 : /* EOF */
-     326             : /* EOF */
-     327             : /* EOF */
-     328             : /* EOF */
-     329             : /* EOF */
-     330           0 : /* EOF */
-     331             : /* EOF */
-     332           0 : /* EOF */
-     333             : /* EOF */
-     334             : /* EOF */
-     335           0 : /* EOF */
-     336             : /* EOF */
-     337             : /* EOF */
-     338           0 : /* EOF */
-     339             : /* EOF */
-     340           0 : /* EOF */
-     341           0 : /* EOF */
-     342           0 : /* EOF */
-     343             : /* EOF */
-     344             : /* EOF */
-     345           0 : /* EOF */
-     346             : /* EOF */
-     347             : /* EOF */
-     348           0 : /* EOF */
-     349             : /* EOF */
-     350             : /* EOF */
-     351             : /* EOF */
-     352             : /* EOF */
-     353             : /* EOF */
-     354             : /* EOF */
-     355             : /* EOF */
-     356             : /* EOF */
-     357             : /* EOF */
-     358           0 : /* EOF */
-     359           0 : /* EOF */
-     360           0 : /* EOF */
-     361             : /* EOF */
-     362           0 : /* EOF */
-     363           0 : /* EOF */
-     364           0 : /* EOF */
-     365             : /* EOF */
-     366           0 : /* EOF */
-     367           0 : /* EOF */
-     368           0 : /* EOF */
-     369             : /* EOF */
-     370           0 : /* EOF */
-     371           0 : /* EOF */
-     372           0 : /* EOF */
-     373             : /* EOF */
-     374             : /* EOF */
-     375           0 : /* EOF */
-     376             : /* EOF */
-     377           0 : /* EOF */
-     378             : /* EOF */
-     379             : /* EOF */
-     380           0 : /* EOF */
-     381           0 : /* EOF */
-     382             : /* EOF */
-     383             : /* EOF */
-     384           0 : /* EOF */
-     385             : /* EOF */
-     386             : /* EOF */
-     387           0 : /* EOF */
-     388             : /* EOF */
-     389           0 : /* EOF */
-     390           0 : /* EOF */
-     391           0 : /* EOF */
-     392           0 : /* EOF */
-     393           0 : /* EOF */
-     394           0 : /* EOF */
-     395           0 : /* EOF */
-     396             : /* EOF */
-     397             : /* EOF */
-     398             : /* EOF */
-     399           0 : /* EOF */
-     400             : /* EOF */
-     401           0 : /* EOF */
-     402           0 : /* EOF */
-     403           0 : /* EOF */
-     404           0 : /* EOF */
-     405           0 : /* EOF */
-     406           0 : /* EOF */
-     407           0 : /* EOF */
-     408             : /* EOF */
-     409             : /* EOF */
-     410             : /* EOF */
-     411             : /* EOF */
-     412             : /* EOF */
-     413             : /* EOF */
-     414             : /* EOF */
-     415           0 : /* EOF */
-     416           0 : /* EOF */
-     417             : /* EOF */
-     418             : /* EOF */
-     419           0 : /* EOF */
-     420             : /* EOF */
-     421             : /* EOF */
-     422             : /* EOF */
-     423           0 : /* EOF */
-     424             : /* EOF */
-     425             : /* EOF */
-     426             : /* EOF */
-     427             : /* EOF */
-     428             : /* EOF */
-     429           0 : /* EOF */
-     430           0 : /* EOF */
-     431           0 : /* EOF */
-     432           0 : /* EOF */
-     433             : /* EOF */
-     434           0 : /* EOF */
-     435             : /* EOF */
-     436           0 : /* EOF */
-     437           0 : /* EOF */
-     438           0 : /* EOF */
-     439             : /* EOF */
-     440             : /* EOF */
-     441             : /* EOF */
-     442             : /* EOF */
-     443             : /* EOF */
-     444             : /* EOF */
-     445             : /* EOF */
-     446             : /* EOF */
-     447           0 : /* EOF */
-     448             : /* EOF */
-     449             : /* EOF */
-     450             : /* EOF */
-     451             : /* EOF */
-     452             : /* EOF */
-     453           0 : /* EOF */
-     454           0 : /* EOF */
-     455           0 : /* EOF */
-     456           0 : /* EOF */
-     457           0 : /* EOF */
-     458           0 : /* EOF */
-     459             : /* EOF */
-     460             : /* EOF */
-     461             : /* EOF */
-     462           0 : /* EOF */
-     463           0 : /* EOF */
-     464           0 : /* EOF */
-     465             : /* EOF */
-     466           0 : /* EOF */
-     467           0 : /* EOF */
-     468             : /* EOF */
-     469             : /* EOF */
-     470             : /* EOF */
-     471           0 : /* EOF */
-     472             : /* EOF */
-     473           0 : /* EOF */
-     474             : /* EOF */
-     475             : /* EOF */
-     476             : /* EOF */
-     477             : /* EOF */
-     478           0 : /* EOF */
-     479             : /* EOF */
-     480           0 : /* EOF */
-     481             : /* EOF */
-     482             : /* EOF */
-     483             : /* EOF */
-     484           0 : /* EOF */
-     485           0 : /* EOF */
-     486           0 : /* EOF */
-     487           0 : /* EOF */
-     488           0 : /* EOF */
-     489           0 : /* EOF */
-     490           0 : /* EOF */
-     491             : /* EOF */
-     492           0 : /* EOF */
-     493             : /* EOF */
-     494             : /* EOF */
-     495           0 : /* EOF */
-     496             : /* EOF */
-     497             : /* EOF */
-     498             : /* EOF */
-     499             : /* EOF */
-     500           0 : /* EOF */
-     501             : /* EOF */
-     502           0 : /* EOF */
-     503           0 : /* EOF */
-     504             : /* EOF */
-     505             : /* EOF */
-     506           0 : /* EOF */
-     507           0 : /* EOF */
-     508           0 : /* EOF */
-     509           0 : /* EOF */
-     510           0 : /* EOF */
-     511           0 : /* EOF */
-     512             : /* EOF */
-     513           0 : /* EOF */
-     514             : /* EOF */
-     515             : /* EOF */
-     516             : /* EOF */
-     517             : /* EOF */
-     518           0 : /* EOF */
-     519             : /* EOF */
-     520             : /* EOF */
-     521           0 : /* EOF */
-     522             : /* EOF */
-     523           0 : /* EOF */
-     524           0 : /* EOF */
-     525             : /* EOF */
-     526           0 : /* EOF */
-     527           0 : /* EOF */
-     528           0 : /* EOF */
-     529           0 : /* EOF */
-     530           0 : /* EOF */
-     531           0 : /* EOF */
-     532           0 : /* EOF */
-     533           0 : /* EOF */
-     534           0 : /* EOF */
-     535           0 : /* EOF */
-     536             : /* EOF */
-     537             : /* EOF */
-     538             : /* EOF */
-     539             : /* EOF */
-     540             : /* EOF */
-     541             : /* EOF */
-     542             : /* EOF */
-     543           0 : /* EOF */
-     544             : /* EOF */
-     545           0 : /* EOF */
-     546             : /* EOF */
-     547           0 : /* EOF */
-     548             : /* EOF */
-     549           0 : /* EOF */
-     550           0 : /* EOF */
-     551           0 : /* EOF */
-     552           0 : /* EOF */
-     553             : /* EOF */
-     554             : /* EOF */
-     555             : /* EOF */
-     556             : /* EOF */
-     557           0 : /* EOF */
-     558           0 : /* EOF */
-     559             : /* EOF */
-     560           0 : /* EOF */
-     561           0 : /* EOF */
-     562             : /* EOF */
-     563             : /* EOF */
-     564           0 : /* EOF */
-     565           0 : /* EOF */
-     566           0 : /* EOF */
-     567           0 : /* EOF */
-     568             : /* EOF */
-     569             : /* EOF */
-     570           0 : /* EOF */
-     571             : /* EOF */
-     572           0 : /* EOF */
-     573           0 : /* EOF */
-     574           0 : /* EOF */
-     575           0 : /* EOF */
-     576           0 : /* EOF */
-     577             : /* EOF */
-     578             : /* EOF */
-     579             : /* EOF */
-     580           0 : /* EOF */
-     581             : /* EOF */
-     582           0 : /* EOF */
-     583             : /* EOF */
-     584           0 : /* EOF */
-     585             : /* EOF */
-     586           0 : /* EOF */
-     587             : /* EOF */
-     588             : /* EOF */
-     589           0 : /* EOF */
-     590           0 : /* EOF */
-     591           0 : /* EOF */
-     592           0 : /* EOF */
-     593             : /* EOF */
-     594           0 : /* EOF */
-     595           0 : /* EOF */
-     596             : /* EOF */
-     597             : /* EOF */
-     598             : /* EOF */
-     599           0 : /* EOF */
-     600           0 : /* EOF */
-     601             : /* EOF */
-     602             : /* EOF */
-     603             : /* EOF */
-     604             : /* EOF */
-     605             : /* EOF */
-     606           0 : /* EOF */
-     607           0 : /* EOF */
-     608           0 : /* EOF */
-     609           0 : /* EOF */
-     610             : /* EOF */
-     611             : /* EOF */
-     612             : /* EOF */
-     613             : /* EOF */
-     614           0 : /* EOF */
-     615           0 : /* EOF */
-     616           0 : /* EOF */
-     617           0 : /* EOF */
-     618           0 : /* EOF */
-     619             : /* EOF */
-     620             : /* EOF */
-     621             : /* EOF */
-     622             : /* EOF */
-     623             : /* EOF */
-     624             : /* EOF */
-     625           0 : /* EOF */
-     626             : /* EOF */
-     627           0 : /* EOF */
-     628             : /* EOF */
-     629             : /* EOF */
-     630             : /* EOF */
-     631           0 : /* EOF */
-     632           0 : /* EOF */
-     633           0 : /* EOF */
-     634             : /* EOF */
-     635             : /* EOF */
-     636           0 : /* EOF */
-     637           0 : /* EOF */
-     638           0 : /* EOF */
-     639           0 : /* EOF */
-     640             : /* EOF */
-     641             : /* EOF */
-     642             : /* EOF */
-     643             : /* EOF */
-     644             : /* EOF */
-     645           0 : /* EOF */
-     646           0 : /* EOF */
-     647             : /* EOF */
-     648           0 : /* EOF */
-     649           0 : /* EOF */
-     650           0 : /* EOF */
-     651           0 : /* EOF */
-     652             : /* EOF */
-     653           0 : /* EOF */
-     654             : /* EOF */
-     655             : /* EOF */
-     656             : /* EOF */
-     657             : /* EOF */
-     658             : /* EOF */
-     659           0 : /* EOF */
-     660           0 : /* EOF */
-     661             : /* EOF */
-     662             : /* EOF */
-     663           0 : /* EOF */
-     664           0 : /* EOF */
-     665             : /* EOF */
-     666           0 : /* EOF */
-     667             : /* EOF */
-     668             : /* EOF */
-     669             : /* EOF */
-     670             : /* EOF */
-     671             : /* EOF */
-     672           0 : /* EOF */
-     673           0 : /* EOF */
-     674           0 : /* EOF */
-     675           0 : /* EOF */
-     676           0 : /* EOF */
-     677           0 : /* EOF */
-     678           0 : /* EOF */
-     679             : /* EOF */
-     680             : /* EOF */
-     681           0 : /* EOF */
-     682             : /* EOF */
-     683             : /* EOF */
-     684           0 : /* EOF */
-     685             : /* EOF */
-     686             : /* EOF */
-     687             : /* EOF */
-     688             : /* EOF */
-     689           0 : /* EOF */
-     690           0 : /* EOF */
-     691             : /* EOF */
-     692             : /* EOF */
-     693           0 : /* EOF */
-     694           0 : /* EOF */
-     695             : /* EOF */
-     696             : /* EOF */
-     697             : /* EOF */
-     698           0 : /* EOF */
-     699           0 : /* EOF */
-     700           0 : /* EOF */
-     701           0 : /* EOF */
-     702           0 : /* EOF */
-     703             : /* EOF */
-     704             : /* EOF */
-     705             : /* EOF */
-     706             : /* EOF */
-     707           0 : /* EOF */
-     708           0 : /* EOF */
-     709           0 : /* EOF */
-     710           0 : /* EOF */
-     711             : /* EOF */
-     712             : /* EOF */
-     713             : /* EOF */
-     714             : /* EOF */
-     715           0 : /* EOF */
-     716             : /* EOF */
-     717             : /* EOF */
-     718             : /* EOF */
-     719             : /* EOF */
-     720             : /* EOF */
-     721             : /* EOF */
-     722             : /* EOF */
-     723             : /* EOF */
-     724             : /* EOF */
-     725             : /* EOF */
-     726             : /* EOF */
-     727           0 : /* EOF */
-     728             : /* EOF */
-     729             : /* EOF */
-     730           0 : /* EOF */
-     731             : /* EOF */
-     732             : /* EOF */
-     733             : /* EOF */
-     734           0 : /* EOF */
-     735           0 : /* EOF */
-     736           0 : /* EOF */
-     737           0 : /* EOF */
-     738           0 : /* EOF */
-     739             : /* EOF */
-     740           0 : /* EOF */
-     741           0 : /* EOF */
-     742             : /* EOF */
-     743          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/errormodel.h.func-sort-c.html b/html/DRAMSys/library/src/error/errormodel.h.func-sort-c.html deleted file mode 100644 index 5dab7392..00000000 --- a/html/DRAMSys/library/src/error/errormodel.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - errormodel.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/errormodel.h.func.html b/html/DRAMSys/library/src/error/errormodel.h.func.html deleted file mode 100644 index 25de10f1..00000000 --- a/html/DRAMSys/library/src/error/errormodel.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - errormodel.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/errormodel.h.gcov.html b/html/DRAMSys/library/src/error/errormodel.h.gcov.html deleted file mode 100644 index 4331f785..00000000 --- a/html/DRAMSys/library/src/error/errormodel.h.gcov.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error/errormodel.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/error - errormodel.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:030.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115             : /* EOF */
-     116             : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/index-sort-f.html b/html/DRAMSys/library/src/error/index-sort-f.html deleted file mode 100644 index 106ce104..00000000 --- a/html/DRAMSys/library/src/error/index-sort-f.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/errorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:34040.7 %
Date:2020-06-30 17:34:44Functions:63417.6 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
ecchamming.h -
0.0%
-
0.0 %0 / 40.0 %0 / 3
eccbaseclass.h -
0.0%
-
0.0 %0 / 70.0 %0 / 3
errormodel.cpp -
0.3%0.3%
-
0.3 %1 / 30910.5 %2 / 19
ecchamming.cpp -
2.2%2.2%
-
2.2 %1 / 4640.0 %2 / 5
eccbaseclass.cpp -
2.9%2.9%
-
2.9 %1 / 3550.0 %2 / 4
errormodel.h -
0.0%
-
0.0 %0 / 3-0 / 0
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/index-sort-l.html b/html/DRAMSys/library/src/error/index-sort-l.html deleted file mode 100644 index c826f480..00000000 --- a/html/DRAMSys/library/src/error/index-sort-l.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/errorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:34040.7 %
Date:2020-06-30 17:34:44Functions:63417.6 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
errormodel.h -
0.0%
-
0.0 %0 / 3-0 / 0
ecchamming.h -
0.0%
-
0.0 %0 / 40.0 %0 / 3
eccbaseclass.h -
0.0%
-
0.0 %0 / 70.0 %0 / 3
errormodel.cpp -
0.3%0.3%
-
0.3 %1 / 30910.5 %2 / 19
ecchamming.cpp -
2.2%2.2%
-
2.2 %1 / 4640.0 %2 / 5
eccbaseclass.cpp -
2.9%2.9%
-
2.9 %1 / 3550.0 %2 / 4
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/error/index.html b/html/DRAMSys/library/src/error/index.html deleted file mode 100644 index 383d88d5..00000000 --- a/html/DRAMSys/library/src/error/index.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/error - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/errorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:34040.7 %
Date:2020-06-30 17:34:44Functions:63417.6 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
eccbaseclass.cpp -
2.9%2.9%
-
2.9 %1 / 3550.0 %2 / 4
eccbaseclass.h -
0.0%
-
0.0 %0 / 70.0 %0 / 3
ecchamming.cpp -
2.2%2.2%
-
2.2 %1 / 4640.0 %2 / 5
ecchamming.h -
0.0%
-
0.0 %0 / 40.0 %0 / 3
errormodel.cpp -
0.3%0.3%
-
0.3 %1 / 30910.5 %2 / 19
errormodel.h -
0.0%
-
0.0 %0 / 3-0 / 0
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/Arbiter.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/Arbiter.cpp.func-sort-c.html deleted file mode 100644 index a8a89952..00000000 --- a/html/DRAMSys/library/src/simulation/Arbiter.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - Arbiter.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:819189.0 %
Date:2020-06-30 17:34:44Functions:7887.5 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7ArbiterC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN7Arbiter15nb_transport_bwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
_ZN7Arbiter15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/Arbiter.cpp.func.html b/html/DRAMSys/library/src/simulation/Arbiter.cpp.func.html deleted file mode 100644 index c0dab550..00000000 --- a/html/DRAMSys/library/src/simulation/Arbiter.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - Arbiter.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:819189.0 %
Date:2020-06-30 17:34:44Functions:7887.5 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7ArbiterC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_ZN7Arbiter15nb_transport_bwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
_ZN7Arbiter15nb_transport_fwEiRN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/Arbiter.cpp.gcov.html b/html/DRAMSys/library/src/simulation/Arbiter.cpp.gcov.html deleted file mode 100644 index 99dba041..00000000 --- a/html/DRAMSys/library/src/simulation/Arbiter.cpp.gcov.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - Arbiter.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:819189.0 %
Date:2020-06-30 17:34:44Functions:7887.5 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          30 : /* EOF */
-      45         210 : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50          30 : /* EOF */
-      51             : /* EOF */
-      52         104 : /* EOF */
-      53             : /* EOF */
-      54          37 : /* EOF */
-      55         148 : /* EOF */
-      56          74 : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62          30 : /* EOF */
-      63             : /* EOF */
-      64          30 : /* EOF */
-      65             : /* EOF */
-      66          60 : /* EOF */
-      67          30 : /* EOF */
-      68          30 : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72      505876 : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75     2023504 : /* EOF */
-      76     2529380 : /* EOF */
-      77             : /* EOF */
-      78      505876 : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82      758814 : /* EOF */
-      83      252938 : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87      252938 : /* EOF */
-      88      252938 : /* EOF */
-      89             : /* EOF */
-      90      252938 : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93      252938 : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97             : /* EOF */
-      98      505876 : /* EOF */
-      99      505876 : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104      505876 : /* EOF */
-     105             : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112      505876 : /* EOF */
-     113      505876 : /* EOF */
-     114             : /* EOF */
-     115             : /* EOF */
-     116           0 : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121             : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124             : /* EOF */
-     125             : /* EOF */
-     126     1011722 : /* EOF */
-     127             : /* EOF */
-     128     2023444 : /* EOF */
-     129     2023444 : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136     1011722 : /* EOF */
-     137             : /* EOF */
-     138      758814 : /* EOF */
-     139             : /* EOF */
-     140             : /* EOF */
-     141      750267 : /* EOF */
-     142      250089 : /* EOF */
-     143      250089 : /* EOF */
-     144      500178 : /* EOF */
-     145             : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148             : /* EOF */
-     149             : /* EOF */
-     150        8547 : /* EOF */
-     151             : /* EOF */
-     152             : /* EOF */
-     153             : /* EOF */
-     154      758784 : /* EOF */
-     155             : /* EOF */
-     156      758814 : /* EOF */
-     157             : /* EOF */
-     158             : /* EOF */
-     159      252938 : /* EOF */
-     160      252938 : /* EOF */
-     161      505876 : /* EOF */
-     162             : /* EOF */
-     163             : /* EOF */
-     164      758814 : /* EOF */
-     165             : /* EOF */
-     166             : /* EOF */
-     167        5698 : /* EOF */
-     168        5698 : /* EOF */
-     169        2849 : /* EOF */
-     170        2849 : /* EOF */
-     171        5698 : /* EOF */
-     172             : /* EOF */
-     173             : /* EOF */
-     174        8547 : /* EOF */
-     175             : /* EOF */
-     176             : /* EOF */
-     177      505846 : /* EOF */
-     178             : /* EOF */
-     179             : /* EOF */
-     180             : /* EOF */
-     181             : /* EOF */
-     182      505876 : /* EOF */
-     183             : /* EOF */
-     184      252469 : /* EOF */
-     185      252469 : /* EOF */
-     186      504938 : /* EOF */
-     187      252469 : /* EOF */
-     188             : /* EOF */
-     189           0 : /* EOF */
-     190           0 : /* EOF */
-     191             : /* EOF */
-     192             : /* EOF */
-     193             : /* EOF */
-     194             : /* EOF */
-     195             : /* EOF */
-     196      505876 : /* EOF */
-     197             : /* EOF */
-     198      252908 : /* EOF */
-     199             : /* EOF */
-     200             : /* EOF */
-     201             : /* EOF */
-     202      252908 : /* EOF */
-     203      252908 : /* EOF */
-     204      505816 : /* EOF */
-     205             : /* EOF */
-     206             : /* EOF */
-     207      505816 : /* EOF */
-     208      252908 : /* EOF */
-     209             : /* EOF */
-     210             : /* EOF */
-     211      505816 : /* EOF */
-     212             : /* EOF */
-     213             : /* EOF */
-     214         938 : /* EOF */
-     215             : /* EOF */
-     216         469 : /* EOF */
-     217         469 : /* EOF */
-     218         938 : /* EOF */
-     219         469 : /* EOF */
-     220             : /* EOF */
-     221           0 : /* EOF */
-     222           0 : /* EOF */
-     223             : /* EOF */
-     224             : /* EOF */
-     225             : /* EOF */
-     226             : /* EOF */
-     227           0 : /* EOF */
-     228             : /* EOF */
-     229     1011722 : /* EOF */
-     230             : /* EOF */
-     231      252938 : /* EOF */
-     232             : /* EOF */
-     233             : /* EOF */
-     234      758814 : /* EOF */
-     235      252938 : /* EOF */
-     236             : /* EOF */
-     237      252938 : /* EOF */
-     238      252938 : /* EOF */
-     239      758814 : /* EOF */
-     240     1011752 : /* EOF */
-     241     1011752 : /* EOF */
-     242     1011752 : /* EOF */
-     243      505876 : /* EOF */
-     244      252938 : /* EOF */
-     245      253028 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/Arbiter.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/Arbiter.h.func-sort-c.html deleted file mode 100644 index bac793e3..00000000 --- a/html/DRAMSys/library/src/simulation/Arbiter.h.func-sort-c.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - Arbiter.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN7ArbiterD0Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/Arbiter.h.func.html b/html/DRAMSys/library/src/simulation/Arbiter.h.func.html deleted file mode 100644 index ef8f7cdf..00000000 --- a/html/DRAMSys/library/src/simulation/Arbiter.h.func.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - Arbiter.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN7ArbiterD0Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/Arbiter.h.gcov.html b/html/DRAMSys/library/src/simulation/Arbiter.h.gcov.html deleted file mode 100644 index cf4fb92b..00000000 --- a/html/DRAMSys/library/src/simulation/Arbiter.h.gcov.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/Arbiter.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - Arbiter.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:22100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52         150 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func-sort-c.html deleted file mode 100644 index c480cdd7..00000000 --- a/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSys.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - DRAMSys.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4711740.2 %
Date:2020-06-30 17:34:44Functions:71258.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN7DRAMSys11bindSocketsEv0
_ZN7DRAMSys17setupDebugManagerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE0
_ZN7DRAMSysD0Ev0
_GLOBAL__sub_I__ZN7DRAMSysC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
_ZN7DRAMSys6reportENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func.html b/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func.html deleted file mode 100644 index ca1fdcca..00000000 --- a/html/DRAMSys/library/src/simulation/DRAMSys.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSys.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - DRAMSys.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4711740.2 %
Date:2020-06-30 17:34:44Functions:71258.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN7DRAMSysC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
_ZN7DRAMSys11bindSocketsEv0
_ZN7DRAMSys17setupDebugManagerERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE0
_ZN7DRAMSys6reportENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_ZN7DRAMSysD0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/DRAMSys.cpp.gcov.html b/html/DRAMSys/library/src/simulation/DRAMSys.cpp.gcov.html deleted file mode 100644 index b079da30..00000000 --- a/html/DRAMSys/library/src/simulation/DRAMSys.cpp.gcov.html +++ /dev/null @@ -1,360 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSys.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - DRAMSys.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4711740.2 %
Date:2020-06-30 17:34:44Functions:71258.3 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63           0 : /* EOF */
-      64             : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69          30 : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72          30 : /* EOF */
-      73         150 : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76          30 : /* EOF */
-      77             : /* EOF */
-      78          30 : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81          90 : /* EOF */
-      82             : /* EOF */
-      83          60 : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87          90 : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90          60 : /* EOF */
-      91             : /* EOF */
-      92          60 : /* EOF */
-      93         150 : /* EOF */
-      94             : /* EOF */
-      95          60 : /* EOF */
-      96             : /* EOF */
-      97          60 : /* EOF */
-      98         150 : /* EOF */
-      99             : /* EOF */
-     100          60 : /* EOF */
-     101             : /* EOF */
-     102          60 : /* EOF */
-     103         150 : /* EOF */
-     104             : /* EOF */
-     105          60 : /* EOF */
-     106             : /* EOF */
-     107          60 : /* EOF */
-     108         150 : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111          30 : /* EOF */
-     112             : /* EOF */
-     113          30 : /* EOF */
-     114             : /* EOF */
-     115             : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118             : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121             : /* EOF */
-     122          30 : /* EOF */
-     123             : /* EOF */
-     124         180 : /* EOF */
-     125             : /* EOF */
-     126          30 : /* EOF */
-     127           0 : /* EOF */
-     128             : /* EOF */
-     129          30 : /* EOF */
-     130             : /* EOF */
-     131         157 : /* EOF */
-     132          37 : /* EOF */
-     133             : /* EOF */
-     134         157 : /* EOF */
-     135          37 : /* EOF */
-     136             : /* EOF */
-     137         120 : /* EOF */
-     138           0 : /* EOF */
-     139             : /* EOF */
-     140         120 : /* EOF */
-     141           0 : /* EOF */
-     142          30 : /* EOF */
-     143             : /* EOF */
-     144          30 : /* EOF */
-     145             : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148          30 : /* EOF */
-     149         210 : /* EOF */
-     150         210 : /* EOF */
-     151         210 : /* EOF */
-     152         360 : /* EOF */
-     153          30 : /* EOF */
-     154         210 : /* EOF */
-     155         270 : /* EOF */
-     156          30 : /* EOF */
-     157             : /* EOF */
-     158             : /* EOF */
-     159          30 : /* EOF */
-     160             : /* EOF */
-     161           0 : /* EOF */
-     162             : /* EOF */
-     163             : /* EOF */
-     164             : /* EOF */
-     165             : /* EOF */
-     166             : /* EOF */
-     167             : /* EOF */
-     168             : /* EOF */
-     169             : /* EOF */
-     170           0 : /* EOF */
-     171             : /* EOF */
-     172           0 : /* EOF */
-     173             : /* EOF */
-     174             : /* EOF */
-     175             : /* EOF */
-     176             : /* EOF */
-     177           0 : /* EOF */
-     178             : /* EOF */
-     179             : /* EOF */
-     180           0 : /* EOF */
-     181           0 : /* EOF */
-     182           0 : /* EOF */
-     183           0 : /* EOF */
-     184             : /* EOF */
-     185           0 : /* EOF */
-     186             : /* EOF */
-     187             : /* EOF */
-     188           0 : /* EOF */
-     189             : /* EOF */
-     190             : /* EOF */
-     191           0 : /* EOF */
-     192             : /* EOF */
-     193             : /* EOF */
-     194           0 : /* EOF */
-     195           0 : /* EOF */
-     196             : /* EOF */
-     197           0 : /* EOF */
-     198             : /* EOF */
-     199           0 : /* EOF */
-     200           0 : /* EOF */
-     201             : /* EOF */
-     202           0 : /* EOF */
-     203             : /* EOF */
-     204             : /* EOF */
-     205           0 : /* EOF */
-     206           0 : /* EOF */
-     207           0 : /* EOF */
-     208           0 : /* EOF */
-     209           0 : /* EOF */
-     210           0 : /* EOF */
-     211           0 : /* EOF */
-     212           0 : /* EOF */
-     213           0 : /* EOF */
-     214           0 : /* EOF */
-     215           0 : /* EOF */
-     216           0 : /* EOF */
-     217           0 : /* EOF */
-     218           0 : /* EOF */
-     219           0 : /* EOF */
-     220           0 : /* EOF */
-     221           0 : /* EOF */
-     222           0 : /* EOF */
-     223             : /* EOF */
-     224           0 : /* EOF */
-     225             : /* EOF */
-     226           0 : /* EOF */
-     227             : /* EOF */
-     228           0 : /* EOF */
-     229             : /* EOF */
-     230           0 : /* EOF */
-     231             : /* EOF */
-     232           0 : /* EOF */
-     233           0 : /* EOF */
-     234             : /* EOF */
-     235             : /* EOF */
-     236           0 : /* EOF */
-     237             : /* EOF */
-     238           0 : /* EOF */
-     239             : /* EOF */
-     240             : /* EOF */
-     241           0 : /* EOF */
-     242             : /* EOF */
-     243             : /* EOF */
-     244           0 : /* EOF */
-     245           0 : /* EOF */
-     246             : /* EOF */
-     247           0 : /* EOF */
-     248           0 : /* EOF */
-     249             : /* EOF */
-     250           0 : /* EOF */
-     251             : /* EOF */
-     252           0 : /* EOF */
-     253             : /* EOF */
-     254           0 : /* EOF */
-     255             : /* EOF */
-     256           0 : /* EOF */
-     257           0 : /* EOF */
-     258           0 : /* EOF */
-     259             : /* EOF */
-     260             : /* EOF */
-     261             : /* EOF */
-     262             : /* EOF */
-     263           0 : /* EOF */
-     264             : /* EOF */
-     265           0 : /* EOF */
-     266           0 : /* EOF */
-     267             : /* EOF */
-     268             : /* EOF */
-     269           0 : /* EOF */
-     270             : /* EOF */
-     271          30 : /* EOF */
-     272             : /* EOF */
-     273             : /* EOF */
-     274          60 : /* EOF */
-     275         180 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func-sort-c.html deleted file mode 100644 index a719441e..00000000 --- a/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func-sort-c.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSysRecordable.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - DRAMSysRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:669073.3 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN17DRAMSysRecordableC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
_ZN17DRAMSysRecordable11bindSocketsEv30
_ZN17DRAMSysRecordableD0Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func.html b/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func.html deleted file mode 100644 index 2818ac6d..00000000 --- a/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.func.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSysRecordable.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - DRAMSysRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:669073.3 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN17DRAMSysRecordableC2EN7sc_core14sc_module_nameENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
_ZN17DRAMSysRecordable11bindSocketsEv30
_ZN17DRAMSysRecordableD0Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.gcov.html b/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.gcov.html deleted file mode 100644 index 9019f01f..00000000 --- a/html/DRAMSys/library/src/simulation/DRAMSysRecordable.cpp.gcov.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/DRAMSysRecordable.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - DRAMSysRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:669073.3 %
Date:2020-06-30 17:34:44Functions:99100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52          30 : /* EOF */
-      53             : /* EOF */
-      54          30 : /* EOF */
-      55         180 : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58          90 : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62          60 : /* EOF */
-      63             : /* EOF */
-      64          30 : /* EOF */
-      65             : /* EOF */
-      66          90 : /* EOF */
-      67          90 : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70           0 : /* EOF */
-      71             : /* EOF */
-      72          90 : /* EOF */
-      73          30 : /* EOF */
-      74          30 : /* EOF */
-      75         120 : /* EOF */
-      76          30 : /* EOF */
-      77             : /* EOF */
-      78         120 : /* EOF */
-      79             : /* EOF */
-      80          30 : /* EOF */
-      81             : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86         157 : /* EOF */
-      87          37 : /* EOF */
-      88          60 : /* EOF */
-      89             : /* EOF */
-      90          30 : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94          67 : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97         185 : /* EOF */
-      98             : /* EOF */
-      99         296 : /* EOF */
-     100             : /* EOF */
-     101         111 : /* EOF */
-     102             : /* EOF */
-     103             : /* EOF */
-     104         370 : /* EOF */
-     105         148 : /* EOF */
-     106         148 : /* EOF */
-     107             : /* EOF */
-     108         111 : /* EOF */
-     109         148 : /* EOF */
-     110             : /* EOF */
-     111          37 : /* EOF */
-     112             : /* EOF */
-     113          30 : /* EOF */
-     114             : /* EOF */
-     115          30 : /* EOF */
-     116             : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121          30 : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125          30 : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128          60 : /* EOF */
-     129           0 : /* EOF */
-     130          60 : /* EOF */
-     131          30 : /* EOF */
-     132             : /* EOF */
-     133           0 : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136          30 : /* EOF */
-     137             : /* EOF */
-     138             : /* EOF */
-     139          90 : /* EOF */
-     140             : /* EOF */
-     141             : /* EOF */
-     142          60 : /* EOF */
-     143         104 : /* EOF */
-     144             : /* EOF */
-     145         111 : /* EOF */
-     146             : /* EOF */
-     147          74 : /* EOF */
-     148          37 : /* EOF */
-     149             : /* EOF */
-     150         111 : /* EOF */
-     151             : /* EOF */
-     152             : /* EOF */
-     153          37 : /* EOF */
-     154          10 : /* EOF */
-     155          32 : /* EOF */
-     156           0 : /* EOF */
-     157          32 : /* EOF */
-     158          12 : /* EOF */
-     159          26 : /* EOF */
-     160          24 : /* EOF */
-     161          14 : /* EOF */
-     162           0 : /* EOF */
-     163          14 : /* EOF */
-     164          28 : /* EOF */
-     165           0 : /* EOF */
-     166           0 : /* EOF */
-     167           0 : /* EOF */
-     168           0 : /* EOF */
-     169           0 : /* EOF */
-     170           0 : /* EOF */
-     171             : /* EOF */
-     172           0 : /* EOF */
-     173             : /* EOF */
-     174          37 : /* EOF */
-     175             : /* EOF */
-     176          37 : /* EOF */
-     177             : /* EOF */
-     178           0 : /* EOF */
-     179             : /* EOF */
-     180           0 : /* EOF */
-     181           0 : /* EOF */
-     182             : /* EOF */
-     183             : /* EOF */
-     184          30 : /* EOF */
-     185             : /* EOF */
-     186          30 : /* EOF */
-     187             : /* EOF */
-     188             : /* EOF */
-     189          60 : /* EOF */
-     190             : /* EOF */
-     191             : /* EOF */
-     192           0 : /* EOF */
-     193           0 : /* EOF */
-     194             : /* EOF */
-     195          60 : /* EOF */
-     196          30 : /* EOF */
-     197             : /* EOF */
-     198           0 : /* EOF */
-     199             : /* EOF */
-     200          30 : /* EOF */
-     201             : /* EOF */
-     202           0 : /* EOF */
-     203             : /* EOF */
-     204           0 : /* EOF */
-     205           0 : /* EOF */
-     206           0 : /* EOF */
-     207             : /* EOF */
-     208             : /* EOF */
-     209             : /* EOF */
-     210             : /* EOF */
-     211         104 : /* EOF */
-     212             : /* EOF */
-     213          74 : /* EOF */
-     214         111 : /* EOF */
-     215             : /* EOF */
-     216             : /* EOF */
-     217         180 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func-sort-c.html deleted file mode 100644 index 485b1b6c..00000000 --- a/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func-sort-c.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1442.3 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN21TemperatureController14getTemperatureEif0
_ZN21TemperatureController17temperatureThreadEv0
_ZN21TemperatureController18temperatureConvertEd0
_ZN21TemperatureController18updateTemperaturesEv0
_ZN21TemperatureController19checkPowerThresholdEi0
_ZN21TemperatureController22adjustThermalSimPeriodEv0
_GLOBAL__sub_I__ZN21TemperatureController18temperatureConvertEd30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func.html b/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func.html deleted file mode 100644 index b8db75d2..00000000 --- a/html/DRAMSys/library/src/simulation/TemperatureController.cpp.func.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1442.3 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN21TemperatureController18temperatureConvertEd30
_Z41__static_initialization_and_destruction_0ii30
_ZN21TemperatureController14getTemperatureEif0
_ZN21TemperatureController17temperatureThreadEv0
_ZN21TemperatureController18temperatureConvertEd0
_ZN21TemperatureController18updateTemperaturesEv0
_ZN21TemperatureController19checkPowerThresholdEi0
_ZN21TemperatureController22adjustThermalSimPeriodEv0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.cpp.gcov.html b/html/DRAMSys/library/src/simulation/TemperatureController.cpp.gcov.html deleted file mode 100644 index 6e8e9545..00000000 --- a/html/DRAMSys/library/src/simulation/TemperatureController.cpp.gcov.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1442.3 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42           0 : /* EOF */
-      43             : /* EOF */
-      44           0 : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47           0 : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53           0 : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66             : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69             : /* EOF */
-      70           0 : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74           0 : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82             : /* EOF */
-      83             : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88             : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96           0 : /* EOF */
-      97             : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100             : /* EOF */
-     101           0 : /* EOF */
-     102             : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106             : /* EOF */
-     107           0 : /* EOF */
-     108           0 : /* EOF */
-     109             : /* EOF */
-     110           0 : /* EOF */
-     111             : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115             : /* EOF */
-     116             : /* EOF */
-     117             : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136             : /* EOF */
-     137             : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140           0 : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143             : /* EOF */
-     144             : /* EOF */
-     145           0 : /* EOF */
-     146           0 : /* EOF */
-     147           0 : /* EOF */
-     148           0 : /* EOF */
-     149           0 : /* EOF */
-     150           0 : /* EOF */
-     151           0 : /* EOF */
-     152             : /* EOF */
-     153             : /* EOF */
-     154             : /* EOF */
-     155             : /* EOF */
-     156             : /* EOF */
-     157             : /* EOF */
-     158           0 : /* EOF */
-     159             : /* EOF */
-     160             : /* EOF */
-     161           0 : /* EOF */
-     162             : /* EOF */
-     163             : /* EOF */
-     164           0 : /* EOF */
-     165           0 : /* EOF */
-     166             : /* EOF */
-     167           0 : /* EOF */
-     168           0 : /* EOF */
-     169             : /* EOF */
-     170             : /* EOF */
-     171             : /* EOF */
-     172             : /* EOF */
-     173             : /* EOF */
-     174           0 : /* EOF */
-     175           0 : /* EOF */
-     176          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/TemperatureController.h.func-sort-c.html deleted file mode 100644 index e8788a3d..00000000 --- a/html/DRAMSys/library/src/simulation/TemperatureController.h.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:113234.4 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN21TemperatureControllerD0Ev0
_ZN21TemperatureController11getInstanceEv30
_ZN21TemperatureControllerC2EN7sc_core14sc_module_nameE30
_ZN21TemperatureControllerD2Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.h.func.html b/html/DRAMSys/library/src/simulation/TemperatureController.h.func.html deleted file mode 100644 index b09940f8..00000000 --- a/html/DRAMSys/library/src/simulation/TemperatureController.h.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:113234.4 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN21TemperatureController11getInstanceEv30
_ZN21TemperatureControllerC2EN7sc_core14sc_module_nameE30
_ZN21TemperatureControllerD0Ev0
_ZN21TemperatureControllerD2Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/TemperatureController.h.gcov.html b/html/DRAMSys/library/src/simulation/TemperatureController.h.gcov.html deleted file mode 100644 index 66afd851..00000000 --- a/html/DRAMSys/library/src/simulation/TemperatureController.h.gcov.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/TemperatureController.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation - TemperatureController.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:113234.4 %
Date:2020-06-30 17:34:44Functions:3475.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53         270 : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56          30 : /* EOF */
-      57          30 : /* EOF */
-      58          30 : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61         270 : /* EOF */
-      62          60 : /* EOF */
-      63             : /* EOF */
-      64          30 : /* EOF */
-      65             : /* EOF */
-      66          30 : /* EOF */
-      67          30 : /* EOF */
-      68             : /* EOF */
-      69          30 : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78           0 : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89           0 : /* EOF */
-      90           0 : /* EOF */
-      91           0 : /* EOF */
-      92           0 : /* EOF */
-      93           0 : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96           0 : /* EOF */
-      97           0 : /* EOF */
-      98           0 : /* EOF */
-      99             : /* EOF */
-     100           0 : /* EOF */
-     101           0 : /* EOF */
-     102           0 : /* EOF */
-     103             : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107             : /* EOF */
-     108           0 : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111             : /* EOF */
-     112             : /* EOF */
-     113          30 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func-sort-c.html deleted file mode 100644 index a0d7aa97..00000000 --- a/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func-sort-c.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:197425.7 %
Date:2020-06-30 17:34:44Functions:5862.5 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN4Dram11reportPowerEv0
_ZN4Dram13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN4DramD0Ev0
_GLOBAL__sub_I__ZN4DramC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN4Dram15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE418705
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func.html deleted file mode 100644 index bfabdf3a..00000000 --- a/html/DRAMSys/library/src/simulation/dram/Dram.cpp.func.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:197425.7 %
Date:2020-06-30 17:34:44Functions:5862.5 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN4DramC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN4Dram11reportPowerEv0
_ZN4Dram13transport_dbgERN3tlm19tlm_generic_payloadE0
_ZN4Dram15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE418705
_ZN4DramD0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/Dram.cpp.gcov.html deleted file mode 100644 index 41299022..00000000 --- a/html/DRAMSys/library/src/simulation/dram/Dram.cpp.gcov.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:197425.7 %
Date:2020-06-30 17:34:44Functions:5862.5 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62             : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66         148 : /* EOF */
-      67             : /* EOF */
-      68          37 : /* EOF */
-      69             : /* EOF */
-      70          37 : /* EOF */
-      71             : /* EOF */
-      72          74 : /* EOF */
-      73          37 : /* EOF */
-      74           0 : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78             : /* EOF */
-      79           0 : /* EOF */
-      80             : /* EOF */
-      81          37 : /* EOF */
-      82          37 : /* EOF */
-      83             : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97           0 : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102          37 : /* EOF */
-     103          37 : /* EOF */
-     104          37 : /* EOF */
-     105             : /* EOF */
-     106         111 : /* EOF */
-     107             : /* EOF */
-     108          37 : /* EOF */
-     109             : /* EOF */
-     110           0 : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114          37 : /* EOF */
-     115           0 : /* EOF */
-     116          37 : /* EOF */
-     117             : /* EOF */
-     118           0 : /* EOF */
-     119             : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122           0 : /* EOF */
-     123             : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129           0 : /* EOF */
-     130           0 : /* EOF */
-     131           0 : /* EOF */
-     132           0 : /* EOF */
-     133           0 : /* EOF */
-     134           0 : /* EOF */
-     135             : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140           0 : /* EOF */
-     141             : /* EOF */
-     142           0 : /* EOF */
-     143             : /* EOF */
-     144      418705 : /* EOF */
-     145             : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148             : /* EOF */
-     149      418705 : /* EOF */
-     150             : /* EOF */
-     151           0 : /* EOF */
-     152           0 : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155             : /* EOF */
-     156      418705 : /* EOF */
-     157             : /* EOF */
-     158           0 : /* EOF */
-     159             : /* EOF */
-     160           0 : /* EOF */
-     161           0 : /* EOF */
-     162             : /* EOF */
-     163           0 : /* EOF */
-     164             : /* EOF */
-     165           0 : /* EOF */
-     166           0 : /* EOF */
-     167             : /* EOF */
-     168             : /* EOF */
-     169             : /* EOF */
-     170      418705 : /* EOF */
-     171             : /* EOF */
-     172             : /* EOF */
-     173           0 : /* EOF */
-     174             : /* EOF */
-     175             : /* EOF */
-     176             : /* EOF */
-     177             : /* EOF */
-     178           0 : /* EOF */
-     179             : /* EOF */
-     180           0 : /* EOF */
-     181             : /* EOF */
-     182             : /* EOF */
-     183             : /* EOF */
-     184             : /* EOF */
-     185           0 : /* EOF */
-     186             : /* EOF */
-     187           0 : /* EOF */
-     188           0 : /* EOF */
-     189             : /* EOF */
-     190             : /* EOF */
-     191             : /* EOF */
-     192             : /* EOF */
-     193           0 : /* EOF */
-     194             : /* EOF */
-     195           0 : /* EOF */
-     196             : /* EOF */
-     197           0 : /* EOF */
-     198           0 : /* EOF */
-     199             : /* EOF */
-     200             : /* EOF */
-     201             : /* EOF */
-     202             : /* EOF */
-     203           0 : /* EOF */
-     204             : /* EOF */
-     205             : /* EOF */
-     206           0 : /* EOF */
-     207             : /* EOF */
-     208           0 : /* EOF */
-     209             : /* EOF */
-     210           0 : /* EOF */
-     211           0 : /* EOF */
-     212             : /* EOF */
-     213             : /* EOF */
-     214             : /* EOF */
-     215             : /* EOF */
-     216           0 : /* EOF */
-     217             : /* EOF */
-     218             : /* EOF */
-     219             : /* EOF */
-     220             : /* EOF */
-     221           0 : /* EOF */
-     222         120 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/Dram.h.func-sort-c.html deleted file mode 100644 index 4fea413d..00000000 --- a/html/DRAMSys/library/src/simulation/dram/Dram.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:22100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.h.func.html b/html/DRAMSys/library/src/simulation/dram/Dram.h.func.html deleted file mode 100644 index b4d4fbbe..00000000 --- a/html/DRAMSys/library/src/simulation/dram/Dram.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:22100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/Dram.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/Dram.h.gcov.html deleted file mode 100644 index c8db0d56..00000000 --- a/html/DRAMSys/library/src/simulation/dram/Dram.h.gcov.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/Dram.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - Dram.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:22100.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53          37 : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59          37 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func-sort-c.html deleted file mode 100644 index d2bdcdd5..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramDDR3C2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func.html deleted file mode 100644 index 0a69eaf1..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramDDR3C2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.gcov.html deleted file mode 100644 index 05737263..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR3.cpp.gcov.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45           5 : /* EOF */
-      46             : /* EOF */
-      47           5 : /* EOF */
-      48           0 : /* EOF */
-      49             : /* EOF */
-      50           5 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54           0 : /* EOF */
-      55             : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67             : /* EOF */
-      68           0 : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81           0 : /* EOF */
-      82           0 : /* EOF */
-      83             : /* EOF */
-      84           0 : /* EOF */
-      85           0 : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89           0 : /* EOF */
-      90           0 : /* EOF */
-      91           0 : /* EOF */
-      92           0 : /* EOF */
-      93           0 : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97           0 : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100           0 : /* EOF */
-     101           0 : /* EOF */
-     102           0 : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107           0 : /* EOF */
-     108             : /* EOF */
-     109           0 : /* EOF */
-     110           0 : /* EOF */
-     111           0 : /* EOF */
-     112           0 : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127           0 : /* EOF */
-     128           0 : /* EOF */
-     129           0 : /* EOF */
-     130           0 : /* EOF */
-     131           0 : /* EOF */
-     132           0 : /* EOF */
-     133           0 : /* EOF */
-     134             : /* EOF */
-     135           0 : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140           0 : /* EOF */
-     141             : /* EOF */
-     142           0 : /* EOF */
-     143             : /* EOF */
-     144          95 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func-sort-c.html deleted file mode 100644 index 381353ec..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramDDR3D0Ev0
_ZN8DramDDR3D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func.html deleted file mode 100644 index 196059ef..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramDDR3D0Ev0
_ZN8DramDDR3D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.gcov.html deleted file mode 100644 index 0d1cb033..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR3.h.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR3.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR3.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47           5 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func-sort-c.html deleted file mode 100644 index 15cee2e9..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramDDR4C2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func.html deleted file mode 100644 index 281fa307..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramDDR4C2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.gcov.html deleted file mode 100644 index 7473aba8..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR4.cpp.gcov.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4834.8 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45           6 : /* EOF */
-      46             : /* EOF */
-      47           6 : /* EOF */
-      48           0 : /* EOF */
-      49             : /* EOF */
-      50           6 : /* EOF */
-      51             : /* EOF */
-      52           0 : /* EOF */
-      53           0 : /* EOF */
-      54           0 : /* EOF */
-      55             : /* EOF */
-      56           0 : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67             : /* EOF */
-      68           0 : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81           0 : /* EOF */
-      82           0 : /* EOF */
-      83             : /* EOF */
-      84           0 : /* EOF */
-      85           0 : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89           0 : /* EOF */
-      90           0 : /* EOF */
-      91           0 : /* EOF */
-      92           0 : /* EOF */
-      93           0 : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97           0 : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100           0 : /* EOF */
-     101           0 : /* EOF */
-     102           0 : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107           0 : /* EOF */
-     108             : /* EOF */
-     109           0 : /* EOF */
-     110           0 : /* EOF */
-     111           0 : /* EOF */
-     112           0 : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127           0 : /* EOF */
-     128           0 : /* EOF */
-     129           0 : /* EOF */
-     130           0 : /* EOF */
-     131           0 : /* EOF */
-     132           0 : /* EOF */
-     133           0 : /* EOF */
-     134             : /* EOF */
-     135           0 : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140           0 : /* EOF */
-     141             : /* EOF */
-     142           0 : /* EOF */
-     143             : /* EOF */
-     144          96 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func-sort-c.html deleted file mode 100644 index eb8ac769..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramDDR4D0Ev0
_ZN8DramDDR4D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func.html deleted file mode 100644 index c0a1fb9d..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramDDR4D0Ev0
_ZN8DramDDR4D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.gcov.html deleted file mode 100644 index db16ecd0..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramDDR4.h.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramDDR4.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47           6 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func-sort-c.html deleted file mode 100644 index bf10502d..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR5C2EN7sc_core14sc_module_nameE0
_GLOBAL__sub_I__ZN9DramGDDR5C2EN7sc_core14sc_module_nameE30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func.html deleted file mode 100644 index 8151289b..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN9DramGDDR5C2EN7sc_core14sc_module_nameE30
_ZN9DramGDDR5C2EN7sc_core14sc_module_nameE0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.gcov.html deleted file mode 100644 index 5d225dc5..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.cpp.gcov.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-      44             : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47             : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func-sort-c.html deleted file mode 100644 index 5a2d6d38..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR5D0Ev0
_ZN9DramGDDR5D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func.html deleted file mode 100644 index 09afc0ef..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR5D0Ev0
_ZN9DramGDDR5D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.gcov.html deleted file mode 100644 index 19432d66..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5.h.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func-sort-c.html deleted file mode 100644 index 9cf3caf2..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramGDDR5XC2EN7sc_core14sc_module_nameE0
_GLOBAL__sub_I__ZN10DramGDDR5XC2EN7sc_core14sc_module_nameE30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func.html deleted file mode 100644 index ad1e3501..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10DramGDDR5XC2EN7sc_core14sc_module_nameE30
_ZN10DramGDDR5XC2EN7sc_core14sc_module_nameE0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.gcov.html deleted file mode 100644 index b7b9b970..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp.gcov.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-      44             : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47             : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func-sort-c.html deleted file mode 100644 index 81e9eba0..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramGDDR5XD0Ev0
_ZN10DramGDDR5XD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func.html deleted file mode 100644 index 53b2125c..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramGDDR5XD0Ev0
_ZN10DramGDDR5XD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.gcov.html deleted file mode 100644 index 8ef7b3f9..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR5X.h.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR5X.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR5X.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func-sort-c.html deleted file mode 100644 index 060b21fa..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR6C2EN7sc_core14sc_module_nameE0
_GLOBAL__sub_I__ZN9DramGDDR6C2EN7sc_core14sc_module_nameE30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func.html deleted file mode 100644 index 045bd470..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN9DramGDDR6C2EN7sc_core14sc_module_nameE30
_ZN9DramGDDR6C2EN7sc_core14sc_module_nameE0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.gcov.html deleted file mode 100644 index 81473d06..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.cpp.gcov.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-      44             : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47             : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func-sort-c.html deleted file mode 100644 index 0a74b761..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR6D0Ev0
_ZN9DramGDDR6D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func.html deleted file mode 100644 index c76ad537..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9DramGDDR6D0Ev0
_ZN9DramGDDR6D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.gcov.html deleted file mode 100644 index 7aeaed80..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramGDDR6.h.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramGDDR6.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramGDDR6.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func-sort-c.html deleted file mode 100644 index 4abcec56..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramHBM2C2EN7sc_core14sc_module_nameE14
_GLOBAL__sub_I__ZN8DramHBM2C2EN7sc_core14sc_module_nameE30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func.html deleted file mode 100644 index 769e2220..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN8DramHBM2C2EN7sc_core14sc_module_nameE30
_ZN8DramHBM2C2EN7sc_core14sc_module_nameE14
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.gcov.html deleted file mode 100644 index d39d466f..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramHBM2.cpp.gcov.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43          14 : /* EOF */
-      44             : /* EOF */
-      45          14 : /* EOF */
-      46           0 : /* EOF */
-      47             : /* EOF */
-      48          14 : /* EOF */
-      49           0 : /* EOF */
-      50         104 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func-sort-c.html deleted file mode 100644 index c21a8b9c..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramHBM2D0Ev0
_ZN8DramHBM2D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func.html deleted file mode 100644 index 0083fcdd..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN8DramHBM2D0Ev0
_ZN8DramHBM2D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.gcov.html deleted file mode 100644 index ad66f053..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramHBM2.h.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramHBM2.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramHBM2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47          14 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func-sort-c.html deleted file mode 100644 index 08117f53..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramLPDDR4C2EN7sc_core14sc_module_nameE12
_GLOBAL__sub_I__ZN10DramLPDDR4C2EN7sc_core14sc_module_nameE30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func.html deleted file mode 100644 index 5717622b..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10DramLPDDR4C2EN7sc_core14sc_module_nameE30
_ZN10DramLPDDR4C2EN7sc_core14sc_module_nameE12
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.gcov.html deleted file mode 100644 index 85777181..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp.gcov.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:4666.7 %
Date:2020-06-30 17:34:44Functions:33100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43          12 : /* EOF */
-      44             : /* EOF */
-      45          12 : /* EOF */
-      46           0 : /* EOF */
-      47             : /* EOF */
-      48          12 : /* EOF */
-      49           0 : /* EOF */
-      50         102 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func-sort-c.html deleted file mode 100644 index 7346fb16..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramLPDDR4D0Ev0
_ZN10DramLPDDR4D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func.html deleted file mode 100644 index ad07bbbd..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramLPDDR4D0Ev0
_ZN10DramLPDDR4D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.gcov.html deleted file mode 100644 index 50773866..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramLPDDR4.h.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramLPDDR4.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramLPDDR4.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47          12 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func-sort-c.html deleted file mode 100644 index a23591b0..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func-sort-c.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:233860.5 %
Date:2020-06-30 17:34:44Functions:144729.8 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN14DramRecordableI10DramGDDR5XE11powerWindowEv0
_ZN14DramRecordableI10DramGDDR5XE11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramGDDR5XE11reportPowerEv0
_ZN14DramRecordableI10DramGDDR5XE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramGDDR5XEC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI10DramLPDDR4E11powerWindowEv0
_ZN14DramRecordableI10DramLPDDR4E11reportPowerEv0
_ZN14DramRecordableI10DramWideIOE11powerWindowEv0
_ZN14DramRecordableI10DramWideIOE11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramWideIOE11reportPowerEv0
_ZN14DramRecordableI10DramWideIOE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramWideIOEC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI11DramWideIO2E11powerWindowEv0
_ZN14DramRecordableI11DramWideIO2E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI11DramWideIO2E11reportPowerEv0
_ZN14DramRecordableI11DramWideIO2E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI11DramWideIO2EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI8DramDDR3E11powerWindowEv0
_ZN14DramRecordableI8DramDDR3E11reportPowerEv0
_ZN14DramRecordableI8DramDDR4E11powerWindowEv0
_ZN14DramRecordableI8DramDDR4E11reportPowerEv0
_ZN14DramRecordableI8DramHBM2E11powerWindowEv0
_ZN14DramRecordableI8DramHBM2E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR5E11powerWindowEv0
_ZN14DramRecordableI9DramGDDR5E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR5E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR5E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR5EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI9DramGDDR6E11powerWindowEv0
_ZN14DramRecordableI9DramGDDR6E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR6E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR6E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR6EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI8DramDDR3EC2EN7sc_core14sc_module_nameEP11TlmRecorder5
_ZN14DramRecordableI8DramDDR4EC2EN7sc_core14sc_module_nameEP11TlmRecorder6
_ZN14DramRecordableI10DramLPDDR4EC2EN7sc_core14sc_module_nameEP11TlmRecorder12
_ZN14DramRecordableI8DramHBM2EC2EN7sc_core14sc_module_nameEP11TlmRecorder14
_GLOBAL__sub_I_DramRecordable.cpp30
_Z41__static_initialization_and_destruction_0ii30
_ZN14DramRecordableI8DramDDR3E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE2275
_ZN14DramRecordableI8DramDDR3E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE2275
_ZN14DramRecordableI8DramHBM2E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE58380
_ZN14DramRecordableI8DramHBM2E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE58380
_ZN14DramRecordableI8DramDDR4E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE166614
_ZN14DramRecordableI8DramDDR4E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE166614
_ZN14DramRecordableI10DramLPDDR4E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE191436
_ZN14DramRecordableI10DramLPDDR4E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE191436
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func.html deleted file mode 100644 index 07eba4a0..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.func.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:233860.5 %
Date:2020-06-30 17:34:44Functions:144729.8 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I_DramRecordable.cpp30
_Z41__static_initialization_and_destruction_0ii30
_ZN14DramRecordableI10DramGDDR5XE11powerWindowEv0
_ZN14DramRecordableI10DramGDDR5XE11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramGDDR5XE11reportPowerEv0
_ZN14DramRecordableI10DramGDDR5XE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramGDDR5XEC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI10DramLPDDR4E11powerWindowEv0
_ZN14DramRecordableI10DramLPDDR4E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE191436
_ZN14DramRecordableI10DramLPDDR4E11reportPowerEv0
_ZN14DramRecordableI10DramLPDDR4E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE191436
_ZN14DramRecordableI10DramLPDDR4EC2EN7sc_core14sc_module_nameEP11TlmRecorder12
_ZN14DramRecordableI10DramWideIOE11powerWindowEv0
_ZN14DramRecordableI10DramWideIOE11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramWideIOE11reportPowerEv0
_ZN14DramRecordableI10DramWideIOE15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI10DramWideIOEC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI11DramWideIO2E11powerWindowEv0
_ZN14DramRecordableI11DramWideIO2E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI11DramWideIO2E11reportPowerEv0
_ZN14DramRecordableI11DramWideIO2E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI11DramWideIO2EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI8DramDDR3E11powerWindowEv0
_ZN14DramRecordableI8DramDDR3E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE2275
_ZN14DramRecordableI8DramDDR3E11reportPowerEv0
_ZN14DramRecordableI8DramDDR3E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE2275
_ZN14DramRecordableI8DramDDR3EC2EN7sc_core14sc_module_nameEP11TlmRecorder5
_ZN14DramRecordableI8DramDDR4E11powerWindowEv0
_ZN14DramRecordableI8DramDDR4E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE166614
_ZN14DramRecordableI8DramDDR4E11reportPowerEv0
_ZN14DramRecordableI8DramDDR4E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE166614
_ZN14DramRecordableI8DramDDR4EC2EN7sc_core14sc_module_nameEP11TlmRecorder6
_ZN14DramRecordableI8DramHBM2E11powerWindowEv0
_ZN14DramRecordableI8DramHBM2E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE58380
_ZN14DramRecordableI8DramHBM2E11reportPowerEv0
_ZN14DramRecordableI8DramHBM2E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE58380
_ZN14DramRecordableI8DramHBM2EC2EN7sc_core14sc_module_nameEP11TlmRecorder14
_ZN14DramRecordableI9DramGDDR5E11powerWindowEv0
_ZN14DramRecordableI9DramGDDR5E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR5E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR5E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR5EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
_ZN14DramRecordableI9DramGDDR6E11powerWindowEv0
_ZN14DramRecordableI9DramGDDR6E11recordPhaseERN3tlm19tlm_generic_payloadENS2_9tlm_phaseEN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR6E11reportPowerEv0
_ZN14DramRecordableI9DramGDDR6E15nb_transport_fwERN3tlm19tlm_generic_payloadERNS2_9tlm_phaseERN7sc_core7sc_timeE0
_ZN14DramRecordableI9DramGDDR6EC2EN7sc_core14sc_module_nameEP11TlmRecorder0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.gcov.html deleted file mode 100644 index 09eab6e2..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramRecordable.cpp.gcov.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:233860.5 %
Date:2020-06-30 17:34:44Functions:144729.8 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55          37 : /* EOF */
-      56         148 : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60          37 : /* EOF */
-      61           0 : /* EOF */
-      62          37 : /* EOF */
-      63             : /* EOF */
-      64             : /* EOF */
-      65           0 : /* EOF */
-      66             : /* EOF */
-      67           0 : /* EOF */
-      68           0 : /* EOF */
-      69           0 : /* EOF */
-      70           0 : /* EOF */
-      71           0 : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74      418705 : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77      418705 : /* EOF */
-      78      418705 : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82      418705 : /* EOF */
-      83             : /* EOF */
-      84      837410 : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87             : /* EOF */
-      88     1674785 : /* EOF */
-      89          70 : /* EOF */
-      90             : /* EOF */
-      91      418705 : /* EOF */
-      92      418705 : /* EOF */
-      93      418705 : /* EOF */
-      94      418705 : /* EOF */
-      95      418705 : /* EOF */
-      96      418705 : /* EOF */
-      97             : /* EOF */
-      98             : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101             : /* EOF */
-     102             : /* EOF */
-     103      837410 : /* EOF */
-     104             : /* EOF */
-     105      418705 : /* EOF */
-     106             : /* EOF */
-     107      837260 : /* EOF */
-     108      837260 : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111      418705 : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115             : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118             : /* EOF */
-     119           0 : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123           0 : /* EOF */
-     124             : /* EOF */
-     125           0 : /* EOF */
-     126             : /* EOF */
-     127           0 : /* EOF */
-     128             : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132             : /* EOF */
-     133           0 : /* EOF */
-     134           0 : /* EOF */
-     135           0 : /* EOF */
-     136             : /* EOF */
-     137             : /* EOF */
-     138             : /* EOF */
-     139             : /* EOF */
-     140             : /* EOF */
-     141             : /* EOF */
-     142             : /* EOF */
-     143             : /* EOF */
-     144             : /* EOF */
-     145             : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148             : /* EOF */
-     149             : /* EOF */
-     150             : /* EOF */
-     151             : /* EOF */
-     152             : /* EOF */
-     153             : /* EOF */
-     154             : /* EOF */
-     155             : /* EOF */
-     156          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func-sort-c.html deleted file mode 100644 index e8fbee4f..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func-sort-c.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3560.0 %
Date:2020-06-30 17:34:44Functions:42714.8 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN14DramRecordableI10DramGDDR5XE7isEqualEddd0
_ZN14DramRecordableI10DramGDDR5XED0Ev0
_ZN14DramRecordableI10DramGDDR5XED2Ev0
_ZN14DramRecordableI10DramLPDDR4E7isEqualEddd0
_ZN14DramRecordableI10DramLPDDR4ED2Ev0
_ZN14DramRecordableI10DramWideIOE7isEqualEddd0
_ZN14DramRecordableI10DramWideIOED0Ev0
_ZN14DramRecordableI10DramWideIOED2Ev0
_ZN14DramRecordableI11DramWideIO2E7isEqualEddd0
_ZN14DramRecordableI11DramWideIO2ED0Ev0
_ZN14DramRecordableI11DramWideIO2ED2Ev0
_ZN14DramRecordableI8DramDDR3E7isEqualEddd0
_ZN14DramRecordableI8DramDDR3ED2Ev0
_ZN14DramRecordableI8DramDDR4E7isEqualEddd0
_ZN14DramRecordableI8DramDDR4ED2Ev0
_ZN14DramRecordableI8DramHBM2E7isEqualEddd0
_ZN14DramRecordableI8DramHBM2ED2Ev0
_ZN14DramRecordableI9DramGDDR5E7isEqualEddd0
_ZN14DramRecordableI9DramGDDR5ED0Ev0
_ZN14DramRecordableI9DramGDDR5ED2Ev0
_ZN14DramRecordableI9DramGDDR6E7isEqualEddd0
_ZN14DramRecordableI9DramGDDR6ED0Ev0
_ZN14DramRecordableI9DramGDDR6ED2Ev0
_ZN14DramRecordableI8DramDDR3ED0Ev5
_ZN14DramRecordableI8DramDDR4ED0Ev6
_ZN14DramRecordableI10DramLPDDR4ED0Ev12
_ZN14DramRecordableI8DramHBM2ED0Ev14
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func.html deleted file mode 100644 index 5e486f62..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.func.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3560.0 %
Date:2020-06-30 17:34:44Functions:42714.8 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN14DramRecordableI10DramGDDR5XE7isEqualEddd0
_ZN14DramRecordableI10DramGDDR5XED0Ev0
_ZN14DramRecordableI10DramGDDR5XED2Ev0
_ZN14DramRecordableI10DramLPDDR4E7isEqualEddd0
_ZN14DramRecordableI10DramLPDDR4ED0Ev12
_ZN14DramRecordableI10DramLPDDR4ED2Ev0
_ZN14DramRecordableI10DramWideIOE7isEqualEddd0
_ZN14DramRecordableI10DramWideIOED0Ev0
_ZN14DramRecordableI10DramWideIOED2Ev0
_ZN14DramRecordableI11DramWideIO2E7isEqualEddd0
_ZN14DramRecordableI11DramWideIO2ED0Ev0
_ZN14DramRecordableI11DramWideIO2ED2Ev0
_ZN14DramRecordableI8DramDDR3E7isEqualEddd0
_ZN14DramRecordableI8DramDDR3ED0Ev5
_ZN14DramRecordableI8DramDDR3ED2Ev0
_ZN14DramRecordableI8DramDDR4E7isEqualEddd0
_ZN14DramRecordableI8DramDDR4ED0Ev6
_ZN14DramRecordableI8DramDDR4ED2Ev0
_ZN14DramRecordableI8DramHBM2E7isEqualEddd0
_ZN14DramRecordableI8DramHBM2ED0Ev14
_ZN14DramRecordableI8DramHBM2ED2Ev0
_ZN14DramRecordableI9DramGDDR5E7isEqualEddd0
_ZN14DramRecordableI9DramGDDR5ED0Ev0
_ZN14DramRecordableI9DramGDDR5ED2Ev0
_ZN14DramRecordableI9DramGDDR6E7isEqualEddd0
_ZN14DramRecordableI9DramGDDR6ED0Ev0
_ZN14DramRecordableI9DramGDDR6ED2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.gcov.html deleted file mode 100644 index 6e959c25..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramRecordable.h.gcov.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramRecordable.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramRecordable.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3560.0 %
Date:2020-06-30 17:34:44Functions:42714.8 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46          74 : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58             : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61             : /* EOF */
-      62          37 : /* EOF */
-      63          37 : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67             : /* EOF */
-      68           0 : /* EOF */
-      69             : /* EOF */
-      70           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func-sort-c.html deleted file mode 100644 index ab47771e..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11190.8 %
Date:2020-06-30 17:34:44Functions:2633.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10DramWideIO15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN10DramWideIOD0Ev0
_GLOBAL__sub_I__ZN10DramWideIOC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func.html deleted file mode 100644 index 839e14aa..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11190.8 %
Date:2020-06-30 17:34:44Functions:2633.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10DramWideIOC2EN7sc_core14sc_module_nameE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10DramWideIO15nb_transport_fwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE0
_ZN10DramWideIOD0Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.gcov.html deleted file mode 100644 index 0a4b3a53..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramWideIO.cpp.gcov.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11190.8 %
Date:2020-06-30 17:34:44Functions:2633.3 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49           0 : /* EOF */
-      50             : /* EOF */
-      51           0 : /* EOF */
-      52             : /* EOF */
-      53           0 : /* EOF */
-      54           0 : /* EOF */
-      55           0 : /* EOF */
-      56             : /* EOF */
-      57           0 : /* EOF */
-      58           0 : /* EOF */
-      59           0 : /* EOF */
-      60           0 : /* EOF */
-      61           0 : /* EOF */
-      62           0 : /* EOF */
-      63           0 : /* EOF */
-      64           0 : /* EOF */
-      65           0 : /* EOF */
-      66           0 : /* EOF */
-      67           0 : /* EOF */
-      68             : /* EOF */
-      69           0 : /* EOF */
-      70             : /* EOF */
-      71             : /* EOF */
-      72             : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77           0 : /* EOF */
-      78           0 : /* EOF */
-      79           0 : /* EOF */
-      80           0 : /* EOF */
-      81           0 : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84             : /* EOF */
-      85           0 : /* EOF */
-      86           0 : /* EOF */
-      87           0 : /* EOF */
-      88           0 : /* EOF */
-      89           0 : /* EOF */
-      90           0 : /* EOF */
-      91           0 : /* EOF */
-      92           0 : /* EOF */
-      93           0 : /* EOF */
-      94           0 : /* EOF */
-      95           0 : /* EOF */
-      96           0 : /* EOF */
-      97           0 : /* EOF */
-      98           0 : /* EOF */
-      99           0 : /* EOF */
-     100           0 : /* EOF */
-     101           0 : /* EOF */
-     102           0 : /* EOF */
-     103           0 : /* EOF */
-     104           0 : /* EOF */
-     105           0 : /* EOF */
-     106           0 : /* EOF */
-     107           0 : /* EOF */
-     108           0 : /* EOF */
-     109             : /* EOF */
-     110           0 : /* EOF */
-     111           0 : /* EOF */
-     112           0 : /* EOF */
-     113           0 : /* EOF */
-     114           0 : /* EOF */
-     115           0 : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121           0 : /* EOF */
-     122           0 : /* EOF */
-     123           0 : /* EOF */
-     124           0 : /* EOF */
-     125           0 : /* EOF */
-     126           0 : /* EOF */
-     127           0 : /* EOF */
-     128           0 : /* EOF */
-     129           0 : /* EOF */
-     130           0 : /* EOF */
-     131           0 : /* EOF */
-     132           0 : /* EOF */
-     133           0 : /* EOF */
-     134           0 : /* EOF */
-     135             : /* EOF */
-     136           0 : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140           0 : /* EOF */
-     141           0 : /* EOF */
-     142             : /* EOF */
-     143           0 : /* EOF */
-     144             : /* EOF */
-     145             : /* EOF */
-     146           0 : /* EOF */
-     147             : /* EOF */
-     148           0 : /* EOF */
-     149             : /* EOF */
-     150             : /* EOF */
-     151           0 : /* EOF */
-     152           0 : /* EOF */
-     153           0 : /* EOF */
-     154             : /* EOF */
-     155             : /* EOF */
-     156             : /* EOF */
-     157             : /* EOF */
-     158             : /* EOF */
-     159           0 : /* EOF */
-     160             : /* EOF */
-     161           0 : /* EOF */
-     162             : /* EOF */
-     163             : /* EOF */
-     164           0 : /* EOF */
-     165           0 : /* EOF */
-     166           0 : /* EOF */
-     167             : /* EOF */
-     168             : /* EOF */
-     169             : /* EOF */
-     170           0 : /* EOF */
-     171             : /* EOF */
-     172           0 : /* EOF */
-     173             : /* EOF */
-     174             : /* EOF */
-     175           0 : /* EOF */
-     176           0 : /* EOF */
-     177           0 : /* EOF */
-     178             : /* EOF */
-     179           0 : /* EOF */
-     180             : /* EOF */
-     181             : /* EOF */
-     182             : /* EOF */
-     183             : /* EOF */
-     184           0 : /* EOF */
-     185             : /* EOF */
-     186           0 : /* EOF */
-     187           0 : /* EOF */
-     188           0 : /* EOF */
-     189             : /* EOF */
-     190             : /* EOF */
-     191           0 : /* EOF */
-     192             : /* EOF */
-     193           0 : /* EOF */
-     194             : /* EOF */
-     195           0 : /* EOF */
-     196           0 : /* EOF */
-     197             : /* EOF */
-     198           0 : /* EOF */
-     199             : /* EOF */
-     200           0 : /* EOF */
-     201           0 : /* EOF */
-     202             : /* EOF */
-     203             : /* EOF */
-     204           0 : /* EOF */
-     205             : /* EOF */
-     206           0 : /* EOF */
-     207             : /* EOF */
-     208           0 : /* EOF */
-     209           0 : /* EOF */
-     210           0 : /* EOF */
-     211           0 : /* EOF */
-     212           0 : /* EOF */
-     213           0 : /* EOF */
-     214           0 : /* EOF */
-     215           0 : /* EOF */
-     216             : /* EOF */
-     217             : /* EOF */
-     218           0 : /* EOF */
-     219          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func-sort-c.html deleted file mode 100644 index a26a0761..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11DramWideIO2C2EN7sc_core14sc_module_nameE0
_GLOBAL__sub_I__ZN11DramWideIO2C2EN7sc_core14sc_module_nameE30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func.html deleted file mode 100644 index 39a26b82..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11DramWideIO2C2EN7sc_core14sc_module_nameE30
_ZN11DramWideIO2C2EN7sc_core14sc_module_nameE0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.gcov.html deleted file mode 100644 index 55bb0bb5..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.cpp.gcov.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:1616.7 %
Date:2020-06-30 17:34:44Functions:2366.7 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43           0 : /* EOF */
-      44             : /* EOF */
-      45           0 : /* EOF */
-      46           0 : /* EOF */
-      47             : /* EOF */
-      48           0 : /* EOF */
-      49           0 : /* EOF */
-      50          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func-sort-c.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func-sort-c.html deleted file mode 100644 index 6c4f2809..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11DramWideIO2D0Ev0
_ZN11DramWideIO2D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func.html deleted file mode 100644 index 11ccb29e..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11DramWideIO2D0Ev0
_ZN11DramWideIO2D2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.gcov.html b/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.gcov.html deleted file mode 100644 index 9377fb34..00000000 --- a/html/DRAMSys/library/src/simulation/dram/DramWideIO2.h.gcov.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram/DramWideIO2.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/library/src/simulation/dram - DramWideIO2.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/index-sort-f.html b/html/DRAMSys/library/src/simulation/dram/index-sort-f.html deleted file mode 100644 index 2ee2d244..00000000 --- a/html/DRAMSys/library/src/simulation/dram/index-sort-f.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/simulation/dramHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:7244816.1 %
Date:2020-06-30 17:34:44Functions:4512835.2 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
DramWideIO2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramDDR4.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramHBM2.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramLPDDR4.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramGDDR6.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramDDR3.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramGDDR5.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramGDDR5X.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramRecordable.h -
60.0%60.0%
-
60.0 %3 / 514.8 %4 / 27
DramRecordable.cpp -
60.5%60.5%
-
60.5 %23 / 3829.8 %14 / 47
DramWideIO.cpp -
0.8%0.8%
-
0.8 %1 / 11933.3 %2 / 6
Dram.cpp -
25.7%25.7%
-
25.7 %19 / 7462.5 %5 / 8
DramGDDR5X.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramGDDR5.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramGDDR6.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramWideIO2.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
Dram.h -
100.0%
-
100.0 %2 / 2-0 / 0
DramDDR3.cpp -
4.8%4.8%
-
4.8 %4 / 83100.0 %3 / 3
DramDDR4.cpp -
4.8%4.8%
-
4.8 %4 / 83100.0 %3 / 3
DramHBM2.cpp -
66.7%66.7%
-
66.7 %4 / 6100.0 %3 / 3
DramLPDDR4.cpp -
66.7%66.7%
-
66.7 %4 / 6100.0 %3 / 3
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/index-sort-l.html b/html/DRAMSys/library/src/simulation/dram/index-sort-l.html deleted file mode 100644 index a6799174..00000000 --- a/html/DRAMSys/library/src/simulation/dram/index-sort-l.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/simulation/dramHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:7244816.1 %
Date:2020-06-30 17:34:44Functions:4512835.2 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
DramWideIO2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramGDDR6.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramGDDR5.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramGDDR5X.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramWideIO.cpp -
0.8%0.8%
-
0.8 %1 / 11933.3 %2 / 6
DramDDR3.cpp -
4.8%4.8%
-
4.8 %4 / 83100.0 %3 / 3
DramDDR4.cpp -
4.8%4.8%
-
4.8 %4 / 83100.0 %3 / 3
DramGDDR5X.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramGDDR5.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramGDDR6.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramWideIO2.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
Dram.cpp -
25.7%25.7%
-
25.7 %19 / 7462.5 %5 / 8
DramRecordable.h -
60.0%60.0%
-
60.0 %3 / 514.8 %4 / 27
DramRecordable.cpp -
60.5%60.5%
-
60.5 %23 / 3829.8 %14 / 47
DramHBM2.cpp -
66.7%66.7%
-
66.7 %4 / 6100.0 %3 / 3
DramLPDDR4.cpp -
66.7%66.7%
-
66.7 %4 / 6100.0 %3 / 3
DramDDR4.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramHBM2.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramLPDDR4.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramDDR3.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
Dram.h -
100.0%
-
100.0 %2 / 2-0 / 0
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/dram/index.html b/html/DRAMSys/library/src/simulation/dram/index.html deleted file mode 100644 index cd3fd222..00000000 --- a/html/DRAMSys/library/src/simulation/dram/index.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation/dram - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/simulation/dramHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:7244816.1 %
Date:2020-06-30 17:34:44Functions:4512835.2 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Dram.cpp -
25.7%25.7%
-
25.7 %19 / 7462.5 %5 / 8
Dram.h -
100.0%
-
100.0 %2 / 2-0 / 0
DramDDR3.cpp -
4.8%4.8%
-
4.8 %4 / 83100.0 %3 / 3
DramDDR3.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramDDR4.cpp -
4.8%4.8%
-
4.8 %4 / 83100.0 %3 / 3
DramDDR4.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramGDDR5.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramGDDR5.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramGDDR5X.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramGDDR5X.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramGDDR6.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramGDDR6.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
DramHBM2.cpp -
66.7%66.7%
-
66.7 %4 / 6100.0 %3 / 3
DramHBM2.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramLPDDR4.cpp -
66.7%66.7%
-
66.7 %4 / 6100.0 %3 / 3
DramLPDDR4.h -
100.0%
-
100.0 %1 / 10.0 %0 / 2
DramRecordable.cpp -
60.5%60.5%
-
60.5 %23 / 3829.8 %14 / 47
DramRecordable.h -
60.0%60.0%
-
60.0 %3 / 514.8 %4 / 27
DramWideIO.cpp -
0.8%0.8%
-
0.8 %1 / 11933.3 %2 / 6
DramWideIO2.cpp -
16.7%16.7%
-
16.7 %1 / 666.7 %2 / 3
DramWideIO2.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/index-sort-f.html b/html/DRAMSys/library/src/simulation/index-sort-f.html deleted file mode 100644 index 0fdafaea..00000000 --- a/html/DRAMSys/library/src/simulation/index-sort-f.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/simulationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:20737555.2 %
Date:2020-06-30 17:34:44Functions:304369.8 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
TemperatureController.cpp -
2.3%2.3%
-
2.3 %1 / 4425.0 %2 / 8
DRAMSys.cpp -
40.2%40.2%
-
40.2 %47 / 11758.3 %7 / 12
TemperatureController.h -
34.4%34.4%
-
34.4 %11 / 3275.0 %3 / 4
Arbiter.cpp -
89.0%89.0%
-
89.0 %81 / 9187.5 %7 / 8
Arbiter.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
DRAMSysRecordable.cpp -
73.3%73.3%
-
73.3 %66 / 90100.0 %9 / 9
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/index-sort-l.html b/html/DRAMSys/library/src/simulation/index-sort-l.html deleted file mode 100644 index 6ca1a79a..00000000 --- a/html/DRAMSys/library/src/simulation/index-sort-l.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/simulationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:20737555.2 %
Date:2020-06-30 17:34:44Functions:304369.8 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
TemperatureController.cpp -
2.3%2.3%
-
2.3 %1 / 4425.0 %2 / 8
TemperatureController.h -
34.4%34.4%
-
34.4 %11 / 3275.0 %3 / 4
DRAMSys.cpp -
40.2%40.2%
-
40.2 %47 / 11758.3 %7 / 12
DRAMSysRecordable.cpp -
73.3%73.3%
-
73.3 %66 / 90100.0 %9 / 9
Arbiter.cpp -
89.0%89.0%
-
89.0 %81 / 9187.5 %7 / 8
Arbiter.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/library/src/simulation/index.html b/html/DRAMSys/library/src/simulation/index.html deleted file mode 100644 index e66e6881..00000000 --- a/html/DRAMSys/library/src/simulation/index.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/library/src/simulation - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/library/src/simulationHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:20737555.2 %
Date:2020-06-30 17:34:44Functions:304369.8 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
Arbiter.cpp -
89.0%89.0%
-
89.0 %81 / 9187.5 %7 / 8
Arbiter.h -
100.0%
-
100.0 %1 / 1100.0 %2 / 2
DRAMSys.cpp -
40.2%40.2%
-
40.2 %47 / 11758.3 %7 / 12
DRAMSysRecordable.cpp -
73.3%73.3%
-
73.3 %66 / 90100.0 %9 / 9
TemperatureController.cpp -
2.3%2.3%
-
2.3 %1 / 4425.0 %2 / 8
TemperatureController.h -
34.4%34.4%
-
34.4 %11 / 3275.0 %3 / 4
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/MemoryManager.cpp.func-sort-c.html b/html/DRAMSys/simulator/MemoryManager.cpp.func-sort-c.html deleted file mode 100644 index 2b15610b..00000000 --- a/html/DRAMSys/simulator/MemoryManager.cpp.func-sort-c.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/MemoryManager.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - MemoryManager.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182475.0 %
Date:2020-06-30 17:34:44Functions:5771.4 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN13MemoryManagerD0Ev0
_ZN13MemoryManagerD2Ev0
_GLOBAL__sub_I__ZN13MemoryManagerC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemoryManagerC2Ev37
_ZN13MemoryManager4freeEPN3tlm19tlm_generic_payloadE252908
_ZN13MemoryManager8allocateEv252938
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/MemoryManager.cpp.func.html b/html/DRAMSys/simulator/MemoryManager.cpp.func.html deleted file mode 100644 index e2f47a87..00000000 --- a/html/DRAMSys/simulator/MemoryManager.cpp.func.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/MemoryManager.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - MemoryManager.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182475.0 %
Date:2020-06-30 17:34:44Functions:5771.4 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN13MemoryManagerC2Ev30
_Z41__static_initialization_and_destruction_0ii30
_ZN13MemoryManager4freeEPN3tlm19tlm_generic_payloadE252908
_ZN13MemoryManager8allocateEv252938
_ZN13MemoryManagerC2Ev37
_ZN13MemoryManagerD0Ev0
_ZN13MemoryManagerD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/MemoryManager.cpp.gcov.html b/html/DRAMSys/simulator/MemoryManager.cpp.gcov.html deleted file mode 100644 index fffe284f..00000000 --- a/html/DRAMSys/simulator/MemoryManager.cpp.gcov.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/MemoryManager.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - MemoryManager.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:182475.0 %
Date:2020-06-30 17:34:44Functions:5771.4 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          37 : /* EOF */
-      45          74 : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-      48             : /* EOF */
-      49           0 : /* EOF */
-      50           0 : /* EOF */
-      51           0 : /* EOF */
-      52           0 : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56             : /* EOF */
-      57             : /* EOF */
-      58           0 : /* EOF */
-      59             : /* EOF */
-      60      252938 : /* EOF */
-      61             : /* EOF */
-      62      505876 : /* EOF */
-      63        2427 : /* EOF */
-      64        2427 : /* EOF */
-      65             : /* EOF */
-      66             : /* EOF */
-      67        2427 : /* EOF */
-      68        2427 : /* EOF */
-      69        4854 : /* EOF */
-      70             : /* EOF */
-      71        4854 : /* EOF */
-      72        2427 : /* EOF */
-      73             : /* EOF */
-      74      501022 : /* EOF */
-      75      250511 : /* EOF */
-      76      250511 : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80      252908 : /* EOF */
-      81             : /* EOF */
-      82      252908 : /* EOF */
-      83      252908 : /* EOF */
-      84      252998 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/StlPlayer.h.func-sort-c.html b/html/DRAMSys/simulator/StlPlayer.h.func-sort-c.html deleted file mode 100644 index efbec1ae..00000000 --- a/html/DRAMSys/simulator/StlPlayer.h.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/StlPlayer.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - StlPlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:486277.4 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9StlPlayerILb0EED0Ev0
_ZN9StlPlayerILb0EED2Ev0
_ZN9StlPlayerILb1EED0Ev0
_ZN9StlPlayerILb1EED2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/StlPlayer.h.func.html b/html/DRAMSys/simulator/StlPlayer.h.func.html deleted file mode 100644 index c8a95420..00000000 --- a/html/DRAMSys/simulator/StlPlayer.h.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/StlPlayer.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - StlPlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:486277.4 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN9StlPlayerILb0EED0Ev0
_ZN9StlPlayerILb0EED2Ev0
_ZN9StlPlayerILb1EED0Ev0
_ZN9StlPlayerILb1EED2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/StlPlayer.h.gcov.html b/html/DRAMSys/simulator/StlPlayer.h.gcov.html deleted file mode 100644 index 945ea4ec..00000000 --- a/html/DRAMSys/simulator/StlPlayer.h.gcov.html +++ /dev/null @@ -1,259 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/StlPlayer.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - StlPlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:486277.4 %
Date:2020-06-30 17:34:44Functions:2825.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47           0 : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50          37 : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55          74 : /* EOF */
-      56             : /* EOF */
-      57          74 : /* EOF */
-      58           0 : /* EOF */
-      59             : /* EOF */
-      60          74 : /* EOF */
-      61          37 : /* EOF */
-      62          37 : /* EOF */
-      63          37 : /* EOF */
-      64          37 : /* EOF */
-      65             : /* EOF */
-      66      252975 : /* EOF */
-      67             : /* EOF */
-      68      252938 : /* EOF */
-      69      758962 : /* EOF */
-      70             : /* EOF */
-      71      252975 : /* EOF */
-      72      252975 : /* EOF */
-      73             : /* EOF */
-      74      505913 : /* EOF */
-      75             : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78      505950 : /* EOF */
-      79             : /* EOF */
-      80          37 : /* EOF */
-      81          37 : /* EOF */
-      82             : /* EOF */
-      83      252938 : /* EOF */
-      84             : /* EOF */
-      85             : /* EOF */
-      86      252938 : /* EOF */
-      87      252938 : /* EOF */
-      88      252938 : /* EOF */
-      89             : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92             : /* EOF */
-      93      505876 : /* EOF */
-      94      505876 : /* EOF */
-      95      505876 : /* EOF */
-      96      505876 : /* EOF */
-      97             : /* EOF */
-      98      505876 : /* EOF */
-      99             : /* EOF */
-     100             : /* EOF */
-     101      252938 : /* EOF */
-     102      252938 : /* EOF */
-     103           0 : /* EOF */
-     104             : /* EOF */
-     105             : /* EOF */
-     106     1517628 : /* EOF */
-     107             : /* EOF */
-     108             : /* EOF */
-     109      252938 : /* EOF */
-     110      252938 : /* EOF */
-     111           0 : /* EOF */
-     112             : /* EOF */
-     113             : /* EOF */
-     114             : /* EOF */
-     115      252938 : /* EOF */
-     116             : /* EOF */
-     117      111154 : /* EOF */
-     118             : /* EOF */
-     119             : /* EOF */
-     120           0 : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124             : /* EOF */
-     125             : /* EOF */
-     126      252938 : /* EOF */
-     127      252938 : /* EOF */
-     128           0 : /* EOF */
-     129             : /* EOF */
-     130             : /* EOF */
-     131     1011752 : /* EOF */
-     132             : /* EOF */
-     133             : /* EOF */
-     134      252938 : /* EOF */
-     135             : /* EOF */
-     136             : /* EOF */
-     137           0 : /* EOF */
-     138           0 : /* EOF */
-     139           0 : /* EOF */
-     140             : /* EOF */
-     141             : /* EOF */
-     142             : /* EOF */
-     143             : /* EOF */
-     144           0 : /* EOF */
-     145           0 : /* EOF */
-     146             : /* EOF */
-     147             : /* EOF */
-     148             : /* EOF */
-     149             : /* EOF */
-     150           0 : /* EOF */
-     151           0 : /* EOF */
-     152             : /* EOF */
-     153             : /* EOF */
-     154             : /* EOF */
-     155      505876 : /* EOF */
-     156      505876 : /* EOF */
-     157      252938 : /* EOF */
-     158      505876 : /* EOF */
-     159      505876 : /* EOF */
-     160      505876 : /* EOF */
-     161      505876 : /* EOF */
-     162      505876 : /* EOF */
-     163             : /* EOF */
-     164             : /* EOF */
-     165             : /* EOF */
-     166             : /* EOF */
-     167      505876 : /* EOF */
-     168      502970 : /* EOF */
-     169             : /* EOF */
-     170        4359 : /* EOF */
-     171             : /* EOF */
-     172             : /* EOF */
-     173             : /* EOF */
-     174           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TracePlayer.cpp.func-sort-c.html b/html/DRAMSys/simulator/TracePlayer.cpp.func-sort-c.html deleted file mode 100644 index ac38a8c5..00000000 --- a/html/DRAMSys/simulator/TracePlayer.cpp.func-sort-c.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TracePlayer.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:475388.7 %
Date:2020-06-30 17:34:44Functions:101190.9 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11TracePlayer23setNumberOfTransactionsEj0
_GLOBAL__sub_I__ZN11TracePlayerC2EN7sc_core14sc_module_nameEP19TracePlayerListener30
_Z41__static_initialization_and_destruction_0ii30
_ZN11TracePlayer16getNumberOfLinesENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TracePlayer6finishEv37
_ZN11TracePlayer9terminateEv37
_ZN11TracePlayerC2EN7sc_core14sc_module_nameEP19TracePlayerListener37
_ZN11TracePlayer15allocatePayloadEv252938
_ZN11TracePlayer12sendToTargetERN3tlm19tlm_generic_payloadERKNS0_9tlm_phaseERKN7sc_core7sc_timeE505876
_ZN11TracePlayer15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
_ZN11TracePlayer11peqCallbackERN3tlm19tlm_generic_payloadERKNS0_9tlm_phaseE758814
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TracePlayer.cpp.func.html b/html/DRAMSys/simulator/TracePlayer.cpp.func.html deleted file mode 100644 index c4e8801f..00000000 --- a/html/DRAMSys/simulator/TracePlayer.cpp.func.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TracePlayer.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:475388.7 %
Date:2020-06-30 17:34:44Functions:101190.9 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN11TracePlayerC2EN7sc_core14sc_module_nameEP19TracePlayerListener30
_Z41__static_initialization_and_destruction_0ii30
_ZN11TracePlayer11peqCallbackERN3tlm19tlm_generic_payloadERKNS0_9tlm_phaseE758814
_ZN11TracePlayer12sendToTargetERN3tlm19tlm_generic_payloadERKNS0_9tlm_phaseERKN7sc_core7sc_timeE505876
_ZN11TracePlayer15allocatePayloadEv252938
_ZN11TracePlayer15nb_transport_bwERN3tlm19tlm_generic_payloadERNS0_9tlm_phaseERN7sc_core7sc_timeE505876
_ZN11TracePlayer16getNumberOfLinesENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE37
_ZN11TracePlayer23setNumberOfTransactionsEj0
_ZN11TracePlayer6finishEv37
_ZN11TracePlayer9terminateEv37
_ZN11TracePlayerC2EN7sc_core14sc_module_nameEP19TracePlayerListener37
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TracePlayer.cpp.gcov.html b/html/DRAMSys/simulator/TracePlayer.cpp.gcov.html deleted file mode 100644 index 915a4953..00000000 --- a/html/DRAMSys/simulator/TracePlayer.cpp.gcov.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TracePlayer.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:475388.7 %
Date:2020-06-30 17:34:44Functions:101190.9 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43          37 : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46          37 : /* EOF */
-      47             : /* EOF */
-      48          74 : /* EOF */
-      49             : /* EOF */
-      50          74 : /* EOF */
-      51          37 : /* EOF */
-      52             : /* EOF */
-      53           0 : /* EOF */
-      54          37 : /* EOF */
-      55             : /* EOF */
-      56      252938 : /* EOF */
-      57             : /* EOF */
-      58      252938 : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61          37 : /* EOF */
-      62             : /* EOF */
-      63          37 : /* EOF */
-      64          37 : /* EOF */
-      65             : /* EOF */
-      66          37 : /* EOF */
-      67             : /* EOF */
-      68         222 : /* EOF */
-      69          37 : /* EOF */
-      70          37 : /* EOF */
-      71             : /* EOF */
-      72      505876 : /* EOF */
-      73             : /* EOF */
-      74             : /* EOF */
-      75      505876 : /* EOF */
-      76      505876 : /* EOF */
-      77             : /* EOF */
-      78             : /* EOF */
-      79      758814 : /* EOF */
-      80             : /* EOF */
-      81             : /* EOF */
-      82      758814 : /* EOF */
-      83      252938 : /* EOF */
-      84      252938 : /* EOF */
-      85             : /* EOF */
-      86      505876 : /* EOF */
-      87      252938 : /* EOF */
-      88      252938 : /* EOF */
-      89      252938 : /* EOF */
-      90      252938 : /* EOF */
-      91      252938 : /* EOF */
-      92      252938 : /* EOF */
-      93             : /* EOF */
-      94      252938 : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97      252938 : /* EOF */
-      98             : /* EOF */
-      99          37 : /* EOF */
-     100             : /* EOF */
-     101           0 : /* EOF */
-     102             : /* EOF */
-     103           0 : /* EOF */
-     104             : /* EOF */
-     105      758814 : /* EOF */
-     106             : /* EOF */
-     107      505876 : /* EOF */
-     108             : /* EOF */
-     109      505876 : /* EOF */
-     110      505876 : /* EOF */
-     111      505876 : /* EOF */
-     112      505876 : /* EOF */
-     113             : /* EOF */
-     114           0 : /* EOF */
-     115             : /* EOF */
-     116           0 : /* EOF */
-     117           0 : /* EOF */
-     118             : /* EOF */
-     119          37 : /* EOF */
-     120             : /* EOF */
-     121             : /* EOF */
-     122          74 : /* EOF */
-     123          37 : /* EOF */
-     124             : /* EOF */
-     125          37 : /* EOF */
-     126             : /* EOF */
-     127         148 : /* EOF */
-     128          74 : /* EOF */
-     129             : /* EOF */
-     130          37 : /* EOF */
-     131          37 : /* EOF */
-     132          90 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TracePlayer.h.func-sort-c.html b/html/DRAMSys/simulator/TracePlayer.h.func-sort-c.html deleted file mode 100644 index c10aea59..00000000 --- a/html/DRAMSys/simulator/TracePlayer.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TracePlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11TracePlayerD0Ev0
_ZN11TracePlayerD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TracePlayer.h.func.html b/html/DRAMSys/simulator/TracePlayer.h.func.html deleted file mode 100644 index 77f8ef2e..00000000 --- a/html/DRAMSys/simulator/TracePlayer.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TracePlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN11TracePlayerD0Ev0
_ZN11TracePlayerD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TracePlayer.h.gcov.html b/html/DRAMSys/simulator/TracePlayer.h.gcov.html deleted file mode 100644 index 4d90f103..00000000 --- a/html/DRAMSys/simulator/TracePlayer.h.gcov.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayer.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TracePlayer.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:020.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TracePlayerListener.h.func-sort-c.html b/html/DRAMSys/simulator/TracePlayerListener.h.func-sort-c.html deleted file mode 100644 index c5bfab09..00000000 --- a/html/DRAMSys/simulator/TracePlayerListener.h.func-sort-c.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayerListener.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TracePlayerListener.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TracePlayerListener.h.func.html b/html/DRAMSys/simulator/TracePlayerListener.h.func.html deleted file mode 100644 index 25396818..00000000 --- a/html/DRAMSys/simulator/TracePlayerListener.h.func.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayerListener.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TracePlayerListener.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- -
- - - - - - -

Function Name Sort by function nameHit count Sort by hit count
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TracePlayerListener.h.gcov.html b/html/DRAMSys/simulator/TracePlayerListener.h.gcov.html deleted file mode 100644 index 6ca827c0..00000000 --- a/html/DRAMSys/simulator/TracePlayerListener.h.gcov.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TracePlayerListener.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TracePlayerListener.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:010.0 %
Date:2020-06-30 17:34:44Functions:00-
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46           0 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TraceSetup.cpp.func-sort-c.html b/html/DRAMSys/simulator/TraceSetup.cpp.func-sort-c.html deleted file mode 100644 index 72a4a8e6..00000000 --- a/html/DRAMSys/simulator/TraceSetup.cpp.func-sort-c.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TraceSetup.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374386.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10TraceSetupC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_PSt6vectorIP11TracePlayerSaIS8_EE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10TraceSetup21tracePlayerTerminatesEv37
_ZN10TraceSetup19transactionFinishedEv252938
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TraceSetup.cpp.func.html b/html/DRAMSys/simulator/TraceSetup.cpp.func.html deleted file mode 100644 index 3d339549..00000000 --- a/html/DRAMSys/simulator/TraceSetup.cpp.func.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TraceSetup.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374386.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__ZN10TraceSetupC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_PSt6vectorIP11TracePlayerSaIS8_EE30
_Z41__static_initialization_and_destruction_0ii30
_ZN10TraceSetup19transactionFinishedEv252938
_ZN10TraceSetup21tracePlayerTerminatesEv37
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TraceSetup.cpp.gcov.html b/html/DRAMSys/simulator/TraceSetup.cpp.gcov.html deleted file mode 100644 index 5d9f7140..00000000 --- a/html/DRAMSys/simulator/TraceSetup.cpp.gcov.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TraceSetup.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:374386.0 %
Date:2020-06-30 17:34:44Functions:55100.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39          30 : /* EOF */
-      40             : /* EOF */
-      41          30 : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44          90 : /* EOF */
-      45             : /* EOF */
-      46          60 : /* EOF */
-      47           0 : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51         224 : /* EOF */
-      52             : /* EOF */
-      53          74 : /* EOF */
-      54          74 : /* EOF */
-      55             : /* EOF */
-      56          37 : /* EOF */
-      57          74 : /* EOF */
-      58             : /* EOF */
-      59          37 : /* EOF */
-      60           0 : /* EOF */
-      61             : /* EOF */
-      62          74 : /* EOF */
-      63             : /* EOF */
-      64         111 : /* EOF */
-      65             : /* EOF */
-      66          37 : /* EOF */
-      67          37 : /* EOF */
-      68           0 : /* EOF */
-      69             : /* EOF */
-      70             : /* EOF */
-      71          74 : /* EOF */
-      72         148 : /* EOF */
-      73             : /* EOF */
-      74         222 : /* EOF */
-      75          74 : /* EOF */
-      76             : /* EOF */
-      77             : /* EOF */
-      78         148 : /* EOF */
-      79             : /* EOF */
-      80             : /* EOF */
-      81          37 : /* EOF */
-      82         148 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86           0 : /* EOF */
-      87             : /* EOF */
-      88          37 : /* EOF */
-      89             : /* EOF */
-      90          37 : /* EOF */
-      91         111 : /* EOF */
-      92             : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95          30 : /* EOF */
-      96          60 : /* EOF */
-      97          30 : /* EOF */
-      98             : /* EOF */
-      99          37 : /* EOF */
-     100             : /* EOF */
-     101          37 : /* EOF */
-     102             : /* EOF */
-     103          37 : /* EOF */
-     104          30 : /* EOF */
-     105          37 : /* EOF */
-     106      252938 : /* EOF */
-     107             : /* EOF */
-     108      252938 : /* EOF */
-     109             : /* EOF */
-     110      252938 : /* EOF */
-     111             : /* EOF */
-     112      252938 : /* EOF */
-     113             : /* EOF */
-     114      253028 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TraceSetup.h.func-sort-c.html b/html/DRAMSys/simulator/TraceSetup.h.func-sort-c.html deleted file mode 100644 index 1ac93657..00000000 --- a/html/DRAMSys/simulator/TraceSetup.h.func-sort-c.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TraceSetup.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10TraceSetupD2Ev0
_ZN10TraceSetupD0Ev30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TraceSetup.h.func.html b/html/DRAMSys/simulator/TraceSetup.h.func.html deleted file mode 100644 index 41a03ffb..00000000 --- a/html/DRAMSys/simulator/TraceSetup.h.func.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.h - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TraceSetup.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_ZN10TraceSetupD0Ev30
_ZN10TraceSetupD2Ev0
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/TraceSetup.h.gcov.html b/html/DRAMSys/simulator/TraceSetup.h.gcov.html deleted file mode 100644 index b3cc1626..00000000 --- a/html/DRAMSys/simulator/TraceSetup.h.gcov.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/TraceSetup.h - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - TraceSetup.h (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:11100.0 %
Date:2020-06-30 17:34:44Functions:1250.0 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56          30 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/index-sort-f.html b/html/DRAMSys/simulator/index-sort-f.html deleted file mode 100644 index 5485068d..00000000 --- a/html/DRAMSys/simulator/index-sort-f.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/simulatorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18423279.3 %
Date:2020-06-30 17:34:44Functions:284168.3 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
TracePlayer.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
StlPlayer.h -
77.4%77.4%
-
77.4 %48 / 6225.0 %2 / 8
TraceSetup.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
MemoryManager.cpp -
75.0%75.0%
-
75.0 %18 / 2471.4 %5 / 7
main.cpp -
70.2%70.2%
-
70.2 %33 / 4783.3 %5 / 6
TracePlayer.cpp -
88.7%88.7%
-
88.7 %47 / 5390.9 %10 / 11
TracePlayerListener.h -
0.0%
-
0.0 %0 / 1-0 / 0
TraceSetup.cpp -
86.0%86.0%
-
86.0 %37 / 43100.0 %5 / 5
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/index-sort-l.html b/html/DRAMSys/simulator/index-sort-l.html deleted file mode 100644 index 410cace6..00000000 --- a/html/DRAMSys/simulator/index-sort-l.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/simulatorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18423279.3 %
Date:2020-06-30 17:34:44Functions:284168.3 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
TracePlayerListener.h -
0.0%
-
0.0 %0 / 1-0 / 0
TracePlayer.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
main.cpp -
70.2%70.2%
-
70.2 %33 / 4783.3 %5 / 6
MemoryManager.cpp -
75.0%75.0%
-
75.0 %18 / 2471.4 %5 / 7
StlPlayer.h -
77.4%77.4%
-
77.4 %48 / 6225.0 %2 / 8
TraceSetup.cpp -
86.0%86.0%
-
86.0 %37 / 43100.0 %5 / 5
TracePlayer.cpp -
88.7%88.7%
-
88.7 %47 / 5390.9 %10 / 11
TraceSetup.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/index.html b/html/DRAMSys/simulator/index.html deleted file mode 100644 index 6a4db168..00000000 --- a/html/DRAMSys/simulator/index.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - /DRAMSys/simulatorHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:18423279.3 %
Date:2020-06-30 17:34:44Functions:284168.3 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Filename Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
MemoryManager.cpp -
75.0%75.0%
-
75.0 %18 / 2471.4 %5 / 7
StlPlayer.h -
77.4%77.4%
-
77.4 %48 / 6225.0 %2 / 8
TracePlayer.cpp -
88.7%88.7%
-
88.7 %47 / 5390.9 %10 / 11
TracePlayer.h -
0.0%
-
0.0 %0 / 10.0 %0 / 2
TracePlayerListener.h -
0.0%
-
0.0 %0 / 1-0 / 0
TraceSetup.cpp -
86.0%86.0%
-
86.0 %37 / 43100.0 %5 / 5
TraceSetup.h -
100.0%
-
100.0 %1 / 150.0 %1 / 2
main.cpp -
70.2%70.2%
-
70.2 %33 / 4783.3 %5 / 6
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/main.cpp.func-sort-c.html b/html/DRAMSys/simulator/main.cpp.func-sort-c.html deleted file mode 100644 index a5c6f21a..00000000 --- a/html/DRAMSys/simulator/main.cpp.func-sort-c.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/main.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - main.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:334770.2 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_Z10pathOfFileNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE0
_GLOBAL__sub_I__Z10pathOfFileNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
main30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/main.cpp.func.html b/html/DRAMSys/simulator/main.cpp.func.html deleted file mode 100644 index 462e064b..00000000 --- a/html/DRAMSys/simulator/main.cpp.func.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/main.cpp - functions - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - main.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:334770.2 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: - hit - not hit -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -

Function Name Sort by function nameHit count Sort by hit count
_GLOBAL__sub_I__Z10pathOfFileNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE30
_Z10pathOfFileNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE0
_Z41__static_initialization_and_destruction_0ii30
_Z41__static_initialization_and_destruction_1ii30
main30
-
-
- - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/DRAMSys/simulator/main.cpp.gcov.html b/html/DRAMSys/simulator/main.cpp.gcov.html deleted file mode 100644 index 97950faf..00000000 --- a/html/DRAMSys/simulator/main.cpp.gcov.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - /DRAMSys/simulator/main.cpp - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top level - DRAMSys/simulator - main.cpp (source / functions)HitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:334770.2 %
Date:2020-06-30 17:34:44Functions:5683.3 %
Legend: Lines: - hit - not hit -
-
- - - - - - - - -

-
          Line data    Source code
-
-       1             : /* EOF */
-       2             : /* EOF */
-       3             : /* EOF */
-       4             : /* EOF */
-       5             : /* EOF */
-       6             : /* EOF */
-       7             : /* EOF */
-       8             : /* EOF */
-       9             : /* EOF */
-      10             : /* EOF */
-      11             : /* EOF */
-      12             : /* EOF */
-      13             : /* EOF */
-      14             : /* EOF */
-      15             : /* EOF */
-      16             : /* EOF */
-      17             : /* EOF */
-      18             : /* EOF */
-      19             : /* EOF */
-      20             : /* EOF */
-      21             : /* EOF */
-      22             : /* EOF */
-      23             : /* EOF */
-      24             : /* EOF */
-      25             : /* EOF */
-      26             : /* EOF */
-      27             : /* EOF */
-      28             : /* EOF */
-      29             : /* EOF */
-      30             : /* EOF */
-      31             : /* EOF */
-      32             : /* EOF */
-      33             : /* EOF */
-      34             : /* EOF */
-      35             : /* EOF */
-      36             : /* EOF */
-      37             : /* EOF */
-      38             : /* EOF */
-      39             : /* EOF */
-      40             : /* EOF */
-      41             : /* EOF */
-      42             : /* EOF */
-      43             : /* EOF */
-      44             : /* EOF */
-      45             : /* EOF */
-      46             : /* EOF */
-      47             : /* EOF */
-      48             : /* EOF */
-      49             : /* EOF */
-      50             : /* EOF */
-      51             : /* EOF */
-      52             : /* EOF */
-      53             : /* EOF */
-      54             : /* EOF */
-      55             : /* EOF */
-      56           0 : /* EOF */
-      57             : /* EOF */
-      58           0 : /* EOF */
-      59             : /* EOF */
-      60             : /* EOF */
-      61          30 : /* EOF */
-      62             : /* EOF */
-      63          30 : /* EOF */
-      64             : /* EOF */
-      65             : /* EOF */
-      66          30 : /* EOF */
-      67             : /* EOF */
-      68          30 : /* EOF */
-      69             : /* EOF */
-      70          60 : /* EOF */
-      71          60 : /* EOF */
-      72             : /* EOF */
-      73          30 : /* EOF */
-      74             : /* EOF */
-      75           0 : /* EOF */
-      76           0 : /* EOF */
-      77           0 : /* EOF */
-      78             : /* EOF */
-      79             : /* EOF */
-      80          30 : /* EOF */
-      81             : /* EOF */
-      82           0 : /* EOF */
-      83           0 : /* EOF */
-      84           0 : /* EOF */
-      85             : /* EOF */
-      86             : /* EOF */
-      87          30 : /* EOF */
-      88          60 : /* EOF */
-      89          30 : /* EOF */
-      90             : /* EOF */
-      91             : /* EOF */
-      92          60 : /* EOF */
-      93             : /* EOF */
-      94             : /* EOF */
-      95             : /* EOF */
-      96             : /* EOF */
-      97          90 : /* EOF */
-      98          60 : /* EOF */
-      99         180 : /* EOF */
-     100             : /* EOF */
-     101          60 : /* EOF */
-     102         150 : /* EOF */
-     103             : /* EOF */
-     104             : /* EOF */
-     105           0 : /* EOF */
-     106             : /* EOF */
-     107             : /* EOF */
-     108         120 : /* EOF */
-     109             : /* EOF */
-     110             : /* EOF */
-     111         134 : /* EOF */
-     112             : /* EOF */
-     113          37 : /* EOF */
-     114             : /* EOF */
-     115           0 : /* EOF */
-     116             : /* EOF */
-     117           0 : /* EOF */
-     118           0 : /* EOF */
-     119           0 : /* EOF */
-     120           0 : /* EOF */
-     121             : /* EOF */
-     122             : /* EOF */
-     123             : /* EOF */
-     124          74 : /* EOF */
-     125             : /* EOF */
-     126             : /* EOF */
-     127             : /* EOF */
-     128             : /* EOF */
-     129          30 : /* EOF */
-     130             : /* EOF */
-     131             : /* EOF */
-     132         157 : /* EOF */
-     133          37 : /* EOF */
-     134             : /* EOF */
-     135             : /* EOF */
-     136          30 : /* EOF */
-     137          30 : /* EOF */
-     138             : /* EOF */
-     139          30 : /* EOF */
-     140          60 : /* EOF */
-     141         210 : /* EOF */
-     142             : /* EOF */
-     143          30 : /* EOF */
-     144          30 : /* EOF */
-     145             : /* EOF */
-     146          60 : /* EOF */
-     147         150 : /* EOF */
-
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/gcov.css b/html/gcov.css deleted file mode 100644 index bfd0a83e..00000000 --- a/html/gcov.css +++ /dev/null @@ -1,519 +0,0 @@ -/* All views: initial background and text color */ -body -{ - color: #000000; - background-color: #FFFFFF; -} - -/* All views: standard link format*/ -a:link -{ - color: #284FA8; - text-decoration: underline; -} - -/* All views: standard link - visited format */ -a:visited -{ - color: #00CB40; - text-decoration: underline; -} - -/* All views: standard link - activated format */ -a:active -{ - color: #FF0040; - text-decoration: underline; -} - -/* All views: main title format */ -td.title -{ - text-align: center; - padding-bottom: 10px; - font-family: sans-serif; - font-size: 20pt; - font-style: italic; - font-weight: bold; -} - -/* All views: header item format */ -td.headerItem -{ - text-align: right; - padding-right: 6px; - font-family: sans-serif; - font-weight: bold; - vertical-align: top; - white-space: nowrap; -} - -/* All views: header item value format */ -td.headerValue -{ - text-align: left; - color: #284FA8; - font-family: sans-serif; - font-weight: bold; - white-space: nowrap; -} - -/* All views: header item coverage table heading */ -td.headerCovTableHead -{ - text-align: center; - padding-right: 6px; - padding-left: 6px; - padding-bottom: 0px; - font-family: sans-serif; - font-size: 80%; - white-space: nowrap; -} - -/* All views: header item coverage table entry */ -td.headerCovTableEntry -{ - text-align: right; - color: #284FA8; - font-family: sans-serif; - font-weight: bold; - white-space: nowrap; - padding-left: 12px; - padding-right: 4px; - background-color: #DAE7FE; -} - -/* All views: header item coverage table entry for high coverage rate */ -td.headerCovTableEntryHi -{ - text-align: right; - color: #000000; - font-family: sans-serif; - font-weight: bold; - white-space: nowrap; - padding-left: 12px; - padding-right: 4px; - background-color: #A7FC9D; -} - -/* All views: header item coverage table entry for medium coverage rate */ -td.headerCovTableEntryMed -{ - text-align: right; - color: #000000; - font-family: sans-serif; - font-weight: bold; - white-space: nowrap; - padding-left: 12px; - padding-right: 4px; - background-color: #FFEA20; -} - -/* All views: header item coverage table entry for ow coverage rate */ -td.headerCovTableEntryLo -{ - text-align: right; - color: #000000; - font-family: sans-serif; - font-weight: bold; - white-space: nowrap; - padding-left: 12px; - padding-right: 4px; - background-color: #FF0000; -} - -/* All views: header legend value for legend entry */ -td.headerValueLeg -{ - text-align: left; - color: #000000; - font-family: sans-serif; - font-size: 80%; - white-space: nowrap; - padding-top: 4px; -} - -/* All views: color of horizontal ruler */ -td.ruler -{ - background-color: #6688D4; -} - -/* All views: version string format */ -td.versionInfo -{ - text-align: center; - padding-top: 2px; - font-family: sans-serif; - font-style: italic; -} - -/* Directory view/File view (all)/Test case descriptions: - table headline format */ -td.tableHead -{ - text-align: center; - color: #FFFFFF; - background-color: #6688D4; - font-family: sans-serif; - font-size: 120%; - font-weight: bold; - white-space: nowrap; - padding-left: 4px; - padding-right: 4px; -} - -span.tableHeadSort -{ - padding-right: 4px; -} - -/* Directory view/File view (all): filename entry format */ -td.coverFile -{ - text-align: left; - padding-left: 10px; - padding-right: 20px; - color: #284FA8; - background-color: #DAE7FE; - font-family: monospace; -} - -/* Directory view/File view (all): bar-graph entry format*/ -td.coverBar -{ - padding-left: 10px; - padding-right: 10px; - background-color: #DAE7FE; -} - -/* Directory view/File view (all): bar-graph outline color */ -td.coverBarOutline -{ - background-color: #000000; -} - -/* Directory view/File view (all): percentage entry for files with - high coverage rate */ -td.coverPerHi -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #A7FC9D; - font-weight: bold; - font-family: sans-serif; -} - -/* Directory view/File view (all): line count entry for files with - high coverage rate */ -td.coverNumHi -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #A7FC9D; - white-space: nowrap; - font-family: sans-serif; -} - -/* Directory view/File view (all): percentage entry for files with - medium coverage rate */ -td.coverPerMed -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #FFEA20; - font-weight: bold; - font-family: sans-serif; -} - -/* Directory view/File view (all): line count entry for files with - medium coverage rate */ -td.coverNumMed -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #FFEA20; - white-space: nowrap; - font-family: sans-serif; -} - -/* Directory view/File view (all): percentage entry for files with - low coverage rate */ -td.coverPerLo -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #FF0000; - font-weight: bold; - font-family: sans-serif; -} - -/* Directory view/File view (all): line count entry for files with - low coverage rate */ -td.coverNumLo -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #FF0000; - white-space: nowrap; - font-family: sans-serif; -} - -/* File view (all): "show/hide details" link format */ -a.detail:link -{ - color: #B8D0FF; - font-size:80%; -} - -/* File view (all): "show/hide details" link - visited format */ -a.detail:visited -{ - color: #B8D0FF; - font-size:80%; -} - -/* File view (all): "show/hide details" link - activated format */ -a.detail:active -{ - color: #FFFFFF; - font-size:80%; -} - -/* File view (detail): test name entry */ -td.testName -{ - text-align: right; - padding-right: 10px; - background-color: #DAE7FE; - font-family: sans-serif; -} - -/* File view (detail): test percentage entry */ -td.testPer -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #DAE7FE; - font-family: sans-serif; -} - -/* File view (detail): test lines count entry */ -td.testNum -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #DAE7FE; - font-family: sans-serif; -} - -/* Test case descriptions: test name format*/ -dt -{ - font-family: sans-serif; - font-weight: bold; -} - -/* Test case descriptions: description table body */ -td.testDescription -{ - padding-top: 10px; - padding-left: 30px; - padding-bottom: 10px; - padding-right: 30px; - background-color: #DAE7FE; -} - -/* Source code view: function entry */ -td.coverFn -{ - text-align: left; - padding-left: 10px; - padding-right: 20px; - color: #284FA8; - background-color: #DAE7FE; - font-family: monospace; -} - -/* Source code view: function entry zero count*/ -td.coverFnLo -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #FF0000; - font-weight: bold; - font-family: sans-serif; -} - -/* Source code view: function entry nonzero count*/ -td.coverFnHi -{ - text-align: right; - padding-left: 10px; - padding-right: 10px; - background-color: #DAE7FE; - font-weight: bold; - font-family: sans-serif; -} - -/* Source code view: source code format */ -pre.source -{ - font-family: monospace; - white-space: pre; - margin-top: 2px; -} - -/* Source code view: line number format */ -span.lineNum -{ - background-color: #EFE383; -} - -/* Source code view: format for lines which were executed */ -td.lineCov, -span.lineCov -{ - background-color: #CAD7FE; -} - -/* Source code view: format for Cov legend */ -span.coverLegendCov -{ - padding-left: 10px; - padding-right: 10px; - padding-bottom: 2px; - background-color: #CAD7FE; -} - -/* Source code view: format for lines which were not executed */ -td.lineNoCov, -span.lineNoCov -{ - background-color: #FF6230; -} - -/* Source code view: format for NoCov legend */ -span.coverLegendNoCov -{ - padding-left: 10px; - padding-right: 10px; - padding-bottom: 2px; - background-color: #FF6230; -} - -/* Source code view (function table): standard link - visited format */ -td.lineNoCov > a:visited, -td.lineCov > a:visited -{ - color: black; - text-decoration: underline; -} - -/* Source code view: format for lines which were executed only in a - previous version */ -span.lineDiffCov -{ - background-color: #B5F7AF; -} - -/* Source code view: format for branches which were executed - * and taken */ -span.branchCov -{ - background-color: #CAD7FE; -} - -/* Source code view: format for branches which were executed - * but not taken */ -span.branchNoCov -{ - background-color: #FF6230; -} - -/* Source code view: format for branches which were not executed */ -span.branchNoExec -{ - background-color: #FF6230; -} - -/* Source code view: format for the source code heading line */ -pre.sourceHeading -{ - white-space: pre; - font-family: monospace; - font-weight: bold; - margin: 0px; -} - -/* All views: header legend value for low rate */ -td.headerValueLegL -{ - font-family: sans-serif; - text-align: center; - white-space: nowrap; - padding-left: 4px; - padding-right: 2px; - background-color: #FF0000; - font-size: 80%; -} - -/* All views: header legend value for med rate */ -td.headerValueLegM -{ - font-family: sans-serif; - text-align: center; - white-space: nowrap; - padding-left: 2px; - padding-right: 2px; - background-color: #FFEA20; - font-size: 80%; -} - -/* All views: header legend value for hi rate */ -td.headerValueLegH -{ - font-family: sans-serif; - text-align: center; - white-space: nowrap; - padding-left: 2px; - padding-right: 4px; - background-color: #A7FC9D; - font-size: 80%; -} - -/* All views except source code view: legend format for low coverage */ -span.coverLegendCovLo -{ - padding-left: 10px; - padding-right: 10px; - padding-top: 2px; - background-color: #FF0000; -} - -/* All views except source code view: legend format for med coverage */ -span.coverLegendCovMed -{ - padding-left: 10px; - padding-right: 10px; - padding-top: 2px; - background-color: #FFEA20; -} - -/* All views except source code view: legend format for hi coverage */ -span.coverLegendCovHi -{ - padding-left: 10px; - padding-right: 10px; - padding-top: 2px; - background-color: #A7FC9D; -} diff --git a/html/index-sort-f.html b/html/index-sort-f.html deleted file mode 100644 index d9eeb09a..00000000 --- a/html/index-sort-f.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top levelHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3137765241.0 %
Date:2020-06-30 17:34:44Functions:40274753.8 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Directory Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
/DRAMSys/library/src/error/ECC -
1.4%1.4%
-
1.4 %2 / 1427.1 %2 / 28
/DRAMSys/library/src/error -
0.7%0.7%
-
0.7 %3 / 40417.6 %6 / 34
/DRAMSys/library/src/simulation/dram -
16.1%16.1%
-
16.1 %72 / 44835.2 %45 / 128
/DRAMSys/library/src/configuration/memspec -
42.8%42.8%
-
42.8 %319 / 74543.7 %38 / 87
/DRAMSys/library/src/common -
44.1%44.1%
-
44.1 %500 / 113547.1 %65 / 138
/DRAMSys/library/src/controller/checker -
26.8%26.8%
-
26.8 %802 / 298760.3 %38 / 63
/DRAMSys/simulator -
79.3%79.3%
-
79.3 %184 / 23268.3 %28 / 41
/DRAMSys/library/src/simulation -
55.2%55.2%
-
55.2 %207 / 37569.8 %30 / 43
/DRAMSys/library/src/controller/respqueue -
50.0%50.0%
-
50.0 %17 / 3470.0 %7 / 10
/DRAMSys/library/src/controller/refresh -
87.7%87.7%
-
87.7 %164 / 18773.9 %17 / 23
/DRAMSys/library/src/controller -
89.3%89.3%
-
89.3 %461 / 51678.6 %55 / 70
/DRAMSys/library/src/controller/cmdmux -
100.0%
-
100.0 %26 / 2680.0 %8 / 10
/DRAMSys/library/src/controller/scheduler -
87.8%87.8%
-
87.8 %101 / 11581.8 %27 / 33
/DRAMSys/library/src/controller/powerdown -
97.1%97.1%
-
97.1 %101 / 10490.5 %19 / 21
/DRAMSys/library/src/configuration -
88.1%88.1%
-
88.1 %178 / 20294.4 %17 / 18
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/index-sort-l.html b/html/index-sort-l.html deleted file mode 100644 index 26f46bba..00000000 --- a/html/index-sort-l.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top levelHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3137765241.0 %
Date:2020-06-30 17:34:44Functions:40274753.8 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Directory Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
/DRAMSys/library/src/error -
0.7%0.7%
-
0.7 %3 / 40417.6 %6 / 34
/DRAMSys/library/src/error/ECC -
1.4%1.4%
-
1.4 %2 / 1427.1 %2 / 28
/DRAMSys/library/src/simulation/dram -
16.1%16.1%
-
16.1 %72 / 44835.2 %45 / 128
/DRAMSys/library/src/controller/checker -
26.8%26.8%
-
26.8 %802 / 298760.3 %38 / 63
/DRAMSys/library/src/configuration/memspec -
42.8%42.8%
-
42.8 %319 / 74543.7 %38 / 87
/DRAMSys/library/src/common -
44.1%44.1%
-
44.1 %500 / 113547.1 %65 / 138
/DRAMSys/library/src/controller/respqueue -
50.0%50.0%
-
50.0 %17 / 3470.0 %7 / 10
/DRAMSys/library/src/simulation -
55.2%55.2%
-
55.2 %207 / 37569.8 %30 / 43
/DRAMSys/simulator -
79.3%79.3%
-
79.3 %184 / 23268.3 %28 / 41
/DRAMSys/library/src/controller/refresh -
87.7%87.7%
-
87.7 %164 / 18773.9 %17 / 23
/DRAMSys/library/src/controller/scheduler -
87.8%87.8%
-
87.8 %101 / 11581.8 %27 / 33
/DRAMSys/library/src/configuration -
88.1%88.1%
-
88.1 %178 / 20294.4 %17 / 18
/DRAMSys/library/src/controller -
89.3%89.3%
-
89.3 %461 / 51678.6 %55 / 70
/DRAMSys/library/src/controller/powerdown -
97.1%97.1%
-
97.1 %101 / 10490.5 %19 / 21
/DRAMSys/library/src/controller/cmdmux -
100.0%
-
100.0 %26 / 2680.0 %8 / 10
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - diff --git a/html/index.html b/html/index.html deleted file mode 100644 index e46e0fb3..00000000 --- a/html/index.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - LCOV - commit 1b407b235a58a703f16d9ba60bf2738364073414 -commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127 - - - - - - - - - - - - - - -
LCOV - code coverage report
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Current view:top levelHitTotalCoverage
Test:commit 1b407b235a58a703f16d9ba60bf2738364073414
commit 46f4d1d61b3bdc54a5d40e7dff9ce320d3076127
Lines:3137765241.0 %
Date:2020-06-30 17:34:44Functions:40274753.8 %
Legend: Rating: - low: < 75 % - medium: >= 75 % - high: >= 90 % -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Directory Sort by nameLine Coverage Sort by line coverageFunctions Sort by function coverage
/DRAMSys/library/src/common -
44.1%44.1%
-
44.1 %500 / 113547.1 %65 / 138
/DRAMSys/library/src/configuration -
88.1%88.1%
-
88.1 %178 / 20294.4 %17 / 18
/DRAMSys/library/src/configuration/memspec -
42.8%42.8%
-
42.8 %319 / 74543.7 %38 / 87
/DRAMSys/library/src/controller -
89.3%89.3%
-
89.3 %461 / 51678.6 %55 / 70
/DRAMSys/library/src/controller/checker -
26.8%26.8%
-
26.8 %802 / 298760.3 %38 / 63
/DRAMSys/library/src/controller/cmdmux -
100.0%
-
100.0 %26 / 2680.0 %8 / 10
/DRAMSys/library/src/controller/powerdown -
97.1%97.1%
-
97.1 %101 / 10490.5 %19 / 21
/DRAMSys/library/src/controller/refresh -
87.7%87.7%
-
87.7 %164 / 18773.9 %17 / 23
/DRAMSys/library/src/controller/respqueue -
50.0%50.0%
-
50.0 %17 / 3470.0 %7 / 10
/DRAMSys/library/src/controller/scheduler -
87.8%87.8%
-
87.8 %101 / 11581.8 %27 / 33
/DRAMSys/library/src/error -
0.7%0.7%
-
0.7 %3 / 40417.6 %6 / 34
/DRAMSys/library/src/error/ECC -
1.4%1.4%
-
1.4 %2 / 1427.1 %2 / 28
/DRAMSys/library/src/simulation -
55.2%55.2%
-
55.2 %207 / 37569.8 %30 / 43
/DRAMSys/library/src/simulation/dram -
16.1%16.1%
-
16.1 %72 / 44835.2 %45 / 128
/DRAMSys/simulator -
79.3%79.3%
-
79.3 %184 / 23268.3 %28 / 41
-
-
- - - - -
Generated by: LCOV version 1.13
-
- - - From 56fa53b7848366ebe48daf4afec7df0a5835621e Mon Sep 17 00:00:00 2001 From: scorrea Date: Tue, 30 Jun 2020 19:02:22 +0200 Subject: [PATCH 34/53] export COVERAGE=true --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bb478fa4..5540c9c6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,6 +20,7 @@ build: - rm -rf build - mkdir -p build - cd build + - export COVERAGE=true - cmake ../DRAMSys - make -j 16 - find . -name "*.o" -type f -delete From b52cabf21ad5d3b87a0652d7369fdc3171b934f3 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Wed, 1 Jul 2020 15:41:20 +0200 Subject: [PATCH 35/53] Readme updates, separate gem5 readme. --- DRAMSys/gem5/README.md | 681 ++++++ DRAMSys/library/CMakeLists.txt | 4 +- DRAMSys/library/src/controller/Controller.cpp | 2 +- .../src/controller/respqueue/RespQueueIF.h | 1 + README.md | 1824 ++--------------- 5 files changed, 871 insertions(+), 1641 deletions(-) create mode 100644 DRAMSys/gem5/README.md diff --git a/DRAMSys/gem5/README.md b/DRAMSys/gem5/README.md new file mode 100644 index 00000000..d4966a95 --- /dev/null +++ b/DRAMSys/gem5/README.md @@ -0,0 +1,681 @@ +## DRAMSys with gem5 + +Install gem5 by following the instructions on the [gem5 wiki](http://gem5.org/Documentation#Getting_Started). +Optionally, use the scripts from [gem5.TnT] to install gem5, build it, get some benchmark programs and learn more about gem5. + +In order to understand the SystemC coupling with gem5 it is recommended to +read the documentation in the gem5 repository *util/tlm/README* and [12]. + +The main steps for building gem5 and libgem5 follow: + +```bash +scons build/ARM/gem5.opt +``` + +```bash +scons --with-cxx-config --without-python --without-tcmalloc build/ARM/libgem5_opt.so +``` + +For MacOS: + +```bash +scons --with-cxx-config --without-python --without-tcmalloc build/ARM/libgem5_opt.dylib +``` + +In order to use gem5 with DRAMSys set the **GEM5** environment variable to the +path to gem5, for example in the *QtCreator under Projects > Build +& Run > Build Environment*: + +``` +GEM5=/path/to/gem5/ +``` + +Example: + +``` +GEM5=$HOME/gem5_tnt/gem5 +``` + +Optionally, export environment variables in your **~/.bashrc** file or +equivalent and open a new terminal: + +```bash +# In this example gem5 is located at $HOME/gem5_tnt/gem5. +export GEM5=$HOME/gem5_tnt/gem5 + +# Add the folder containing libgem5_opt.so to the list where libraries should +# be searched for. +export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${GEM5}/build/ARM +``` + +The project file [DRAMSys.pro](DRAMSys/DRAMSys.pro) checks whether the +environment variable **GEM5** is defined or not and configures automatically +the corresponding build target **gem5** for QtCreator. + +In order to run gem5 with DRAMSys it is mandatory to run gem5 first without +DRAMSys and generate a configuration file **config.ini** which will be the +value of the second parameter passed to DRAMSys_gem5. + +### DRAMSys with gem5 traffic generator + +In the following we will run a simple example with a gem5 traffic generator: + +``` +Base System Architecture: ++-------------+ +------+ ^ +| System Port | | TGEN | | ++-------+-----+ +--+---+ | + | | | gem5 World + | +----+ | + | | | ++-------v------v-------+ | +| Membus | v ++---------------+------+ External Port (see sc_slave_port.*) + | ^ + +----v----+ | TLM World + | DRAMSys | | (see sc_target.*) + +---------+ v + +``` + +As mentioned before we first need to create a config.ini +that represents the gem5 configuration. We do so by starting gem5 with the +desired python configuration script. + +```bash +cd gem5/utils/tlm/ +../../build/ARM/gem5.opt conf/tlm_slave.py +``` + +**Ignore the message below.** +``` +"fatal: Can't find port handler type 'tlm_slave'" +``` + +The configuration file config.ini will be stored in the **m5out** directory. +Copy this configuration file to the building directory of DRAMSys where the +executable **DRAMSys_gem5** is located: + +``` +dram.sys/build-DRAMSys-Desktop_Qt_5_7_0_clang_64bit-Debug/gem5 +``` + +Also the traffic generatior configuration file (conf/tgen.cfg) must be stored +in a conf directory of this building directory. + +Then the simulation can be started with: + +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json config.ini 1 +``` + +Let the simulation run for some seconds and then stop it with **CTRL-C**. +Observe the output of the simulation in the trace analyzer. The trace database +can be found inside the gem5 directory in the building directory. + +### Gem5 SE mode and DRAMSys + +All essential files for some functional examples are provided. + +Execute a hello world application: + +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/configs/hello.ini 1 +``` + +A **Hello world!** message should be printed to the standard output. + +Execute applications: + +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/Oscar/config.ini 1 +``` + +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/Bubblesort/config.ini 1 +``` + +Wait some minutes for the application to finish. + +The hello application binary was copied from gem5 repository. + +Other applications were obtained with [gem5.TnT]. + +Command template for generating **.ini** configuration files follows: + +```bash +build/ARM/gem5.opt configs/example/se.py \ + -c --mem-size=512MB --mem-channels=1 \ + --caches --l2cache --mem-type=SimpleMemory \ + --cpu-type=TimingSimpleCPU --num-cpu=1 \ + --tlm-memory=transactor +``` + +An overview of the architcture being simulated is presented below: + +![arch](DRAMSys/docs/images/gem5_se_mode_arch.png) + +**Note**: this is a gem5 generated file, therefore DRAMSys is omitted. DRAMSys is +direct connected as external tlm slave. + +**Note**: workaround in se.py required: + +```python +... +if options.tlm_memory: + system.physmem = SimpleMemory() +MemConfig.config_mem(options, system) +... +``` + +A convenience script to execute several applications automatically +[**run.sh**](DRAMSys/gem5/gem5_se/run.sh) is provided . Take a look and learn +from it. + +### [PARSEC] FS Mode + +Full system simulation files for ARM available in [DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB](DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB). + +Choose the benchmark in [parsec_arm_minor_2c_8GB.rcS](DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB/parsec_arm_minor_2c_8GB.rcS). + +Edit the paths in [config.ini](DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB/config.ini). + +All files required to build DRAMSys_gem5 and execute the simulation (gem5 +library, benchmarks, disk image, etc.) can be obtained with [gem5.TnT]. + +Start a simulation. Example: + +```bash +dram.sys/build/gem5$ ./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/rgrsim-gem5-fs.json ../../DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB/config.ini 1 +``` + +Optionally, open another terminal or tab and connect to gem5. + +```bash +$ telnet localhost 3456 +``` + +Note: the port may vary, gem5 prints it during initialization. Example: + +``` +system.terminal: Listening for connections on port 3456 +``` + +### [PARSEC] SE Mode + + +Binaries and gem5 SE configuration files for ARM available in [DRAMSys/gem5/gem5_se/parsec-arm](DRAMSys/gem5/gem5_se/parsec-arm). + +Use [gem5.TnT] to download parsec. Example: + +Go to your **gem5.TnT** folder. Then go to **arch/arm** folder. Execute the +script *build-parsec-serial.sh*. + +```bash +gem5.TnT/arch/arm$ ./build-parsec-serial.sh +``` + +Extract inputs files. Example: + +```bash +cd $HOME/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs +tar -xf input_simdev.tar +tar -xf input_test.tar +tar -xf input_simmedium.tar +tar -xf input_simsmall.tar +tar -xf input_native.tar +tar -xf input_simlarge.tar + +cd $HOME/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs +tar -xf input_simdev.tar +tar -xf input_test.tar +tar -xf input_native.tar +tar -xf input_simlarge.tar +tar -xf input_simmedium.tar +tar -xf input_simsmall.tar + +cd $HOME/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs +tar -xf input_simdev.tar +tar -xf input_test.tar +tar -xf input_native.tar +tar -xf input_simlarge.tar +tar -xf input_simmedium.tar +tar -xf input_simsmall.tar +``` + +Open [DRAMSys/gem5/gem5_se/parsec-arm/config.ini](DRAMSys/gem5/gem5_se/parsec-arm/config.ini) + +Edit **cmd=**. + +Edit **executable=**. + +Examples (**Replace USER. Use the correct path in your computer.**): + +``` +-- canneal -- + +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 5 100 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/10.nets 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 100 300 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/100.nets 2 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 10000 2000 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/100000.nets 32 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 15000 2000 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/200000.nets 64 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 15000 2000 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/400000.nets 128 + +executable=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal + +-- streamcluster -- + +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 2 5 1 10 10 5 none output.txt 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 3 10 3 16 16 10 none output.txt 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 10 20 32 4096 4096 1000 none output.txt 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 10 20 64 8192 8192 1000 none output.txt 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 10 20 128 16384 16384 1000 none output.txt 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 10 20 128 1000000 200000 5000 none output.txt 1 + +executable=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster + +-- swaptions -- + +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 1 -sm 5 -nt 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 3 -sm 50 -nt 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 16 -sm 5000 -nt 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 32 -sm 10000 -nt 1 +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 64 -sm 20000 -nt 1 + +executable=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions + +-- fluidanimate -- + +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_5K.fluid out.fluid +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 3 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_15K.fluid out.fluid +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 5 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_35K.fluid out.fluid +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 5 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_100K.fluid out.fluid +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 5 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_300K.fluid out.fluid + +executable=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate + +-- blackscholes -- + +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_4.txt prices.txt +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_16.txt prices.txt +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_4K.txt prices.txt +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_16K.txt prices.txt +cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_64K.txt prices.txt + +executable=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes + +``` + +Start a simulation. Example: + +```bash +dram.sys/build/gem5$ ./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/rgrsim-gem5-se.json ../../DRAMSys/gem5/gem5_se/parsec-arm/config.ini 1 +``` + +### Boot Linux with gem5 and DRAMSys + +The procedure is very similar to the traffic generator example above. + +First we have to generate the config.ini file by starting gem5 with the following configuration: + +```bash +build/ARM/gem5.opt configs/example/fs.py \ + --tlm-memory=transactor --cpu-type=TimingSimpleCPU --num-cpu=1 \ + --mem-type=SimpleMemory --mem-size=512MB --mem-channels=1 --caches \ + --l2cache --machine-type=VExpress_EMM \ + --dtb-filename=vexpress.aarch32.ll_20131205.0-gem5.1cpu.dtb \ + --kernel=vmlinux.aarch32.ll_20131205.0-gem5 \ + --disk-image=linux-aarch32-ael.img +``` + +The config.ini should be copied again to the DRAMSys_gem5 build folder. + +The simconfig should be changed in order to support storage and address offsets: + +``` json +{ + "simconfig": { + "CheckTLM2Protocol": false, + "DatabaseRecording": true, + "Debug": false, + "ECCControllerMode": "Disabled", + "EnableWindowing": false, + "ErrorCSVFile": "", + "ErrorChipSeed": 42, + "NumberOfDevicesOnDIMM": 8, + "NumberOfMemChannels": 1, + "PowerAnalysis": false, + "SimulationName": "ddr3", + "SimulationProgressBar": true, + "ThermalSimulation": false, + "WindowSize": 1000, + + "StoreMode": "Store", + "AddressOffset": 2147483648, + "UseMalloc": true + } +} +``` + +Then start DRAMSys_gem5 with the following command: + +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json config.ini 1 +``` + +For further sophisticated address mappings or scenarios checkout the file DRAMSys/gem5/main.cpp + +#### Boot Linux with gem5 and DRAMSys Example + +**All essential files for a functional example are provided.** + +Unzip the disk image: + +```bash +tar -xaf DRAMSys/gem5/boot_linux/linux-aarch32-ael.img.tar.gz -C DRAMSys/gem5/boot_linux/ +``` + +Execute the example: + +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-boot-linux.json ../../DRAMSys/gem5/configs/boot_linux.ini 1 +``` + +Open a new terminal and connect to gem5: + +```bash +telnet localhost 3456 +``` + +Wait some minutes for the Linux boot process to complete then login. Username is +**root** no password required. + + +### DRAMSys with gem5 Elastic Traces + +For understanding elastic traces and their generation, study the [gem5 +wiki](http://gem5.org/TraceCPU) and the paper [13]. +Some predefined configs are stored [here](DRAMSys/gem5/configs) and the related +python files are stored [here](DRAMSys/gem5/examples). + +This is an example for running an elastic trace: + +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json ../../DRAMSys/gem5/configs/singleElasticTraceReplay.ini 1 +``` + +An overview of the architcture being simulated is presented below: + +![arch](DRAMSys/docs/images/singleElasticTraceReplay.png) + +Note that the address offset is usually zero for elastic traces. + +Another example with L2 cache: + +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json ../../DRAMSys/gem5/configs/singleElasticTraceReplayWithL2.ini 1 +``` + +If two elastic traces should be used run the simulation with the following example: + +``` +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json ../../DRAMSys/gem5/configs/dualElasticTraceReplay.ini 2 +``` + +An overview of the architcture being simulated is presented below: + +![arch](DRAMSys/docs/images/dualElasticTraceReplay.png) + +For more spophisticated setups, even with l2 caches the proper ini file should be created. +If you need help please contact Matthias Jung. + +### DRAMSys + GEM5 Log Collector Scripts + +Users can profit of running multiple **DRAMSys + gem5** simulations +automatically with [gem5ilva.sh] for **gem5 syscall emulation (SE) mode** and +[gem5ilva_fs.sh] for **gem5 full system (FS) mode**. + +Normally you will have to push your changes before running the scripts. This +approach makes it easier to track back what exactly was tested by the scripts. + +The scripts provide variables that tell **git** where to get the source +code from (repository URL), user name to be used (your git account), +**branch** to checkout (your working branch), etc. They are: + +```bash +# Git info. +git_user="$USER" +git_branch="master" +git_url="git.eit.uni-kl.de:ems/astdm/dram.sys.git" +git_url_https="git.eit.uni-kl.de/ems/astdm/dram.sys.git" +``` + +The default values of the variables presented above assume that your git +account uses the same name as your user name in your PC. If that is not the +case, replace the value of the **git_user** variable with your git account +name. Similarly, replace the value of the variable **git_branch** with your +working branch name. There (in your working branch) you can push your changes +and/or new files before executing the scripts. + +Open the script in QtCreator or another text editor of your choice and set the +variables with values that fit your needs. + +Nevertheless, for some cases, you may want to have gem5 essential files out of +the main repository (usually because they are too big to be added to the +repository). + +For those cases uncomment and properly set the variable +**external_inifile_path** in [gem5ilva_fs.sh]. + +This allows you to use a gem5 **config.ini** file external to the repository. +Note, however, that in this case it is up to you to keep track of your +simulation setup. + +**Hint:** +[gem5.TnT] provides convenience scripts +to create gem5 disk images with benchmarking programs embedded. + + +### Coverage Check + +Coverage check is enabled by default and can be disabled with an environment +variable. + +```bash +export COVERAGE=true +``` + +### DRAMSys + GEM5 x86 + +Make sure you have built **gem5/build/X86/libgem5_opt.so**. If you build with +[gem5.TnT] you can check if the library exists as follows. + +```bash +$ ls $HOME/gem5_tnt/gem5/build/X86/libgem5_opt.so +``` + +Change your ~/.bashrc. + +```bash +# In this example gem5 is located at $HOME/gem5_tnt/gem5. +export GEM5=$HOME/gem5_tnt/gem5 + +# Add the folder containing libgem5_opt.so to the list where libraries should +# be searched for. +#export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${GEM5}/build/ARM +export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${GEM5}/build/X86 +``` + +After that close QtCreator and all terminals. + +Open a new terminal. + +Change the architecture in [DRAMSys/gem5/gem5.pro](DRAMSys/gem5/gem5.pro). + +``` +gem5_arch = 'X86' +``` + +Delete the file **DRAMSys/DRAMSys.pro.user** from the repository. + +```bash +$ rm DRAMSys/DRAMSys.pro.user +``` + +Open a new QtCreator. + +Build DRAMSys as usual. + +After building, go the the folder where *DRAMSys_gem5* is located. + +Test with a hello world application for X86. + +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/hello-x86/config.ini 1 +``` + +A **Hello world!** message should be printed to the standard output. + +### [MiBench] + +Applications for x86 and configuration files available in [DRAMSys/gem5/gem5_se/MiBench](DRAMSys/gem5/gem5_se/MiBench). + +Examples: + +**Automotive Applications** + +**Basicmath** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/basicmath/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/basicmath/large/config.ini 1 +``` + +**Bitcount** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/bitcount/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/bitcount/large/config.ini 1 +``` + +**Qsort** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/qsort/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/qsort/large/config.ini 1 +``` + +**Susan** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/small/corners/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/large/corners/config.ini 1 + +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/small/edges/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/large/edges/config.ini 1 + +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/small/smoothing/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/large/smoothing/config.ini 1 +``` + +**Network Applications** + +**Dijkstra** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/network/dijkstra/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/network/dijkstra/large/config.ini 1 +``` + +**Patricia** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/network/patricia/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/network/patricia/large/config.ini 1 +``` + +**Security Applications** + +**Blowfish Encode** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/blowfish/encode/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/blowfish/encode/large/config.ini 1 +``` + +**Blowfish Decode** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/blowfish/decode/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/blowfish/decode/large/config.ini 1 +``` + +**SHA** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/sha/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/sha/large/config.ini 1 +``` + +**Telecom Applications** + +**CRC32** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/crc32/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/crc32/large/config.ini 1 +``` + +**FFT** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/fft/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/fft/large/config.ini 1 +``` + +**FFT-INV** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/fft-inv/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/fft-inv/large/config.ini 1 +``` + +**GSM Encode** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/gsm/encode/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/gsm/encode/large/config.ini 1 +``` + +**GSM Decode** +```bash +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/gsm/decode/small/config.ini 1 +./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/gsm/decode/large/config.ini 1 +``` + +Check the folder [DRAMSys/gem5/gem5_se/MiBench](DRAMSys/gem5/gem5_se/MiBench) for all applications and configuration files. + +### More AARCH64 Apps + +Full system simulation files for ARM available in [DRAMSys/gem5/gem5_fs/arm64](DRAMSys/gem5/gem5_fs/arm64). + +You can edit [arm64.rcS](DRAMSys/gem5/gem5_fs/arm64/arm64.rcS) to start an application and call *m5 exit* when it finishes. + +Edit the paths in [config.ini](DRAMSys/gem5/gem5_fs/arm64/config.ini). + +All files required to build DRAMSys_gem5 and execute the simulation (gem5 +library, benchmarks, disk image, etc.) can be obtained with [gem5.TnT]. + +Start a simulation. Example: + +```bash +dram.sys/build/gem5$ ./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/rgrsim-gem5-fs.json ../../DRAMSys/gem5/gem5_fs/arm64/config.ini 1 +``` + +Optionally, open another terminal or tab and connect to gem5. + +```bash +$ telnet localhost 3456 +``` + +Note: the port may vary, gem5 prints it during initialization. Example: + +``` +system.terminal: Listening for connections on port 3456 +``` + +[gem5.TnT]: https://github.com/tukl-msd/gem5.TnT +[gem5ilva.sh]: DRAMSys/library/resources/scripts/DRAMSylva/gem5ilva.sh +[gem5ilva_fs.sh]: DRAMSys/library/resources/scripts/DRAMSylva/gem5ilva_fs.sh +[Elwetritsch]: https://elwe.rhrk.uni-kl.de/ +[DRAMSylva.sh]: DRAMSys/library/resources/scripts/DRAMSylva/DRAMSylva.sh +[DRAMSylva folder]: DRAMSys/library/resources/scripts/DRAMSylva +[configs_json]: DRAMSys/library/resources/scripts/DRAMSylva/configs_json +[MiBench]: http://vhosts.eecs.umich.edu/mibench/ +[PARSEC]: http://parsec.cs.princeton.edu/ \ No newline at end of file diff --git a/DRAMSys/library/CMakeLists.txt b/DRAMSys/library/CMakeLists.txt index a84e0f29..733c7f6e 100644 --- a/DRAMSys/library/CMakeLists.txt +++ b/DRAMSys/library/CMakeLists.txt @@ -288,8 +288,8 @@ add_library(DRAMSysLibrary resources/traces/chstone-adpcm_32.stl ) -if(DEFINED ENV{LIBTHREED_ICE_HOME} AND DEFINED ENV{LIBSUPERLU_HOME}) - message("-- 3D-ICE and SuperLU available") +if(DEFINED ENV{LIBTHREED_ICE_HOME}) + message("-- Thermal simulation available") add_definitions(-DTHERMALSIM) target_include_directories(DRAMSysLibrary PRIVATE $ENV{LIBTHREED_ICE_HOME}/include/ diff --git a/DRAMSys/library/src/controller/Controller.cpp b/DRAMSys/library/src/controller/Controller.cpp index 137aa3db..79c68d25 100644 --- a/DRAMSys/library/src/controller/Controller.cpp +++ b/DRAMSys/library/src/controller/Controller.cpp @@ -341,7 +341,7 @@ tlm_sync_enum Controller::nb_transport_fw(tlm_generic_payload &trans, timeToAcquire = sc_time_stamp() + notificationDelay; beginReqEvent.notify(notificationDelay); } - else if (phase = END_RESP) + else if (phase == END_RESP) { timeToRelease = sc_time_stamp() + notificationDelay; endRespEvent.notify(notificationDelay); diff --git a/DRAMSys/library/src/controller/respqueue/RespQueueIF.h b/DRAMSys/library/src/controller/respqueue/RespQueueIF.h index 078ddb93..e4848b09 100644 --- a/DRAMSys/library/src/controller/respqueue/RespQueueIF.h +++ b/DRAMSys/library/src/controller/respqueue/RespQueueIF.h @@ -44,6 +44,7 @@ public: virtual void insertPayload(tlm::tlm_generic_payload *, sc_time) = 0; virtual tlm::tlm_generic_payload *nextPayload() = 0; virtual sc_time getTriggerTime() const = 0; + virtual ~RespQueueIF() {} }; #endif // RESPQUEUEIF_H diff --git a/README.md b/README.md index 44bad0a1..a820de3c 100644 --- a/README.md +++ b/README.md @@ -1,186 +1,74 @@ -DRAMSys 4.0 +DRAMSys4.0 =========== -**DRAMSys** [1] is a flexible DRAM subsystem design space exploration -framework that consists of models reflecting the DRAM functionality, power -consumption, temperature behaviour and retention time errors. +**DRAMSys4.0** is a flexible DRAM subsystem design space exploration framework that consists of models reflecting the DRAM functionality, power consumption, temperature behavior and retention time errors. + +Pipeline Status: [![pipeline status](https://git.eit.uni-kl.de/ems/astdm/dram.sys/badges/master/pipeline.svg)](https://git.eit.uni-kl.de/ems/astdm/dram.sys/commits/master) -Pipeline Status: [![pipeline status](https://git.eit.uni-kl.de/ems/astdm/dram.sys/badges/master/pipeline.svg)](https://git.eit.uni-kl.de/ems/astdm/dram.sys/commits/master) [![Coverage report](https://git.eit.uni-kl.de/ems/astdm/dram.sys/badges/master/coverage.svg?job=coverage)](https://git.eit.uni-kl.de/ems/astdm/dram.sys/commits/master) + ## Basic Setup -Start using DRAMSys by cloning the current stable master branch: - -```bash -$ git clone --recursive https://git.eit.uni-kl.de/ems/astdm/dram.sys.git -``` - -The *--recursive* flag tells git to initialize all submodules within the -repository, namely **DRAMPower** [2], **SystemC** and **tinyxml**. - -Now you can implement, test, commit and push features into a **branch**. - -When you consider your work stable enough to be merged into the master branch -it is time to open a **merge request** using the web interface. - -Your changes will be reviewed and might be integrated into the master branch. - -After cloning go to the project directory. - -```bash -$ cd dram.sys -``` +Start using DRAMSys by cloning the repository. +Use the *--recursive* flag to initialize all submodules within the repository, namely **DRAMPower** [2], **SystemC** and **nlohmann json**. ### Dependencies -Make sure you have properly installed all the required libraries and -tools in your system. +DRAMSys is based on the SystemC library. SystemC is included as a submodule and will be build automatically with the DRAMSys project. If you want to use an external SystemC version you have to export the environment variables *SYSTEMC_HOME* (SystemC root directory), *SYSTEMC_TARGET_ARCH* (e.g. linux64) and add the path of the library to *LD_LIBRARY_PATH*. -- **General dependencies** +### Building DRAMSys +DRAMSys uses CMake for the build process, the minimum required version is **CMake 3.10**. -You may want to have a look on the convenience scripts that are located in the -[utils](./utils) folder. +To build the standalone simulator for running memory trace files, create a build folder in the project root directory, then run CMake and make: ```bash -$ cd utils -$ ls -``` - -You can use [utils/install_deb.sh](./utils/install_deb.sh) in order to install -dependencies. Type your password if required. - -```bash -$ ./install_deb.sh -``` - -### Coding Style - -Please read the [coding-style document](coding-style.md) before starting to -code. - -A script is provided to apply the coding style. -```bash -$ cd util -$ ./make_pretty.sh -``` - -### Buiding with QTCreator -Execute the *QTCreator*. - -```bash -$ qtcreator & -``` - -Use the menu bar and open the DRAMSys project. - -**File -> Open Project -> dram.sys/DRAMSys/CMakeLists.txt** - -When you open the project for the first time a configuration window pops-up. -Then click in **Configure Project** and after that **Build** the project. - -To speedup the building process one can use the additional **make** option -**-j[jobs]**. The command line below returns the number of CPUs on a Debian -Linux to be passed to make as the number of jobs that can run simultaneously to -improve the building time. - -```bash -$ cat /proc/cpuinfo | grep processor | wc -l -``` - -In the left bar go to **Projects -> Build & Run -> Build Steps -> Make**. -Click in **Details** then **Make arguments** and add **-j** followed by the -number you got. - -In case you face a problem related to the **Qt version** double check the **Qt -version** configuration shown in the image below. - -![Qt Creator Configuration](DRAMSys/docs/images/QtCreatorConfig.png) - -### Building without QTCreator - -In case you prefer a command line interface to the QTCreator GUI you can also -use **cmake** to generate a Makefile and then compile the project. - -```bash -$ cd dram.sys +$ cd DRAMSys $ mkdir build $ cd build $ cmake ../DRAMSys/ -$ make -j4 +$ make ``` -The compilation generates executable binary files **DRAMSys** and -**TraceAnalyzer** that can be found inside sub-directories. +If you plan to integrate DRAMSys into your own SystemC/TLM project you can build the DRAMSys library only: -From the build directory use the commands below to execute DRAMSys. +```bash +$ cd DRAMSys +$ mkdir build +$ cd build +$ cmake ../DRAMSys/library/ +$ make +``` + +To build DRAMSys on Windows 10 we recommend to use the *Windows Subsystem for Linux (WSL)*. + +### Executing DRAMSys + +From the build directory use the commands below to execute the DRAMSys standalone. ```bash $ cd simulator $ ./DRAMSys ``` -To run DRAMSys with a specific config: +The default base config file is `ddr3-example.json` and located in `DRAMSys/library/resources/simulations`, the default resource folder for all nested config files is `DRAMSys/library/resources`. + +To run DRAMSys with a specific base config file: + ```bash $ ./DRAMSys ../../DRAMSys/library/resources/simulations/ddr3-example.json ``` -To run DRAMSys with a specific config and a resource folder somewhere else to the standard: +To run DRAMSys with a specific base config file and a resource folder somewhere else to the standard: + ```bash $ ./DRAMSys ../../DRAMSys/tests/example_ddr3/simulations/ddr3-example.json ../../DRAMSys/tests/example_ddr3/ ``` -From the build directory use the commands below to execute the Trace Analyzer. - -```bash -$ cd traceAnalyzer -$ export QT_QPA_PLATFORMTHEME=qgnomeplatform -$ ./TraceAnalyzer -``` - -### Building on MacOS (Formerly OSX) -- Install XCode as a Compiler (or any other via Homebrew) -- Install the required python3 over homebrew: - -```bash -$ brew install python3 -``` - -- Install the QtCreator using offical setup file from [link](https://www.qt.io/download-open-source/#section-2) - -**Note:** You have later setup PATH for Qt5 and its tool if you install QtCreator manually, e.g: - -```bash -# Setting PATH for Qt5 and its tools -PATH="/Users//Qt5.7.0/5.7/clang_64/bin:${PATH}" -export PATH -``` - -- Install the QWT manually to /opt/qwt, then do: - -```bash -$ cd /Library/Frameworks -$ sudo ln -s /opt/qwt-6.1.2/lib/qwt.framework/ . -``` - -You compile DRAMSys also with QtCreator or CMAKE as described in the Linux -section. - -### Building on Windows 10 - -- DRAMSys can also run on Windows 10 with the *Windows Subsystem for Linux* (WSL) feature. You can install a linux distribution like Debian over the windows app store. - We refer to the following example [website](https://docs.microsoft.com/en-us/windows/wsl/install-win10). - Then DRAMSys can be installed as described above for Linux. - -- Native Windows 10 Implementation is currently under investigation - ### DRAMSys Configuration -The **DRAMSys** executable supports one argument which is a JSON file that -contains certain arguments and the path of other configuration files for the -desired simulation. If no argument is passed through the command line a default -configuration file will be loaded. +The DRAMSys executable supports one argument which is a JSON file that contains certain arguments and the path of other configuration files for the desired simulation. -The JSON code below shows a typic configuration: +The JSON code below shows an example configuration: ```json { @@ -191,185 +79,169 @@ The JSON code below shows a typic configuration: "memspec": "MICRON_1Gb_DDR3-1600_8bit_G.json", "addressmapping": "am_ddr3_8x1Gbx8_dimm_p1KB_brc.json", "mcconfig":"fifoStrict.json", - "tracesetup": [{ + "tracesetup": [ + { "clkMhz": 300, - "name": "ddr3_example.stl"}, - { + "name": "ddr3_example.stl" + }, + { "clkMhz": 400, - "name": "ddr3_example.stl"} - ] + "name": "ddr3_example.stl" + } + ] } } ``` Fields Description - "simulationid": Simulation file identifier - "simconfig": Configuration file for the DRAMSys Simulator - "thermalconfig": Temperature Simulator Configuration File - "memspec": Memory Device Specification File - "addressmapping": Addressmapping Configuration of the Memory Controller File. - "mcconfig": Memory Controller Configuration File. - "tracesetup": The trace setup is only used in standalone mode. - In library mode e.g. in Platform Architect the trace setup is ignored. - Each device should be addes as a json object inside the "tracesetup" array. -Each **tracesetup** device configuration consists of two parameters - clkMhz -(operation frequency for this device) - and a **trace file**. - -Some configuration fields reference other JSON files which contain more -specialized chunks of the configuration like memory specification, address -mapping and memory configurations +- "simulationid": Simulation file identifier -The JSON configuration files are parsed by the program and the configuration -details extracted are assigned to the correspondent attributes of the internal -configuration structure. +- "simconfig": Configuration file for the DRAMSys Simulator + +- "thermalconfig": Temperature Simulator Configuration File + +- "memspec": Memory Device Specification File + +- "addressmapping": Addressmapping Configuration of the Memory Controller File. + +- "mcconfig": Memory Controller Configuration File. + +- "tracesetup": The trace setup is only used in standalone mode. In library mode the trace setup is ignored. + + Each device should be added as a json object inside the "tracesetup" array. + +Each **trace setup** device configuration consists of two parameters, **clkMhz** (operation frequency of the **trace player**) and a trace file **name**. Most configuration fields reference other JSON files which contain more specialized chunks of the configuration like a memory specification, an address mapping and a memory controller configuration. -#### Trace files +#### Trace Files -A **trace file** is a pre-recorded file containing memory transactions. Each -memory transaction has a timestamp that tells the simulator when it shall -happen, a transaction type (read or write) and a memory address given in -hexadecimal. +A **trace file** is a prerecorded file containing memory transactions. Each memory transaction has a time stamp that tells the simulator when it shall happen, a transaction type (*read* or *write*) and a hexadecimal memory address. -There are two different kinds of trace files. They differ in their timing behaviour and are distingushed by their file extension. +There are two different kinds of trace files. They differ in their timing behavior and are distinguished by their file extension. ##### STL Trace (.stl) -The timestamp corresponds to the time the request is to be issued and it is -given in cycles of the bus master device. Example: the device is a FPGA with -frequency 200 MHz (clock period of 5 ns). If the timestamp is 10 it means that -the request is to be issued when time is 50 ns. +The times tamp corresponds to the time the request is to be issued and it is given in cycles of the bus master device. Example: the device is an FPGA with a frequency of 200 MHz (clock period of 5 ns). If the time stamp is 10 it means that the request is to be issued when time is 50 ns. Here is an example syntax: ``` # Comment lines begin with # -# [clock-cyle]: [write|read] [hex-address] +# [clock-cyle]: [write|read] [hex-address] [hex-data (optional)] 31: read 0x400140 33: read 0x400160 -56: write 0x7fff8000 +56: write 0x7fff8000 0x123456789abcdef 81: read 0x400180 ``` ##### Relative STL Traces (.rstl) -The timestamp corresponds to the time the request is to be issued relative to the end of the transaction before or the beginning of the trace. This results in a simulation in which the **trace player** is able to react to possible delays due to DRAM bottlenecks. +The time stamp corresponds to the time the request is to be issued relative to the end of the transaction before or the beginning of the trace. This results in a simulation in which the trace player is able to react to possible delays due to DRAM bottlenecks. Here is an example syntax: ``` # Comment lines begin with # -# [clock-cyle]: [write|read] [hex-address] +# [clock-cyle]: [write|read] [hex-address] [hex-data (optional)] 31: read 0x400140 2: read 0x400160 -23: write 0x7fff8000 +23: write 0x7fff8000 0x123456789abcdef 25: read 0x400180 ``` -#### Trace player +#### Trace Player -A **trace player** is **equivalent** to a bus master **device** -(processor, FPGA, etc.). It reads an input trace file and translates each line into -a new memory request. By adding a new device element into the trace setup section -one can specify a new trace player, its operating frequency and the trace file -for that trace player. +A **trace player** is **equivalent** to a bus master **device** (processor, FPGA, etc.). It reads an input trace file and translates each line into a new memory request. By adding a new device element into the trace setup section one can specify a new trace player, its operating frequency and the trace file for that trace player. #### Configuration File Sections -The main configuration file is divided into self-contained sections. Each of -these sections refers to sub-configuration files. +The main configuration file is divided into self-contained sections. Each of these sections refers to sub-configuration files. Below, the sub-configurations are listed and explained. -- **Simulator Configuration** +##### Simulator Configuration - The content of [ddr3.json](DRAMSys/library/resources/configs/simulator/ddr3.json) is presented below as an example. +The content of [ddr3.json](DRAMSys/library/resources/configs/simulator/ddr3.json) is presented below as an example. ```json { "simconfig": { - "AddressOffset": 0, - "CheckTLM2Protocol": false, - "DatabaseRecording": true, + "SimulationName": "ddr3", "Debug": false, - "ECCControllerMode": "Disabled", + "DatabaseRecording": true, + "PowerAnalysis": false, "EnableWindowing": false, + "WindowSize": 1000, + "ThermalSimulation": false, + "SimulationProgressBar": true, + "CheckTLM2Protocol": false, + "ECCControllerMode": "Disabled", + "UseMalloc": false, + "AddressOffset": 0, "ErrorCSVFile": "", "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, - "PowerAnalysis": false, - "SimulationName": "ddr3", - "SimulationProgressBar": true, - "StoreMode": "NoStorage", - "ThermalSimulation": false, - "UseMalloc": false, - "WindowSize": 1000 + "StoreMode": "NoStorage" } } ``` - *SimulationName* (boolean) - - - Give the name of the simulation for distingushing from other simulations. + - Give the name of the simulation for distinguishing from other simulations. - *Debug* (boolean) - - true: enables debug output on console + - true: enables debug output on console (only supported by a debug build) - false: disables debug output - *DatabaseRecording* (boolean) - - true: enables trace file recording for the trace analyser tool - - false: disables trace file recording + - true: enables output database recording for the Trace Analyzer tool + - false: disables output database recording - *PowerAnalysis* (boolean) - - true: enables live power analysis with the DRAMPower tool + - true: enables live power analysis with DRAMPower - false: disables power analysis - *EnableWindowing* (boolean) - true: enables temporal windowing - false: disables temporal windowing - - *WindowSize* (unisgned int) - + - *WindowSize* (unsigned int) - Size of the window in clock cycles used to evaluate average bandwidth and average power consumption - - *NumberOfMemChannels* (unsigned int) - - - Number of memory channels - - *ControllerCoreRefDisable* (boolean) - - true: disables refreshes - - false: normal operation (refreshes enabled) - - *ControllerCoreRGR* (boolean) - - true: enable row granular refresh - - false: normal operation - *ThermalSimulation* (boolean) - true: enables thermal simulation - false: static temperature during simulation - *SimulationProgressBar* (boolean) - true: enables the simulation progress bar - false: disables the simulation progress bar - - *NumberOfDevicesOnDIMM* (unsigned int) - - - Number of devices on dual inline memory module - *CheckTLM2Protocol* (boolean) - true: enables the TLM-2.0 Protocol Checking - false: disables the TLM-2.0 Protocol Checking - *ECCControllerMode* (string) - - "Disabled": No ECC Controller is used + - "Disabled": No ECC controller is used - "Hamming": Enables an ECC Controller with classic SECDED implementation using Hamming Code - *UseMalloc* (boolean) - false: model storage using mmap() (DEFAULT) - true: allocate memory for modeling storage using malloc() +- *AddressOffset* (unsigned int) + - Address offset of the DRAM subsystem (required for the gem5 coupling). +- *ErrorChipSeed* (unsigned int) + - Seed to initialize the random error generator. + - *ErrorCSVFile* (string) + - CSV file with error injection information. + - *StoreMode* (string) + - "NoStorage": no storage + - "Store": store data without error model + - "ErrorModel": store data with error model [6] -- **Temperature Simulator Configuration** +##### Temperature Simulator Configuration - The content of [config.json](DRAMSys/library/resources/configs/thermalsim/config.json) is presented below as an example. +The content of [config.json](DRAMSys/library/resources/configs/thermalsim/config.json) is presented below as an example. ```json { "thermalsimconfig": { "TemperatureScale": "Celsius", "StaticTemperatureDefaultValue": 89, - "ThermalSimPeriod":100, - "ThermalSimUnit":"us", + "ThermalSimPeriod": 100, + "ThermalSimUnit": "us", "PowerInfoFile": "powerInfo.json", "IceServerIp": "127.0.0.1", "IceServerPort": 11880, - "SimPeriodAdjustFactor" : 10, + "SimPeriodAdjustFactor": 10, "NPowStableCyclesToIncreasePeriod": 5, "GenerateTemperatureMap": true, "GeneratePowerMap": true @@ -398,10 +270,10 @@ Below, the sub-configurations are listed and explained. - File containing power related information: devices identifiers, initial power values and power thresholds. - *IceServerIp* (string) - - 3D-Ice server IP address + - 3D-ICE server IP address - *IceServerPort* (unsigned int) - - 3D-Ice server port + - 3D-ICE server port - *SimPeriodAdjustFactor* (unsigned int) - When substantial changes in power occur (i.e., changes that exceed the thresholds), then the simulation period will be divided by this number causing the thermal simulation to be executed more often. @@ -415,74 +287,49 @@ Below, the sub-configurations are listed and explained. - true: generate power map files during thermal simulation - false: do not generate power map files during thermal simulation -- **Memory Specification** - A file with memory specifications. This information comes from datasheets and - measurements, and usually does not change. +##### Memory Specification - The fields inside "mempowerspec" can be written directly as a **double** type. "memoryId" and "memoryType" are **string**. The others are **unsigned int** as it can be checked in the files at . +A file with memory specifications. Timings and currents come from data sheets and measurements, and usually do not change. +The fields inside "mempowerspec" can be written directly as a **double** type. "memoryId" and "memoryType" are **string**. The others are **unsigned int**. -- **Address Mapping** +##### Address Mapping - Currently the CONGEN format is supported. It provides bit-wise granularity. It also provides the possibility of XOR address bits in order to map page misses to different banks and reduce latencies. - There is an optional field called **SOLUTION**. If added it will look for the solution with the field "ID" equals to 0. - Example with "SOLUTION" field at: - Example without "SOLUTION" field at: +DRAMSys uses the **ConGen** [TODO congen source] format for address mappings. It provides bit-wise granularity. It also provides the possibility to XOR address bits in order to map page misses to different banks and reduce latencies. +Used fields: -- **ConGen XML file format** - - This file format is generated by ConGen. - - The format delivers more information than needed for an address mapping. - Optional data (unused): - - - "NAME": Name of the trace file which was used by ConGen -- "COSTS": Number of row misses which this configuration produces while playing the trace. - - - "CONFIG": Gives you information about the ConGen configuration - - Used data: - - - "SOLUTION": (OBS.:Different solutions should be added as json objects inside the "SOLUTION" array) - - "ID": Unique identifier for this solution. It is used to specify a certain solution. - - "XOR": Defines an xor connection of a bank and row bit - - "BYTE_BIT": Address bits that are connected to the byte bits in ascending order - - "COLUMN_BIT": Address bits that are connected to the column bits in ascending order - - "ROW_BIT": Address bits that are connected to the row bits in ascending order - - "BANK_BIT": Address bits that are connected to the bank bits in ascending order - - "BANKGROUP_BIT": Address bits that are connected to the bankgroup bits in ascending order - - "RANK_BIT": Address bits that are connected to the rank bits in ascending order - - "CHANNEL_BIT": Address bits that are connected to the channel bits in ascending order +- "XOR": Defines an XOR connection of a "FIRST" and a "SECOND" bit +- "BYTE_BIT": Address bits that are connected to the byte bits in ascending order +- "COLUMN_BIT": Address bits that are connected to the column bits in ascending order +- "ROW_BIT": Address bits that are connected to the row bits in ascending order +- "BANK_BIT": Address bits that are connected to the bank bits in ascending order +- "BANKGROUP_BIT": Address bits that are connected to the bank group bits in ascending order +- "RANK_BIT": Address bits that are connected to the rank bits in ascending order +- "CHANNEL_BIT": Address bits that are connected to the channel bits in ascending order ```json { "CONGEN": { - "SOLUTION": [ + "XOR": [ { - "ID": 0, - "XOR": [ - { - "FIRST": 13, - "SECOND": 16 - } - ], - "BYTE_BIT": [0,1,2], - "COLUMN_BIT": [3,4,5,6,7,8,9,10,11,12], - "BANK_BIT": [13,14,15], - "ROW_BIT": [16,17,18,19,20,21,22,23,24,25,26,27,28,29] + "FIRST": 13, + "SECOND": 16 } - ] - } + ], + "BYTE_BIT": [0,1,2], + "COLUMN_BIT": [3,4,5,6,7,8,9,10,11,12], + "BANK_BIT": [13,14,15], + "ROW_BIT": [16,17,18,19,20,21,22,23,24,25,26,27,28,29] + } } ``` +##### Memory Controller Configuration -- **Memory Controller Configuration** - - An example follows. +An example follows. ```json { @@ -502,504 +349,49 @@ Below, the sub-configurations are listed and explained. } ``` - - *BankwiseLogic* (boolean) - - true: perform bankwise-refresh [3] and bankwise-powerdown [4] - - false: do not perform bankwise operations - - *OpenPagePolicy* (boolean) - - true: use open page precharge policy - - false: do not use open page precharge policy - - *MaxNrOfTransactions* (unsigned int) - - Maximum number of transactions. + - *PagePolicy* (string) + - "Open" + - "OpenAdaptive" + - "Closed" + - "ClosedAdaptive" - *Scheduler* (string) - "Fifo": first in, first out - - "FifoStrict": out-of-order treatment of queue elements not allowed - - "FrFcfs": first ready first-come-first-served - - "FrFcfsRp": first ready first-come-first-served read priority - - "FrFcfsGrp": first ready first-come-first-served grouper - - "Grp": grouper - - "SMS": will be removed - - *Capsize* (unsigned int) - - Capacitor cell size. - - *PowerDownMode* (enum EPowerDownMode) - - "NoPowerDown": no power down mode (active idle) + - "FrFcfs": first-ready - first-come, first-served + - "FrFcfsGrp": first-ready - first-come, first-served with grouping of read and write requests + - RequestBufferSize (unsigned int) + - buffer size of the scheduler + - *CmdMux* (string) + - "Oldest": oldest payload has the highest priority + - "Strict": read and write commands are issued in the same order as their corresponding requests arrived at the channel controller (can only be combined with "Fifo" scheduler) + - *RespQueue* (string) + - "Strict": outgoing responses are not reordered + - "Reorder": outgoing responses are reordered + - *RefreshPolicy* (string) + - "NoRefresh": refresh disabled + - "Rankwise": all-bank refresh commands, issued per rank + - "Bankwise": per-bank refresh commands (only supported by LPDDR4, Wide I/O 2, GDDR5/5X/6, HBM2) + - *RefreshMode* (unsigned int) [TODO: move refresh mode to memspec] + - special refresh modes of DDR4, 1 ≙ x1, 2 ≙ x2, 4 ≙ x4 + - *RefreshMaxPostponed* + - maximum number of refresh commands that can be postponed (usually 8, with per-bank refresh the number is automatically multiplied by the number of banks) + - *RefreshMaxPulledin* + - maximum number of refresh commands that can be pulled in (usually 8, with per-bank refresh the number is automatically multiplied by the number of banks) + - *PowerDownPolicy* (string) + - "NoPowerDown": power down disabled - "Staggered": staggered power down policy [5] - - "TimeoutPDN": precharge idle - - "TimeoutSREF": self refresh - - *ReadWriteGrouping* (boolean) - - true: enable read writing grouping - - false: disable read writing grouping - - *ReorderBuffer* (boolean) - - true: use reordering buffer - - false: do not use reordering buffer - - *ErrorChipSeed* (unsigned int) - - Seed to initialize the random error generator. - - *ErrorCSVFile* (string) - - CSV file with error injection information. - - *StoreMode* (enum StorageMode) - - "NoStorage": no storage - - "Store": store data without error model - - "ErrorModel": store data with error model [6] - - *ControllerCoreRefDisable* (boolean) - - true: disables refreshes - - false: normal operation (refreshes enabled) - - ControllerCoreRefMode (unsigned int) - - Refresh mode. 1: 1X, 2: 2X, 4: 4X. Refresh period is tREFI, tREFI/2, - tREFI/4, respectively. Number of rows per refresh is affected. Maximum - values for pull-in and postpone are affected. There are different values - of tRFC for each mode that come from memory specifications. - - *ControllerCoreRefForceMaxPostponeBurst* (boolean) - - true: always postpone, resulting in a ControllerCoreRefMaxPostponed burst - - false: normal operation - - *ControllerCoreRefEnablePostpone* (boolean) - - true: enables the postpone refresh feature - - false: normal operation - - *ControllerCoreRefEnablePullIn* (boolean) - - true: enables the pull-in refresh feature - - false: normal operation - - *ControllerCoreRefMaxPostponed* (unsigned int) - - Max AR commands to be postponed. Refresh mode affects this config. - - *ControllerCoreRefMaxPulledIn* (unsigned int) - - Max AR commands to be pulled-in. Refresh mode affects this config. - - *ControllerCoreRGR* (boolean) - - true: enables row granular refresh feature (RGR) - - false: normal operation - - *ControllerCoreRefNumARCmdsIntREFI* (unsigned int) - - Number of AR commands to to be issued in a refresh period tREFI in 1X - mode - - *ControllerCoreRGRRowInc* (unsigned int) - - Row increment for each AR command (selective refresh) - - *ControllerCoreRGRB0* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB1* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB2* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB3* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB4* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB5* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB6* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB7* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB8* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB9* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB10* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB11* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB12* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB13* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB14* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRB15* (boolean) - - true: RGR this bank - - false: skip this bank - - *ControllerCoreRGRtRASBInClkCycles* (unsigned int) - - Timing can be changed to explore optimum row granular refresh (ORGR) - - *ControllerCoreRGRtRRDB_LInClkCycles* (unsigned int) - - Timing can be changed to explore optimum row granular refresh (ORGR) - - *ControllerCoreRGRtRRDB_SInClkCycles* (unsigned int) - - Timing can be changed to explore optimum row granular refresh (ORGR) - - *ControllerCoreRGRtRPBInClkCycles* (unsigned int) - - Timing can be changed to explore optimum row granular refresh (ORGR) - - *ControllerCoreRGRtRCBInClkCycles* (unsigned int) - - Timing can be changed to explore optimum row granular refresh (ORGR) - - *ControllerCoreRGRtFAWBInClkCycles* (unsigned int) - - Timing can be changed to explore optimum row granular refresh (ORGR) +- PowerDownTimeout (unsigned int) + - currently unused - -**Refresh modes** - -The default refresh mode is fixed 1X mode where refresh commands should be -issued with the normal rate, i.e., tREFI. The duration of each refresh command -is the normal refresh cycle time tRFC. In 2X mode Refresh commands are issued -to the DRAM at the double frequency (tREFI/2). In 4X mode Refresh commands are -issued to the DRAM at the quadruple frequency (tREFI/4). There are different -values of tRFC for each mode that come from memory specifications. - -The number of refresh commands in a tREFI is multiplied by two in 2X mode and -by four in 4X mode. The maximum number of refresh commands that can be -postponed or pulled-in is affected in the same manner. The number of rows per -refresh command is divided by two and by four in 2X and 4X mode respectively. - -The nomenclature tREFIx is used to denote the refresh interval which value -changes accordingly to the operation mode, e.g., in 2X mode tREFIx corresponds -to tREFI/2. Similarly tRFCx denotes the refresh cycle time which value changes -accordingly to the operation mode. Nevertheless, the values of tRFCx must be -obtained from memory specifications, estimated, measured, etc. - -**Flexible Refresh** - -The feature can be used together with regular refresh, bankwise refresh and -also with row granular refresh (RGR) non-bankwise and bankwise. Combinations -with all refresh modes are possible. - -**Pull-In Refresh** - -A pull-in starts when a refresh is triggered (in a multiple of tREFIx) and -there are no pending requests in the memory controller's buffer. This can be -done in order to prepare for possible accesses that might happen in the -future. When a burst of REF commands is initiated a REF command is issued (due -to the current tREFIx) followed by one or more REF commands separated in time -by tRFCx. The burst is interrupted if requests arrive, meaning that the -maximum additional delay for a request (considering the worst case scenario in -which a request arrives at the same time a REF is issued) is a refresh cycle -time (tRFCx). - -The advantage of pulling-in refreshes is that they will not be issued in the -near future, i.e., in their actual times multiples of tREFIx, allowing for -more efficient accesses to the memory. - -**Postpone Refresh** - -Similarly, the decision to postpone a refresh is done if by the time of a -refresh due (multiple of tREFIx) there are pending requests on the memory -controller's buffer. Buffered requests may generate row-hits, so postponing -refreshes may be beneficial for it avoids breaking row-hit sequences what -reduces the number of commands (e.g., ACT, PRE) to carry out the memory -accesses and improves the overall system preformance because accesses that are -row-hits consume less time. After postponing refreshes, if there are no -pending requests in the next refresh interval (tREFIx) a burst is issued for -the same number of REF commands postponed plus the actual refresh for that -tREFIx. When the maximum number of postponed refreshes is reached a burst is -issued in the next tREFIx despite the state of the memory controller's buffer -(empty or not). A burst of postponed refreshes cannot be interrupted. - -**The Flexible Refresh FSM** - -![Flexible](DRAMSys/docs/images/flexreffsm.png) - - -- **Trace Setups** - - *clkMhz* (unsigned int) - - Speed of the trace player - - *trace file* - - A pre-recorded file containing memory transactions to be executed by a - trace player. - -Some attributes are self-explanatory while others require some previous -knowhow of memory technologies. - -Resources of the simulator are available inside of the **resources** directory -and its sub-directories. - -```bash -$ cd DRAMSys/library/resources -``` - -A description of the content each directory follows. - -- **resources** - - **configs**: JSON files that specify details of the simulation. - - amconfigs: address mapping configs. - - mcconfigs: memory controller configs. - - memspecs: memory specification files (technology dependent). - - simulator: simulator configs. - - **scripts**: useful tools. - - **simulations**: main configuration files. - - **traces**: pre-recorded trace files that may be used as stimuli in simulations. - - -### Log Collector Script - -Users can profit of running multiple simulations automatically with -[DRAMSylva.sh]. - -Every time you run the script you get a new folder with the name containing -the execution time: dram.sys\_YYYY\_MM\_DD-HH.MM.SS. - -Example on how to run the script: - -```bash -$ cd DRAMSys/library/resources/scripts/DRAMSylva -$ bash DRAMSylva.sh -``` - -To see the generated plots and CSV files: - -```bash -$ nautilus dram.sys_YYYY_MM_DD-HH.MM.SS/build/simulator -``` - -In that folder you will find plots as PDF files and CSV files with the output -data used to generate the plots. The CSV files are: - -- **out.csv** (energy, average power, bandwidth, etc.) - -- **metrics.csv** (DRAMSys metrics like average response latency, memory - utilization and many others) - -Use the command below to find all generated CSV files: - -```bash -$ ls -l dram.sys_YYYY_MM_DD-HH.MM.SS/build/simulator/*.csv -``` - -The generated CSV files can be open in a spreadsheet program for further -manipulation. - -Set the variable **create_comparison_plots** to **yes** in order to get plots -for quick comparison from the CSV files generated. - -```bash -create_comparison_plots="yes" -``` - -Additionally, the database files (\*.tdb) generated will be available and can -be open with the traceAnalyzer tool for debugging, plot generation, etc. - -Set the variable **create_analyzer_plots** to **yes** in order to get plots -generated from the trace databases (the same plots generated by the trace -analyzer tool). **Note**: enabling this option may incur extra time for -database manipulation and plot generation. Depending on the size and amount of -database files it may take long to finish. - -```bash -create_analyzer_plots="yes" -``` - -A DRAMSys simulation is defined by the main configuration file passed to the -simulator. The main configuration file includes other files which contain -specifc configs. -You can change what is going to be simulated by the script by editing it. -There is a list of main configuration files on the top of the script: - -```bash -sim_files=" -ddr3-example.json -ddr3-single-device.json -wideio-example.json -" -``` - -Simulation files are expected to be available (already commited and pushed to -be available after cloning) in the [simulation folder](DRAMSys/library/resources/simulations). - -Set the variable **use_trace_list** to **yes** in order to use all traces in -the **trace list** with all simulation files. Each pair generates a new simulation -with the original trace specified in the simulation file replaced by a trace -from the list. Otherwise it runs a simulation per simulation file using the -trace specified in the simulation file. Files are expected to be available -(already commited and pushed to be available after cloning) in the -[traces folder](DRAMSys/library/resources/traces). - -```bash -use_trace_list="yes" -``` - -```bash -trace_list=" -chstone-bf_32.stl -chstone-jpeg_32.stl -chstone-adpcm_32.stl -mediabench-unepic_32.stl -" -``` - -The script runs one instance of DRAMSys for each of the files in the list. -**The multiple instances run in parallel**. - -If some traces in trace_list are compressed in a tar.gz and require -decompression before execution the option **tgz_traces** can be set to -**yes**. The tarball is specified by the variable **tgz_file** and it is -expected to be available (already commited and pushed to be available after -cloning) in the [trace folder](DRAMSys/library/resources/traces). -[DRAMSylva.sh] will uncompress the tarball extracting the traces before using -them. - -```bash -tgz_traces="yes" -tgz_file="rgr_traces_flauer_ddr4_8b.tar.gz" -``` - -Set the variable **use_json_cfg** to **yes** in order to override sim_files -with new simulation files generated from a JSON description. Otherwise the -simulation files are the ones specified by sim_files. Files are expected to be -available (already commited and pushed to be available after cloning) in -[configs_json]. - -```bash -use_json_cfg="yes" -``` - -All the essential simuation files are auto generated accordingly to each of -the JSON descriptions provided in **json_cfg_list**. Several examples of JSON -configuration files are provided in [configs_json]. - -+ Insert the desired simulation data in one or multiple JSON files following - any of the examples provided, e.g., - [**configs.json**](DRAMSys/library/resources/scripts/DRAMSylva/configs_json/configs.json). - Multiple arrays are allowed and encouraged. Each array corresponds to a full - simulation setup. - -+ Add your JSON files to **json_cfg_list** in [DRAMSylva.sh]. - -```bash -json_cfg_list=" -ref.json -ref_bw.json -" -``` - -+ Commit and push your changes. - -+ Run **[DRAMSylva.sh]** as previously described. All generated files will be - inside the output folder, so it will be possible to keep a perfect track of - all simulations. - -For more information check the documentation inside [DRAMSylva folder]. - -### Trace Generator Script - -The [trace_gen](DRAMSys/library/resources/scripts/trace_gen.py) script for -generating input traces for simple tests is provided. - -Example on how to run the script: - -```bash -$ cd DRAMSys/library/resources/scripts -$ ./trace_gen.py > trace.stl -``` - -Now change your configuration file to use the new generated trace file and run -your simulation. - -The script can be easily changed and provides a way to quickly generate -accesses to all channels, all bank groups, all banks, all rows and all columns -of a memory. - -**Be aware that a trace which covers all rows and all columns may be huge -(several gigabytes) depending on your memory.** - -The defaul values in the script serve as an example. They consider the address -mapping that follows. - -``` -DDR3-SDRAM DIMM Characteristics: -Byte Offset (Y): 8 [0:2] (8-byte-wide memory module, i.e., 64-bit-wide data bus) -> 3 bit -Cols (C): 1K [3:12] (A0 - A9) -> 10 bit -Rows (R): 128K [13:29] (A0 - A16) -> 17 bit -Bank (B): 8 [30:32] (BA0 - BA2) -> 3 bit - -3 3 3 | 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 | 1 1 1 -2 1 0 | 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 | 2 1 0 9 8 7 6 5 4 3 | 2 1 0 -B B B | R R R R R R R R R R R R R R R R R | C C C C C C C C C C | Y Y Y -``` - -The parameters for the address mapping just described are presented below. - -``` -# Channel information. -num_ch = 1 # Number of channels -ch_shift = 34 # Shift to reach the frist bit reserved for channels in the address -ch_mask = 0x1 # Mask for all channel bits in the address - -# Bank group information. -num_bank_groups = 1 # Number of bank groups -bgroup_shift = 33 # Shift to reach the frist bit reserved for bank groups in the address -bgroup_mask = 0x1 # Mask for all bits in the address related to bank groups - -# Bank information -num_banks = 8 # Number of banks -bank_shift = 30 # Shift to reach the frist bit reserved for banks in the address -bank_mask = 0x7 # Mask for all bank bits in the address - -# Row information -num_rows = 128 * 1024 # Number of rows -row_shift = 13 # Shift to reach the frist bit reserved for rows in the address -row_mask = 0x1ffff # Mask for all row bits in the address - -# Column information -num_col = 1 * 1024 # Number of columns -col_shift = 3 # Shift to reach the frist bit reserved for columns in the address -col_mask = 0x3ff # Mask for all column bits in the address - -# Burst length -burst_len = 8 -``` - -Open the script with a text editor and change some parameters to fit your -needs. - -#### DRAMsys Diagrams - -- **TLM Approximately Timed (AT)** - - The figure below shows a cheat sheet with the possibilities that the TLM AT protocol - offers. The annotated references [X,Y] are placed into the source code for a better - orientation. - - ![TLM AT Cheat Sheet](DRAMSys/docs/images/tlmATCheatSheet.png) - - -- **Payload Extension information** - - GenerationExtension is added in TracePlayer and DramExtension is added in Arbiter. - - DramExtension indicates the decoded address (channel, bank, colums, row) and - the socket id (thread) of a payload. It is added in the Arbiter and is sent - to the Controller. - ![Payload Extension information](DRAMSys/docs/images/PayloadExtension.png) - -- **Transaction object with Memory Manager** - - The TracePlayer allocates the memory for the transaction object by calling allocatePayload method. - - The acquire method is called before passing the transaction object in TracePlayer, Arbiter and Controller. - - The release method is called after each component is done with the transaction object. After the final call of release method, the free method of the memory manager is called to free the transaction object. - - ![Payload Memory Manager](DRAMSys/docs/images/PayloadMemoryManager.png) - -- **Architecture of the backend TLM model** - - The below figure shows our custom TLM protocol between the Controller and the Dram. A new transaction enters the Controller with the BEGIN_REQ phase is stored in frontendPEQ. The callback function of the frontendPEQ is called and send the payload to the Scheduler. - - The Scheduler checks the address of payload and the current state to determine proper command (Active, Precharge, Read or Write). Then the ControllerCore sends the payload with the corresponding phase (BEGIN_ACT, BEGIN_PRE, BEGIN_RD or BEGIN_WR) to the Dram by calling nb_transport_fw method. - - The Dram receives the transaction then send back to the Controller by calling nb_transport_bw with appropriate END phase (END_ACT, END_PRE, END_RD or END_WR). - - ![Architecture backend TLM](DRAMSys/docs/images/TransactionPhase.png) - -### DRAMSys Thermal Simulation +### DRAMSys with Thermal Simulation The thermal simulation is performed by a **3D-ICE** [8] server accessed through the network. Therefore users interested in thermal simulation during their DRAMSys simulations need to make sure they have a 3D-ICE server up and -running before starting. For more information about 3D-ICE visit the [official website](http://esl.epfl.ch/3D-ICE). +running before starting. For more information about 3D-ICE visit the [official website](https://www.epfl.ch/labs/esl/open-source-software-projects/3d-ice/). -#### Installing the lastest 3D-ICE version +#### Installing 3D-ICE -[Download](https://www.epfl.ch/labs/esl/open-source-software-projects/3d-ice/3d-ice-download/) the lastest version. Make sure you got version 2.2.6 or greater: - -```bash -$ wget https://www.epfl.ch/labs/esl/wp-content/uploads/2018/12/3d-ice-latest.zip -$ unzip 3d-ice-latest.zip -``` - -Install [SuperLU](http://crd-legacy.lbl.gov/~xiaoye/SuperLU/superlu_5.2.1.tar.gz) dependencies: +Install SuperLU dependencies: ```bash $ sudo apt-get install build-essential git bison flex libblas-dev @@ -1014,8 +406,7 @@ $ cd SuperLU_4.3/ $ cp MAKE_INC/make.linux make.inc ``` -Make sure the SuperLUroot variable in ./make.inc is properly set. For example, -if you downloaded it to your home folder set as follows. +Make sure the *SuperLUroot* variable in *make.inc* is properly set. For example, if you downloaded it to your home folder set as follows: ```bash SuperLUroot = $(HOME)/SuperLU_4.3 @@ -1038,889 +429,56 @@ $ make $ sudo make install ``` -Go to the 3d-ice directory: +[Download](https://www.epfl.ch/labs/esl/open-source-software-projects/3d-ice/3d-ice-download/) the lastest version of 3D-ICE. Make sure you got version 2.2.6 or greater. + +Unzip the archive and go to the 3D-ICE directory: ```bash -$ cd 3d-ice-2.2.6 +$ unzip 3d-ice-latest.zip +$ cd 3d-ice-latest/3d-ice-2.2.6 ``` -Open the file makefile.def and set some variables. Set the correct path to the -SuperLU library you just compiled. +Open the file makefile.def and set some variables. ```bash SLU_MAIN = $(HOME)/SuperLU_$(SLU_VERSION) -``` - -Set the YACC variable to bison-2.4.1: - -```bash YACC = bison-2.4.1 -``` - -Set the following variables with proper values. - -```bash SYSTEMC_ARCH = linux64 -SYSTEMC_MAIN = $(HOME)/systemc-2.3.1a +SYSTEMC_MAIN = $(HOME)/systemc-2.3.3 ``` Compile 3D-ICE with SystemC TLM-2.0 support: ```bash -$ make clean $ make SYSTEMC_WRAPPER=y ``` -Users interested in thermal simulation can also add some extra environment -variables: +Export the environment variable *LIBTHREED_ICE_HOME*: ```bash -# Necessary for thermal simulation -export LIBTHREED_ICE_HOME= -export LIBSUPERLU_HOME= +export LIBTHREED_ICE_HOME=${HOME}/3d-ice-latest/3d-ice-2.2.6 ``` #### Running DRAMSys with Thermal Simulation -Before starting make sure you have a **clean repository** without any previous -automatic generated Makefiles. One way to ensure this is by running the -command below inside your DRAMSys repository, but keep in mind that -**untracked files and directories will be removed** from the repository. +In order to run DRAMSys with thermal simulation you have to rerun CMake and rebuild the project. + +Before starting DRAMSys it is necessary to run the 3D-ICE server passing to it two arguments: a suitable configuration file and a socket port number. And then wait until the server is ready to receive requests. ```bash -$ git clean -fdx -``` - -This feature can be enabled via an environment variable. - -```bash -$ export THERMALSIM=true -$ qtcreator & -``` - -or - -```bash -$ mkdir build -$ cd build -$ export THERMALSIM=true -$ qmake ../DRAMSys/DRAMSys.pro -$ make -``` - -Before starting DRAMSys it is necessary to run the 3D-ICE server passing to it -two arguments: a suitable configuration file and an Internet socket port -number. And then wait until the server is ready to receive requests. - -```bash -$ 3D-ICE-Server +$ cd DRAMSys/DRAMSys/library/resources/configs/thermalsim +$ ~/3d-ice-latest/3d-ice-2.2.6/bin/3D-ICE-Server stack.stk 11880 Preparing stk data ... done ! Preparing thermal data ... done ! Creating socket ... done ! -Waiting for client ... done ! +Waiting for client ... ``` -The IP address and the port number related to the server shall be informed in -DRAMSys' configuration to subsequent use by DRAMSys to access the thermal -simulation server. - -#### Usage Example with Thermal Simulation - -Generate the input trace file for DRAMSys. +In another terminal or terminal tab start DRAMSys with the special thermal simulation config: ```bash -$ cd DRAMSys/tests/error/ -$ ./generateErrorTest.pl > test_error.stl -``` - -Start the 3D-ICE server providing the stack file and the port number. - -```bash -$ cd DRAMSys/library/resources/configs/thermalsim -$ 3D-ICE-Server stack.stk 11880 -``` - -In another terminal or terminal tab start DRAMSys. Here the program's output -is redirected to a file. - -```bash -$ cd build/simulator/ -$ ./DRAMSys > output -``` - -## DRAMSys with gem5 - -Install gem5 by following the instructions on the [gem5 wiki](http://gem5.org/Documentation#Getting_Started). -Optionally, use the scripts from [gem5.TnT] to install gem5, build it, get some benchmark programs and learn more about gem5. - -In order to understand the SystemC coupling with gem5 it is recommended to -read the documentation in the gem5 repository *util/tlm/README* and [12]. - -The main steps for building gem5 and libgem5 follow: - -```bash -scons build/ARM/gem5.opt -``` - -```bash -scons --with-cxx-config --without-python --without-tcmalloc build/ARM/libgem5_opt.so -``` - -For MacOS: - -```bash -scons --with-cxx-config --without-python --without-tcmalloc build/ARM/libgem5_opt.dylib -``` - -In order to use gem5 with DRAMSys set the **GEM5** environment variable to the -path to gem5, for example in the *QtCreator under Projects > Build -& Run > Build Environment*: - -``` -GEM5=/path/to/gem5/ -``` - -Example: - -``` -GEM5=$HOME/gem5_tnt/gem5 -``` - -Optionally, export environment variables in your **~/.bashrc** file or -equivalent and open a new terminal: - -```bash -# In this example gem5 is located at $HOME/gem5_tnt/gem5. -export GEM5=$HOME/gem5_tnt/gem5 - -# Add the folder containing libgem5_opt.so to the list where libraries should -# be searched for. -export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${GEM5}/build/ARM -``` - -The project file [DRAMSys.pro](DRAMSys/DRAMSys.pro) checks whether the -environment variable **GEM5** is defined or not and configures automatically -the corresponding build target **gem5** for QtCreator. - -In order to run gem5 with DRAMSys it is mandatory to run gem5 first without -DRAMSys and generate a configuration file **config.ini** which will be the -value of the second parameter passed to DRAMSys_gem5. - -### DRAMSys with gem5 traffic generator - -In the following we will run a simple example with a gem5 traffic generator: - -``` -Base System Architecture: -+-------------+ +------+ ^ -| System Port | | TGEN | | -+-------+-----+ +--+---+ | - | | | gem5 World - | +----+ | - | | | -+-------v------v-------+ | -| Membus | v -+---------------+------+ External Port (see sc_slave_port.*) - | ^ - +----v----+ | TLM World - | DRAMSys | | (see sc_target.*) - +---------+ v - -``` - -As mentioned before we first need to create a config.ini -that represents the gem5 configuration. We do so by starting gem5 with the -desired python configuration script. - -```bash -cd gem5/utils/tlm/ -../../build/ARM/gem5.opt conf/tlm_slave.py -``` - -**Ignore the message below.** -``` -"fatal: Can't find port handler type 'tlm_slave'" -``` - -The configuration file config.ini will be stored in the **m5out** directory. -Copy this configuration file to the building directory of DRAMSys where the -executable **DRAMSys_gem5** is located: - -``` -dram.sys/build-DRAMSys-Desktop_Qt_5_7_0_clang_64bit-Debug/gem5 -``` - -Also the traffic generatior configuration file (conf/tgen.cfg) must be stored -in a conf directory of this building directory. - -Then the simulation can be started with: - -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json config.ini 1 -``` - -Let the simulation run for some seconds and then stop it with **CTRL-C**. -Observe the output of the simulation in the trace analyzer. The trace database -can be found inside the gem5 directory in the building directory. - -### Gem5 SE mode and DRAMSys - -All essential files for some functional examples are provided. - -Execute a hello world application: - -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/configs/hello.ini 1 -``` - -A **Hello world!** message should be printed to the standard output. - -Execute applications: - -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/Oscar/config.ini 1 -``` - -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/Bubblesort/config.ini 1 -``` - -Wait some minutes for the application to finish. - -The hello application binary was copied from gem5 repository. - -Other applications were obtained with [gem5.TnT]. - -Command template for generating **.ini** configuration files follows: - -```bash -build/ARM/gem5.opt configs/example/se.py \ - -c --mem-size=512MB --mem-channels=1 \ - --caches --l2cache --mem-type=SimpleMemory \ - --cpu-type=TimingSimpleCPU --num-cpu=1 \ - --tlm-memory=transactor -``` - -An overview of the architcture being simulated is presented below: - -![arch](DRAMSys/docs/images/gem5_se_mode_arch.png) - -**Note**: this is a gem5 generated file, therefore DRAMSys is omitted. DRAMSys is -direct connected as external tlm slave. - -**Note**: workaround in se.py required: - -```python -... -if options.tlm_memory: - system.physmem = SimpleMemory() -MemConfig.config_mem(options, system) -... -``` - -A convenience script to execute several applications automatically -[**run.sh**](DRAMSys/gem5/gem5_se/run.sh) is provided . Take a look and learn -from it. - -### [PARSEC] FS Mode - -Full system simulation files for ARM available in [DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB](DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB). - -Choose the benchmark in [parsec_arm_minor_2c_8GB.rcS](DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB/parsec_arm_minor_2c_8GB.rcS). - -Edit the paths in [config.ini](DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB/config.ini). - -All files required to build DRAMSys_gem5 and execute the simulation (gem5 -library, benchmarks, disk image, etc.) can be obtained with [gem5.TnT]. - -Start a simulation. Example: - -```bash -dram.sys/build/gem5$ ./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/rgrsim-gem5-fs.json ../../DRAMSys/gem5/gem5_fs/parsec_arm_minor_2c_8GB/config.ini 1 -``` - -Optionally, open another terminal or tab and connect to gem5. - -```bash -$ telnet localhost 3456 -``` - -Note: the port may vary, gem5 prints it during initialization. Example: - -``` -system.terminal: Listening for connections on port 3456 -``` - -### [PARSEC] SE Mode - - -Binaries and gem5 SE configuration files for ARM available in [DRAMSys/gem5/gem5_se/parsec-arm](DRAMSys/gem5/gem5_se/parsec-arm). - -Use [gem5.TnT] to download parsec. Example: - -Go to your **gem5.TnT** folder. Then go to **arch/arm** folder. Execute the -script *build-parsec-serial.sh*. - -```bash -gem5.TnT/arch/arm$ ./build-parsec-serial.sh -``` - -Extract inputs files. Example: - -```bash -cd $HOME/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs -tar -xf input_simdev.tar -tar -xf input_test.tar -tar -xf input_simmedium.tar -tar -xf input_simsmall.tar -tar -xf input_native.tar -tar -xf input_simlarge.tar - -cd $HOME/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs -tar -xf input_simdev.tar -tar -xf input_test.tar -tar -xf input_native.tar -tar -xf input_simlarge.tar -tar -xf input_simmedium.tar -tar -xf input_simsmall.tar - -cd $HOME/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs -tar -xf input_simdev.tar -tar -xf input_test.tar -tar -xf input_native.tar -tar -xf input_simlarge.tar -tar -xf input_simmedium.tar -tar -xf input_simsmall.tar -``` - -Open [DRAMSys/gem5/gem5_se/parsec-arm/config.ini](DRAMSys/gem5/gem5_se/parsec-arm/config.ini) - -Edit **cmd=**. - -Edit **executable=**. - -Examples (**Replace USER. Use the correct path in your computer.**): - -``` --- canneal -- - -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 5 100 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/10.nets 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 100 300 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/100.nets 2 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 10000 2000 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/100000.nets 32 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 15000 2000 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/200000.nets 64 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal 1 15000 2000 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/kernels/canneal/inputs/400000.nets 128 - -executable=../../DRAMSys/gem5/gem5_se/parsec-arm/canneal/canneal - --- streamcluster -- - -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 2 5 1 10 10 5 none output.txt 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 3 10 3 16 16 10 none output.txt 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 10 20 32 4096 4096 1000 none output.txt 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 10 20 64 8192 8192 1000 none output.txt 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 10 20 128 16384 16384 1000 none output.txt 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster 10 20 128 1000000 200000 5000 none output.txt 1 - -executable=../../DRAMSys/gem5/gem5_se/parsec-arm/streamcluster/streamcluster - --- swaptions -- - -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 1 -sm 5 -nt 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 3 -sm 50 -nt 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 16 -sm 5000 -nt 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 32 -sm 10000 -nt 1 -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions -ns 64 -sm 20000 -nt 1 - -executable=../../DRAMSys/gem5/gem5_se/parsec-arm/swaptions/swaptions - --- fluidanimate -- - -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_5K.fluid out.fluid -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 3 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_15K.fluid out.fluid -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 5 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_35K.fluid out.fluid -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 5 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_100K.fluid out.fluid -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate 1 5 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/fluidanimate/inputs/in_300K.fluid out.fluid - -executable=../../DRAMSys/gem5/gem5_se/parsec-arm/fluidanimate/fluidanimate - --- blackscholes -- - -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_4.txt prices.txt -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_16.txt prices.txt -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_4K.txt prices.txt -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_16K.txt prices.txt -cmd=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes 1 /home/USER/gem5_tnt/benchmarks/parsec-3.0/pkgs/apps/blackscholes/inputs/in_64K.txt prices.txt - -executable=../../DRAMSys/gem5/gem5_se/parsec-arm/blackscholes/blackscholes - -``` - -Start a simulation. Example: - -```bash -dram.sys/build/gem5$ ./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/rgrsim-gem5-se.json ../../DRAMSys/gem5/gem5_se/parsec-arm/config.ini 1 -``` - -### Boot Linux with gem5 and DRAMSys - -The procedure is very similar to the traffic generator example above. - -First we have to generate the config.ini file by starting gem5 with the following configuration: - -```bash -build/ARM/gem5.opt configs/example/fs.py \ - --tlm-memory=transactor --cpu-type=TimingSimpleCPU --num-cpu=1 \ - --mem-type=SimpleMemory --mem-size=512MB --mem-channels=1 --caches \ - --l2cache --machine-type=VExpress_EMM \ - --dtb-filename=vexpress.aarch32.ll_20131205.0-gem5.1cpu.dtb \ - --kernel=vmlinux.aarch32.ll_20131205.0-gem5 \ - --disk-image=linux-aarch32-ael.img -``` - -The config.ini should be copied again to the DRAMSys_gem5 build folder. - -The simconfig should be changed in order to support storage and address offsets: - -``` json -{ - "simconfig": { - "CheckTLM2Protocol": false, - "DatabaseRecording": true, - "Debug": false, - "ECCControllerMode": "Disabled", - "EnableWindowing": false, - "ErrorCSVFile": "", - "ErrorChipSeed": 42, - "NumberOfDevicesOnDIMM": 8, - "NumberOfMemChannels": 1, - "PowerAnalysis": false, - "SimulationName": "ddr3", - "SimulationProgressBar": true, - "ThermalSimulation": false, - "WindowSize": 1000, - - "StoreMode": "Store", - "AddressOffset": 2147483648, - "UseMalloc": true - } -} -``` - -Then start DRAMSys_gem5 with the following command: - -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json config.ini 1 -``` - -For further sophisticated address mappings or scenarios checkout the file DRAMSys/gem5/main.cpp - -#### Boot Linux with gem5 and DRAMSys Example - -**All essential files for a functional example are provided.** - -Unzip the disk image: - -```bash -tar -xaf DRAMSys/gem5/boot_linux/linux-aarch32-ael.img.tar.gz -C DRAMSys/gem5/boot_linux/ -``` - -Execute the example: - -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-boot-linux.json ../../DRAMSys/gem5/configs/boot_linux.ini 1 -``` - -Open a new terminal and connect to gem5: - -```bash -telnet localhost 3456 -``` - -Wait some minutes for the Linux boot process to complete then login. Username is -**root** no password required. - - -### DRAMSys with gem5 Elastic Traces - -For understanding elastic traces and their generation, study the [gem5 -wiki](http://gem5.org/TraceCPU) and the paper [13]. -Some predefined configs are stored [here](DRAMSys/gem5/configs) and the related -python files are stored [here](DRAMSys/gem5/examples). - -This is an example for running an elastic trace: - -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json ../../DRAMSys/gem5/configs/singleElasticTraceReplay.ini 1 -``` - -An overview of the architcture being simulated is presented below: - -![arch](DRAMSys/docs/images/singleElasticTraceReplay.png) - -Note that the address offset is usually zero for elastic traces. - -Another example with L2 cache: - -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json ../../DRAMSys/gem5/configs/singleElasticTraceReplayWithL2.ini 1 -``` - -If two elastic traces should be used run the simulation with the following example: - -``` -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-example.json ../../DRAMSys/gem5/configs/dualElasticTraceReplay.ini 2 -``` - -An overview of the architcture being simulated is presented below: - -![arch](DRAMSys/docs/images/dualElasticTraceReplay.png) - -For more spophisticated setups, even with l2 caches the proper ini file should be created. -If you need help please contact Matthias Jung. - -### DRAMSys + GEM5 Log Collector Scripts - -Users can profit of running multiple **DRAMSys + gem5** simulations -automatically with [gem5ilva.sh] for **gem5 syscall emulation (SE) mode** and -[gem5ilva_fs.sh] for **gem5 full system (FS) mode**. - -Normally you will have to push your changes before running the scripts. This -approach makes it easier to track back what exactly was tested by the scripts. - -The scripts provide variables that tell **git** where to get the source -code from (repository URL), user name to be used (your git account), -**branch** to checkout (your working branch), etc. They are: - -```bash -# Git info. -git_user="$USER" -git_branch="master" -git_url="git.eit.uni-kl.de:ems/astdm/dram.sys.git" -git_url_https="git.eit.uni-kl.de/ems/astdm/dram.sys.git" -``` - -The default values of the variables presented above assume that your git -account uses the same name as your user name in your PC. If that is not the -case, replace the value of the **git_user** variable with your git account -name. Similarly, replace the value of the variable **git_branch** with your -working branch name. There (in your working branch) you can push your changes -and/or new files before executing the scripts. - -Open the script in QtCreator or another text editor of your choice and set the -variables with values that fit your needs. - -Nevertheless, for some cases, you may want to have gem5 essential files out of -the main repository (usually because they are too big to be added to the -repository). - -For those cases uncomment and properly set the variable -**external_inifile_path** in [gem5ilva_fs.sh]. - -This allows you to use a gem5 **config.ini** file external to the repository. -Note, however, that in this case it is up to you to keep track of your -simulation setup. - -**Hint:** -[gem5.TnT] provides convenience scripts -to create gem5 disk images with benchmarking programs embedded. - -### Notes for [Elwetritsch] Users - -Firstly, take a look at [High Performance Computing at the TU Kaiserslautern](https://elwe.rhrk.uni-kl.de/). - -After that, please give yourself a change to learn a bit about [Batch Usage at -RHRK TU Kaiserslautern](https://elwe.rhrk.uni-kl.de/elwetritsch/batch.shtml). -This will probably save you some time later on. - -When using DRAMSys + gem5 on the [Elwetritsch] gem5 can be installed with -convenience scripts provided by [gem5.TnT]. - -[gem5.TnT] also provides convenience scripts -to create gem5 disk images with benchmarking programs embedded. The creation -of disk images for gem5 requires superuser privilege. A solution is to copy -(e.g., using scp or mounting a folder, etc.) the locally created disk images -to [Elwetritsch]. Since there is no compilation involved, copying disk images -created in one machine to another machine should not incur in incompatibility -problems. - -On [gem5.TnT] repository open a [gem5.TnT] config file. - -```bash -$ vim common/defaults.in -``` - -Note the variable **ROOTDIR**. Its default value is *ROOTDIR=$HOME/gem5_tnt*. -That means that [gem5.TnT] will download to *$HOME/gem5_tnt*. - -Currently the space one can use in its Elwetrich *$HOME* folder is limited to -a few tens of GiB. Nevertheless, a directory **/scratch/$USER** is provided -with less space restrictions. - -One can create a symlink pointing to **/scratch/$USER/gem5_tnt**. - -```bash -$ cd $SCRATCH -$ mkdir gem5_tnt -$ cd -$ ln -s /scratch/$USER/gem5_tnt -``` - -On [gem5.TnT] repository use the commands below to get files and build gem5: - -```bash -$ ./get_essential_fs.sh -$ ./get_benchmarks.sh -$ ./get_extra_fs.sh -$ ./build_gem5.sh -``` - -To get DRAMSys installed follow the traditional setup instructions described -in this document. - -For building DRAMSys one can profit from using [DRAMSylva.sh] which loads the -modules that are necessary for building DRAMSys on [Elwetritsch]. - -Regarding dependencies for building DRAMSys and DRAMSys + gem5, the scripts -provided inside the [DRAMSylva folder], when running on [Elwetritsch], will -load the required modules automatically. - -As usual, one may export environment variables from his/her **~/.bashrc** file -on Elwetritch. Some segments extracted from a functional ~/.bashrc file are -presented below to be used as reference. Note that you may have to adapt it, -for example, changing paths to point to the place you installed some of the -libraries. - -```bash -# User specific aliases and functions -# SystemC home -export SYSTEMC_HOME=$HOME/systemc-2.3.1a -# SystemC target architecture -export SYSTEMC_TARGET_ARCH=linux64 - -# Qwt lib -export LIBQWT_HOME=$HOME/qwt-6.1/lib -export LIBQWT_HEADERS=$HOME/qwt-6.1/src -export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+${LD_LIBRARY_PATH}:}$LIBQWT_HOME - -# Python lib -export LIBPYTHON_VERSION="3.6m" -export PYTHON_HOME=/usr/lib64 -export PYTHON_HEADERS=/usr/include/python3.6m - -# Gem5 + DRAMsys -export GEM5=$HOME/gem5_tnt/gem5 - -# Gem5 SystemC TLM-2.0 coupling (see also: $HOME/gem5_tnt/gem5/util/tlm/README) -export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${GEM5}/build/ARM -export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${SYSTEMC_HOME}/lib-$SYSTEMC_TARGET_ARCH -export PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:${SYSTEMC_HOME}/lib-$SYSTEMC_TARGET_ARCH/pkgconfig - -# M5_PATH for gem5 -export M5_PATH=$HOME/gem5_tnt/full_system/arm/aarch-system-20180409 - -# Do not close my terminal when inactive after a timeout -unset TMOUT -``` - -[SLURM](https://slurm.schedmd.com/overview.html) **job scripts** are available -inside the [DRAMSylva folder]. They can be used directly without changes or as -examples on how to start jobs using nodes of the [Elwetritsch] cluster. Of -course, one can create his/her own job scripts. - - -### Coverage Check - -Coverage check is enabled by default and can be disabled with an environment -variable. - -```bash -export DRAMSYS_DISABLE_COVERAGE_CHECK=1 -``` - -### DRAMSys + GEM5 x86 - -Make sure you have built **gem5/build/X86/libgem5_opt.so**. If you build with -[gem5.TnT] you can check if the library exists as follows. - -```bash -$ ls $HOME/gem5_tnt/gem5/build/X86/libgem5_opt.so -``` - -Change your ~/.bashrc. - -```bash -# In this example gem5 is located at $HOME/gem5_tnt/gem5. -export GEM5=$HOME/gem5_tnt/gem5 - -# Add the folder containing libgem5_opt.so to the list where libraries should -# be searched for. -#export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${GEM5}/build/ARM -export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${GEM5}/build/X86 -``` - -After that close QtCreator and all terminals. - -Open a new terminal. - -Change the architecture in [DRAMSys/gem5/gem5.pro](DRAMSys/gem5/gem5.pro). - -``` -gem5_arch = 'X86' -``` - -Delete the file **DRAMSys/DRAMSys.pro.user** from the repository. - -```bash -$ rm DRAMSys/DRAMSys.pro.user -``` - -Open a new QtCreator. - -Build DRAMSys as usual. - -After building, go the the folder where *DRAMSys_gem5* is located. - -Test with a hello world application for X86. - -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/hello-x86/config.ini 1 -``` - -A **Hello world!** message should be printed to the standard output. - -### [MiBench] - -Applications for x86 and configuration files available in [DRAMSys/gem5/gem5_se/MiBench](DRAMSys/gem5/gem5_se/MiBench). - -Examples: - -**Automotive Applications** - -**Basicmath** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/basicmath/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/basicmath/large/config.ini 1 -``` - -**Bitcount** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/bitcount/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/bitcount/large/config.ini 1 -``` - -**Qsort** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/qsort/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/qsort/large/config.ini 1 -``` - -**Susan** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/small/corners/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/large/corners/config.ini 1 - -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/small/edges/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/large/edges/config.ini 1 - -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/small/smoothing/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/automotive/susan/large/smoothing/config.ini 1 -``` - -**Network Applications** - -**Dijkstra** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/network/dijkstra/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/network/dijkstra/large/config.ini 1 -``` - -**Patricia** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/network/patricia/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/network/patricia/large/config.ini 1 -``` - -**Security Applications** - -**Blowfish Encode** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/blowfish/encode/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/blowfish/encode/large/config.ini 1 -``` - -**Blowfish Decode** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/blowfish/decode/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/blowfish/decode/large/config.ini 1 -``` - -**SHA** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/sha/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/security/sha/large/config.ini 1 -``` - -**Telecom Applications** - -**CRC32** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/crc32/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/crc32/large/config.ini 1 -``` - -**FFT** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/fft/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/fft/large/config.ini 1 -``` - -**FFT-INV** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/fft-inv/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/fft-inv/large/config.ini 1 -``` - -**GSM Encode** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/gsm/encode/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/gsm/encode/large/config.ini 1 -``` - -**GSM Decode** -```bash -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/gsm/decode/small/config.ini 1 -./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/ddr3-gem5-se.json ../../DRAMSys/gem5/gem5_se/MiBench/telecomm/gsm/decode/large/config.ini 1 -``` - -Check the folder [DRAMSys/gem5/gem5_se/MiBench](DRAMSys/gem5/gem5_se/MiBench) for all applications and configuration files. - -### More AARCH64 Apps - -Full system simulation files for ARM available in [DRAMSys/gem5/gem5_fs/arm64](DRAMSys/gem5/gem5_fs/arm64). - -You can edit [arm64.rcS](DRAMSys/gem5/gem5_fs/arm64/arm64.rcS) to start an application and call *m5 exit* when it finishes. - -Edit the paths in [config.ini](DRAMSys/gem5/gem5_fs/arm64/config.ini). - -All files required to build DRAMSys_gem5 and execute the simulation (gem5 -library, benchmarks, disk image, etc.) can be obtained with [gem5.TnT]. - -Start a simulation. Example: - -```bash -dram.sys/build/gem5$ ./DRAMSys_gem5 ../../DRAMSys/library/resources/simulations/rgrsim-gem5-fs.json ../../DRAMSys/gem5/gem5_fs/arm64/config.ini 1 -``` - -Optionally, open another terminal or tab and connect to gem5. - -```bash -$ telnet localhost 3456 -``` - -Note: the port may vary, gem5 prints it during initialization. Example: - -``` -system.terminal: Listening for connections on port 3456 +$ cd DRAMSys/build/simulator/ +$ ./DRAMSys ../../DRAMSys/library/resources/simulations/wideio-thermal.json ``` ## References @@ -1971,14 +529,4 @@ Conference on Embedded Computer Systems Architectures Modeling and Simulation [13] Exploring System Performance using Elastic Traces: Fast, Accurate and Portable Radhika Jagtap, Stephan Diestelhorst, Andreas Hansson, Matthias Jung and Norbert Wehn, IEEE International Conference on Embedded Computer Systems -Architectures Modeling and Simulation (SAMOS), 2016, Samos Island, Greece. - -[gem5.TnT]: https://github.com/tukl-msd/gem5.TnT -[gem5ilva.sh]: DRAMSys/library/resources/scripts/DRAMSylva/gem5ilva.sh -[gem5ilva_fs.sh]: DRAMSys/library/resources/scripts/DRAMSylva/gem5ilva_fs.sh -[Elwetritsch]: https://elwe.rhrk.uni-kl.de/ -[DRAMSylva.sh]: DRAMSys/library/resources/scripts/DRAMSylva/DRAMSylva.sh -[DRAMSylva folder]: DRAMSys/library/resources/scripts/DRAMSylva -[configs_json]: DRAMSys/library/resources/scripts/DRAMSylva/configs_json -[MiBench]: http://vhosts.eecs.umich.edu/mibench/ -[PARSEC]: http://parsec.cs.princeton.edu/ +Architectures Modeling and Simulation (SAMOS), 2016, Samos Island, Greece. \ No newline at end of file From 3d3c9c2799f2598e8bf8690b96cca416ef0765d2 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Wed, 1 Jul 2020 16:11:52 +0200 Subject: [PATCH 36/53] Update resources. --- DRAMSys/gem5/README.md | 14 +++++++++-- README.md | 56 ++++++++++-------------------------------- 2 files changed, 25 insertions(+), 45 deletions(-) diff --git a/DRAMSys/gem5/README.md b/DRAMSys/gem5/README.md index d4966a95..31cff150 100644 --- a/DRAMSys/gem5/README.md +++ b/DRAMSys/gem5/README.md @@ -4,7 +4,7 @@ Install gem5 by following the instructions on the [gem5 wiki](http://gem5.org/Do Optionally, use the scripts from [gem5.TnT] to install gem5, build it, get some benchmark programs and learn more about gem5. In order to understand the SystemC coupling with gem5 it is recommended to -read the documentation in the gem5 repository *util/tlm/README* and [12]. +read the documentation in the gem5 repository *util/tlm/README* and [1]. The main steps for building gem5 and libgem5 follow: @@ -393,7 +393,7 @@ Wait some minutes for the Linux boot process to complete then login. Username is ### DRAMSys with gem5 Elastic Traces For understanding elastic traces and their generation, study the [gem5 -wiki](http://gem5.org/TraceCPU) and the paper [13]. +wiki](http://gem5.org/TraceCPU) and the paper [2]. Some predefined configs are stored [here](DRAMSys/gem5/configs) and the related python files are stored [here](DRAMSys/gem5/examples). @@ -670,6 +670,16 @@ Note: the port may vary, gem5 prints it during initialization. Example: system.terminal: Listening for connections on port 3456 ``` +[1] System Simulation with gem5 and SystemC: The Keystone for Full +Interoperability C. Menard, M. Jung, J. Castrillon, N. Wehn. IEEE International +Conference on Embedded Computer Systems Architectures Modeling and Simulation +(SAMOS), July, 2017, Samos Island, Greece. + +[2] Exploring System Performance using Elastic Traces: Fast, Accurate and +Portable Radhika Jagtap, Stephan Diestelhorst, Andreas Hansson, Matthias Jung +and Norbert Wehn, IEEE International Conference on Embedded Computer Systems +Architectures Modeling and Simulation (SAMOS), 2016, Samos Island, Greece. + [gem5.TnT]: https://github.com/tukl-msd/gem5.TnT [gem5ilva.sh]: DRAMSys/library/resources/scripts/DRAMSylva/gem5ilva.sh [gem5ilva_fs.sh]: DRAMSys/library/resources/scripts/DRAMSylva/gem5ilva_fs.sh diff --git a/README.md b/README.md index a820de3c..b82d0749 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,19 @@ DRAMSys4.0 =========== -**DRAMSys4.0** is a flexible DRAM subsystem design space exploration framework that consists of models reflecting the DRAM functionality, power consumption, temperature behavior and retention time errors. +**DRAMSys4.0** [1] [2] [3] is a flexible DRAM subsystem design space exploration framework that consists of models reflecting the DRAM functionality, power consumption, temperature behavior and retention time errors. Pipeline Status: [![pipeline status](https://git.eit.uni-kl.de/ems/astdm/dram.sys/badges/master/pipeline.svg)](https://git.eit.uni-kl.de/ems/astdm/dram.sys/commits/master) - [![Coverage report](https://git.eit.uni-kl.de/ems/astdm/dram.sys/badges/master/coverage.svg?job=coverage)](https://git.eit.uni-kl.de/ems/astdm/dram.sys/commits/master) ## Basic Setup Start using DRAMSys by cloning the repository. -Use the *--recursive* flag to initialize all submodules within the repository, namely **DRAMPower** [2], **SystemC** and **nlohmann json**. +Use the *--recursive* flag to initialize all submodules within the repository, namely **DRAMPower** [4], **SystemC** and **nlohmann json**. ### Dependencies -DRAMSys is based on the SystemC library. SystemC is included as a submodule and will be build automatically with the DRAMSys project. If you want to use an external SystemC version you have to export the environment variables *SYSTEMC_HOME* (SystemC root directory), *SYSTEMC_TARGET_ARCH* (e.g. linux64) and add the path of the library to *LD_LIBRARY_PATH*. +DRAMSys is based on the SystemC library. SystemC is included as a submodule and will be build automatically with the DRAMSys project. If you want to use an external SystemC version you have to export the environment variables `SYSTEMC_HOME` (SystemC root directory), `SYSTEMC_TARGET_ARCH` (e.g. linux64) and add the path of the library to `LD_LIBRARY_PATH`. ### Building DRAMSys DRAMSys uses CMake for the build process, the minimum required version is **CMake 3.10**. @@ -486,47 +485,18 @@ $ ./DRAMSys ../../DRAMSys/library/resources/simulations/wideio-thermal.json [1] TLM Modelling of 3D Stacked Wide I/O DRAM Subsystems, A Virtual Platform for Memory Controller Design Space Exploration M. Jung, C. Weis, N. Wehn, K. Chandrasekar. International Conference on High-Performance and Embedded Architectures and Compilers 2013 (HiPEAC), Workshop on: Rapid Simulation and Performance Evaluation: Methods and Tools (RAPIDO), January, 2013, Berlin. -[2] DRAMPower: Open-source DRAM Power & Energy Estimation Tool -Karthik Chandrasekar, Christian Weis, Yonghui Li, Sven Goossens, Matthias Jung, Omar Naji, Benny Akesson, Norbert Wehn, and Kees Goossens +[2] DRAMSys: A flexible DRAM Subsystem Design Space Exploration Framework +M. Jung, C. Weis, N. Wehn. IPSJ Transactions on System LSI Design Methodology (T-SLDM), October, 2015. + +[3] DRAMSys4.0: A Fast and Cycle-Accurate SystemC/TLM-Based DRAM Simulator +L. Steiner, M. Jung, F. S. Prado, K. Bykov, N. Wehn. International Conference on Embedded Computer Systems: Architectures, Modeling, and Simulation (SAMOS), July, 2020, Samos Island, Greece. + +[4] DRAMPower: Open-source DRAM Power & Energy Estimation Tool +K. Chandrasekar, C. Weis, Y. Li, S. Goossens, M. Jung, O. Naji, B. Akesson, N. Wehn, K. Goossens URL: http://www.drampower.info -[3] Energy Optimization in 3D MPSoCs with Wide-I/O DRAM -M. Sadri, M. Jung, C. Weis, N. Wehn, L. Benini. Conference Design, Automation and Test in Europe (DATE), March, 2014, Dresden, Germany. - -[4] DRAMSys: A flexible DRAM Subsystem Design Space Exploration Framework -M. Jung, C. Weis, N. Wehn. Accepted for publication, IPSJ Transactions on System LSI Design Methodology (T-SLDM), October, 2015. - [5] Optimized Active and Power-Down Mode Refresh Control in 3D-DRAMs -M. Jung, M. Sadri, C. Weis, N. Wehn, L. Benini., VLSI-SoC, October, 2014, Playa del Carmen, Mexico. +M. Jung, M. Sadri, C. Weis, N. Wehn, L. Benini. VLSI-SoC, October, 2014, Playa del Carmen, Mexico. [6] Retention Time Measurements and Modelling of Bit Error Rates of WIDE-I/O DRAM in MPSoCs -C. Weis, M. Jung, P. Ehses, C. Santos, P. Vivet, S. Goossens, M. Koedam, N. Wehn. Accepted for publication, IEEE Conference Design, Automation and Test in Europe (DATE), March, 2015, Grenoble, France - -[7] http://www.uni-kl.de/3d-dram/publications/ - -[8] A Sridhar, A Vincenzi, D Atienza, T Brunschwiler, 3D-ICE: a compact -thermal model for early-stage design of liquid-cooled ICs, IEEE Transactions -on Computers (TC 2013, accepted for publication). - -[9] A Sridhar, A Vincenzi, M Ruggiero, T Brunschwiler, D Atienza, 3D-ICE: Fast -compact transient thermal modeling for 3D-ICs with inter-tier liquid cooling, -Proceedings of the 2010 International Conference on Computer-Aided Design -(ICCAD 2010), San Jose, CA, USA, November 7-11 2010. - -[10] A Sridhar, A Vincenzi, M Ruggiero, T Brunschwiler, D Atienza, Compact -transient thermal model for 3D ICs with liquid cooling via enhanced heat -transfer cavity geometries, Proceedings of the 16th International Workshop on -Thermal Investigations of ICs and Systems (THERMINIC'10), Barcelona, Spain, -6-8 October, 2010. - -[11] http://esl.epfl.ch/3D-ICE - -[12] System Simulation with gem5 and SystemC: The Keystone for Full -Interoperability C. Menard, M. Jung, J. Castrillon, N. Wehn. IEEE International -Conference on Embedded Computer Systems Architectures Modeling and Simulation -(SAMOS), July, 2017, Samos Island, Greece. - -[13] Exploring System Performance using Elastic Traces: Fast, Accurate and -Portable Radhika Jagtap, Stephan Diestelhorst, Andreas Hansson, Matthias Jung -and Norbert Wehn, IEEE International Conference on Embedded Computer Systems -Architectures Modeling and Simulation (SAMOS), 2016, Samos Island, Greece. \ No newline at end of file +C. Weis, M. Jung, P. Ehses, C. Santos, P. Vivet, S. Goossens, M. Koedam, N. Wehn. IEEE Conference Design, Automation and Test in Europe (DATE), March, 2015, Grenoble, France From 92c32fdf15ed16212d0c379080cd297f96bc8a30 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Wed, 1 Jul 2020 16:31:01 +0200 Subject: [PATCH 37/53] Removed old images of readme. --- DRAMSys/docs/doxyCfg.cfg | 1228 ----- DRAMSys/docs/images/PayloadExtension.svg | 2449 --------- DRAMSys/docs/images/PayloadMemoryManager.svg | 4866 ----------------- DRAMSys/docs/images/TransactionPhase.svg | 2038 ------- DRAMSys/docs/images/am_sample1.svg | 1809 ------ DRAMSys/docs/images/am_sample2.svg | 1868 ------- DRAMSys/docs/images/am_wideio_brc.svg | 1734 ------ DRAMSys/docs/images/am_wideio_rbc.svg | 1748 ------ .../images/gem5_se_mode_arch.svg | 0 README.md | 52 +- 10 files changed, 26 insertions(+), 17766 deletions(-) delete mode 100644 DRAMSys/docs/doxyCfg.cfg delete mode 100644 DRAMSys/docs/images/PayloadExtension.svg delete mode 100644 DRAMSys/docs/images/PayloadMemoryManager.svg delete mode 100644 DRAMSys/docs/images/TransactionPhase.svg delete mode 100644 DRAMSys/docs/images/am_sample1.svg delete mode 100644 DRAMSys/docs/images/am_sample2.svg delete mode 100644 DRAMSys/docs/images/am_wideio_brc.svg delete mode 100644 DRAMSys/docs/images/am_wideio_rbc.svg rename DRAMSys/{docs => gem5}/images/gem5_se_mode_arch.svg (100%) diff --git a/DRAMSys/docs/doxyCfg.cfg b/DRAMSys/docs/doxyCfg.cfg deleted file mode 100644 index ea4940db..00000000 --- a/DRAMSys/docs/doxyCfg.cfg +++ /dev/null @@ -1,1228 +0,0 @@ -# Doxyfile 1.4.4 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project -# -# All text after a hash (#) is considered a comment and will be ignored -# The format is: -# TAG = value [value, ...] -# For lists items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (" ") - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded -# by quotes) that should identify the project. - -PROJECT_NAME = DRAMSys - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. -# This could be handy for archiving the generated documentation or -# if some version control system is used. - -PROJECT_NUMBER = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where the generated documentation will be put. -# If a relative path is entered, it will be relative to the location -# where doxygen was started. If left blank the current directory will be used. - -OUTPUT_DIRECTORY = doxygen - -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create -# 4096 sub-directories (in 2 levels) under the output directory of each output -# format and will distribute the generated files over these directories. -# Enabling this option can be useful when feeding doxygen a huge amount of -# source files, where putting all generated files in the same directory would -# otherwise cause performance problems for the file system. - -CREATE_SUBDIRS = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# The default language is English, other supported languages are: -# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, -# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, -# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, -# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, -# Swedish, and Ukrainian. - -OUTPUT_LANGUAGE = English - -# This tag can be used to specify the encoding used in the generated output. -# The encoding is not always determined by the language that is chosen, -# but also whether or not the output is meant for Windows or non-Windows users. -# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES -# forces the Windows encoding (this is the default for the Windows binary), -# whereas setting the tag to NO uses a Unix-style encoding (the default for -# all platforms other than Windows). - -USE_WINDOWS_ENCODING = NO - -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will -# include brief member descriptions after the members that are listed in -# the file and class documentation (similar to JavaDoc). -# Set to NO to disable this. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend -# the brief description of a member or function before the detailed description. -# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator -# that is used to form the text in various listings. Each string -# in this list, if found as the leading text of the brief description, will be -# stripped from the text and the result after processing the whole list, is -# used as the annotated text. Otherwise, the brief description is used as-is. -# If left blank, the following values are used ("$name" is automatically -# replaced with the name of the entity): "The $name class" "The $name widget" -# "The $name file" "is" "provides" "specifies" "contains" -# "represents" "a" "an" "the" - -ABBREVIATE_BRIEF = - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# Doxygen will generate a detailed section even if there is only a brief -# description. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full -# path before files name in the file list and in the header files. If set -# to NO the shortest path that makes the file name unique will be used. - -FULL_PATH_NAMES = YES - -# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag -# can be used to strip a user-defined part of the path. Stripping is -# only done if one of the specified strings matches the left-hand part of -# the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the -# path to strip. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of -# the path mentioned in the documentation of a class, which tells -# the reader which header file to include in order to use a class. -# If left blank only the name of the header file containing the class -# definition is used. Otherwise one should specify the include paths that -# are normally passed to the compiler using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter -# (but less readable) file names. This can be useful is your file systems -# doesn't support long names like on DOS, Mac, or CD-ROM. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen -# will interpret the first line (until the first dot) of a JavaDoc-style -# comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like the Qt-style comments (thus requiring an -# explicit @brief command for a brief description. - -JAVADOC_AUTOBRIEF = YES - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen -# treat a multi-line C++ special comment block (i.e. a block of //! or /// -# comments) as a brief description. This used to be the default behaviour. -# The new default is to treat a multi-line C++ comment block as a detailed -# description. Set this tag to YES if you prefer the old behaviour instead. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the DETAILS_AT_TOP tag is set to YES then Doxygen -# will output the detailed description near the top, like JavaDoc. -# If set to NO, the detailed description appears after the member -# documentation. - -DETAILS_AT_TOP = NO - -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented -# member inherits the documentation from any documented member that it -# re-implements. - -INHERIT_DOCS = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES, then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. - -DISTRIBUTE_GROUP_DOC = NO - -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce -# a new page for each member. If set to NO, the documentation of a member will -# be part of the file/class/namespace that contains it. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. -# Doxygen uses this value to replace tabs by spaces in code fragments. - -TAB_SIZE = 4 - -# This tag can be used to specify a number of aliases that acts -# as commands in the documentation. An alias has the form "name=value". -# For example adding "sideeffect=\par Side Effects:\n" will allow you to -# put the command \sideeffect (or @sideeffect) in the documentation, which -# will result in a user-defined paragraph with heading "Side Effects:". -# You can put \n's in the value part of an alias to insert newlines. - -ALIASES = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -# sources only. Doxygen will then generate output that is more tailored for C. -# For instance, some of the names that are used will be different. The list -# of all members will be omitted, etc. - -OPTIMIZE_OUTPUT_FOR_C = NO - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources -# only. Doxygen will then generate output that is more tailored for Java. -# For instance, namespaces will be presented as packages, qualified scopes -# will look different, etc. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the SUBGROUPING tag to YES (the default) to allow class member groups of -# the same type (for instance a group of public functions) to be put as a -# subgroup of that type (e.g. under the Public Functions section). Set it to -# NO to prevent subgrouping. Alternatively, this can be done per class using -# the \nosubgrouping command. - -SUBGROUPING = YES - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. -# Private class members and static file members will be hidden unless -# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES - -EXTRACT_ALL = YES - -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class -# will be included in the documentation. - -EXTRACT_PRIVATE = YES - -# If the EXTRACT_STATIC tag is set to YES all static members of a file -# will be included in the documentation. - -EXTRACT_STATIC = YES - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) -# defined locally in source files will be included in the documentation. -# If set to NO only classes defined in header files are included. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. When set to YES local -# methods, which are defined in the implementation section but not in -# the interface are included in the documentation. -# If set to NO (the default) only methods in the interface are included. - -EXTRACT_LOCAL_METHODS = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all -# undocumented members of documented classes, files or namespaces. -# If set to NO (the default) these members will be included in the -# various overviews, but no documentation section is generated. -# This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. -# If set to NO (the default) these classes will be included in the various -# overviews. This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all -# friend (class|struct|union) declarations. -# If set to NO (the default) these declarations will be included in the -# documentation. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any -# documentation blocks found inside the body of a function. -# If set to NO (the default) these blocks will be appended to the -# function's detailed documentation block. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation -# that is typed after a \internal command is included. If the tag is set -# to NO (the default) then the documentation will be excluded. -# Set it to YES to include the internal documentation. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate -# file names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen -# will show members with their full class and namespace scopes in the -# documentation. If set to YES the scope will be hidden. - -HIDE_SCOPE_NAMES = NO - -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen -# will put a list of the files that are included by a file in the documentation -# of that file. - -SHOW_INCLUDE_FILES = YES - -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] -# is inserted in the documentation for inline members. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen -# will sort the (detailed) documentation of file and class members -# alphabetically by member name. If set to NO the members will appear in -# declaration order. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in -# declaration order. - -SORT_BRIEF_DOCS = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be -# sorted by fully-qualified names, including namespaces. If set to -# NO (the default), the class list will be sorted only by class name, -# not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the -# alphabetical list. - -SORT_BY_SCOPE_NAME = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or -# disable (NO) the todo list. This list is created by putting \todo -# commands in the documentation. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or -# disable (NO) the test list. This list is created by putting \test -# commands in the documentation. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or -# disable (NO) the bug list. This list is created by putting \bug -# commands in the documentation. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or -# disable (NO) the deprecated list. This list is created by putting -# \deprecated commands in the documentation. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional -# documentation sections, marked by \if sectionname ... \endif. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines -# the initial value of a variable or define consists of for it to appear in -# the documentation. If the initializer consists of more lines than specified -# here it will be hidden. Use a value of 0 to hide initializers completely. -# The appearance of the initializer of individual variables and defines in the -# documentation can be controlled using \showinitializer or \hideinitializer -# command in the documentation regardless of this setting. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated -# at the bottom of the documentation of classes and structs. If set to YES the -# list will mention the files that were used to generate the documentation. - -SHOW_USED_FILES = YES - -# If the sources in your project are distributed over multiple directories -# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy -# in the documentation. The default is YES. - -SHOW_DIRECTORIES = YES - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from the -# version control system). Doxygen will invoke the program by executing (via -# popen()) the command , where is the value of -# the FILE_VERSION_FILTER tag, and is the name of an input file -# provided by doxygen. Whatever the progam writes to standard output -# is used as the file version. See the manual for examples. - -FILE_VERSION_FILTER = - -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated -# by doxygen. Possible values are YES and NO. If left blank NO is used. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated by doxygen. Possible values are YES and NO. If left blank -# NO is used. - -WARNINGS = YES - -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will -# automatically be disabled. - -WARN_IF_UNDOCUMENTED = YES - -# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some -# parameters in a documented function, or documenting parameters that -# don't exist or using markup commands wrongly. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be abled to get warnings for -# functions that are documented, but have no documentation for their parameters -# or return value. If set to NO (the default) doxygen will only warn about -# wrong or incomplete parameter documentation, but not about the absence of -# documentation. - -WARN_NO_PARAMDOC = NO - -# The WARN_FORMAT tag determines the format of the warning messages that -# doxygen can produce. The string should contain the $file, $line, and $text -# tags, which will be replaced by the file and line number from which the -# warning originated and the warning text. Optionally the format may contain -# $version, which will be replaced by the version of the file (if it could -# be obtained via FILE_VERSION_FILTER) - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning -# and error messages should be written. If left blank the output is written -# to stderr. - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag can be used to specify the files and/or directories that contain -# documented source files. You may enter file names like "myfile.cpp" or -# directories like "/usr/src/myproject". Separate the files or directories -# with spaces. - -INPUT = ../ - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank the following patterns are tested: -# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx -# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm - -FILE_PATTERNS = - -# The RECURSIVE tag can be used to turn specify whether or not subdirectories -# should be searched for input files as well. Possible values are YES and NO. -# If left blank NO is used. - -RECURSIVE = YES - -# The EXCLUDE tag can be used to specify files and/or directories that should -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used select whether or not files or -# directories that are symbolic links (a Unix filesystem feature) are excluded -# from the input. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. Note that the wildcards are matched -# against the file with absolute path, so to exclude all test directories -# for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or -# directories that contain example code fragments that are included (see -# the \include command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank all files are included. - -EXAMPLE_PATTERNS = - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude -# commands irrespective of the value of the RECURSIVE tag. -# Possible values are YES and NO. If left blank NO is used. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or -# directories that contain image that are included in the documentation (see -# the \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command , where -# is the value of the INPUT_FILTER tag, and is the name of an -# input file. Doxygen will then use the output that the filter program writes -# to standard output. If FILTER_PATTERNS is specified, this tag will be -# ignored. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: -# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further -# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER -# is applied to all files. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will be used to filter the input files when producing source -# files to browse (i.e. when SOURCE_BROWSER is set to YES). - -FILTER_SOURCE_FILES = NO - -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will -# be generated. Documented entities will be cross-referenced with these sources. -# Note: To get rid of all source code in the generated output, make sure also -# VERBATIM_HEADERS is set to NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body -# of functions and classes directly in the documentation. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct -# doxygen to hide any special comment blocks from generated source code -# fragments. Normal C and C++ comments will always remain visible. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES (the default) -# then for each documented function all documented -# functions referencing it will be listed. - -REFERENCED_BY_RELATION = YES - -# If the REFERENCES_RELATION tag is set to YES (the default) -# then for each documented function all documented entities -# called/used by that function will be listed. - -REFERENCES_RELATION = YES - -# If the USE_HTAGS tag is set to YES then the references to source code -# will point to the HTML generated by the htags(1) tool instead of doxygen -# built-in source browser. The htags tool is part of GNU's global source -# tagging system (see http://www.gnu.org/software/global/global.html). You -# will need version 4.8.6 or higher. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen -# will generate a verbatim copy of the header file for each class for -# which an include is specified. Set to NO to disable this. - -VERBATIM_HEADERS = YES - -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index -# of all compounds will be generated. Enable this if the project -# contains a lot of classes, structs, unions or interfaces. - -ALPHABETICAL_INDEX = YES - -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns -# in which this list will be split (can be a number in the range [1..20]) - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all -# classes will be put under the same header in the alphabetical index. -# The IGNORE_PREFIX tag can be used to specify one or more prefixes that -# should be ignored while generating the index headers. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will -# generate HTML output. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `html' will be used as the default path. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for -# each generated HTML page (for example: .htm,.php,.asp). If it is left blank -# doxygen will generate files with .html extension. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a personal HTML header for -# each generated HTML page. If it is left blank doxygen will generate a -# standard header. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a personal HTML footer for -# each generated HTML page. If it is left blank doxygen will generate a -# standard footer. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading -# style sheet that is used by each HTML page. It can be used to -# fine-tune the look of the HTML output. If the tag is left blank doxygen -# will generate a default style sheet. Note that doxygen will try to copy -# the style sheet file to the HTML output directory, so don't put your own -# stylesheet in the HTML output directory as well, or it will be erased! - -HTML_STYLESHEET = - -# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, -# files or namespaces will be aligned in HTML using tables. If set to -# NO a bullet list will be used. - -HTML_ALIGN_MEMBERS = YES - -# If the GENERATE_HTMLHELP tag is set to YES, additional index files -# will be generated that can be used as input for tools like the -# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) -# of the generated HTML documentation. - -GENERATE_HTMLHELP = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can -# be used to specify the file name of the resulting .chm file. You -# can add a path in front of the file if the result should not be -# written to the html output directory. - -CHM_FILE = - -# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can -# be used to specify the location (absolute path including file name) of -# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run -# the HTML help compiler on the generated index.hhp. - -HHC_LOCATION = - -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag -# controls if a separate .chi index file is generated (YES) or that -# it should be included in the master .chm file (NO). - -GENERATE_CHI = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag -# controls whether a binary table of contents is generated (YES) or a -# normal table of contents (NO) in the .chm file. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members -# to the contents of the HTML help documentation and to the tree view. - -TOC_EXPAND = NO - -# The DISABLE_INDEX tag can be used to turn on/off the condensed index at -# top of each HTML page. The value NO (the default) enables the index and -# the value YES disables it. - -DISABLE_INDEX = NO - -# This tag can be used to set the number of enum values (range [1..20]) -# that doxygen will group on one line in the generated HTML documentation. - -ENUM_VALUES_PER_LINE = 4 - -# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be -# generated containing a tree-like index structure (just like the one that -# is generated for HTML Help). For this to work a browser that supports -# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, -# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are -# probably better off using the HTML help feature. - -GENERATE_TREEVIEW = NO - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be -# used to set the initial width (in pixels) of the frame in which the tree -# is shown. - -TREEVIEW_WIDTH = 250 - -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- - -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will -# generate Latex output. - -GENERATE_LATEX = NO - -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `latex' will be used as the default path. - -LATEX_OUTPUT = latex - -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be -# invoked. If left blank `latex' will be used as the default command name. - -LATEX_CMD_NAME = latex - -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the -# default command name. - -MAKEINDEX_CMD_NAME = makeindex - -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact -# LaTeX documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_LATEX = NO - -# The PAPER_TYPE tag can be used to set the paper type that is used -# by the printer. Possible values are: a4, a4wide, letter, legal and -# executive. If left blank a4wide will be used. - -PAPER_TYPE = a4wide - -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX -# packages that should be included in the LaTeX output. - -EXTRA_PACKAGES = - -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for -# the generated latex document. The header should contain everything until -# the first chapter. If it is left blank doxygen will generate a -# standard header. Notice: only use this tag if you know what you are doing! - -LATEX_HEADER = - -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references -# This makes the output suitable for online browsing using a pdf viewer. - -PDF_HYPERLINKS = NO - -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a -# higher quality PDF documentation. - -USE_PDFLATEX = NO - -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. -# command to the generated LaTeX files. This will instruct LaTeX to keep -# running if errors occur, instead of asking the user for help. -# This option is also used when generating formulas in HTML. - -LATEX_BATCHMODE = NO - -# If LATEX_HIDE_INDICES is set to YES then doxygen will not -# include the index chapters (such as File Index, Compound Index, etc.) -# in the output. - -LATEX_HIDE_INDICES = NO - -#--------------------------------------------------------------------------- -# configuration options related to the RTF output -#--------------------------------------------------------------------------- - -# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output -# The RTF output is optimized for Word 97 and may not look very pretty with -# other RTF readers or editors. - -GENERATE_RTF = NO - -# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `rtf' will be used as the default path. - -RTF_OUTPUT = rtf - -# If the COMPACT_RTF tag is set to YES Doxygen generates more compact -# RTF documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_RTF = NO - -# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated -# will contain hyperlink fields. The RTF file will -# contain links (just like the HTML output) instead of page references. -# This makes the output suitable for online browsing using WORD or other -# programs which support those fields. -# Note: wordpad (write) and others do not support links. - -RTF_HYPERLINKS = NO - -# Load stylesheet definitions from file. Syntax is similar to doxygen's -# config file, i.e. a series of assignments. You only have to provide -# replacements, missing definitions are set to their default value. - -RTF_STYLESHEET_FILE = - -# Set optional variables used in the generation of an rtf document. -# Syntax is similar to doxygen's config file. - -RTF_EXTENSIONS_FILE = - -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- - -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will -# generate man pages - -GENERATE_MAN = NO - -# The MAN_OUTPUT tag is used to specify where the man pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `man' will be used as the default path. - -MAN_OUTPUT = man - -# The MAN_EXTENSION tag determines the extension that is added to -# the generated man pages (default is the subroutine's section .3) - -MAN_EXTENSION = .3 - -# If the MAN_LINKS tag is set to YES and Doxygen generates man output, -# then it will generate one additional man file for each entity -# documented in the real man page(s). These additional files -# only source the real man page, but without them the man command -# would be unable to find the correct page. The default is NO. - -MAN_LINKS = NO - -#--------------------------------------------------------------------------- -# configuration options related to the XML output -#--------------------------------------------------------------------------- - -# If the GENERATE_XML tag is set to YES Doxygen will -# generate an XML file that captures the structure of -# the code including all documentation. - -GENERATE_XML = NO - -# The XML_OUTPUT tag is used to specify where the XML pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `xml' will be used as the default path. - -XML_OUTPUT = xml - -# The XML_SCHEMA tag can be used to specify an XML schema, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_SCHEMA = - -# The XML_DTD tag can be used to specify an XML DTD, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_DTD = - -# If the XML_PROGRAMLISTING tag is set to YES Doxygen will -# dump the program listings (including syntax highlighting -# and cross-referencing information) to the XML output. Note that -# enabling this will significantly increase the size of the XML output. - -XML_PROGRAMLISTING = YES - -#--------------------------------------------------------------------------- -# configuration options for the AutoGen Definitions output -#--------------------------------------------------------------------------- - -# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will -# generate an AutoGen Definitions (see autogen.sf.net) file -# that captures the structure of the code including all -# documentation. Note that this feature is still experimental -# and incomplete at the moment. - -GENERATE_AUTOGEN_DEF = NO - -#--------------------------------------------------------------------------- -# configuration options related to the Perl module output -#--------------------------------------------------------------------------- - -# If the GENERATE_PERLMOD tag is set to YES Doxygen will -# generate a Perl module file that captures the structure of -# the code including all documentation. Note that this -# feature is still experimental and incomplete at the -# moment. - -GENERATE_PERLMOD = NO - -# If the PERLMOD_LATEX tag is set to YES Doxygen will generate -# the necessary Makefile rules, Perl scripts and LaTeX code to be able -# to generate PDF and DVI output from the Perl module output. - -PERLMOD_LATEX = NO - -# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be -# nicely formatted so it can be parsed by a human reader. This is useful -# if you want to understand what is going on. On the other hand, if this -# tag is set to NO the size of the Perl module output will be much smaller -# and Perl will parse it just the same. - -PERLMOD_PRETTY = YES - -# The names of the make variables in the generated doxyrules.make file -# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. -# This is useful so different doxyrules.make files included by the same -# Makefile don't overwrite each other's variables. - -PERLMOD_MAKEVAR_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the preprocessor -#--------------------------------------------------------------------------- - -# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will -# evaluate all C-preprocessor directives found in the sources and include -# files. - -ENABLE_PREPROCESSING = YES - -# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro -# names in the source code. If set to NO (the default) only conditional -# compilation will be performed. Macro expansion can be done in a controlled -# way by setting EXPAND_ONLY_PREDEF to YES. - -MACRO_EXPANSION = NO - -# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES -# then the macro expansion is limited to the macros specified with the -# PREDEFINED and EXPAND_AS_PREDEFINED tags. - -EXPAND_ONLY_PREDEF = NO - -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files -# in the INCLUDE_PATH (see below) will be search if a #include is found. - -SEARCH_INCLUDES = YES - -# The INCLUDE_PATH tag can be used to specify one or more directories that -# contain include files that are not input files but should be processed by -# the preprocessor. - -INCLUDE_PATH = - -# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard -# patterns (like *.h and *.hpp) to filter out the header-files in the -# directories. If left blank, the patterns specified with FILE_PATTERNS will -# be used. - -INCLUDE_FILE_PATTERNS = - -# The PREDEFINED tag can be used to specify one or more macro names that -# are defined before the preprocessor is started (similar to the -D option of -# gcc). The argument of the tag is a list of macros of the form: name -# or name=definition (no spaces). If the definition and the = are -# omitted =1 is assumed. To prevent a macro definition from being -# undefined via #undef or recursively expanded use the := operator -# instead of the = operator. - -PREDEFINED = - -# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then -# this tag can be used to specify a list of macro names that should be expanded. -# The macro definition that is found in the sources will be used. -# Use the PREDEFINED tag if you want to use a different macro definition. - -EXPAND_AS_DEFINED = - -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then -# doxygen's preprocessor will remove all function-like macros that are alone -# on a line, have an all uppercase name, and do not end with a semicolon. Such -# function macros are typically used for boiler-plate code, and will confuse -# the parser if not removed. - -SKIP_FUNCTION_MACROS = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to external references -#--------------------------------------------------------------------------- - -# The TAGFILES option can be used to specify one or more tagfiles. -# Optionally an initial location of the external documentation -# can be added for each tagfile. The format of a tag file without -# this location is as follows: -# TAGFILES = file1 file2 ... -# Adding location for the tag files is done as follows: -# TAGFILES = file1=loc1 "file2 = loc2" ... -# where "loc1" and "loc2" can be relative or absolute paths or -# URLs. If a location is present for each tag, the installdox tool -# does not have to be run to correct the links. -# Note that each tag file must have a unique name -# (where the name does NOT include the path) -# If a tag file is not located in the directory in which doxygen -# is run, you must also specify the path to the tagfile here. - -TAGFILES = - -# When a file name is specified after GENERATE_TAGFILE, doxygen will create -# a tag file that is based on the input files it reads. - -GENERATE_TAGFILE = - -# If the ALLEXTERNALS tag is set to YES all external classes will be listed -# in the class index. If set to NO only the inherited external classes -# will be listed. - -ALLEXTERNALS = NO - -# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed -# in the modules index. If set to NO, only the current project's groups will -# be listed. - -EXTERNAL_GROUPS = YES - -# The PERL_PATH should be the absolute path and name of the perl script -# interpreter (i.e. the result of `which perl'). - -PERL_PATH = /usr/bin/perl - -#--------------------------------------------------------------------------- -# Configuration options related to the dot tool -#--------------------------------------------------------------------------- - -# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will -# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base -# or super classes. Setting the tag to NO turns the diagrams off. Note that -# this option is superseded by the HAVE_DOT option below. This is only a -# fallback. It is recommended to install and use dot, since it yields more -# powerful graphs. - -CLASS_DIAGRAMS = YES - -# If set to YES, the inheritance and collaboration graphs will hide -# inheritance and usage relations if the target is undocumented -# or is not a class. - -HIDE_UNDOC_RELATIONS = YES - -# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is -# available from the path. This tool is part of Graphviz, a graph visualization -# toolkit from AT&T and Lucent Bell Labs. The other options in this section -# have no effect if this option is set to NO (the default) - -HAVE_DOT = NO - -# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect inheritance relations. Setting this tag to YES will force the -# the CLASS_DIAGRAMS tag to NO. - -CLASS_GRAPH = YES - -# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect implementation dependencies (inheritance, containment, and -# class references variables) of the class with other documented classes. - -COLLABORATION_GRAPH = YES - -# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for groups, showing the direct groups dependencies - -GROUP_GRAPHS = YES - -# If the UML_LOOK tag is set to YES doxygen will generate inheritance and -# collaboration diagrams in a style similar to the OMG's Unified Modeling -# Language. - -UML_LOOK = NO - -# If set to YES, the inheritance and collaboration graphs will show the -# relations between templates and their instances. - -TEMPLATE_RELATIONS = NO - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT -# tags are set to YES then doxygen will generate a graph for each documented -# file showing the direct and indirect include dependencies of the file with -# other documented files. - -INCLUDE_GRAPH = YES - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and -# HAVE_DOT tags are set to YES then doxygen will generate a graph for each -# documented header file showing the documented files that directly or -# indirectly include this file. - -INCLUDED_BY_GRAPH = YES - -# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will -# generate a call dependency graph for every global function or class method. -# Note that enabling this option will significantly increase the time of a run. -# So in most cases it will be better to enable call graphs for selected -# functions only using the \callgraph command. - -CALL_GRAPH = NO - -# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen -# will graphical hierarchy of all classes instead of a textual one. - -GRAPHICAL_HIERARCHY = YES - -# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES -# then doxygen will show the dependencies a directory has on other directories -# in a graphical way. The dependency relations are determined by the #include -# relations between the files in the directories. - -DIRECTORY_GRAPH = YES - -# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images -# generated by dot. Possible values are png, jpg, or gif -# If left blank png will be used. - -DOT_IMAGE_FORMAT = png - -# The tag DOT_PATH can be used to specify the path where the dot tool can be -# found. If left blank, it is assumed the dot tool can be found in the path. - -DOT_PATH = - -# The DOTFILE_DIRS tag can be used to specify one or more directories that -# contain dot files that are included in the documentation (see the -# \dotfile command). - -DOTFILE_DIRS = - -# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width -# (in pixels) of the graphs generated by dot. If a graph becomes larger than -# this value, doxygen will try to truncate the graph, so that it fits within -# the specified constraint. Beware that most browsers cannot cope with very -# large images. - -MAX_DOT_GRAPH_WIDTH = 1024 - -# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height -# (in pixels) of the graphs generated by dot. If a graph becomes larger than -# this value, doxygen will try to truncate the graph, so that it fits within -# the specified constraint. Beware that most browsers cannot cope with very -# large images. - -MAX_DOT_GRAPH_HEIGHT = 1024 - -# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the -# graphs generated by dot. A depth value of 3 means that only nodes reachable -# from the root by following a path via at most 3 edges will be shown. Nodes -# that lay further from the root node will be omitted. Note that setting this -# option to 1 or 2 may greatly reduce the computation time needed for large -# code bases. Also note that a graph may be further truncated if the graph's -# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH -# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), -# the graph is not depth-constrained. - -MAX_DOT_GRAPH_DEPTH = 0 - -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent -# background. This is disabled by default, which results in a white background. -# Warning: Depending on the platform used, enabling this option may lead to -# badly anti-aliased labels on the edges of a graph (i.e. they become hard to -# read). - -DOT_TRANSPARENT = NO - -# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output -# files in one run (i.e. multiple -o and -T options on the command line). This -# makes dot run faster, but since only newer versions of dot (>1.8.10) -# support this, this feature is disabled by default. - -DOT_MULTI_TARGETS = NO - -# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will -# generate a legend page explaining the meaning of the various boxes and -# arrows in the dot generated graphs. - -GENERATE_LEGEND = YES - -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will -# remove the intermediate dot files that are used to generate -# the various graphs. - -DOT_CLEANUP = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to the search engine -#--------------------------------------------------------------------------- - -# The SEARCHENGINE tag specifies whether or not a search engine should be -# used. If set to NO the values of all tags below this one will be ignored. - -SEARCHENGINE = NO diff --git a/DRAMSys/docs/images/PayloadExtension.svg b/DRAMSys/docs/images/PayloadExtension.svg deleted file mode 100644 index fd0cb966..00000000 --- a/DRAMSys/docs/images/PayloadExtension.svg +++ /dev/null @@ -1,2449 +0,0 @@ - - - -Trace -file n -Trace -file -1 -Trace Player -1 -Trace Player n -Arbiter -Controller -Scheduler -ControllerCore -Controller -Scheduler -ControllerCore -DRAM -DRAM -GenerationExtension -sc -_ -time -( -timeOfGeneration -) -Generic Payload -Command -Address -Data pointer -Data length -Byte enable pointer -Byte enable length -Streaming width -DMI hint -Response status -Generic Payload -Command -Address -Data pointer -Data length -Byte enable pointer -Byte enable length -Streaming width -DMI hint -Response status -GenerationExtension -sc -_ -time -( -timeOfGeneration -) -DramExtension -Thread -Chanel -Bank -BankGroup -Row -Column -Burstlength -Generic Payload -Command -Address -Data pointer -Data length -Byte enable pointer -Byte enable length -Streaming width -DMI hint -Response status -GenerationExtension -sc -_ -time -( -timeOfGeneration -) -DramExtension -Thread -Chanel -Bank -BankGroup -Row -Column -Burstlength -Generic Payload -Command -Address -Data pointer -Data length -Byte enable pointer -Byte enable length -Streaming width -DMI hint -Response status -GenerationExtension -sc -_ -time -( -timeOfGeneration -) -DramExtension -Thread -Chanel -Bank -BankGroup -Row -Column -Burstlength - \ No newline at end of file diff --git a/DRAMSys/docs/images/PayloadMemoryManager.svg b/DRAMSys/docs/images/PayloadMemoryManager.svg deleted file mode 100644 index fc237c0c..00000000 --- a/DRAMSys/docs/images/PayloadMemoryManager.svg +++ /dev/null @@ -1,4866 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SystemC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SystemC - - - - - - - - - - - - - - - - - - - - - - - - - - - SystemC - - - - - - - - - interrupt - jjjjjjjjjjjjjj - - - - - - - - - - - - - - - - - - - - - - - SystemC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SystemC - - - - - - - - - - - - - - - -