Changeset 549 for trunk/modules/vci_cc_vcache_wrapper/caba/source/src
- Timestamp:
- Oct 17, 2013, 8:50:46 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/vci_cc_vcache_wrapper/caba/source/src/vci_cc_vcache_wrapper.cpp
r532 r549 1155 1155 // cacheability 1156 1156 if ( not (r_mmu_mode.read() & INS_CACHE_MASK) ) cacheable = false; 1157 else cacheable = m_cacheability_table[ m_ireq.addr];1157 else cacheable = m_cacheability_table[(uint64_t)m_ireq.addr]; 1158 1158 } 1159 1159 else // itlb activated … … 2647 2647 2648 2648 if ( not (r_mmu_mode.read() & DATA_CACHE_MASK) ) cacheable = false; 2649 else cacheable = m_cacheability_table[ m_dreq.addr];2649 else cacheable = m_cacheability_table[(uint64_t)m_dreq.addr]; 2650 2650 } 2651 2651 else // dtlb activated
Note: See TracChangeset
for help on using the changeset viewer.