Ignore:
Timestamp:
Dec 12, 2014, 5:06:18 PM (10 years ago)
Author:
alain
Message:

Cosmetic: Improving debug.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_libs/barrier.c

    r431 r468  
    1212
    1313///////////////////////////////////////////////////////////////////////////////////
    14 ///////////////////////////////////////////////////////////////////////////////////
    1514//      Simple barrier access functions
    16 ///////////////////////////////////////////////////////////////////////////////////
    1715///////////////////////////////////////////////////////////////////////////////////
    1816
     
    3230{
    3331
    34 #if GIET_DEBUG_BARRIER
     32#if GIET_DEBUG_USER_BARRIER
    3533unsigned int x;
    3634unsigned int y;
     
    8583    asm volatile ("sync" ::: "memory");
    8684
    87 #if GIET_DEBUG_BARRIER
     85#if GIET_DEBUG_USER_BARRIER
    8886giet_shr_printf("[DEBUG BARRIER] proc[%d,%d,%d] exit barrier_wait()\n", x, y, p );
    8987#endif
     
    176174    barrier->ntasks = ntasks;
    177175   
    178 #if GIET_DEBUG_BARRIER
     176#if GIET_DEBUG_USER_BARRIER
    179177giet_shr_printf("\n[DEBUG BARRIER] sbt_nodes allocation / ntasks = %d\n", ntasks );
    180178#endif
     
    200198                     ( (l == 8) && ((x&0x0F) == 0) && ((y&0x0F) == 0) ) )
    201199                 {
    202                      barrier->node[x][y][l] = remote_malloc( SBT_NODE_SIZE, x, y );
    203 
    204 #if GIET_DEBUG_BARRIER
     200                     barrier->node[x][y][l] = remote_malloc( sizeof(sbt_node_t), x, y );
     201
     202#if GIET_DEBUG_USER_BARRIER
    205203giet_shr_printf("[DEBUG SBT] node[%d][%d][%d] : vaddr = %x\n",
    206204                x, y, l, (unsigned int)barrier->node[x][y][l] );
     
    211209    }
    212210           
    213 #if GIET_DEBUG_BARRIER
     211#if GIET_DEBUG_USER_BARRIER
    214212giet_shr_printf("\n[DEBUG SBT] SBT nodes initialisation\n");
    215213#endif
     
    261259        node->child1   = NULL;
    262260
    263 #if GIET_DEBUG_BARRIER
     261#if GIET_DEBUG_USER_BARRIER
    264262giet_shr_printf("[DEBUG BARRIER] initialize sbt_node[%d][%d][%d] :"
    265263                " arity = %d / child0 = %x / child1 = %x\n",
     
    302300        node->child1   = barrier->node[x1][y1][level-1];
    303301
    304 #if GIET_DEBUG_BARRIER
     302#if GIET_DEBUG_USER_BARRIER
    305303giet_shr_printf("[DEBUG BARRIER] initialize sbt_node[%d][%d][%d] :"
    306304                " arity = %d / child0 = %x / child1 = %x\n",
Note: See TracChangeset for help on using the changeset viewer.