Changeset 225 for trunk/modules
- Timestamp:
- Mar 30, 2012, 4:04:51 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/vci_cc_vcache_wrapper_v4/caba/source/src/vci_cc_vcache_wrapper_v4.cpp
r221 r225 1 /* -*- c++ -*-C1 /* i*- c++ -*-C 2 2 * File : vci_cc_vcache_wrapper_v4.cpp 3 3 * Copyright (c) UPMC, Lip6, SoC … … 495 495 << " dcache change at cycle " << std::dec << m_cpt_total_cycles 496 496 << " for adresse " << std::hex << addr 497 << " / HIT = " << cache_hit << std::endl;497 << " / HIT = " << std::dec << cache_hit << std::endl; 498 498 m_debug_previous_hit = cache_hit; 499 499 } … … 3612 3612 if ( m_debug_dcache_fsm ) 3613 3613 { 3614 std::cout << " <PROC.DCACHE_MISS_VICTIM> Select a slot:" 3614 std::cout << " <PROC.DCACHE_MISS_VICTIM> Select a slot:" << std::dec 3615 3615 << " / way = " << way 3616 3616 << " / set = " << set … … 3639 3639 if ( m_debug_dcache_fsm ) 3640 3640 { 3641 std::cout << " <PROC.DCACHE_MISS_INVAL> inval line:" 3641 std::cout << " <PROC.DCACHE_MISS_INVAL> inval line:" << std::dec 3642 3642 << " / way = " << way 3643 3643 << " / set = " << set … … 3829 3829 { 3830 3830 std::cout << " <PROC.DCACHE_MISS_UPDT> Write one word:" 3831 << " address = " << r_dcache_vci_paddr.read()3831 << " address = " << std::hex << r_dcache_vci_paddr.read() 3832 3832 << " / data = " << r_vci_rsp_fifo_dcache.read() 3833 << " / way = " << r_dcache_miss_way.read()3833 << " / way = " << std::dec << r_dcache_miss_way.read() 3834 3834 << " / set = " << r_dcache_miss_set.read() 3835 3835 << " / word = " << r_dcache_miss_word.read() << std::endl; … … 4725 4725 std::cout << " <PROC.CLEANUP_DATA_GO> Cleanup request for icache:" << std::hex 4726 4726 << " address = " << (r_dcache_cleanup_line.read()*m_dcache_words*4) 4727 << " / trdid = " << r_cleanup_trdid.read() << std::endl;4727 << " / trdid = " << std::dec << r_cleanup_trdid.read() << std::endl; 4728 4728 } 4729 4729 #endif … … 4744 4744 std::cout << " <PROC.CLEANUP_INS_GO> Cleanup request for dcache:" << std::hex 4745 4745 << " address = " << (r_icache_cleanup_line.read()*m_icache_words*4) 4746 << " / trdid = " << r_cleanup_trdid.read() << std::endl;4746 << " / trdid = " << std::dec << r_cleanup_trdid.read() << std::endl; 4747 4747 } 4748 4748 #endif
Note: See TracChangeset
for help on using the changeset viewer.