Changeset 295 for branches/v5/vci_mem_cache/caba/source/include
- Timestamp:
- Feb 14, 2013, 4:05:05 PM (12 years ago)
- Location:
- branches/v5
- Files:
-
- 1 added
- 4 deleted
- 4 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/v5/vci_mem_cache/caba/source/include/mem_cache_directory.h
r294 r295 1 #ifndef SOCLIB_CABA_MEM_CACHE_DIRECTORY_ V4_H2 #define SOCLIB_CABA_MEM_CACHE_DIRECTORY_ V4_H1 #ifndef SOCLIB_CABA_MEM_CACHE_DIRECTORY_H 2 #define SOCLIB_CABA_MEM_CACHE_DIRECTORY_H 3 3 4 4 #include <inttypes.h> -
branches/v5/vci_mem_cache/caba/source/include/update_tab.h
r294 r295 1 #ifndef UPDATE_TAB_ V4_H_2 #define UPDATE_TAB_ V4_H_1 #ifndef UPDATE_TAB_H_ 2 #define UPDATE_TAB_H_ 3 3 4 4 #include <inttypes.h> -
branches/v5/vci_mem_cache/caba/source/include/vci_mem_cache.h
r294 r295 1 1 /* -*- c++ -*- 2 * File : vci_mem_cache _v4.h2 * File : vci_mem_cache.h 3 3 * Date : 26/10/2008 4 4 * Copyright : UPMC / LIP6 … … 39 39 */ 40 40 41 #ifndef SOCLIB_CABA_MEM_CACHE_ V4_H42 #define SOCLIB_CABA_MEM_CACHE_ V4_H41 #ifndef SOCLIB_CABA_MEM_CACHE_H 42 #define SOCLIB_CABA_MEM_CACHE_H 43 43 44 44 #include <inttypes.h> … … 55 55 #include "int_tab.h" 56 56 #include "generic_llsc_global_table.h" 57 #include "mem_cache_directory _v4.h"58 #include "xram_transaction _v4.h"59 #include "update_tab _v4.h"57 #include "mem_cache_directory.h" 58 #include "xram_transaction.h" 59 #include "update_tab.h" 60 60 61 61 #define TRANSACTION_TAB_LINES 4 // Number of lines in the transaction tab … … 66 66 67 67 template<typename vci_param> 68 class VciMemCache V468 class VciMemCache 69 69 : public soclib::caba::BaseModule 70 70 { … … 362 362 protected: 363 363 364 SC_HAS_PROCESS(VciMemCache V4);364 SC_HAS_PROCESS(VciMemCache); 365 365 366 366 public: … … 372 372 soclib::caba::VciInitiator<vci_param> p_vci_ixr; 373 373 374 VciMemCache V4(374 VciMemCache( 375 375 sc_module_name name, // Instance Name 376 376 const soclib::common::MappingTable &mtp, // Mapping table for primary requets … … 390 390 bool debug_ok=false); 391 391 392 ~VciMemCache V4();392 ~VciMemCache(); 393 393 394 394 void print_stats(); … … 804 804 sc_signal<int> r_alloc_heap_fsm; 805 805 sc_signal<unsigned> r_alloc_heap_reset_cpt; 806 }; // end class VciMemCache V4806 }; // end class VciMemCache 807 807 808 808 }} -
branches/v5/vci_mem_cache/caba/source/include/xram_transaction.h
r294 r295 1 #ifndef XRAM_TRANSACTION_ V4_H_2 #define XRAM_TRANSACTION_ V4_H_1 #ifndef XRAM_TRANSACTION_H_ 2 #define XRAM_TRANSACTION_H_ 3 3 4 4 #include <inttypes.h>
Note: See TracChangeset
for help on using the changeset viewer.