RTEMS 4.11
Annotated Report
Sat Oct 9 14:49:36 2010

08003668 <_API_extensions_Run_postdriver>:                            
 *                                                                    
 *  _API_extensions_Run_postdriver                                    
 */                                                                   
                                                                      
void _API_extensions_Run_postdriver( void )                           
{                                                                     
 8003668:	37 9c ff f4 	addi sp,sp,-12                                 
 800366c:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8003670:	5b 8c 00 08 	sw (sp+8),r12                                  
 8003674:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
 8003678:	78 01 08 01 	mvhi r1,0x801                                  
 800367c:	38 21 39 b0 	ori r1,r1,0x39b0                               
 8003680:	28 2b 00 00 	lw r11,(r1+0)                                  
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 8003684:	78 0c 08 01 	mvhi r12,0x801                                 
 8003688:	39 8c 39 b4 	ori r12,r12,0x39b4                             
 800368c:	45 6c 00 05 	be r11,r12,80036a0 <_API_extensions_Run_postdriver+0x38><== NEVER TAKEN
     *  Currently all APIs configure this hook so it is always non-NULL.
     */                                                               
#if defined(FUNCTIONALITY_NOT_CURRENTLY_USED_BY_ANY_API)              
    if ( the_extension->postdriver_hook )                             
#endif                                                                
      (*the_extension->postdriver_hook)();                            
 8003690:	29 61 00 08 	lw r1,(r11+8)                                  
 8003694:	d8 20 00 00 	call r1                                        
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
        !_Chain_Is_tail( &_API_extensions_List, the_node ) ;          
        the_node = the_node->next ) {                                 
 8003698:	29 6b 00 00 	lw r11,(r11+0)                                 
void _API_extensions_Run_postdriver( void )                           
{                                                                     
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
 800369c:	5d 6c ff fd 	bne r11,r12,8003690 <_API_extensions_Run_postdriver+0x28><== NEVER TAKEN
#if defined(FUNCTIONALITY_NOT_CURRENTLY_USED_BY_ANY_API)              
    if ( the_extension->postdriver_hook )                             
#endif                                                                
      (*the_extension->postdriver_hook)();                            
  }                                                                   
}                                                                     
 80036a0:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80036a4:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 80036a8:	2b 8c 00 08 	lw r12,(sp+8)                                  
 80036ac:	37 9c 00 0c 	addi sp,sp,12                                  
 80036b0:	c3 a0 00 00 	ret                                            
                                                                      

080036b4 <_API_extensions_Run_postswitch>: * * _API_extensions_Run_postswitch */ void _API_extensions_Run_postswitch( void ) {
 80036b4:	37 9c ff f0 	addi sp,sp,-16                                 
 80036b8:	5b 8b 00 10 	sw (sp+16),r11                                 
 80036bc:	5b 8c 00 0c 	sw (sp+12),r12                                 
 80036c0:	5b 8d 00 08 	sw (sp+8),r13                                  
 80036c4:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
 80036c8:	78 01 08 01 	mvhi r1,0x801                                  
 80036cc:	38 21 39 b0 	ori r1,r1,0x39b0                               
 80036d0:	28 2b 00 00 	lw r11,(r1+0)                                  
 80036d4:	78 0c 08 01 	mvhi r12,0x801                                 
 80036d8:	39 8c 39 b4 	ori r12,r12,0x39b4                             
 80036dc:	45 6c 00 08 	be r11,r12,80036fc <_API_extensions_Run_postswitch+0x48><== NEVER TAKEN
 80036e0:	78 0d 08 01 	mvhi r13,0x801                                 
 80036e4:	39 ad 39 e8 	ori r13,r13,0x39e8                             
        !_Chain_Is_tail( &_API_extensions_List, the_node ) ;          
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (API_extensions_Control *) the_node;              
                                                                      
    (*the_extension->postswitch_hook)( _Thread_Executing );           
 80036e8:	29 62 00 0c 	lw r2,(r11+12)                                 
 80036ec:	29 a1 00 0c 	lw r1,(r13+12)                                 
 80036f0:	d8 40 00 00 	call r2                                        
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
        !_Chain_Is_tail( &_API_extensions_List, the_node ) ;          
        the_node = the_node->next ) {                                 
 80036f4:	29 6b 00 00 	lw r11,(r11+0)                                 
void _API_extensions_Run_postswitch( void )                           
{                                                                     
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
 80036f8:	5d 6c ff fc 	bne r11,r12,80036e8 <_API_extensions_Run_postswitch+0x34><== NEVER TAKEN
                                                                      
    the_extension = (API_extensions_Control *) the_node;              
                                                                      
    (*the_extension->postswitch_hook)( _Thread_Executing );           
  }                                                                   
}                                                                     
 80036fc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003700:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8003704:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 8003708:	2b 8d 00 08 	lw r13,(sp+8)                                  
 800370c:	37 9c 00 10 	addi sp,sp,16                                  
 8003710:	c3 a0 00 00 	ret                                            
                                                                      

08015320 <_CORE_message_queue_Broadcast>: Objects_Id id __attribute__((unused)), CORE_message_queue_API_mp_support_callout api_message_queue_mp_support __attribute__((unused)), #endif uint32_t *count ) {
 8015320:	37 9c ff e4 	addi sp,sp,-28                                 
 8015324:	5b 8b 00 1c 	sw (sp+28),r11                                 
 8015328:	5b 8c 00 18 	sw (sp+24),r12                                 
 801532c:	5b 8d 00 14 	sw (sp+20),r13                                 
 8015330:	5b 8e 00 10 	sw (sp+16),r14                                 
 8015334:	5b 8f 00 0c 	sw (sp+12),r15                                 
 8015338:	5b 90 00 08 	sw (sp+8),r16                                  
 801533c:	5b 9d 00 04 	sw (sp+4),ra                                   
  Thread_Control          *the_thread;                                
  uint32_t                 number_broadcasted;                        
  Thread_Wait_information *waitp;                                     
                                                                      
  if ( size > the_message_queue->maximum_message_size ) {             
 8015340:	28 24 00 4c 	lw r4,(r1+76)                                  
    Objects_Id                                 id __attribute__((unused)),
    CORE_message_queue_API_mp_support_callout  api_message_queue_mp_support __attribute__((unused)),
  #endif                                                              
  uint32_t                                  *count                    
)                                                                     
{                                                                     
 8015344:	b8 20 68 00 	mv r13,r1                                      
 8015348:	b8 60 60 00 	mv r12,r3                                      
 801534c:	b8 40 78 00 	mv r15,r2                                      
 8015350:	b8 c0 80 00 	mv r16,r6                                      
  Thread_Control          *the_thread;                                
  uint32_t                 number_broadcasted;                        
  Thread_Wait_information *waitp;                                     
                                                                      
  if ( size > the_message_queue->maximum_message_size ) {             
    return CORE_MESSAGE_QUEUE_STATUS_INVALID_SIZE;                    
 8015354:	34 01 00 01 	mvi r1,1                                       
{                                                                     
  Thread_Control          *the_thread;                                
  uint32_t                 number_broadcasted;                        
  Thread_Wait_information *waitp;                                     
                                                                      
  if ( size > the_message_queue->maximum_message_size ) {             
 8015358:	54 64 00 06 	bgu r3,r4,8015370 <_CORE_message_queue_Broadcast+0x50><== NEVER TAKEN
   *  NOTE: This check is critical because threads can block on       
   *        send and receive and this ensures that we are broadcasting
   *        the message to threads waiting to receive -- not to send. 
   */                                                                 
                                                                      
  if ( the_message_queue->number_of_pending_messages != 0 ) {         
 801535c:	29 a1 00 48 	lw r1,(r13+72)                                 
 8015360:	34 0e 00 00 	mvi r14,0                                      
 8015364:	44 20 00 11 	be r1,r0,80153a8 <_CORE_message_queue_Broadcast+0x88>
    *count = 0;                                                       
 8015368:	58 c0 00 00 	sw (r6+0),r0                                   
    return CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL;                      
 801536c:	34 01 00 00 	mvi r1,0                                       
    #endif                                                            
                                                                      
  }                                                                   
  *count = number_broadcasted;                                        
  return CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL;                        
}                                                                     
 8015370:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8015374:	2b 8b 00 1c 	lw r11,(sp+28)                                 
 8015378:	2b 8c 00 18 	lw r12,(sp+24)                                 
 801537c:	2b 8d 00 14 	lw r13,(sp+20)                                 
 8015380:	2b 8e 00 10 	lw r14,(sp+16)                                 
 8015384:	2b 8f 00 0c 	lw r15,(sp+12)                                 
 8015388:	2b 90 00 08 	lw r16,(sp+8)                                  
 801538c:	37 9c 00 1c 	addi sp,sp,28                                  
 8015390:	c3 a0 00 00 	ret                                            
  const void *source,                                                 
  void       *destination,                                            
  size_t      size                                                    
)                                                                     
{                                                                     
  memcpy(destination, source, size);                                  
 8015394:	29 61 00 2c 	lw r1,(r11+44)                                 
   */                                                                 
  number_broadcasted = 0;                                             
  while ((the_thread =                                                
          _Thread_queue_Dequeue(&the_message_queue->Wait_queue))) {   
    waitp = &the_thread->Wait;                                        
    number_broadcasted += 1;                                          
 8015398:	35 ce 00 01 	addi r14,r14,1                                 
 801539c:	f8 00 26 bc 	calli 801ee8c <memcpy>                         
      buffer,                                                         
      waitp->return_argument_second.mutable_object,                   
      size                                                            
    );                                                                
                                                                      
    *(size_t *) the_thread->Wait.return_argument = size;              
 80153a0:	29 61 00 28 	lw r1,(r11+40)                                 
 80153a4:	58 2c 00 00 	sw (r1+0),r12                                  
  /*                                                                  
   *  There must be no pending messages if there is a thread waiting to
   *  receive a message.                                              
   */                                                                 
  number_broadcasted = 0;                                             
  while ((the_thread =                                                
 80153a8:	b9 a0 08 00 	mv r1,r13                                      
 80153ac:	f8 00 0c 4e 	calli 80184e4 <_Thread_queue_Dequeue>          
 80153b0:	b8 20 58 00 	mv r11,r1                                      
 80153b4:	b9 e0 10 00 	mv r2,r15                                      
 80153b8:	b9 80 18 00 	mv r3,r12                                      
 80153bc:	5c 20 ff f6 	bne r1,r0,8015394 <_CORE_message_queue_Broadcast+0x74>
      if ( !_Objects_Is_local_id( the_thread->Object.id ) )           
        (*api_message_queue_mp_support) ( the_thread, id );           
    #endif                                                            
                                                                      
  }                                                                   
  *count = number_broadcasted;                                        
 80153c0:	5a 0e 00 00 	sw (r16+0),r14                                 
  return CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL;                        
 80153c4:	34 01 00 00 	mvi r1,0                                       
 80153c8:	e3 ff ff ea 	bi 8015370 <_CORE_message_queue_Broadcast+0x50>
                                                                      

0800ed10 <_CORE_message_queue_Initialize>: CORE_message_queue_Control *the_message_queue, CORE_message_queue_Attributes *the_message_queue_attributes, uint32_t maximum_pending_messages, size_t maximum_message_size ) {
 800ed10:	37 9c ff e4 	addi sp,sp,-28                                 
 800ed14:	5b 8b 00 1c 	sw (sp+28),r11                                 
 800ed18:	5b 8c 00 18 	sw (sp+24),r12                                 
 800ed1c:	5b 8d 00 14 	sw (sp+20),r13                                 
 800ed20:	5b 8e 00 10 	sw (sp+16),r14                                 
 800ed24:	5b 8f 00 0c 	sw (sp+12),r15                                 
 800ed28:	5b 90 00 08 	sw (sp+8),r16                                  
 800ed2c:	5b 9d 00 04 	sw (sp+4),ra                                   
 800ed30:	b8 20 58 00 	mv r11,r1                                      
  size_t message_buffering_required;                                  
  size_t allocated_message_size;                                      
                                                                      
  the_message_queue->maximum_pending_messages   = maximum_pending_messages;
  the_message_queue->number_of_pending_messages = 0;                  
 800ed34:	58 20 00 48 	sw (r1+72),r0                                  
  the_message_queue->maximum_message_size       = maximum_message_size;
 800ed38:	58 24 00 4c 	sw (r1+76),r4                                  
)                                                                     
{                                                                     
  size_t message_buffering_required;                                  
  size_t allocated_message_size;                                      
                                                                      
  the_message_queue->maximum_pending_messages   = maximum_pending_messages;
 800ed3c:	59 63 00 44 	sw (r11+68),r3                                 
  /*                                                                  
   *  Round size up to multiple of a pointer for chain init and       
   *  check for overflow on adding overhead to each message.          
   */                                                                 
  allocated_message_size = maximum_message_size;                      
  if (allocated_message_size & (sizeof(uint32_t) - 1)) {              
 800ed40:	20 81 00 03 	andi r1,r4,0x3                                 
  CORE_message_queue_Control    *the_message_queue,                   
  CORE_message_queue_Attributes *the_message_queue_attributes,        
  uint32_t                       maximum_pending_messages,            
  size_t                         maximum_message_size                 
)                                                                     
{                                                                     
 800ed44:	b8 60 70 00 	mv r14,r3                                      
 800ed48:	b8 40 80 00 	mv r16,r2                                      
  /*                                                                  
   *  Round size up to multiple of a pointer for chain init and       
   *  check for overflow on adding overhead to each message.          
   */                                                                 
  allocated_message_size = maximum_message_size;                      
  if (allocated_message_size & (sizeof(uint32_t) - 1)) {              
 800ed4c:	b8 80 60 00 	mv r12,r4                                      
 800ed50:	44 20 00 06 	be r1,r0,800ed68 <_CORE_message_queue_Initialize+0x58>
    allocated_message_size += sizeof(uint32_t);                       
 800ed54:	34 8c 00 04 	addi r12,r4,4                                  
    allocated_message_size &= ~(sizeof(uint32_t) - 1);                
 800ed58:	34 01 ff fc 	mvi r1,-4                                      
 800ed5c:	a1 81 60 00 	and r12,r12,r1                                 
  }                                                                   
                                                                      
  if (allocated_message_size < maximum_message_size)                  
    return false;                                                     
 800ed60:	34 0d 00 00 	mvi r13,0                                      
  if (allocated_message_size & (sizeof(uint32_t) - 1)) {              
    allocated_message_size += sizeof(uint32_t);                       
    allocated_message_size &= ~(sizeof(uint32_t) - 1);                
  }                                                                   
                                                                      
  if (allocated_message_size < maximum_message_size)                  
 800ed64:	54 8c 00 1c 	bgu r4,r12,800edd4 <_CORE_message_queue_Initialize+0xc4><== NEVER TAKEN
  /*                                                                  
   *  Calculate how much total memory is required for message buffering and
   *  check for overflow on the multiplication.                       
   */                                                                 
  message_buffering_required = (size_t) maximum_pending_messages *    
       (allocated_message_size + sizeof(CORE_message_queue_Buffer_control));
 800ed68:	35 8f 00 10 	addi r15,r12,16                                
                                                                      
  /*                                                                  
   *  Calculate how much total memory is required for message buffering and
   *  check for overflow on the multiplication.                       
   */                                                                 
  message_buffering_required = (size_t) maximum_pending_messages *    
 800ed6c:	b9 e0 08 00 	mv r1,r15                                      
 800ed70:	b9 c0 10 00 	mv r2,r14                                      
 800ed74:	f8 00 58 eb 	calli 8025120 <__mulsi3>                       
       (allocated_message_size + sizeof(CORE_message_queue_Buffer_control));
                                                                      
  if (message_buffering_required < allocated_message_size)            
    return false;                                                     
 800ed78:	34 0d 00 00 	mvi r13,0                                      
   *  check for overflow on the multiplication.                       
   */                                                                 
  message_buffering_required = (size_t) maximum_pending_messages *    
       (allocated_message_size + sizeof(CORE_message_queue_Buffer_control));
                                                                      
  if (message_buffering_required < allocated_message_size)            
 800ed7c:	55 81 00 16 	bgu r12,r1,800edd4 <_CORE_message_queue_Initialize+0xc4><== NEVER TAKEN
                                                                      
  /*                                                                  
   *  Attempt to allocate the message memory                          
   */                                                                 
  the_message_queue->message_buffers = (CORE_message_queue_Buffer *)  
     _Workspace_Allocate( message_buffering_required );               
 800ed80:	f8 00 0e 4b 	calli 80126ac <_Workspace_Allocate>            
    return false;                                                     
                                                                      
  /*                                                                  
   *  Attempt to allocate the message memory                          
   */                                                                 
  the_message_queue->message_buffers = (CORE_message_queue_Buffer *)  
 800ed84:	59 61 00 5c 	sw (r11+92),r1                                 
     _Workspace_Allocate( message_buffering_required );               
 800ed88:	b8 20 18 00 	mv r3,r1                                       
                                                                      
  if (the_message_queue->message_buffers == 0)                        
 800ed8c:	44 20 00 12 	be r1,r0,800edd4 <_CORE_message_queue_Initialize+0xc4>
                                                                      
  /*                                                                  
   *  Initialize the pool of inactive messages, pending messages,     
   *  and set of waiting threads.                                     
   */                                                                 
  _Chain_Initialize (                                                 
 800ed90:	b8 60 10 00 	mv r2,r3                                       
 800ed94:	35 61 00 60 	addi r1,r11,96                                 
 800ed98:	b9 c0 18 00 	mv r3,r14                                      
 800ed9c:	b9 e0 20 00 	mv r4,r15                                      
 800eda0:	f8 00 17 1c 	calli 8014a10 <_Chain_Initialize>              
    allocated_message_size + sizeof( CORE_message_queue_Buffer_control )
  );                                                                  
                                                                      
  _Chain_Initialize_empty( &the_message_queue->Pending_messages );    
                                                                      
  _Thread_queue_Initialize(                                           
 800eda4:	2a 02 00 00 	lw r2,(r16+0)                                  
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 800eda8:	35 63 00 54 	addi r3,r11,84                                 
    the_message_queue->message_buffers,                               
    (size_t) maximum_pending_messages,                                
    allocated_message_size + sizeof( CORE_message_queue_Buffer_control )
  );                                                                  
                                                                      
  _Chain_Initialize_empty( &the_message_queue->Pending_messages );    
 800edac:	35 61 00 50 	addi r1,r11,80                                 
                                                                      
  _Thread_queue_Initialize(                                           
 800edb0:	64 42 00 01 	cmpei r2,r2,1                                  
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
 800edb4:	59 63 00 50 	sw (r11+80),r3                                 
  the_chain->permanent_null = NULL;                                   
  the_chain->last           = _Chain_Head(the_chain);                 
 800edb8:	59 61 00 58 	sw (r11+88),r1                                 
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
  the_chain->permanent_null = NULL;                                   
 800edbc:	59 60 00 54 	sw (r11+84),r0                                 
 800edc0:	b9 60 08 00 	mv r1,r11                                      
 800edc4:	34 03 00 80 	mvi r3,128                                     
 800edc8:	34 04 00 06 	mvi r4,6                                       
 800edcc:	f8 00 0a 5d 	calli 8011740 <_Thread_queue_Initialize>       
       THREAD_QUEUE_DISCIPLINE_PRIORITY : THREAD_QUEUE_DISCIPLINE_FIFO,
    STATES_WAITING_FOR_MESSAGE,                                       
    CORE_MESSAGE_QUEUE_STATUS_TIMEOUT                                 
  );                                                                  
                                                                      
  return true;                                                        
 800edd0:	34 0d 00 01 	mvi r13,1                                      
}                                                                     
 800edd4:	b9 a0 08 00 	mv r1,r13                                      
 800edd8:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800eddc:	2b 8b 00 1c 	lw r11,(sp+28)                                 
 800ede0:	2b 8c 00 18 	lw r12,(sp+24)                                 
 800ede4:	2b 8d 00 14 	lw r13,(sp+20)                                 
 800ede8:	2b 8e 00 10 	lw r14,(sp+16)                                 
 800edec:	2b 8f 00 0c 	lw r15,(sp+12)                                 
 800edf0:	2b 90 00 08 	lw r16,(sp+8)                                  
 800edf4:	37 9c 00 1c 	addi sp,sp,28                                  
 800edf8:	c3 a0 00 00 	ret                                            
                                                                      

08003a28 <_CORE_mutex_Seize>: Objects_Id _id, bool _wait, Watchdog_Interval _timeout, ISR_Level _level ) {
 8003a28:	37 9c ff e4 	addi sp,sp,-28                                 
 8003a2c:	5b 8b 00 18 	sw (sp+24),r11                                 
 8003a30:	5b 8c 00 14 	sw (sp+20),r12                                 
 8003a34:	5b 8d 00 10 	sw (sp+16),r13                                 
 8003a38:	5b 8e 00 0c 	sw (sp+12),r14                                 
 8003a3c:	5b 8f 00 08 	sw (sp+8),r15                                  
 8003a40:	5b 9d 00 04 	sw (sp+4),ra                                   
  _CORE_mutex_Seize_body( _the_mutex, _id, _wait, _timeout, _level ); 
 8003a44:	78 0b 08 01 	mvhi r11,0x801                                 
 8003a48:	39 6b 38 1c 	ori r11,r11,0x381c                             
 8003a4c:	29 66 00 00 	lw r6,(r11+0)                                  
  Objects_Id           _id,                                           
  bool                 _wait,                                         
  Watchdog_Interval    _timeout,                                      
  ISR_Level            _level                                         
)                                                                     
{                                                                     
 8003a50:	5b 85 00 1c 	sw (sp+28),r5                                  
 8003a54:	b8 20 60 00 	mv r12,r1                                      
 8003a58:	b8 40 78 00 	mv r15,r2                                      
 8003a5c:	b8 80 70 00 	mv r14,r4                                      
 8003a60:	20 6d 00 ff 	andi r13,r3,0xff                               
  _CORE_mutex_Seize_body( _the_mutex, _id, _wait, _timeout, _level ); 
 8003a64:	44 c0 00 02 	be r6,r0,8003a6c <_CORE_mutex_Seize+0x44>      
 8003a68:	5d a0 00 15 	bne r13,r0,8003abc <_CORE_mutex_Seize+0x94>    <== ALWAYS TAKEN
 8003a6c:	b9 80 08 00 	mv r1,r12                                      
 8003a70:	37 82 00 1c 	addi r2,sp,28                                  
 8003a74:	f8 00 15 d5 	calli 80091c8 <_CORE_mutex_Seize_interrupt_trylock>
 8003a78:	44 20 00 09 	be r1,r0,8003a9c <_CORE_mutex_Seize+0x74>      
 8003a7c:	5d a0 00 19 	bne r13,r0,8003ae0 <_CORE_mutex_Seize+0xb8>    
 8003a80:	2b 81 00 1c 	lw r1,(sp+28)                                  
 8003a84:	d0 01 00 00 	wcsr IE,r1                                     
 8003a88:	78 01 08 01 	mvhi r1,0x801                                  
 8003a8c:	38 21 39 e8 	ori r1,r1,0x39e8                               
 8003a90:	28 21 00 0c 	lw r1,(r1+12)                                  
 8003a94:	34 02 00 01 	mvi r2,1                                       
 8003a98:	58 22 00 34 	sw (r1+52),r2                                  
}                                                                     
 8003a9c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003aa0:	2b 8b 00 18 	lw r11,(sp+24)                                 
 8003aa4:	2b 8c 00 14 	lw r12,(sp+20)                                 
 8003aa8:	2b 8d 00 10 	lw r13,(sp+16)                                 
 8003aac:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 8003ab0:	2b 8f 00 08 	lw r15,(sp+8)                                  
 8003ab4:	37 9c 00 1c 	addi sp,sp,28                                  
 8003ab8:	c3 a0 00 00 	ret                                            
  bool                 _wait,                                         
  Watchdog_Interval    _timeout,                                      
  ISR_Level            _level                                         
)                                                                     
{                                                                     
  _CORE_mutex_Seize_body( _the_mutex, _id, _wait, _timeout, _level ); 
 8003abc:	78 01 08 01 	mvhi r1,0x801                                  
 8003ac0:	38 21 39 9c 	ori r1,r1,0x399c                               
 8003ac4:	28 21 00 00 	lw r1,(r1+0)                                   
 8003ac8:	34 02 00 01 	mvi r2,1                                       
 8003acc:	50 41 ff e8 	bgeu r2,r1,8003a6c <_CORE_mutex_Seize+0x44>    
 8003ad0:	34 01 00 00 	mvi r1,0                                       
 8003ad4:	34 02 00 00 	mvi r2,0                                       
 8003ad8:	34 03 00 12 	mvi r3,18                                      
 8003adc:	f8 00 02 32 	calli 80043a4 <_Internal_error_Occurred>       
 8003ae0:	78 01 08 01 	mvhi r1,0x801                                  
 8003ae4:	29 62 00 00 	lw r2,(r11+0)                                  
 8003ae8:	38 21 39 e8 	ori r1,r1,0x39e8                               
 8003aec:	28 21 00 0c 	lw r1,(r1+12)                                  
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_queue_Enter_critical_section (      
  Thread_queue_Control *the_thread_queue                              
)                                                                     
{                                                                     
  the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED;
 8003af0:	34 03 00 01 	mvi r3,1                                       
 8003af4:	59 83 00 30 	sw (r12+48),r3                                 
 8003af8:	34 42 00 01 	addi r2,r2,1                                   
 8003afc:	58 2c 00 44 	sw (r1+68),r12                                 
 8003b00:	58 2f 00 20 	sw (r1+32),r15                                 
 8003b04:	59 62 00 00 	sw (r11+0),r2                                  
 8003b08:	2b 81 00 1c 	lw r1,(sp+28)                                  
 8003b0c:	d0 01 00 00 	wcsr IE,r1                                     
 8003b10:	b9 80 08 00 	mv r1,r12                                      
 8003b14:	b9 c0 10 00 	mv r2,r14                                      
 8003b18:	fb ff ff a3 	calli 80039a4 <_CORE_mutex_Seize_interrupt_blocking>
}                                                                     
 8003b1c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003b20:	2b 8b 00 18 	lw r11,(sp+24)                                 
 8003b24:	2b 8c 00 14 	lw r12,(sp+20)                                 
 8003b28:	2b 8d 00 10 	lw r13,(sp+16)                                 
 8003b2c:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 8003b30:	2b 8f 00 08 	lw r15,(sp+8)                                  
 8003b34:	37 9c 00 1c 	addi sp,sp,28                                  
 8003b38:	c3 a0 00 00 	ret                                            
                                                                      

080091c8 <_CORE_mutex_Seize_interrupt_trylock>: #if defined(__RTEMS_DO_NOT_INLINE_CORE_MUTEX_SEIZE__) int _CORE_mutex_Seize_interrupt_trylock( CORE_mutex_Control *the_mutex, ISR_Level *level_p ) {
 80091c8:	37 9c ff fc 	addi sp,sp,-4                                  
 80091cc:	5b 9d 00 04 	sw (sp+4),ra                                   
{                                                                     
  Thread_Control   *executing;                                        
                                                                      
  /* disabled when you get here */                                    
                                                                      
  executing = _Thread_Executing;                                      
 80091d0:	78 04 08 01 	mvhi r4,0x801                                  
 80091d4:	38 84 39 e8 	ori r4,r4,0x39e8                               
 80091d8:	28 84 00 0c 	lw r4,(r4+12)                                  
 80091dc:	b8 20 18 00 	mv r3,r1                                       
  executing->Wait.return_code = CORE_MUTEX_STATUS_SUCCESSFUL;         
  if ( !_CORE_mutex_Is_locked( the_mutex ) ) {                        
 80091e0:	28 21 00 50 	lw r1,(r1+80)                                  
  Thread_Control   *executing;                                        
                                                                      
  /* disabled when you get here */                                    
                                                                      
  executing = _Thread_Executing;                                      
  executing->Wait.return_code = CORE_MUTEX_STATUS_SUCCESSFUL;         
 80091e4:	58 80 00 34 	sw (r4+52),r0                                  
  if ( !_CORE_mutex_Is_locked( the_mutex ) ) {                        
 80091e8:	44 20 00 12 	be r1,r0,8009230 <_CORE_mutex_Seize_interrupt_trylock+0x68>
    the_mutex->lock       = CORE_MUTEX_LOCKED;                        
    the_mutex->holder     = executing;                                
    the_mutex->holder_id  = executing->Object.id;                     
 80091ec:	28 86 00 08 	lw r6,(r4+8)                                   
  return _CORE_mutex_Seize_interrupt_trylock_body( the_mutex, level_p );
}                                                                     
 80091f0:	28 61 00 48 	lw r1,(r3+72)                                  
    the_mutex->nest_count = 1;                                        
 80091f4:	34 05 00 01 	mvi r5,1                                       
  executing = _Thread_Executing;                                      
  executing->Wait.return_code = CORE_MUTEX_STATUS_SUCCESSFUL;         
  if ( !_CORE_mutex_Is_locked( the_mutex ) ) {                        
    the_mutex->lock       = CORE_MUTEX_LOCKED;                        
    the_mutex->holder     = executing;                                
    the_mutex->holder_id  = executing->Object.id;                     
 80091f8:	58 66 00 60 	sw (r3+96),r6                                  
  /* disabled when you get here */                                    
                                                                      
  executing = _Thread_Executing;                                      
  executing->Wait.return_code = CORE_MUTEX_STATUS_SUCCESSFUL;         
  if ( !_CORE_mutex_Is_locked( the_mutex ) ) {                        
    the_mutex->lock       = CORE_MUTEX_LOCKED;                        
 80091fc:	58 60 00 50 	sw (r3+80),r0                                  
    the_mutex->holder     = executing;                                
 8009200:	58 64 00 5c 	sw (r3+92),r4                                  
    the_mutex->holder_id  = executing->Object.id;                     
    the_mutex->nest_count = 1;                                        
 8009204:	58 65 00 54 	sw (r3+84),r5                                  
    if ( _CORE_mutex_Is_inherit_priority( &the_mutex->Attributes ) || 
 8009208:	34 06 00 02 	mvi r6,2                                       
 800920c:	44 26 00 15 	be r1,r6,8009260 <_CORE_mutex_Seize_interrupt_trylock+0x98>
 8009210:	34 06 00 03 	mvi r6,3                                       
 8009214:	44 26 00 17 	be r1,r6,8009270 <_CORE_mutex_Seize_interrupt_trylock+0xa8>
                                                                      
      executing->resource_count++;                                    
    }                                                                 
                                                                      
    if ( !_CORE_mutex_Is_priority_ceiling( &the_mutex->Attributes ) ) {
      _ISR_Enable( *level_p );                                        
 8009218:	28 41 00 00 	lw r1,(r2+0)                                   
 800921c:	d0 01 00 00 	wcsr IE,r1                                     
      return 0;                                                       
 8009220:	34 01 00 00 	mvi r1,0                                       
 8009224:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8009228:	37 9c 00 04 	addi sp,sp,4                                   
 800922c:	c3 a0 00 00 	ret                                            
  /*                                                                  
   *  At this point, we know the mutex was not available.  If this thread
   *  is the thread that has locked the mutex, let's see if we are allowed
   *  to nest access.                                                 
   */                                                                 
  if ( _Thread_Is_executing( the_mutex->holder ) ) {                  
 8009230:	28 65 00 5c 	lw r5,(r3+92)                                  
                                                                      
  /*                                                                  
   *  The mutex is not available and the caller must deal with the possibility
   *  of blocking.                                                    
   */                                                                 
  return 1;                                                           
 8009234:	34 01 00 01 	mvi r1,1                                       
  /*                                                                  
   *  At this point, we know the mutex was not available.  If this thread
   *  is the thread that has locked the mutex, let's see if we are allowed
   *  to nest access.                                                 
   */                                                                 
  if ( _Thread_Is_executing( the_mutex->holder ) ) {                  
 8009238:	5c 85 ff fb 	bne r4,r5,8009224 <_CORE_mutex_Seize_interrupt_trylock+0x5c>
    switch ( the_mutex->Attributes.lock_nesting_behavior ) {          
 800923c:	28 65 00 40 	lw r5,(r3+64)                                  
 8009240:	44 a0 00 30 	be r5,r0,8009300 <_CORE_mutex_Seize_interrupt_trylock+0x138>
 8009244:	5c a1 ff f8 	bne r5,r1,8009224 <_CORE_mutex_Seize_interrupt_trylock+0x5c><== ALWAYS TAKEN
      case CORE_MUTEX_NESTING_ACQUIRES:                               
        the_mutex->nest_count++;                                      
        _ISR_Enable( *level_p );                                      
        return 0;                                                     
      case CORE_MUTEX_NESTING_IS_ERROR:                               
        executing->Wait.return_code = CORE_MUTEX_STATUS_NESTING_NOT_ALLOWED;
 8009248:	34 01 00 02 	mvi r1,2                                       <== NOT EXECUTED
 800924c:	58 81 00 34 	sw (r4+52),r1                                  <== NOT EXECUTED
        _ISR_Enable( *level_p );                                      
 8009250:	28 41 00 00 	lw r1,(r2+0)                                   <== NOT EXECUTED
 8009254:	d0 01 00 00 	wcsr IE,r1                                     <== NOT EXECUTED
        return 0;                                                     
 8009258:	34 01 00 00 	mvi r1,0                                       <== NOT EXECUTED
 800925c:	e3 ff ff f2 	bi 8009224 <_CORE_mutex_Seize_interrupt_trylock+0x5c><== NOT EXECUTED
       _Chain_Prepend_unprotected( &executing->lock_mutex,            
                                   &the_mutex->queue.lock_queue );    
       the_mutex->queue.priority_before = executing->current_priority;
#endif                                                                
                                                                      
      executing->resource_count++;                                    
 8009260:	28 81 00 1c 	lw r1,(r4+28)                                  
 8009264:	34 21 00 01 	addi r1,r1,1                                   
 8009268:	58 81 00 1c 	sw (r4+28),r1                                  
 800926c:	e3 ff ff eb 	bi 8009218 <_CORE_mutex_Seize_interrupt_trylock+0x50>
 8009270:	28 87 00 1c 	lw r7,(r4+28)                                  
       */                                                             
    {                                                                 
      Priority_Control  ceiling;                                      
      Priority_Control  current;                                      
                                                                      
      ceiling = the_mutex->Attributes.priority_ceiling;               
 8009274:	28 66 00 4c 	lw r6,(r3+76)                                  
      current = executing->current_priority;                          
 8009278:	28 81 00 14 	lw r1,(r4+20)                                  
       _Chain_Prepend_unprotected( &executing->lock_mutex,            
                                   &the_mutex->queue.lock_queue );    
       the_mutex->queue.priority_before = executing->current_priority;
#endif                                                                
                                                                      
      executing->resource_count++;                                    
 800927c:	34 e8 00 01 	addi r8,r7,1                                   
 8009280:	58 88 00 1c 	sw (r4+28),r8                                  
      Priority_Control  ceiling;                                      
      Priority_Control  current;                                      
                                                                      
      ceiling = the_mutex->Attributes.priority_ceiling;               
      current = executing->current_priority;                          
      if ( current == ceiling ) {                                     
 8009284:	44 c1 00 1b 	be r6,r1,80092f0 <_CORE_mutex_Seize_interrupt_trylock+0x128>
        _ISR_Enable( *level_p );                                      
        return 0;                                                     
      }                                                               
                                                                      
      if ( current > ceiling ) {                                      
 8009288:	50 c1 00 0f 	bgeu r6,r1,80092c4 <_CORE_mutex_Seize_interrupt_trylock+0xfc>
	rtems_fatal_error_occurred( 99 );                                    
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  _Thread_Dispatch_disable_level += 1;                                
 800928c:	78 01 08 01 	mvhi r1,0x801                                  
 8009290:	38 21 38 1c 	ori r1,r1,0x381c                               
 8009294:	28 24 00 00 	lw r4,(r1+0)                                   
 8009298:	34 84 00 01 	addi r4,r4,1                                   
 800929c:	58 24 00 00 	sw (r1+0),r4                                   
        _Thread_Disable_dispatch();                                   
        _ISR_Enable( *level_p );                                      
 80092a0:	28 41 00 00 	lw r1,(r2+0)                                   
 80092a4:	d0 01 00 00 	wcsr IE,r1                                     
        _Thread_Change_priority(                                      
 80092a8:	28 61 00 5c 	lw r1,(r3+92)                                  
 80092ac:	28 62 00 4c 	lw r2,(r3+76)                                  
 80092b0:	34 03 00 00 	mvi r3,0                                       
 80092b4:	fb ff ee fd 	calli 8004ea8 <_Thread_Change_priority>        
          the_mutex->holder,                                          
          the_mutex->Attributes.priority_ceiling,                     
         false                                                        
        );                                                            
        _Thread_Enable_dispatch();                                    
 80092b8:	fb ff f0 7c 	calli 80054a8 <_Thread_Enable_dispatch>        
        return 0;                                                     
 80092bc:	34 01 00 00 	mvi r1,0                                       
 80092c0:	e3 ff ff d9 	bi 8009224 <_CORE_mutex_Seize_interrupt_trylock+0x5c>
      }                                                               
      /* if ( current < ceiling ) */ {                                
        executing->Wait.return_code = CORE_MUTEX_STATUS_CEILING_VIOLATED;
 80092c4:	34 01 00 06 	mvi r1,6                                       
 80092c8:	58 81 00 34 	sw (r4+52),r1                                  
        the_mutex->lock       = CORE_MUTEX_UNLOCKED;                  
 80092cc:	58 65 00 50 	sw (r3+80),r5                                  
        the_mutex->nest_count = 0;     /* undo locking above */       
 80092d0:	58 60 00 54 	sw (r3+84),r0                                  
        executing->resource_count--;   /* undo locking above */       
 80092d4:	58 87 00 1c 	sw (r4+28),r7                                  
        _ISR_Enable( *level_p );                                      
 80092d8:	28 41 00 00 	lw r1,(r2+0)                                   
 80092dc:	d0 01 00 00 	wcsr IE,r1                                     
        return 0;                                                     
 80092e0:	34 01 00 00 	mvi r1,0                                       
 80092e4:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80092e8:	37 9c 00 04 	addi sp,sp,4                                   
 80092ec:	c3 a0 00 00 	ret                                            
      Priority_Control  current;                                      
                                                                      
      ceiling = the_mutex->Attributes.priority_ceiling;               
      current = executing->current_priority;                          
      if ( current == ceiling ) {                                     
        _ISR_Enable( *level_p );                                      
 80092f0:	28 41 00 00 	lw r1,(r2+0)                                   
 80092f4:	d0 01 00 00 	wcsr IE,r1                                     
        return 0;                                                     
 80092f8:	34 01 00 00 	mvi r1,0                                       
 80092fc:	e3 ff ff ca 	bi 8009224 <_CORE_mutex_Seize_interrupt_trylock+0x5c>
   *  to nest access.                                                 
   */                                                                 
  if ( _Thread_Is_executing( the_mutex->holder ) ) {                  
    switch ( the_mutex->Attributes.lock_nesting_behavior ) {          
      case CORE_MUTEX_NESTING_ACQUIRES:                               
        the_mutex->nest_count++;                                      
 8009300:	28 61 00 54 	lw r1,(r3+84)                                  
 8009304:	34 21 00 01 	addi r1,r1,1                                   
 8009308:	58 61 00 54 	sw (r3+84),r1                                  
        _ISR_Enable( *level_p );                                      
 800930c:	28 41 00 00 	lw r1,(r2+0)                                   
 8009310:	d0 01 00 00 	wcsr IE,r1                                     
        return 0;                                                     
 8009314:	34 01 00 00 	mvi r1,0                                       
 8009318:	e3 ff ff c3 	bi 8009224 <_CORE_mutex_Seize_interrupt_trylock+0x5c>
                                                                      

08003ca8 <_CORE_semaphore_Surrender>: CORE_semaphore_Status _CORE_semaphore_Surrender( CORE_semaphore_Control *the_semaphore, Objects_Id id, CORE_semaphore_API_mp_support_callout api_semaphore_mp_support ) {
 8003ca8:	37 9c ff f8 	addi sp,sp,-8                                  
 8003cac:	5b 8b 00 08 	sw (sp+8),r11                                  
 8003cb0:	5b 9d 00 04 	sw (sp+4),ra                                   
 8003cb4:	b8 20 58 00 	mv r11,r1                                      
  ISR_Level       level;                                              
  CORE_semaphore_Status status;                                       
                                                                      
  status = CORE_SEMAPHORE_STATUS_SUCCESSFUL;                          
                                                                      
  if ( (the_thread = _Thread_queue_Dequeue(&the_semaphore->Wait_queue)) ) {
 8003cb8:	f8 00 07 00 	calli 80058b8 <_Thread_queue_Dequeue>          
{                                                                     
  Thread_Control *the_thread;                                         
  ISR_Level       level;                                              
  CORE_semaphore_Status status;                                       
                                                                      
  status = CORE_SEMAPHORE_STATUS_SUCCESSFUL;                          
 8003cbc:	34 02 00 00 	mvi r2,0                                       
                                                                      
  if ( (the_thread = _Thread_queue_Dequeue(&the_semaphore->Wait_queue)) ) {
 8003cc0:	44 20 00 06 	be r1,r0,8003cd8 <_CORE_semaphore_Surrender+0x30>
        status = CORE_SEMAPHORE_MAXIMUM_COUNT_EXCEEDED;               
    _ISR_Enable( level );                                             
  }                                                                   
                                                                      
  return status;                                                      
}                                                                     
 8003cc4:	b8 40 08 00 	mv r1,r2                                       
 8003cc8:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003ccc:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8003cd0:	37 9c 00 08 	addi sp,sp,8                                   
 8003cd4:	c3 a0 00 00 	ret                                            
    if ( !_Objects_Is_local_id( the_thread->Object.id ) )             
      (*api_semaphore_mp_support) ( the_thread, id );                 
#endif                                                                
                                                                      
  } else {                                                            
    _ISR_Disable( level );                                            
 8003cd8:	90 00 08 00 	rcsr r1,IE                                     
 8003cdc:	34 02 ff fe 	mvi r2,-2                                      
 8003ce0:	a0 22 10 00 	and r2,r1,r2                                   
 8003ce4:	d0 02 00 00 	wcsr IE,r2                                     
      if ( the_semaphore->count < the_semaphore->Attributes.maximum_count )
 8003ce8:	29 63 00 48 	lw r3,(r11+72)                                 
 8003cec:	29 64 00 40 	lw r4,(r11+64)                                 
        the_semaphore->count += 1;                                    
      else                                                            
        status = CORE_SEMAPHORE_MAXIMUM_COUNT_EXCEEDED;               
 8003cf0:	34 02 00 04 	mvi r2,4                                       
      (*api_semaphore_mp_support) ( the_thread, id );                 
#endif                                                                
                                                                      
  } else {                                                            
    _ISR_Disable( level );                                            
      if ( the_semaphore->count < the_semaphore->Attributes.maximum_count )
 8003cf4:	50 64 00 04 	bgeu r3,r4,8003d04 <_CORE_semaphore_Surrender+0x5c><== NEVER TAKEN
        the_semaphore->count += 1;                                    
 8003cf8:	34 63 00 01 	addi r3,r3,1                                   
 8003cfc:	59 63 00 48 	sw (r11+72),r3                                 
{                                                                     
  Thread_Control *the_thread;                                         
  ISR_Level       level;                                              
  CORE_semaphore_Status status;                                       
                                                                      
  status = CORE_SEMAPHORE_STATUS_SUCCESSFUL;                          
 8003d00:	34 02 00 00 	mvi r2,0                                       
    _ISR_Disable( level );                                            
      if ( the_semaphore->count < the_semaphore->Attributes.maximum_count )
        the_semaphore->count += 1;                                    
      else                                                            
        status = CORE_SEMAPHORE_MAXIMUM_COUNT_EXCEEDED;               
    _ISR_Enable( level );                                             
 8003d04:	d0 01 00 00 	wcsr IE,r1                                     
  }                                                                   
                                                                      
  return status;                                                      
}                                                                     
 8003d08:	b8 40 08 00 	mv r1,r2                                       
 8003d0c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003d10:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8003d14:	37 9c 00 08 	addi sp,sp,8                                   
 8003d18:	c3 a0 00 00 	ret                                            
                                                                      

08004034 <_Chain_Get_with_empty_check>: ) { ISR_Level level; bool is_empty_now; _ISR_Disable( level );
 8004034:	90 00 28 00 	rcsr r5,IE                                     
 8004038:	34 03 ff fe 	mvi r3,-2                                      
 800403c:	a0 a3 18 00 	and r3,r5,r3                                   
 8004040:	d0 03 00 00 	wcsr IE,r3                                     
  Chain_Control *the_chain,                                           
  Chain_Node **the_node                                               
)                                                                     
{                                                                     
  bool is_empty_now = true;                                           
  Chain_Node *first = the_chain->first;                               
 8004044:	28 23 00 00 	lw r3,(r1+0)                                   
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 8004048:	34 26 00 04 	addi r6,r1,4                                   
)                                                                     
{                                                                     
  bool is_empty_now = true;                                           
  Chain_Node *first = the_chain->first;                               
                                                                      
  if ( first != _Chain_Tail( the_chain ) ) {                          
 800404c:	44 66 00 08 	be r3,r6,800406c <_Chain_Get_with_empty_check+0x38><== NEVER TAKEN
    Chain_Node *new_first = first->next;                              
 8004050:	28 64 00 00 	lw r4,(r3+0)                                   
                                                                      
    the_chain->first = new_first;                                     
 8004054:	58 24 00 00 	sw (r1+0),r4                                   
    new_first->previous = _Chain_Head( the_chain );                   
 8004058:	58 81 00 04 	sw (r4+4),r1                                   
                                                                      
    *the_node = first;                                                
 800405c:	58 43 00 00 	sw (r2+0),r3                                   
                                                                      
    is_empty_now = new_first == _Chain_Tail( the_chain );             
 8004060:	e4 c4 08 00 	cmpe r1,r6,r4                                  
  is_empty_now = _Chain_Get_with_empty_check_unprotected( chain, node );
  _ISR_Enable( level );                                               
 8004064:	d0 05 00 00 	wcsr IE,r5                                     
                                                                      
  return is_empty_now;                                                
}                                                                     
 8004068:	c3 a0 00 00 	ret                                            
  } else                                                              
    *the_node = NULL;                                                 
 800406c:	58 40 00 00 	sw (r2+0),r0                                   <== NOT EXECUTED
RTEMS_INLINE_ROUTINE bool _Chain_Get_with_empty_check_unprotected(    
  Chain_Control *the_chain,                                           
  Chain_Node **the_node                                               
)                                                                     
{                                                                     
  bool is_empty_now = true;                                           
 8004070:	34 01 00 01 	mvi r1,1                                       <== NOT EXECUTED
  ISR_Level level;                                                    
  bool is_empty_now;                                                  
                                                                      
  _ISR_Disable( level );                                              
  is_empty_now = _Chain_Get_with_empty_check_unprotected( chain, node );
  _ISR_Enable( level );                                               
 8004074:	d0 05 00 00 	wcsr IE,r5                                     <== NOT EXECUTED
                                                                      
  return is_empty_now;                                                
}                                                                     
 8004078:	c3 a0 00 00 	ret                                            <== NOT EXECUTED
                                                                      

08009134 <_Chain_Initialize>: Chain_Control *the_chain, void *starting_address, size_t number_nodes, size_t node_size ) {
 8009134:	37 9c ff f4 	addi sp,sp,-12                                 
 8009138:	5b 8b 00 0c 	sw (sp+12),r11                                 
 800913c:	5b 8c 00 08 	sw (sp+8),r12                                  
 8009140:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node *current;                                                
  Chain_Node *next;                                                   
                                                                      
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
 8009144:	58 20 00 04 	sw (r1+4),r0                                   
  Chain_Control *the_chain,                                           
  void           *starting_address,                                   
  size_t         number_nodes,                                        
  size_t         node_size                                            
)                                                                     
{                                                                     
 8009148:	b8 20 58 00 	mv r11,r1                                      
 800914c:	b8 40 60 00 	mv r12,r2                                      
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Head(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) the_chain;                                   
 8009150:	b8 20 30 00 	mv r6,r1                                       
                                                                      
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
  while ( count-- ) {                                                 
 8009154:	44 60 00 0f 	be r3,r0,8009190 <_Chain_Initialize+0x5c>      <== NEVER TAKEN
 8009158:	34 63 ff ff 	addi r3,r3,-1                                  
 800915c:	b8 60 10 00 	mv r2,r3                                       
  Chain_Node *next;                                                   
                                                                      
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
 8009160:	b9 80 28 00 	mv r5,r12                                      
 8009164:	e0 00 00 04 	bi 8009174 <_Chain_Initialize+0x40>            
  while ( count-- ) {                                                 
 8009168:	b8 a0 30 00 	mv r6,r5                                       
 800916c:	34 63 ff ff 	addi r3,r3,-1                                  
    current->next  = next;                                            
    next->previous = current;                                         
    current        = next;                                            
    next           = (Chain_Node *)                                   
 8009170:	b8 e0 28 00 	mv r5,r7                                       
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
  while ( count-- ) {                                                 
    current->next  = next;                                            
 8009174:	58 c5 00 00 	sw (r6+0),r5                                   
    next->previous = current;                                         
 8009178:	58 a6 00 04 	sw (r5+4),r6                                   
 *    node_size        - size of node in bytes                        
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Chain_Initialize(                                               
 800917c:	b4 a4 38 00 	add r7,r5,r4                                   
                                                                      
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
  while ( count-- ) {                                                 
 8009180:	5c 60 ff fa 	bne r3,r0,8009168 <_Chain_Initialize+0x34>     
 *    node_size        - size of node in bytes                        
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Chain_Initialize(                                               
 8009184:	b8 80 08 00 	mv r1,r4                                       
 8009188:	f8 00 1f 26 	calli 8010e20 <__mulsi3>                       
                                                                      
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
  while ( count-- ) {                                                 
 800918c:	b5 81 30 00 	add r6,r12,r1                                  
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 8009190:	35 61 00 04 	addi r1,r11,4                                  
    next->previous = current;                                         
    current        = next;                                            
    next           = (Chain_Node *)                                   
                        _Addresses_Add_offset( (void *) next, node_size );
  }                                                                   
  current->next    = _Chain_Tail( the_chain );                        
 8009194:	58 c1 00 00 	sw (r6+0),r1                                   
  the_chain->last  = current;                                         
 8009198:	59 66 00 08 	sw (r11+8),r6                                  
}                                                                     
 800919c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80091a0:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 80091a4:	2b 8c 00 08 	lw r12,(sp+8)                                  
 80091a8:	37 9c 00 0c 	addi sp,sp,12                                  
 80091ac:	c3 a0 00 00 	ret                                            
                                                                      

0800d3e0 <_Event_Surrender>: */ void _Event_Surrender( Thread_Control *the_thread ) {
 800d3e0:	37 9c ff f8 	addi sp,sp,-8                                  
 800d3e4:	5b 8b 00 08 	sw (sp+8),r11                                  
 800d3e8:	5b 9d 00 04 	sw (sp+4),ra                                   
  rtems_event_set     event_condition;                                
  rtems_event_set     seized_events;                                  
  rtems_option        option_set;                                     
  RTEMS_API_Control  *api;                                            
                                                                      
  api = the_thread->API_Extensions[ THREAD_API_RTEMS ];               
 800d3ec:	28 25 01 24 	lw r5,(r1+292)                                 
                                                                      
  option_set = (rtems_option) the_thread->Wait.option;                
 800d3f0:	28 28 00 30 	lw r8,(r1+48)                                  
 */                                                                   
                                                                      
void _Event_Surrender(                                                
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
 800d3f4:	b8 20 58 00 	mv r11,r1                                      
                                                                      
  api = the_thread->API_Extensions[ THREAD_API_RTEMS ];               
                                                                      
  option_set = (rtems_option) the_thread->Wait.option;                
                                                                      
  _ISR_Disable( level );                                              
 800d3f8:	90 00 08 00 	rcsr r1,IE                                     
 800d3fc:	34 07 ff fe 	mvi r7,-2                                      
 800d400:	a0 27 38 00 	and r7,r1,r7                                   
 800d404:	d0 07 00 00 	wcsr IE,r7                                     
  pending_events  = api->pending_events;                              
 800d408:	28 a6 00 00 	lw r6,(r5+0)                                   
  event_condition = (rtems_event_set) the_thread->Wait.count;         
 800d40c:	29 64 00 24 	lw r4,(r11+36)                                 
RTEMS_INLINE_ROUTINE rtems_event_set _Event_sets_Get(                 
  rtems_event_set the_event_set,                                      
  rtems_event_set the_event_condition                                 
)                                                                     
{                                                                     
   return ( the_event_set & the_event_condition );                    
 800d410:	a0 86 10 00 	and r2,r4,r6                                   
  seized_events = _Event_sets_Get( pending_events, event_condition ); 
                                                                      
  /*                                                                  
   *  No events were seized in this operation                         
   */                                                                 
  if ( _Event_sets_Is_empty( seized_events ) ) {                      
 800d414:	44 40 00 27 	be r2,r0,800d4b0 <_Event_Surrender+0xd0>       
                                                                      
  /*                                                                  
   *  If we are in an ISR and sending to the current thread, then     
   *  we have a critical section issue to deal with.                  
   */                                                                 
  if ( _ISR_Is_in_progress() &&                                       
 800d418:	78 03 08 01 	mvhi r3,0x801                                  
 800d41c:	38 63 8a 68 	ori r3,r3,0x8a68                               
 800d420:	28 69 00 08 	lw r9,(r3+8)                                   
 800d424:	45 20 00 03 	be r9,r0,800d430 <_Event_Surrender+0x50>       
 800d428:	28 63 00 0c 	lw r3,(r3+12)                                  
 800d42c:	45 63 00 31 	be r11,r3,800d4f0 <_Event_Surrender+0x110>     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_waiting_for_event (              
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_WAITING_FOR_EVENT);                    
 800d430:	29 63 00 10 	lw r3,(r11+16)                                 
 800d434:	20 63 01 00 	andi r3,r3,0x100                               
  }                                                                   
                                                                      
  /*                                                                  
   *  Otherwise, this is a normal send to another thread              
   */                                                                 
  if ( _States_Is_waiting_for_event( the_thread->current_state ) ) {  
 800d438:	44 60 00 19 	be r3,r0,800d49c <_Event_Surrender+0xbc>       
    if ( seized_events == event_condition || _Options_Is_any( option_set ) ) {
 800d43c:	44 82 00 03 	be r4,r2,800d448 <_Event_Surrender+0x68>       
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Options_Is_any (                           
  rtems_option option_set                                             
)                                                                     
{                                                                     
   return (option_set & RTEMS_EVENT_ANY) ? true : false;              
 800d440:	21 08 00 02 	andi r8,r8,0x2                                 
 800d444:	45 00 00 16 	be r8,r0,800d49c <_Event_Surrender+0xbc>       <== NEVER TAKEN
RTEMS_INLINE_ROUTINE rtems_event_set _Event_sets_Clear(               
 rtems_event_set the_event_set,                                       
 rtems_event_set the_mask                                             
)                                                                     
{                                                                     
   return ( the_event_set & ~(the_mask) );                            
 800d448:	a4 40 18 00 	not r3,r2                                      
      api->pending_events = _Event_sets_Clear( pending_events, seized_events );
      the_thread->Wait.count = 0;                                     
      *(rtems_event_set *)the_thread->Wait.return_argument = seized_events;
 800d44c:	29 64 00 28 	lw r4,(r11+40)                                 
 800d450:	a0 66 30 00 	and r6,r3,r6                                   
  /*                                                                  
   *  Otherwise, this is a normal send to another thread              
   */                                                                 
  if ( _States_Is_waiting_for_event( the_thread->current_state ) ) {  
    if ( seized_events == event_condition || _Options_Is_any( option_set ) ) {
      api->pending_events = _Event_sets_Clear( pending_events, seized_events );
 800d454:	58 a6 00 00 	sw (r5+0),r6                                   
      the_thread->Wait.count = 0;                                     
 800d458:	59 60 00 24 	sw (r11+36),r0                                 
      *(rtems_event_set *)the_thread->Wait.return_argument = seized_events;
 800d45c:	58 82 00 00 	sw (r4+0),r2                                   
                                                                      
      _ISR_Flash( level );                                            
 800d460:	d0 01 00 00 	wcsr IE,r1                                     
 800d464:	d0 07 00 00 	wcsr IE,r7                                     
                                                                      
      if ( !_Watchdog_Is_active( &the_thread->Timer ) ) {             
 800d468:	29 63 00 50 	lw r3,(r11+80)                                 
 800d46c:	34 02 00 02 	mvi r2,2                                       
 800d470:	44 62 00 15 	be r3,r2,800d4c4 <_Event_Surrender+0xe4>       
        _ISR_Enable( level );                                         
 800d474:	d0 01 00 00 	wcsr IE,r1                                     
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unblock (                           
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
  _Thread_Clear_state( the_thread, STATES_BLOCKED );                  
 800d478:	78 01 08 01 	mvhi r1,0x801                                  
 800d47c:	38 21 76 24 	ori r1,r1,0x7624                               
 800d480:	28 22 00 00 	lw r2,(r1+0)                                   
 800d484:	b9 60 08 00 	mv r1,r11                                      
 800d488:	f8 00 05 36 	calli 800e960 <_Thread_Clear_state>            
      }                                                               
      return;                                                         
    }                                                                 
  }                                                                   
  _ISR_Enable( level );                                               
}                                                                     
 800d48c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800d490:	2b 8b 00 08 	lw r11,(sp+8)                                  
 800d494:	37 9c 00 08 	addi sp,sp,8                                   
 800d498:	c3 a0 00 00 	ret                                            
        _Thread_Unblock( the_thread );                                
      }                                                               
      return;                                                         
    }                                                                 
  }                                                                   
  _ISR_Enable( level );                                               
 800d49c:	d0 01 00 00 	wcsr IE,r1                                     
}                                                                     
 800d4a0:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800d4a4:	2b 8b 00 08 	lw r11,(sp+8)                                  
 800d4a8:	37 9c 00 08 	addi sp,sp,8                                   
 800d4ac:	c3 a0 00 00 	ret                                            
                                                                      
  /*                                                                  
   *  No events were seized in this operation                         
   */                                                                 
  if ( _Event_sets_Is_empty( seized_events ) ) {                      
    _ISR_Enable( level );                                             
 800d4b0:	d0 01 00 00 	wcsr IE,r1                                     
      }                                                               
      return;                                                         
    }                                                                 
  }                                                                   
  _ISR_Enable( level );                                               
}                                                                     
 800d4b4:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800d4b8:	2b 8b 00 08 	lw r11,(sp+8)                                  
 800d4bc:	37 9c 00 08 	addi sp,sp,8                                   
 800d4c0:	c3 a0 00 00 	ret                                            
RTEMS_INLINE_ROUTINE void _Watchdog_Deactivate(                       
  Watchdog_Control *the_watchdog                                      
)                                                                     
{                                                                     
                                                                      
  the_watchdog->state = WATCHDOG_REMOVE_IT;                           
 800d4c4:	34 02 00 03 	mvi r2,3                                       
 800d4c8:	59 62 00 50 	sw (r11+80),r2                                 
      if ( !_Watchdog_Is_active( &the_thread->Timer ) ) {             
        _ISR_Enable( level );                                         
        _Thread_Unblock( the_thread );                                
      } else {                                                        
        _Watchdog_Deactivate( &the_thread->Timer );                   
        _ISR_Enable( level );                                         
 800d4cc:	d0 01 00 00 	wcsr IE,r1                                     
        (void) _Watchdog_Remove( &the_thread->Timer );                
 800d4d0:	35 61 00 48 	addi r1,r11,72                                 
 800d4d4:	fb ff ea 04 	calli 8007ce4 <_Watchdog_Remove>               
 800d4d8:	78 03 08 01 	mvhi r3,0x801                                  
 800d4dc:	38 63 76 24 	ori r3,r3,0x7624                               
 800d4e0:	28 62 00 00 	lw r2,(r3+0)                                   
 800d4e4:	b9 60 08 00 	mv r1,r11                                      
 800d4e8:	f8 00 05 1e 	calli 800e960 <_Thread_Clear_state>            
 800d4ec:	e3 ff ff ed 	bi 800d4a0 <_Event_Surrender+0xc0>             
   *  If we are in an ISR and sending to the current thread, then     
   *  we have a critical section issue to deal with.                  
   */                                                                 
  if ( _ISR_Is_in_progress() &&                                       
       _Thread_Is_executing( the_thread ) &&                          
       ((_Event_Sync_state == THREAD_BLOCKING_OPERATION_TIMEOUT) ||   
 800d4f0:	78 03 08 01 	mvhi r3,0x801                                  
 800d4f4:	38 63 8b 94 	ori r3,r3,0x8b94                               
 800d4f8:	28 6a 00 00 	lw r10,(r3+0)                                  
  /*                                                                  
   *  If we are in an ISR and sending to the current thread, then     
   *  we have a critical section issue to deal with.                  
   */                                                                 
  if ( _ISR_Is_in_progress() &&                                       
       _Thread_Is_executing( the_thread ) &&                          
 800d4fc:	34 09 00 02 	mvi r9,2                                       
 800d500:	45 49 00 04 	be r10,r9,800d510 <_Event_Surrender+0x130>     <== NEVER TAKEN
       ((_Event_Sync_state == THREAD_BLOCKING_OPERATION_TIMEOUT) ||   
        (_Event_Sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED)) ) {
 800d504:	28 6a 00 00 	lw r10,(r3+0)                                  
   *  If we are in an ISR and sending to the current thread, then     
   *  we have a critical section issue to deal with.                  
   */                                                                 
  if ( _ISR_Is_in_progress() &&                                       
       _Thread_Is_executing( the_thread ) &&                          
       ((_Event_Sync_state == THREAD_BLOCKING_OPERATION_TIMEOUT) ||   
 800d508:	34 09 00 01 	mvi r9,1                                       
 800d50c:	5d 49 ff c9 	bne r10,r9,800d430 <_Event_Surrender+0x50>     <== NEVER TAKEN
        (_Event_Sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED)) ) {
    if ( seized_events == event_condition || _Options_Is_any(option_set) ) {
 800d510:	44 82 00 03 	be r4,r2,800d51c <_Event_Surrender+0x13c>      <== ALWAYS TAKEN
 800d514:	21 08 00 02 	andi r8,r8,0x2                                 <== NOT EXECUTED
 800d518:	45 00 00 09 	be r8,r0,800d53c <_Event_Surrender+0x15c>      <== NOT EXECUTED
 800d51c:	a4 40 20 00 	not r4,r2                                      
 800d520:	a0 86 30 00 	and r6,r4,r6                                   
      api->pending_events = _Event_sets_Clear( pending_events,seized_events );
      the_thread->Wait.count = 0;                                     
      *(rtems_event_set *)the_thread->Wait.return_argument = seized_events;
 800d524:	29 64 00 28 	lw r4,(r11+40)                                 
  if ( _ISR_Is_in_progress() &&                                       
       _Thread_Is_executing( the_thread ) &&                          
       ((_Event_Sync_state == THREAD_BLOCKING_OPERATION_TIMEOUT) ||   
        (_Event_Sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED)) ) {
    if ( seized_events == event_condition || _Options_Is_any(option_set) ) {
      api->pending_events = _Event_sets_Clear( pending_events,seized_events );
 800d528:	58 a6 00 00 	sw (r5+0),r6                                   
      the_thread->Wait.count = 0;                                     
 800d52c:	59 60 00 24 	sw (r11+36),r0                                 
      *(rtems_event_set *)the_thread->Wait.return_argument = seized_events;
 800d530:	58 82 00 00 	sw (r4+0),r2                                   
      _Event_Sync_state = THREAD_BLOCKING_OPERATION_SATISFIED;        
 800d534:	34 02 00 03 	mvi r2,3                                       
 800d538:	58 62 00 00 	sw (r3+0),r2                                   
    }                                                                 
    _ISR_Enable( level );                                             
 800d53c:	d0 01 00 00 	wcsr IE,r1                                     
    return;                                                           
 800d540:	e3 ff ff d8 	bi 800d4a0 <_Event_Surrender+0xc0>             
                                                                      

0800d544 <_Event_Timeout>: void _Event_Timeout( Objects_Id id, void *ignored ) {
 800d544:	37 9c ff f8 	addi sp,sp,-8                                  
 800d548:	5b 9d 00 04 	sw (sp+4),ra                                   
  Thread_Control    *the_thread;                                      
  Objects_Locations  location;                                        
  ISR_Level          level;                                           
                                                                      
  the_thread = _Thread_Get( id, &location );                          
 800d54c:	37 82 00 08 	addi r2,sp,8                                   
 800d550:	fb ff e4 be 	calli 8006848 <_Thread_Get>                    
  switch ( location ) {                                               
 800d554:	2b 82 00 08 	lw r2,(sp+8)                                   
 800d558:	44 40 00 04 	be r2,r0,800d568 <_Event_Timeout+0x24>         <== ALWAYS TAKEN
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
}                                                                     
 800d55c:	2b 9d 00 04 	lw ra,(sp+4)                                   <== NOT EXECUTED
 800d560:	37 9c 00 08 	addi sp,sp,8                                   <== NOT EXECUTED
 800d564:	c3 a0 00 00 	ret                                            <== NOT EXECUTED
       *                                                              
       *  If it is not satisfied, then it is "nothing happened" and   
       *  this is the "timeout" transition.  After a request is satisfied,
       *  a timeout is not allowed to occur.                          
       */                                                             
      _ISR_Disable( level );                                          
 800d568:	90 00 18 00 	rcsr r3,IE                                     
 800d56c:	34 02 ff fe 	mvi r2,-2                                      
 800d570:	a0 62 10 00 	and r2,r3,r2                                   
 800d574:	d0 02 00 00 	wcsr IE,r2                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_Is_executing (                      
  const Thread_Control *the_thread                                    
)                                                                     
{                                                                     
  return ( the_thread == _Thread_Executing );                         
 800d578:	78 02 08 01 	mvhi r2,0x801                                  
 800d57c:	38 42 8a 68 	ori r2,r2,0x8a68                               
            return;                                                   
          }                                                           
        #endif                                                        
                                                                      
        the_thread->Wait.count = 0;                                   
        if ( _Thread_Is_executing( the_thread ) ) {                   
 800d580:	28 42 00 0c 	lw r2,(r2+12)                                  
            _ISR_Enable( level );                                     
            return;                                                   
          }                                                           
        #endif                                                        
                                                                      
        the_thread->Wait.count = 0;                                   
 800d584:	58 20 00 24 	sw (r1+36),r0                                  
        if ( _Thread_Is_executing( the_thread ) ) {                   
 800d588:	44 22 00 10 	be r1,r2,800d5c8 <_Event_Timeout+0x84>         <== NEVER TAKEN
          if ( _Event_Sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )
            _Event_Sync_state = THREAD_BLOCKING_OPERATION_TIMEOUT;    
        }                                                             
                                                                      
        the_thread->Wait.return_code = RTEMS_TIMEOUT;                 
 800d58c:	34 02 00 06 	mvi r2,6                                       
 800d590:	58 22 00 34 	sw (r1+52),r2                                  
      _ISR_Enable( level );                                           
 800d594:	d0 03 00 00 	wcsr IE,r3                                     
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unblock (                           
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
  _Thread_Clear_state( the_thread, STATES_BLOCKED );                  
 800d598:	78 03 08 01 	mvhi r3,0x801                                  
 800d59c:	38 63 76 24 	ori r3,r3,0x7624                               
 800d5a0:	28 62 00 00 	lw r2,(r3+0)                                   
 800d5a4:	f8 00 04 ef 	calli 800e960 <_Thread_Clear_state>            
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unnest_dispatch( void )             
{                                                                     
  RTEMS_COMPILER_MEMORY_BARRIER();                                    
  _Thread_Dispatch_disable_level -= 1;                                
 800d5a8:	78 01 08 01 	mvhi r1,0x801                                  
 800d5ac:	38 21 88 9c 	ori r1,r1,0x889c                               
 800d5b0:	28 22 00 00 	lw r2,(r1+0)                                   
 800d5b4:	34 42 ff ff 	addi r2,r2,-1                                  
 800d5b8:	58 22 00 00 	sw (r1+0),r2                                   
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
}                                                                     
 800d5bc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800d5c0:	37 9c 00 08 	addi sp,sp,8                                   
 800d5c4:	c3 a0 00 00 	ret                                            
          }                                                           
        #endif                                                        
                                                                      
        the_thread->Wait.count = 0;                                   
        if ( _Thread_Is_executing( the_thread ) ) {                   
          if ( _Event_Sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )
 800d5c8:	78 02 08 01 	mvhi r2,0x801                                  <== NOT EXECUTED
 800d5cc:	38 42 8b 94 	ori r2,r2,0x8b94                               <== NOT EXECUTED
 800d5d0:	28 45 00 00 	lw r5,(r2+0)                                   <== NOT EXECUTED
 800d5d4:	34 04 00 01 	mvi r4,1                                       <== NOT EXECUTED
 800d5d8:	5c a4 ff ed 	bne r5,r4,800d58c <_Event_Timeout+0x48>        <== NOT EXECUTED
            _Event_Sync_state = THREAD_BLOCKING_OPERATION_TIMEOUT;    
 800d5dc:	34 04 00 02 	mvi r4,2                                       <== NOT EXECUTED
 800d5e0:	58 44 00 00 	sw (r2+0),r4                                   <== NOT EXECUTED
 800d5e4:	e3 ff ff ea 	bi 800d58c <_Event_Timeout+0x48>               <== NOT EXECUTED
                                                                      

080093c8 <_Heap_Allocate_aligned_with_boundary>: Heap_Control *heap, uintptr_t alloc_size, uintptr_t alignment, uintptr_t boundary ) {
 80093c8:	37 9c ff bc 	addi sp,sp,-68                                 
 80093cc:	5b 8b 00 44 	sw (sp+68),r11                                 
 80093d0:	5b 8c 00 40 	sw (sp+64),r12                                 
 80093d4:	5b 8d 00 3c 	sw (sp+60),r13                                 
 80093d8:	5b 8e 00 38 	sw (sp+56),r14                                 
 80093dc:	5b 8f 00 34 	sw (sp+52),r15                                 
 80093e0:	5b 90 00 30 	sw (sp+48),r16                                 
 80093e4:	5b 91 00 2c 	sw (sp+44),r17                                 
 80093e8:	5b 92 00 28 	sw (sp+40),r18                                 
 80093ec:	5b 93 00 24 	sw (sp+36),r19                                 
 80093f0:	5b 94 00 20 	sw (sp+32),r20                                 
 80093f4:	5b 95 00 1c 	sw (sp+28),r21                                 
 80093f8:	5b 96 00 18 	sw (sp+24),r22                                 
 80093fc:	5b 97 00 14 	sw (sp+20),r23                                 
 8009400:	5b 98 00 10 	sw (sp+16),r24                                 
 8009404:	5b 99 00 0c 	sw (sp+12),r25                                 
 8009408:	5b 9b 00 08 	sw (sp+8),fp                                   
 800940c:	5b 9d 00 04 	sw (sp+4),ra                                   
  Heap_Statistics *const stats = &heap->stats;                        
  uintptr_t const block_size_floor = alloc_size + HEAP_BLOCK_HEADER_SIZE
 8009410:	34 54 00 04 	addi r20,r2,4                                  
  Heap_Control *heap,                                                 
  uintptr_t alloc_size,                                               
  uintptr_t alignment,                                                
  uintptr_t boundary                                                  
)                                                                     
{                                                                     
 8009414:	b8 20 78 00 	mv r15,r1                                      
  Heap_Statistics *const stats = &heap->stats;                        
  uintptr_t const block_size_floor = alloc_size + HEAP_BLOCK_HEADER_SIZE
    - HEAP_ALLOC_BONUS;                                               
  uintptr_t const page_size = heap->page_size;                        
 8009418:	28 37 00 10 	lw r23,(r1+16)                                 
  Heap_Control *heap,                                                 
  uintptr_t alloc_size,                                               
  uintptr_t alignment,                                                
  uintptr_t boundary                                                  
)                                                                     
{                                                                     
 800941c:	b8 40 70 00 	mv r14,r2                                      
 8009420:	b8 60 80 00 	mv r16,r3                                      
 8009424:	b8 80 90 00 	mv r18,r4                                      
  uint32_t search_count = 0;                                          
  bool search_again = false;                                          
                                                                      
  if ( block_size_floor < alloc_size ) {                              
    /* Integer overflow occured */                                    
    return NULL;                                                      
 8009428:	34 01 00 00 	mvi r1,0                                       
  Heap_Block *block = NULL;                                           
  uintptr_t alloc_begin = 0;                                          
  uint32_t search_count = 0;                                          
  bool search_again = false;                                          
                                                                      
  if ( block_size_floor < alloc_size ) {                              
 800942c:	54 54 00 5b 	bgu r2,r20,8009598 <_Heap_Allocate_aligned_with_boundary+0x1d0>
    /* Integer overflow occured */                                    
    return NULL;                                                      
  }                                                                   
                                                                      
  if ( boundary != 0 ) {                                              
 8009430:	5c 80 00 6f 	bne r4,r0,80095ec <_Heap_Allocate_aligned_with_boundary+0x224>
  if ( stats->max_search < search_count ) {                           
    stats->max_search = search_count;                                 
  }                                                                   
                                                                      
  return (void *) alloc_begin;                                        
}                                                                     
 8009434:	29 ec 00 08 	lw r12,(r15+8)                                 
                                                                      
  do {                                                                
    Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );  
                                                                      
    block = _Heap_Free_list_first( heap );                            
    while ( block != free_list_tail ) {                               
 8009438:	34 01 00 00 	mvi r1,0                                       
 800943c:	45 ec 00 57 	be r15,r12,8009598 <_Heap_Allocate_aligned_with_boundary+0x1d0>
                                                                      
  uintptr_t const alloc_begin_floor = _Heap_Alloc_area_of_block( block );
  uintptr_t const alloc_begin_ceiling = block_end - min_block_size    
    + HEAP_BLOCK_HEADER_SIZE + page_size - 1;                         
                                                                      
  uintptr_t alloc_end = block_end + HEAP_ALLOC_BONUS;                 
 8009440:	34 18 00 04 	mvi r24,4                                      
                                                                      
  do {                                                                
    Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );  
                                                                      
    block = _Heap_Free_list_first( heap );                            
    while ( block != free_list_tail ) {                               
 8009444:	34 11 00 01 	mvi r17,1                                      
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8009448:	34 1b ff fe 	mvi fp,-2                                      
  uintptr_t const block_begin = (uintptr_t) block;                    
  uintptr_t const block_size = _Heap_Block_size( block );             
  uintptr_t const block_end = block_begin + block_size;               
                                                                      
  uintptr_t const alloc_begin_floor = _Heap_Alloc_area_of_block( block );
  uintptr_t const alloc_begin_ceiling = block_end - min_block_size    
 800944c:	36 f9 00 07 	addi r25,r23,7                                 
    + HEAP_BLOCK_HEADER_SIZE + page_size - 1;                         
                                                                      
  uintptr_t alloc_end = block_end + HEAP_ALLOC_BONUS;                 
 8009450:	cb 0e c0 00 	sub r24,r24,r14                                
      /*                                                              
       * The HEAP_PREV_BLOCK_USED flag is always set in the block size_and_flag
       * field.  Thus the value is about one unit larger than the real block
       * size.  The greater than operator takes this into account.    
       */                                                             
      if ( block->size_and_flag > block_size_floor ) {                
 8009454:	29 81 00 04 	lw r1,(r12+4)                                  
 8009458:	52 81 00 3b 	bgeu r20,r1,8009544 <_Heap_Allocate_aligned_with_boundary+0x17c>
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Alloc_area_of_block(             
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block + HEAP_BLOCK_HEADER_SIZE;                  
 800945c:	35 8b 00 08 	addi r11,r12,8                                 
        if ( alignment == 0 ) {                                       
 8009460:	46 00 00 3e 	be r16,r0,8009558 <_Heap_Allocate_aligned_with_boundary+0x190>
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8009464:	a0 3b 68 00 	and r13,r1,fp                                  
  if ( stats->max_search < search_count ) {                           
    stats->max_search = search_count;                                 
  }                                                                   
                                                                      
  return (void *) alloc_begin;                                        
}                                                                     
 8009468:	29 f5 00 14 	lw r21,(r15+20)                                
  uintptr_t const page_size = heap->page_size;                        
  uintptr_t const min_block_size = heap->min_block_size;              
                                                                      
  uintptr_t const block_begin = (uintptr_t) block;                    
  uintptr_t const block_size = _Heap_Block_size( block );             
  uintptr_t const block_end = block_begin + block_size;               
 800946c:	b5 8d 68 00 	add r13,r12,r13                                
  uintptr_t const alloc_begin_floor = _Heap_Alloc_area_of_block( block );
  uintptr_t const alloc_begin_ceiling = block_end - min_block_size    
    + HEAP_BLOCK_HEADER_SIZE + page_size - 1;                         
                                                                      
  uintptr_t alloc_end = block_end + HEAP_ALLOC_BONUS;                 
  uintptr_t alloc_begin = alloc_end - alloc_size;                     
 8009470:	b7 0d 58 00 	add r11,r24,r13                                
  uintptr_t const block_size = _Heap_Block_size( block );             
  uintptr_t const block_end = block_begin + block_size;               
                                                                      
  uintptr_t const alloc_begin_floor = _Heap_Alloc_area_of_block( block );
  uintptr_t const alloc_begin_ceiling = block_end - min_block_size    
    + HEAP_BLOCK_HEADER_SIZE + page_size - 1;                         
 8009474:	cb 35 18 00 	sub r3,r25,r21                                 
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
 8009478:	b9 60 08 00 	mv r1,r11                                      
 800947c:	ba 00 10 00 	mv r2,r16                                      
  uintptr_t const block_begin = (uintptr_t) block;                    
  uintptr_t const block_size = _Heap_Block_size( block );             
  uintptr_t const block_end = block_begin + block_size;               
                                                                      
  uintptr_t const alloc_begin_floor = _Heap_Alloc_area_of_block( block );
  uintptr_t const alloc_begin_ceiling = block_end - min_block_size    
 8009480:	b4 6d 68 00 	add r13,r3,r13                                 
 8009484:	f8 00 1e dc 	calli 8010ff4 <__umodsi3>                      
 8009488:	c9 61 58 00 	sub r11,r11,r1                                 
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Alloc_area_of_block(             
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block + HEAP_BLOCK_HEADER_SIZE;                  
 800948c:	35 96 00 08 	addi r22,r12,8                                 
  uintptr_t alloc_begin = alloc_end - alloc_size;                     
                                                                      
  alloc_begin = _Heap_Align_down( alloc_begin, alignment );           
                                                                      
  /* Ensure that the we have a valid new block at the end */          
  if ( alloc_begin > alloc_begin_ceiling ) {                          
 8009490:	51 ab 00 05 	bgeu r13,r11,80094a4 <_Heap_Allocate_aligned_with_boundary+0xdc>
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
 8009494:	b9 a0 08 00 	mv r1,r13                                      
 8009498:	ba 00 10 00 	mv r2,r16                                      
 800949c:	f8 00 1e d6 	calli 8010ff4 <__umodsi3>                      
 80094a0:	c9 a1 58 00 	sub r11,r13,r1                                 
  }                                                                   
                                                                      
  alloc_end = alloc_begin + alloc_size;                               
                                                                      
  /* Ensure boundary constaint */                                     
  if ( boundary != 0 ) {                                              
 80094a4:	46 40 00 1c 	be r18,r0,8009514 <_Heap_Allocate_aligned_with_boundary+0x14c>
  /* Ensure that the we have a valid new block at the end */          
  if ( alloc_begin > alloc_begin_ceiling ) {                          
    alloc_begin = _Heap_Align_down( alloc_begin_ceiling, alignment ); 
  }                                                                   
                                                                      
  alloc_end = alloc_begin + alloc_size;                               
 80094a8:	b5 6e 68 00 	add r13,r11,r14                                
 80094ac:	b9 a0 08 00 	mv r1,r13                                      
 80094b0:	ba 40 10 00 	mv r2,r18                                      
 80094b4:	f8 00 1e d0 	calli 8010ff4 <__umodsi3>                      
 80094b8:	c9 a1 28 00 	sub r5,r13,r1                                  
  /* Ensure boundary constaint */                                     
  if ( boundary != 0 ) {                                              
    uintptr_t const boundary_floor = alloc_begin_floor + alloc_size;  
    uintptr_t boundary_line = _Heap_Align_down( alloc_end, boundary );
                                                                      
    while ( alloc_begin < boundary_line && boundary_line < alloc_end ) {
 80094bc:	f5 a5 68 00 	cmpgu r13,r13,r5                               
 80094c0:	f4 ab 08 00 	cmpgu r1,r5,r11                                
 80094c4:	a1 a1 68 00 	and r13,r13,r1                                 
 80094c8:	45 a0 00 13 	be r13,r0,8009514 <_Heap_Allocate_aligned_with_boundary+0x14c>
                                                                      
  alloc_end = alloc_begin + alloc_size;                               
                                                                      
  /* Ensure boundary constaint */                                     
  if ( boundary != 0 ) {                                              
    uintptr_t const boundary_floor = alloc_begin_floor + alloc_size;  
 80094cc:	b6 ce 98 00 	add r19,r22,r14                                
    uintptr_t boundary_line = _Heap_Align_down( alloc_end, boundary );
                                                                      
    while ( alloc_begin < boundary_line && boundary_line < alloc_end ) {
      if ( boundary_line < boundary_floor ) {                         
 80094d0:	56 65 00 1d 	bgu r19,r5,8009544 <_Heap_Allocate_aligned_with_boundary+0x17c>
 80094d4:	e0 00 00 02 	bi 80094dc <_Heap_Allocate_aligned_with_boundary+0x114>
 80094d8:	56 65 00 1b 	bgu r19,r5,8009544 <_Heap_Allocate_aligned_with_boundary+0x17c><== NEVER TAKEN
        return 0;                                                     
      }                                                               
      alloc_begin = boundary_line - alloc_size;                       
 80094dc:	c8 ae 58 00 	sub r11,r5,r14                                 
 80094e0:	ba 00 10 00 	mv r2,r16                                      
 80094e4:	b9 60 08 00 	mv r1,r11                                      
 80094e8:	f8 00 1e c3 	calli 8010ff4 <__umodsi3>                      
 80094ec:	c9 61 58 00 	sub r11,r11,r1                                 
      alloc_begin = _Heap_Align_down( alloc_begin, alignment );       
      alloc_end = alloc_begin + alloc_size;                           
 80094f0:	b5 6e 68 00 	add r13,r11,r14                                
 80094f4:	b9 a0 08 00 	mv r1,r13                                      
 80094f8:	ba 40 10 00 	mv r2,r18                                      
 80094fc:	f8 00 1e be 	calli 8010ff4 <__umodsi3>                      
 8009500:	c9 a1 28 00 	sub r5,r13,r1                                  
  /* Ensure boundary constaint */                                     
  if ( boundary != 0 ) {                                              
    uintptr_t const boundary_floor = alloc_begin_floor + alloc_size;  
    uintptr_t boundary_line = _Heap_Align_down( alloc_end, boundary );
                                                                      
    while ( alloc_begin < boundary_line && boundary_line < alloc_end ) {
 8009504:	f5 a5 68 00 	cmpgu r13,r13,r5                               
 8009508:	f4 ab 08 00 	cmpgu r1,r5,r11                                
 800950c:	a1 a1 68 00 	and r13,r13,r1                                 
 8009510:	5d a0 ff f2 	bne r13,r0,80094d8 <_Heap_Allocate_aligned_with_boundary+0x110>
      boundary_line = _Heap_Align_down( alloc_end, boundary );        
    }                                                                 
  }                                                                   
                                                                      
  /* Ensure that the we have a valid new block at the beginning */    
  if ( alloc_begin >= alloc_begin_floor ) {                           
 8009514:	56 cb 00 0c 	bgu r22,r11,8009544 <_Heap_Allocate_aligned_with_boundary+0x17c>
 8009518:	34 01 ff f8 	mvi r1,-8                                      
 800951c:	c8 2c 68 00 	sub r13,r1,r12                                 
 8009520:	ba e0 10 00 	mv r2,r23                                      
 8009524:	b9 60 08 00 	mv r1,r11                                      
 8009528:	f8 00 1e b3 	calli 8010ff4 <__umodsi3>                      
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
    - HEAP_BLOCK_HEADER_SIZE);                                        
 800952c:	b5 ab 68 00 	add r13,r13,r11                                
    uintptr_t const alloc_block_begin =                               
      (uintptr_t) _Heap_Block_of_alloc_area( alloc_begin, page_size );
    uintptr_t const free_size = alloc_block_begin - block_begin;      
 8009530:	c9 a1 08 00 	sub r1,r13,r1                                  
                                                                      
    if ( free_size >= min_block_size || free_size == 0 ) {            
 8009534:	64 22 00 00 	cmpei r2,r1,0                                  
 8009538:	f0 35 a8 00 	cmpgeu r21,r1,r21                              
 800953c:	b8 55 08 00 	or r1,r2,r21                                   
 8009540:	5c 20 00 06 	bne r1,r0,8009558 <_Heap_Allocate_aligned_with_boundary+0x190>
                                                                      
      if ( alloc_begin != 0 ) {                                       
        break;                                                        
      }                                                               
                                                                      
      block = block->next;                                            
 8009544:	29 8c 00 08 	lw r12,(r12+8)                                 
 8009548:	36 21 00 01 	addi r1,r17,1                                  
                                                                      
  do {                                                                
    Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );  
                                                                      
    block = _Heap_Free_list_first( heap );                            
    while ( block != free_list_tail ) {                               
 800954c:	45 ec 00 26 	be r15,r12,80095e4 <_Heap_Allocate_aligned_with_boundary+0x21c>
 8009550:	b8 20 88 00 	mv r17,r1                                      
 8009554:	e3 ff ff c0 	bi 8009454 <_Heap_Allocate_aligned_with_boundary+0x8c>
      }                                                               
                                                                      
      /* Statistics */                                                
      ++search_count;                                                 
                                                                      
      if ( alloc_begin != 0 ) {                                       
 8009558:	45 60 ff fb 	be r11,r0,8009544 <_Heap_Allocate_aligned_with_boundary+0x17c><== NEVER TAKEN
    search_again = _Heap_Protection_free_delayed_blocks( heap, alloc_begin );
  } while ( search_again );                                           
                                                                      
  if ( alloc_begin != 0 ) {                                           
    /* Statistics */                                                  
    ++stats->allocs;                                                  
 800955c:	29 e3 00 48 	lw r3,(r15+72)                                 
    stats->searches += search_count;                                  
 8009560:	29 e2 00 4c 	lw r2,(r15+76)                                 
                                                                      
    block = _Heap_Block_allocate( heap, block, alloc_begin, alloc_size );
 8009564:	b9 e0 08 00 	mv r1,r15                                      
    search_again = _Heap_Protection_free_delayed_blocks( heap, alloc_begin );
  } while ( search_again );                                           
                                                                      
  if ( alloc_begin != 0 ) {                                           
    /* Statistics */                                                  
    ++stats->allocs;                                                  
 8009568:	34 63 00 01 	addi r3,r3,1                                   
    stats->searches += search_count;                                  
 800956c:	b4 51 10 00 	add r2,r2,r17                                  
    search_again = _Heap_Protection_free_delayed_blocks( heap, alloc_begin );
  } while ( search_again );                                           
                                                                      
  if ( alloc_begin != 0 ) {                                           
    /* Statistics */                                                  
    ++stats->allocs;                                                  
 8009570:	59 e3 00 48 	sw (r15+72),r3                                 
    stats->searches += search_count;                                  
 8009574:	59 e2 00 4c 	sw (r15+76),r2                                 
                                                                      
    block = _Heap_Block_allocate( heap, block, alloc_begin, alloc_size );
 8009578:	b9 60 18 00 	mv r3,r11                                      
 800957c:	b9 80 10 00 	mv r2,r12                                      
 8009580:	b9 c0 20 00 	mv r4,r14                                      
 8009584:	fb ff eb 2c 	calli 8004234 <_Heap_Block_allocate>           
 8009588:	b9 60 08 00 	mv r1,r11                                      
      boundary                                                        
    );                                                                
  }                                                                   
                                                                      
  /* Statistics */                                                    
  if ( stats->max_search < search_count ) {                           
 800958c:	29 e2 00 44 	lw r2,(r15+68)                                 
 8009590:	50 51 00 02 	bgeu r2,r17,8009598 <_Heap_Allocate_aligned_with_boundary+0x1d0>
    stats->max_search = search_count;                                 
 8009594:	59 f1 00 44 	sw (r15+68),r17                                
  }                                                                   
                                                                      
  return (void *) alloc_begin;                                        
}                                                                     
 8009598:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800959c:	2b 8b 00 44 	lw r11,(sp+68)                                 
 80095a0:	2b 8c 00 40 	lw r12,(sp+64)                                 
 80095a4:	2b 8d 00 3c 	lw r13,(sp+60)                                 
 80095a8:	2b 8e 00 38 	lw r14,(sp+56)                                 
 80095ac:	2b 8f 00 34 	lw r15,(sp+52)                                 
 80095b0:	2b 90 00 30 	lw r16,(sp+48)                                 
 80095b4:	2b 91 00 2c 	lw r17,(sp+44)                                 
 80095b8:	2b 92 00 28 	lw r18,(sp+40)                                 
 80095bc:	2b 93 00 24 	lw r19,(sp+36)                                 
 80095c0:	2b 94 00 20 	lw r20,(sp+32)                                 
 80095c4:	2b 95 00 1c 	lw r21,(sp+28)                                 
 80095c8:	2b 96 00 18 	lw r22,(sp+24)                                 
 80095cc:	2b 97 00 14 	lw r23,(sp+20)                                 
 80095d0:	2b 98 00 10 	lw r24,(sp+16)                                 
 80095d4:	2b 99 00 0c 	lw r25,(sp+12)                                 
 80095d8:	2b 9b 00 08 	lw fp,(sp+8)                                   
 80095dc:	37 9c 00 44 	addi sp,sp,68                                  
 80095e0:	c3 a0 00 00 	ret                                            
                                                                      
  do {                                                                
    Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );  
                                                                      
    block = _Heap_Free_list_first( heap );                            
    while ( block != free_list_tail ) {                               
 80095e4:	34 01 00 00 	mvi r1,0                                       
 80095e8:	e3 ff ff e9 	bi 800958c <_Heap_Allocate_aligned_with_boundary+0x1c4>
    /* Integer overflow occured */                                    
    return NULL;                                                      
  }                                                                   
                                                                      
  if ( boundary != 0 ) {                                              
    if ( boundary < alloc_size ) {                                    
 80095ec:	54 44 ff eb 	bgu r2,r4,8009598 <_Heap_Allocate_aligned_with_boundary+0x1d0>
      return NULL;                                                    
    }                                                                 
                                                                      
    if ( alignment == 0 ) {                                           
 80095f0:	5c 60 ff 91 	bne r3,r0,8009434 <_Heap_Allocate_aligned_with_boundary+0x6c>
      alignment = page_size;                                          
 80095f4:	ba e0 80 00 	mv r16,r23                                     
 80095f8:	e3 ff ff 8f 	bi 8009434 <_Heap_Allocate_aligned_with_boundary+0x6c>
                                                                      

0800986c <_Heap_Extend>: Heap_Control *heap, void *extend_area_begin_ptr, uintptr_t extend_area_size, uintptr_t *extended_size_ptr ) {
 800986c:	37 9c ff b8 	addi sp,sp,-72                                 
 8009870:	5b 8b 00 40 	sw (sp+64),r11                                 
 8009874:	5b 8c 00 3c 	sw (sp+60),r12                                 
 8009878:	5b 8d 00 38 	sw (sp+56),r13                                 
 800987c:	5b 8e 00 34 	sw (sp+52),r14                                 
 8009880:	5b 8f 00 30 	sw (sp+48),r15                                 
 8009884:	5b 90 00 2c 	sw (sp+44),r16                                 
 8009888:	5b 91 00 28 	sw (sp+40),r17                                 
 800988c:	5b 92 00 24 	sw (sp+36),r18                                 
 8009890:	5b 93 00 20 	sw (sp+32),r19                                 
 8009894:	5b 94 00 1c 	sw (sp+28),r20                                 
 8009898:	5b 95 00 18 	sw (sp+24),r21                                 
 800989c:	5b 96 00 14 	sw (sp+20),r22                                 
 80098a0:	5b 97 00 10 	sw (sp+16),r23                                 
 80098a4:	5b 98 00 0c 	sw (sp+12),r24                                 
 80098a8:	5b 99 00 08 	sw (sp+8),r25                                  
 80098ac:	5b 9d 00 04 	sw (sp+4),ra                                   
  Heap_Block *start_block = first_block;                              
  Heap_Block *merge_below_block = NULL;                               
  Heap_Block *merge_above_block = NULL;                               
  Heap_Block *link_below_block = NULL;                                
  Heap_Block *link_above_block = NULL;                                
  Heap_Block *extend_first_block = NULL;                              
 80098b0:	5b 80 00 48 	sw (sp+72),r0                                  
  Heap_Block *extend_last_block = NULL;                               
 80098b4:	5b 80 00 44 	sw (sp+68),r0                                  
  uintptr_t const page_size = heap->page_size;                        
  uintptr_t const min_block_size = heap->min_block_size;              
  uintptr_t const extend_area_begin = (uintptr_t) extend_area_begin_ptr;
  uintptr_t const extend_area_end = extend_area_begin + extend_area_size;
 80098b8:	b4 43 70 00 	add r14,r2,r3                                  
  Heap_Control *heap,                                                 
  void *extend_area_begin_ptr,                                        
  uintptr_t extend_area_size,                                         
  uintptr_t *extended_size_ptr                                        
)                                                                     
{                                                                     
 80098bc:	b8 40 68 00 	mv r13,r2                                      
 80098c0:	b8 20 58 00 	mv r11,r1                                      
 80098c4:	b8 80 b8 00 	mv r23,r4                                      
  Heap_Statistics *const stats = &heap->stats;                        
  Heap_Block *const first_block = heap->first_block;                  
 80098c8:	28 30 00 20 	lw r16,(r1+32)                                 
  Heap_Block *merge_above_block = NULL;                               
  Heap_Block *link_below_block = NULL;                                
  Heap_Block *link_above_block = NULL;                                
  Heap_Block *extend_first_block = NULL;                              
  Heap_Block *extend_last_block = NULL;                               
  uintptr_t const page_size = heap->page_size;                        
 80098cc:	28 32 00 10 	lw r18,(r1+16)                                 
  uintptr_t const min_block_size = heap->min_block_size;              
 80098d0:	28 25 00 14 	lw r5,(r1+20)                                  
  uintptr_t const extend_area_begin = (uintptr_t) extend_area_begin_ptr;
  uintptr_t const extend_area_end = extend_area_begin + extend_area_size;
  uintptr_t const free_size = stats->free_size;                       
 80098d4:	28 38 00 30 	lw r24,(r1+48)                                 
  uintptr_t extend_first_block_size = 0;                              
  uintptr_t extended_size = 0;                                        
  bool extend_area_ok = false;                                        
                                                                      
  if ( extend_area_end < extend_area_begin ) {                        
    return false;                                                     
 80098d8:	34 0c 00 00 	mvi r12,0                                      
  uintptr_t const free_size = stats->free_size;                       
  uintptr_t extend_first_block_size = 0;                              
  uintptr_t extended_size = 0;                                        
  bool extend_area_ok = false;                                        
                                                                      
  if ( extend_area_end < extend_area_begin ) {                        
 80098dc:	54 4e 00 76 	bgu r2,r14,8009ab4 <_Heap_Extend+0x248>        
    return false;                                                     
  }                                                                   
                                                                      
  extend_area_ok = _Heap_Get_first_and_last_block(                    
 80098e0:	b8 40 08 00 	mv r1,r2                                       
 80098e4:	b8 a0 20 00 	mv r4,r5                                       
 80098e8:	b8 60 10 00 	mv r2,r3                                       
 80098ec:	37 85 00 48 	addi r5,sp,72                                  
 80098f0:	ba 40 18 00 	mv r3,r18                                      
 80098f4:	37 86 00 44 	addi r6,sp,68                                  
 80098f8:	fb ff ea b8 	calli 80043d8 <_Heap_Get_first_and_last_block> 
    page_size,                                                        
    min_block_size,                                                   
    &extend_first_block,                                              
    &extend_last_block                                                
  );                                                                  
  if (!extend_area_ok ) {                                             
 80098fc:	44 20 00 6e 	be r1,r0,8009ab4 <_Heap_Extend+0x248>          
 8009900:	ba 00 60 00 	mv r12,r16                                     
 8009904:	34 16 00 00 	mvi r22,0                                      
 8009908:	34 19 00 00 	mvi r25,0                                      
 800990c:	34 11 00 00 	mvi r17,0                                      
 8009910:	34 14 00 00 	mvi r20,0                                      
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8009914:	34 15 ff fe 	mvi r21,-2                                     
 8009918:	e0 00 00 0d 	bi 800994c <_Heap_Extend+0xe0>                 
      return false;                                                   
    }                                                                 
                                                                      
    if ( extend_area_end == sub_area_begin ) {                        
      merge_below_block = start_block;                                
    } else if ( extend_area_end < sub_area_end ) {                    
 800991c:	55 ee 00 7b 	bgu r15,r14,8009b08 <_Heap_Extend+0x29c>       
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
 8009920:	b9 e0 08 00 	mv r1,r15                                      
 8009924:	ba 40 10 00 	mv r2,r18                                      
 8009928:	35 f3 ff f8 	addi r19,r15,-8                                
 800992c:	f8 00 1e d8 	calli 801148c <__umodsi3>                      
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
    - HEAP_BLOCK_HEADER_SIZE);                                        
 8009930:	ca 61 08 00 	sub r1,r19,r1                                  
      link_below_block = start_block;                                 
    }                                                                 
                                                                      
    if ( sub_area_end == extend_area_begin ) {                        
 8009934:	45 af 00 15 	be r13,r15,8009988 <_Heap_Extend+0x11c>        
      start_block->prev_size = extend_area_end;                       
                                                                      
      merge_above_block = end_block;                                  
    } else if ( sub_area_end < extend_area_begin ) {                  
 8009938:	55 af 00 72 	bgu r13,r15,8009b00 <_Heap_Extend+0x294>       
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 800993c:	28 2c 00 04 	lw r12,(r1+4)                                  
 8009940:	a2 ac 60 00 	and r12,r21,r12                                
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
 8009944:	b4 2c 60 00 	add r12,r1,r12                                 
      link_above_block = end_block;                                   
    }                                                                 
                                                                      
    start_block = _Heap_Block_at( end_block, _Heap_Block_size( end_block ) );
  } while ( start_block != first_block );                             
 8009948:	46 0c 00 16 	be r16,r12,80099a0 <_Heap_Extend+0x134>        
    return false;                                                     
  }                                                                   
                                                                      
  do {                                                                
    uintptr_t const sub_area_begin = (start_block != first_block) ?   
      (uintptr_t) start_block : heap->area_begin;                     
 800994c:	b9 80 08 00 	mv r1,r12                                      
 8009950:	45 90 00 70 	be r12,r16,8009b10 <_Heap_Extend+0x2a4>        
    uintptr_t const sub_area_end = start_block->prev_size;            
 8009954:	29 8f 00 00 	lw r15,(r12+0)                                 
    Heap_Block *const end_block =                                     
      _Heap_Block_of_alloc_area( sub_area_end, page_size );           
                                                                      
    if (                                                              
      sub_area_end > extend_area_begin && extend_area_end > sub_area_begin
 8009958:	f5 c1 30 00 	cmpgu r6,r14,r1                                
 800995c:	f5 ed 28 00 	cmpgu r5,r15,r13                               
      (uintptr_t) start_block : heap->area_begin;                     
    uintptr_t const sub_area_end = start_block->prev_size;            
    Heap_Block *const end_block =                                     
      _Heap_Block_of_alloc_area( sub_area_end, page_size );           
                                                                      
    if (                                                              
 8009960:	a0 c5 28 00 	and r5,r6,r5                                   
 8009964:	5c a0 00 75 	bne r5,r0,8009b38 <_Heap_Extend+0x2cc>         
      sub_area_end > extend_area_begin && extend_area_end > sub_area_begin
    ) {                                                               
      return false;                                                   
    }                                                                 
                                                                      
    if ( extend_area_end == sub_area_begin ) {                        
 8009968:	5c 2e ff ed 	bne r1,r14,800991c <_Heap_Extend+0xb0>         <== ALWAYS TAKEN
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
 800996c:	b9 e0 08 00 	mv r1,r15                                      <== NOT EXECUTED
 8009970:	ba 40 10 00 	mv r2,r18                                      <== NOT EXECUTED
 8009974:	35 f3 ff f8 	addi r19,r15,-8                                <== NOT EXECUTED
 8009978:	f8 00 1e c5 	calli 801148c <__umodsi3>                      <== NOT EXECUTED
 800997c:	b9 80 a0 00 	mv r20,r12                                     <== NOT EXECUTED
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
    - HEAP_BLOCK_HEADER_SIZE);                                        
 8009980:	ca 61 08 00 	sub r1,r19,r1                                  <== NOT EXECUTED
      merge_below_block = start_block;                                
    } else if ( extend_area_end < sub_area_end ) {                    
      link_below_block = start_block;                                 
    }                                                                 
                                                                      
    if ( sub_area_end == extend_area_begin ) {                        
 8009984:	5d af ff ed 	bne r13,r15,8009938 <_Heap_Extend+0xcc>        <== NOT EXECUTED
      start_block->prev_size = extend_area_end;                       
 8009988:	59 8e 00 00 	sw (r12+0),r14                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 800998c:	28 2c 00 04 	lw r12,(r1+4)                                  
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_of_alloc_area(           
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
 8009990:	b8 20 88 00 	mv r17,r1                                      
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8009994:	a2 ac 60 00 	and r12,r21,r12                                
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
 8009998:	b4 2c 60 00 	add r12,r1,r12                                 
    } else if ( sub_area_end < extend_area_begin ) {                  
      link_above_block = end_block;                                   
    }                                                                 
                                                                      
    start_block = _Heap_Block_at( end_block, _Heap_Block_size( end_block ) );
  } while ( start_block != first_block );                             
 800999c:	5e 0c ff ec 	bne r16,r12,800994c <_Heap_Extend+0xe0>        <== NEVER TAKEN
                                                                      
  if ( extend_area_begin < heap->area_begin ) {                       
 80099a0:	29 61 00 18 	lw r1,(r11+24)                                 
 80099a4:	51 a1 00 61 	bgeu r13,r1,8009b28 <_Heap_Extend+0x2bc>       
    heap->area_begin = extend_area_begin;                             
 80099a8:	59 6d 00 18 	sw (r11+24),r13                                
  } else if ( heap->area_end < extend_area_end ) {                    
    heap->area_end = extend_area_end;                                 
  }                                                                   
                                                                      
  extend_first_block_size =                                           
    (uintptr_t) extend_last_block - (uintptr_t) extend_first_block;   
 80099ac:	2b 81 00 44 	lw r1,(sp+68)                                  
 80099b0:	2b 82 00 48 	lw r2,(sp+72)                                  
                                                                      
  extend_last_block->prev_size = extend_first_block_size;             
  extend_last_block->size_and_flag = 0;                               
  _Heap_Protection_block_initialize( heap, extend_last_block );       
                                                                      
  if ( (uintptr_t) extend_first_block < (uintptr_t) heap->first_block ) {
 80099b4:	29 65 00 20 	lw r5,(r11+32)                                 
    heap->area_begin = extend_area_begin;                             
  } else if ( heap->area_end < extend_area_end ) {                    
    heap->area_end = extend_area_end;                                 
  }                                                                   
                                                                      
  extend_first_block_size =                                           
 80099b8:	c8 22 18 00 	sub r3,r1,r2                                   
    (uintptr_t) extend_last_block - (uintptr_t) extend_first_block;   
                                                                      
  extend_first_block->prev_size = extend_area_end;                    
  extend_first_block->size_and_flag =                                 
    extend_first_block_size | HEAP_PREV_BLOCK_USED;                   
 80099bc:	38 64 00 01 	ori r4,r3,0x1                                  
  }                                                                   
                                                                      
  extend_first_block_size =                                           
    (uintptr_t) extend_last_block - (uintptr_t) extend_first_block;   
                                                                      
  extend_first_block->prev_size = extend_area_end;                    
 80099c0:	58 4e 00 00 	sw (r2+0),r14                                  
  extend_first_block->size_and_flag =                                 
 80099c4:	58 44 00 04 	sw (r2+4),r4                                   
    extend_first_block_size | HEAP_PREV_BLOCK_USED;                   
  _Heap_Protection_block_initialize( heap, extend_first_block );      
                                                                      
  extend_last_block->prev_size = extend_first_block_size;             
 80099c8:	58 23 00 00 	sw (r1+0),r3                                   
  extend_last_block->size_and_flag = 0;                               
 80099cc:	58 20 00 04 	sw (r1+4),r0                                   
  _Heap_Protection_block_initialize( heap, extend_last_block );       
                                                                      
  if ( (uintptr_t) extend_first_block < (uintptr_t) heap->first_block ) {
 80099d0:	50 45 00 52 	bgeu r2,r5,8009b18 <_Heap_Extend+0x2ac>        
    heap->first_block = extend_first_block;                           
 80099d4:	59 62 00 20 	sw (r11+32),r2                                 
  } else if ( (uintptr_t) extend_last_block > (uintptr_t) heap->last_block ) {
    heap->last_block = extend_last_block;                             
  }                                                                   
                                                                      
  if ( merge_below_block != NULL ) {                                  
 80099d8:	46 80 00 6a 	be r20,r0,8009b80 <_Heap_Extend+0x314>         <== ALWAYS TAKEN
  Heap_Control *heap,                                                 
  uintptr_t extend_area_begin,                                        
  Heap_Block *first_block                                             
)                                                                     
{                                                                     
  uintptr_t const page_size = heap->page_size;                        
 80099dc:	29 6c 00 10 	lw r12,(r11+16)                                <== NOT EXECUTED
  uintptr_t const new_first_block_alloc_begin =                       
    _Heap_Align_up( extend_area_begin + HEAP_BLOCK_HEADER_SIZE, page_size );
 80099e0:	35 ad 00 08 	addi r13,r13,8                                 <== NOT EXECUTED
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_up(                        
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  uintptr_t remainder = value % alignment;                            
 80099e4:	b9 a0 08 00 	mv r1,r13                                      <== NOT EXECUTED
 80099e8:	b9 80 10 00 	mv r2,r12                                      <== NOT EXECUTED
 80099ec:	f8 00 1e a8 	calli 801148c <__umodsi3>                      <== NOT EXECUTED
                                                                      
  if ( remainder != 0 ) {                                             
 80099f0:	44 20 00 03 	be r1,r0,80099fc <_Heap_Extend+0x190>          <== NOT EXECUTED
    return value - remainder + alignment;                             
 80099f4:	b5 ac 68 00 	add r13,r13,r12                                <== NOT EXECUTED
 80099f8:	c9 a1 68 00 	sub r13,r13,r1                                 <== NOT EXECUTED
  uintptr_t const new_first_block_begin =                             
 80099fc:	35 a2 ff f8 	addi r2,r13,-8                                 <== NOT EXECUTED
  uintptr_t const first_block_begin = (uintptr_t) first_block;        
  uintptr_t const new_first_block_size =                              
    first_block_begin - new_first_block_begin;                        
  Heap_Block *const new_first_block = (Heap_Block *) new_first_block_begin;
                                                                      
  new_first_block->prev_size = first_block->prev_size;                
 8009a00:	2a 83 00 00 	lw r3,(r20+0)                                  <== NOT EXECUTED
  uintptr_t const new_first_block_alloc_begin =                       
    _Heap_Align_up( extend_area_begin + HEAP_BLOCK_HEADER_SIZE, page_size );
  uintptr_t const new_first_block_begin =                             
    new_first_block_alloc_begin - HEAP_BLOCK_HEADER_SIZE;             
  uintptr_t const first_block_begin = (uintptr_t) first_block;        
  uintptr_t const new_first_block_size =                              
 8009a04:	ca 82 08 00 	sub r1,r20,r2                                  <== NOT EXECUTED
    first_block_begin - new_first_block_begin;                        
  Heap_Block *const new_first_block = (Heap_Block *) new_first_block_begin;
                                                                      
  new_first_block->prev_size = first_block->prev_size;                
  new_first_block->size_and_flag = new_first_block_size | HEAP_PREV_BLOCK_USED;
 8009a08:	38 21 00 01 	ori r1,r1,0x1                                  <== NOT EXECUTED
 8009a0c:	58 41 00 04 	sw (r2+4),r1                                   <== NOT EXECUTED
  uintptr_t const first_block_begin = (uintptr_t) first_block;        
  uintptr_t const new_first_block_size =                              
    first_block_begin - new_first_block_begin;                        
  Heap_Block *const new_first_block = (Heap_Block *) new_first_block_begin;
                                                                      
  new_first_block->prev_size = first_block->prev_size;                
 8009a10:	59 a3 ff f8 	sw (r13+-8),r3                                 <== NOT EXECUTED
  new_first_block->size_and_flag = new_first_block_size | HEAP_PREV_BLOCK_USED;
                                                                      
  _Heap_Free_block( heap, new_first_block );                          
 8009a14:	b9 60 08 00 	mv r1,r11                                      <== NOT EXECUTED
 8009a18:	fb ff ff 88 	calli 8009838 <_Heap_Free_block>               <== NOT EXECUTED
      link_below_block,                                               
      extend_last_block                                               
    );                                                                
  }                                                                   
                                                                      
  if ( merge_above_block != NULL ) {                                  
 8009a1c:	46 20 00 49 	be r17,r0,8009b40 <_Heap_Extend+0x2d4>         
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
 8009a20:	29 62 00 10 	lw r2,(r11+16)                                 
)                                                                     
{                                                                     
  uintptr_t const page_size = heap->page_size;                        
  uintptr_t const last_block_begin = (uintptr_t) last_block;          
  uintptr_t const last_block_new_size = _Heap_Align_down(             
    extend_area_end - last_block_begin - HEAP_BLOCK_HEADER_SIZE,      
 8009a24:	35 ce ff f8 	addi r14,r14,-8                                
  uintptr_t extend_area_end                                           
)                                                                     
{                                                                     
  uintptr_t const page_size = heap->page_size;                        
  uintptr_t const last_block_begin = (uintptr_t) last_block;          
  uintptr_t const last_block_new_size = _Heap_Align_down(             
 8009a28:	c9 d1 70 00 	sub r14,r14,r17                                
 8009a2c:	b9 c0 08 00 	mv r1,r14                                      
 8009a30:	f8 00 1e 97 	calli 801148c <__umodsi3>                      
  );                                                                  
  Heap_Block *const new_last_block =                                  
    _Heap_Block_at( last_block, last_block_new_size );                
                                                                      
  new_last_block->size_and_flag =                                     
    (last_block->size_and_flag - last_block_new_size)                 
 8009a34:	2a 22 00 04 	lw r2,(r17+4)                                  
 8009a38:	c9 c1 70 00 	sub r14,r14,r1                                 
    page_size                                                         
  );                                                                  
  Heap_Block *const new_last_block =                                  
    _Heap_Block_at( last_block, last_block_new_size );                
                                                                      
  new_last_block->size_and_flag =                                     
 8009a3c:	b5 d1 08 00 	add r1,r14,r17                                 
    (last_block->size_and_flag - last_block_new_size)                 
 8009a40:	c8 4e 10 00 	sub r2,r2,r14                                  
      | HEAP_PREV_BLOCK_USED;                                         
 8009a44:	38 42 00 01 	ori r2,r2,0x1                                  
    page_size                                                         
  );                                                                  
  Heap_Block *const new_last_block =                                  
    _Heap_Block_at( last_block, last_block_new_size );                
                                                                      
  new_last_block->size_and_flag =                                     
 8009a48:	58 22 00 04 	sw (r1+4),r2                                   
RTEMS_INLINE_ROUTINE void _Heap_Block_set_size(                       
  Heap_Block *block,                                                  
  uintptr_t size                                                      
)                                                                     
{                                                                     
  uintptr_t flag = block->size_and_flag & HEAP_PREV_BLOCK_USED;       
 8009a4c:	2a 23 00 04 	lw r3,(r17+4)                                  
    (last_block->size_and_flag - last_block_new_size)                 
      | HEAP_PREV_BLOCK_USED;                                         
                                                                      
  _Heap_Block_set_size( last_block, last_block_new_size );            
                                                                      
  _Heap_Free_block( heap, last_block );                               
 8009a50:	b9 60 08 00 	mv r1,r11                                      
 8009a54:	ba 20 10 00 	mv r2,r17                                      
 8009a58:	20 63 00 01 	andi r3,r3,0x1                                 
                                                                      
  block->size_and_flag = size | flag;                                 
 8009a5c:	b9 c3 70 00 	or r14,r14,r3                                  
 8009a60:	5a 2e 00 04 	sw (r17+4),r14                                 
 8009a64:	fb ff ff 75 	calli 8009838 <_Heap_Free_block>               
      extend_first_block,                                             
      extend_last_block                                               
    );                                                                
  }                                                                   
                                                                      
  if ( merge_below_block == NULL && merge_above_block == NULL ) {     
 8009a68:	66 31 00 00 	cmpei r17,r17,0                                
 8009a6c:	66 94 00 00 	cmpei r20,r20,0                                
 8009a70:	a2 34 88 00 	and r17,r17,r20                                
 8009a74:	5e 20 00 3f 	bne r17,r0,8009b70 <_Heap_Extend+0x304>        
                                                                      
  if ( extended_size_ptr != NULL )                                    
    *extended_size_ptr = extended_size;                               
                                                                      
  return true;                                                        
}                                                                     
 8009a78:	29 61 00 24 	lw r1,(r11+36)                                 
 * This feature will be used to terminate the scattered heap area list.  See
 * also _Heap_Extend().                                               
 */                                                                   
RTEMS_INLINE_ROUTINE void _Heap_Set_last_block_size( Heap_Control *heap )
{                                                                     
  _Heap_Block_set_size(                                               
 8009a7c:	29 63 00 20 	lw r3,(r11+32)                                 
    _Heap_Free_block( heap, extend_first_block );                     
  }                                                                   
                                                                      
  _Heap_Set_last_block_size( heap );                                  
                                                                      
  extended_size = stats->free_size - free_size;                       
 8009a80:	29 65 00 30 	lw r5,(r11+48)                                 
RTEMS_INLINE_ROUTINE void _Heap_Block_set_size(                       
  Heap_Block *block,                                                  
  uintptr_t size                                                      
)                                                                     
{                                                                     
  uintptr_t flag = block->size_and_flag & HEAP_PREV_BLOCK_USED;       
 8009a84:	28 22 00 04 	lw r2,(r1+4)                                   
                                                                      
  /* Statistics */                                                    
  stats->size += extended_size;                                       
 8009a88:	29 64 00 2c 	lw r4,(r11+44)                                 
 * This feature will be used to terminate the scattered heap area list.  See
 * also _Heap_Extend().                                               
 */                                                                   
RTEMS_INLINE_ROUTINE void _Heap_Set_last_block_size( Heap_Control *heap )
{                                                                     
  _Heap_Block_set_size(                                               
 8009a8c:	c8 61 18 00 	sub r3,r3,r1                                   
RTEMS_INLINE_ROUTINE void _Heap_Block_set_size(                       
  Heap_Block *block,                                                  
  uintptr_t size                                                      
)                                                                     
{                                                                     
  uintptr_t flag = block->size_and_flag & HEAP_PREV_BLOCK_USED;       
 8009a90:	20 42 00 01 	andi r2,r2,0x1                                 
                                                                      
  block->size_and_flag = size | flag;                                 
 8009a94:	b8 62 10 00 	or r2,r3,r2                                    
    _Heap_Free_block( heap, extend_first_block );                     
  }                                                                   
                                                                      
  _Heap_Set_last_block_size( heap );                                  
                                                                      
  extended_size = stats->free_size - free_size;                       
 8009a98:	c8 b8 c0 00 	sub r24,r5,r24                                 
 8009a9c:	58 22 00 04 	sw (r1+4),r2                                   
                                                                      
  /* Statistics */                                                    
  stats->size += extended_size;                                       
 8009aa0:	b4 98 08 00 	add r1,r4,r24                                  
 8009aa4:	59 61 00 2c 	sw (r11+44),r1                                 
                                                                      
  if ( extended_size_ptr != NULL )                                    
    *extended_size_ptr = extended_size;                               
                                                                      
  return true;                                                        
 8009aa8:	34 0c 00 01 	mvi r12,1                                      
  extended_size = stats->free_size - free_size;                       
                                                                      
  /* Statistics */                                                    
  stats->size += extended_size;                                       
                                                                      
  if ( extended_size_ptr != NULL )                                    
 8009aac:	46 e0 00 02 	be r23,r0,8009ab4 <_Heap_Extend+0x248>         <== NEVER TAKEN
    *extended_size_ptr = extended_size;                               
 8009ab0:	5a f8 00 00 	sw (r23+0),r24                                 
                                                                      
  return true;                                                        
}                                                                     
 8009ab4:	b9 80 08 00 	mv r1,r12                                      
 8009ab8:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8009abc:	2b 8b 00 40 	lw r11,(sp+64)                                 
 8009ac0:	2b 8c 00 3c 	lw r12,(sp+60)                                 
 8009ac4:	2b 8d 00 38 	lw r13,(sp+56)                                 
 8009ac8:	2b 8e 00 34 	lw r14,(sp+52)                                 
 8009acc:	2b 8f 00 30 	lw r15,(sp+48)                                 
 8009ad0:	2b 90 00 2c 	lw r16,(sp+44)                                 
 8009ad4:	2b 91 00 28 	lw r17,(sp+40)                                 
 8009ad8:	2b 92 00 24 	lw r18,(sp+36)                                 
 8009adc:	2b 93 00 20 	lw r19,(sp+32)                                 
 8009ae0:	2b 94 00 1c 	lw r20,(sp+28)                                 
 8009ae4:	2b 95 00 18 	lw r21,(sp+24)                                 
 8009ae8:	2b 96 00 14 	lw r22,(sp+20)                                 
 8009aec:	2b 97 00 10 	lw r23,(sp+16)                                 
 8009af0:	2b 98 00 0c 	lw r24,(sp+12)                                 
 8009af4:	2b 99 00 08 	lw r25,(sp+8)                                  
 8009af8:	37 9c 00 48 	addi sp,sp,72                                  
 8009afc:	c3 a0 00 00 	ret                                            
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_of_alloc_area(           
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
 8009b00:	b8 20 b0 00 	mv r22,r1                                      
 8009b04:	e3 ff ff 8e 	bi 800993c <_Heap_Extend+0xd0>                 
      return false;                                                   
    }                                                                 
                                                                      
    if ( extend_area_end == sub_area_begin ) {                        
      merge_below_block = start_block;                                
    } else if ( extend_area_end < sub_area_end ) {                    
 8009b08:	b9 80 c8 00 	mv r25,r12                                     
 8009b0c:	e3 ff ff 85 	bi 8009920 <_Heap_Extend+0xb4>                 
    return false;                                                     
  }                                                                   
                                                                      
  do {                                                                
    uintptr_t const sub_area_begin = (start_block != first_block) ?   
      (uintptr_t) start_block : heap->area_begin;                     
 8009b10:	29 61 00 18 	lw r1,(r11+24)                                 
 8009b14:	e3 ff ff 90 	bi 8009954 <_Heap_Extend+0xe8>                 
  extend_last_block->size_and_flag = 0;                               
  _Heap_Protection_block_initialize( heap, extend_last_block );       
                                                                      
  if ( (uintptr_t) extend_first_block < (uintptr_t) heap->first_block ) {
    heap->first_block = extend_first_block;                           
  } else if ( (uintptr_t) extend_last_block > (uintptr_t) heap->last_block ) {
 8009b18:	29 62 00 24 	lw r2,(r11+36)                                 
 8009b1c:	50 41 ff af 	bgeu r2,r1,80099d8 <_Heap_Extend+0x16c>        
    heap->last_block = extend_last_block;                             
 8009b20:	59 61 00 24 	sw (r11+36),r1                                 
 8009b24:	e3 ff ff ad 	bi 80099d8 <_Heap_Extend+0x16c>                
    start_block = _Heap_Block_at( end_block, _Heap_Block_size( end_block ) );
  } while ( start_block != first_block );                             
                                                                      
  if ( extend_area_begin < heap->area_begin ) {                       
    heap->area_begin = extend_area_begin;                             
  } else if ( heap->area_end < extend_area_end ) {                    
 8009b28:	29 61 00 1c 	lw r1,(r11+28)                                 
 8009b2c:	50 2e ff a0 	bgeu r1,r14,80099ac <_Heap_Extend+0x140>       
    heap->area_end = extend_area_end;                                 
 8009b30:	59 6e 00 1c 	sw (r11+28),r14                                
 8009b34:	e3 ff ff 9e 	bi 80099ac <_Heap_Extend+0x140>                
      _Heap_Block_of_alloc_area( sub_area_end, page_size );           
                                                                      
    if (                                                              
      sub_area_end > extend_area_begin && extend_area_end > sub_area_begin
    ) {                                                               
      return false;                                                   
 8009b38:	34 0c 00 00 	mvi r12,0                                      
 8009b3c:	e3 ff ff de 	bi 8009ab4 <_Heap_Extend+0x248>                
    );                                                                
  }                                                                   
                                                                      
  if ( merge_above_block != NULL ) {                                  
    _Heap_Merge_above( heap, merge_above_block, extend_area_end );    
  } else if ( link_above_block != NULL ) {                            
 8009b40:	46 d1 ff ca 	be r22,r17,8009a68 <_Heap_Extend+0x1fc>        
RTEMS_INLINE_ROUTINE void _Heap_Block_set_size(                       
  Heap_Block *block,                                                  
  uintptr_t size                                                      
)                                                                     
{                                                                     
  uintptr_t flag = block->size_and_flag & HEAP_PREV_BLOCK_USED;       
 8009b44:	2a c3 00 04 	lw r3,(r22+4)                                  
)                                                                     
{                                                                     
  uintptr_t const link_begin = (uintptr_t) link;                      
  uintptr_t const first_block_begin = (uintptr_t) first_block;        
                                                                      
  _Heap_Block_set_size( link, first_block_begin - link_begin );       
 8009b48:	2b 82 00 48 	lw r2,(sp+72)                                  
  }                                                                   
                                                                      
  if ( merge_above_block != NULL ) {                                  
    _Heap_Merge_above( heap, merge_above_block, extend_area_end );    
  } else if ( link_above_block != NULL ) {                            
    _Heap_Link_above(                                                 
 8009b4c:	2b 81 00 44 	lw r1,(sp+68)                                  
 8009b50:	20 63 00 01 	andi r3,r3,0x1                                 
)                                                                     
{                                                                     
  uintptr_t const link_begin = (uintptr_t) link;                      
  uintptr_t const first_block_begin = (uintptr_t) first_block;        
                                                                      
  _Heap_Block_set_size( link, first_block_begin - link_begin );       
 8009b54:	c8 56 10 00 	sub r2,r2,r22                                  
                                                                      
  block->size_and_flag = size | flag;                                 
 8009b58:	b8 43 10 00 	or r2,r2,r3                                    
 8009b5c:	5a c2 00 04 	sw (r22+4),r2                                  
                                                                      
  last_block->size_and_flag |= HEAP_PREV_BLOCK_USED;                  
 8009b60:	28 22 00 04 	lw r2,(r1+4)                                   
 8009b64:	38 42 00 01 	ori r2,r2,0x1                                  
 8009b68:	58 22 00 04 	sw (r1+4),r2                                   
 8009b6c:	e3 ff ff bf 	bi 8009a68 <_Heap_Extend+0x1fc>                
      extend_last_block                                               
    );                                                                
  }                                                                   
                                                                      
  if ( merge_below_block == NULL && merge_above_block == NULL ) {     
    _Heap_Free_block( heap, extend_first_block );                     
 8009b70:	2b 82 00 48 	lw r2,(sp+72)                                  
 8009b74:	b9 60 08 00 	mv r1,r11                                      
 8009b78:	fb ff ff 30 	calli 8009838 <_Heap_Free_block>               
 8009b7c:	e3 ff ff bf 	bi 8009a78 <_Heap_Extend+0x20c>                
    heap->last_block = extend_last_block;                             
  }                                                                   
                                                                      
  if ( merge_below_block != NULL ) {                                  
    _Heap_Merge_below( heap, extend_area_begin, merge_below_block );  
  } else if ( link_below_block != NULL ) {                            
 8009b80:	47 34 ff a7 	be r25,r20,8009a1c <_Heap_Extend+0x1b0>        
{                                                                     
  uintptr_t const last_block_begin = (uintptr_t) last_block;          
  uintptr_t const link_begin = (uintptr_t) link;                      
                                                                      
  last_block->size_and_flag =                                         
    (link_begin - last_block_begin) | HEAP_PREV_BLOCK_USED;           
 8009b84:	cb 21 c8 00 	sub r25,r25,r1                                 
 8009b88:	3b 39 00 01 	ori r25,r25,0x1                                
)                                                                     
{                                                                     
  uintptr_t const last_block_begin = (uintptr_t) last_block;          
  uintptr_t const link_begin = (uintptr_t) link;                      
                                                                      
  last_block->size_and_flag =                                         
 8009b8c:	58 39 00 04 	sw (r1+4),r25                                  
 8009b90:	e3 ff ff a3 	bi 8009a1c <_Heap_Extend+0x1b0>                
                                                                      

080095fc <_Heap_Free>: return do_free; } #endif bool _Heap_Free( Heap_Control *heap, void *alloc_begin_ptr ) {
 80095fc:	37 9c ff f4 	addi sp,sp,-12                                 
 8009600:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8009604:	5b 8c 00 08 	sw (sp+8),r12                                  
 8009608:	5b 9d 00 04 	sw (sp+4),ra                                   
 800960c:	b8 40 18 00 	mv r3,r2                                       
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
 8009610:	28 22 00 10 	lw r2,(r1+16)                                  
 8009614:	b8 20 58 00 	mv r11,r1                                      
 8009618:	b8 60 08 00 	mv r1,r3                                       
 800961c:	34 6c ff f8 	addi r12,r3,-8                                 
 8009620:	f8 00 1e 75 	calli 8010ff4 <__umodsi3>                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_block_in_heap(                     
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
 8009624:	29 64 00 20 	lw r4,(r11+32)                                 
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
    - HEAP_BLOCK_HEADER_SIZE);                                        
 8009628:	c9 81 10 00 	sub r2,r12,r1                                  
  bool next_is_free = false;                                          
                                                                      
  _Heap_Protection_block_check( heap, block );                        
                                                                      
  if ( !_Heap_Is_block_in_heap( heap, block ) ) {                     
    return false;                                                     
 800962c:	34 01 00 00 	mvi r1,0                                       
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
    && (uintptr_t) block <= (uintptr_t) heap->last_block;             
 8009630:	54 82 00 43 	bgu r4,r2,800973c <_Heap_Free+0x140>           
 8009634:	29 65 00 24 	lw r5,(r11+36)                                 
 8009638:	54 45 00 41 	bgu r2,r5,800973c <_Heap_Free+0x140>           
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
 800963c:	28 48 00 04 	lw r8,(r2+4)                                   
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8009640:	34 07 ff fe 	mvi r7,-2                                      
 8009644:	a1 07 30 00 	and r6,r8,r7                                   
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
 8009648:	b4 46 18 00 	add r3,r2,r6                                   
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
    && (uintptr_t) block <= (uintptr_t) heap->last_block;             
 800964c:	54 83 00 3c 	bgu r4,r3,800973c <_Heap_Free+0x140>           <== NEVER TAKEN
 8009650:	54 65 00 3b 	bgu r3,r5,800973c <_Heap_Free+0x140>           <== NEVER TAKEN
 8009654:	28 69 00 04 	lw r9,(r3+4)                                   
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 8009658:	21 2a 00 01 	andi r10,r9,0x1                                
  if ( !_Heap_Is_block_in_heap( heap, next_block ) ) {                
    _HAssert( false );                                                
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_prev_used( next_block ) ) {                          
 800965c:	45 40 00 38 	be r10,r0,800973c <_Heap_Free+0x140>           <== NEVER TAKEN
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8009660:	a1 27 48 00 	and r9,r9,r7                                   
    return true;                                                      
  }                                                                   
                                                                      
  next_block_size = _Heap_Block_size( next_block );                   
  next_is_free = next_block != heap->last_block                       
    && !_Heap_Is_prev_used( _Heap_Block_at( next_block, next_block_size ));
 8009664:	34 07 00 00 	mvi r7,0                                       
 8009668:	44 a3 00 05 	be r5,r3,800967c <_Heap_Free+0x80>             
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
 800966c:	b4 69 08 00 	add r1,r3,r9                                   
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 8009670:	28 27 00 04 	lw r7,(r1+4)                                   
 8009674:	20 e7 00 01 	andi r7,r7,0x1                                 
                                                                      
    return do_free;                                                   
  }                                                                   
#endif                                                                
                                                                      
bool _Heap_Free( Heap_Control *heap, void *alloc_begin_ptr )          
 8009678:	18 e7 00 01 	xori r7,r7,0x1                                 
 800967c:	21 08 00 01 	andi r8,r8,0x1                                 
                                                                      
  next_block_size = _Heap_Block_size( next_block );                   
  next_is_free = next_block != heap->last_block                       
    && !_Heap_Is_prev_used( _Heap_Block_at( next_block, next_block_size ));
                                                                      
  if ( !_Heap_Is_prev_used( block ) ) {                               
 8009680:	5d 00 00 19 	bne r8,r0,80096e4 <_Heap_Free+0xe8>            
    uintptr_t const prev_size = block->prev_size;                     
 8009684:	28 4a 00 00 	lw r10,(r2+0)                                  
    Heap_Block * const prev_block = _Heap_Block_at( block, -prev_size );
                                                                      
    if ( !_Heap_Is_block_in_heap( heap, prev_block ) ) {              
      _HAssert( false );                                              
      return( false );                                                
 8009688:	34 01 00 00 	mvi r1,0                                       
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
 800968c:	c8 4a 10 00 	sub r2,r2,r10                                  
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
    && (uintptr_t) block <= (uintptr_t) heap->last_block;             
 8009690:	54 82 00 2b 	bgu r4,r2,800973c <_Heap_Free+0x140>           <== NEVER TAKEN
 8009694:	b9 00 08 00 	mv r1,r8                                       
 8009698:	54 45 00 29 	bgu r2,r5,800973c <_Heap_Free+0x140>           <== NEVER TAKEN
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 800969c:	28 44 00 04 	lw r4,(r2+4)                                   
 80096a0:	20 84 00 01 	andi r4,r4,0x1                                 
    }                                                                 
                                                                      
    /* As we always coalesce free blocks, the block that preceedes prev_block
       must have been used. */                                        
    if ( !_Heap_Is_prev_used ( prev_block) ) {                        
 80096a4:	44 80 00 26 	be r4,r0,800973c <_Heap_Free+0x140>            <== NEVER TAKEN
      _HAssert( false );                                              
      return( false );                                                
    }                                                                 
                                                                      
    if ( next_is_free ) {       /* coalesce both */                   
 80096a8:	44 e0 00 3d 	be r7,r0,800979c <_Heap_Free+0x1a0>            
      uintptr_t const size = block_size + prev_size + next_block_size;
      _Heap_Free_list_remove( next_block );                           
      stats->free_blocks -= 1;                                        
 80096ac:	29 64 00 38 	lw r4,(r11+56)                                 
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
 80096b0:	28 61 00 08 	lw r1,(r3+8)                                   
 80096b4:	28 63 00 0c 	lw r3,(r3+12)                                  
      _HAssert( false );                                              
      return( false );                                                
    }                                                                 
                                                                      
    if ( next_is_free ) {       /* coalesce both */                   
      uintptr_t const size = block_size + prev_size + next_block_size;
 80096b8:	b4 c9 48 00 	add r9,r6,r9                                   
 80096bc:	b5 2a 50 00 	add r10,r9,r10                                 
RTEMS_INLINE_ROUTINE void _Heap_Free_list_remove( Heap_Block *block ) 
{                                                                     
  Heap_Block *next = block->next;                                     
  Heap_Block *prev = block->prev;                                     
                                                                      
  prev->next = next;                                                  
 80096c0:	58 61 00 08 	sw (r3+8),r1                                   
  next->prev = prev;                                                  
 80096c4:	58 23 00 0c 	sw (r1+12),r3                                  
      _Heap_Free_list_remove( next_block );                           
      stats->free_blocks -= 1;                                        
 80096c8:	34 81 ff ff 	addi r1,r4,-1                                  
 80096cc:	59 61 00 38 	sw (r11+56),r1                                 
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
 80096d0:	39 43 00 01 	ori r3,r10,0x1                                 
      next_block = _Heap_Block_at( prev_block, size );                
      _HAssert(!_Heap_Is_prev_used( next_block));                     
      next_block->prev_size = size;                                   
 80096d4:	b4 4a 08 00 	add r1,r2,r10                                  
                                                                      
    if ( next_is_free ) {       /* coalesce both */                   
      uintptr_t const size = block_size + prev_size + next_block_size;
      _Heap_Free_list_remove( next_block );                           
      stats->free_blocks -= 1;                                        
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
 80096d8:	58 43 00 04 	sw (r2+4),r3                                   
      next_block = _Heap_Block_at( prev_block, size );                
      _HAssert(!_Heap_Is_prev_used( next_block));                     
      next_block->prev_size = size;                                   
 80096dc:	58 2a 00 00 	sw (r1+0),r10                                  
 80096e0:	e0 00 00 0d 	bi 8009714 <_Heap_Free+0x118>                  
      uintptr_t const size = block_size + prev_size;                  
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
      next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;             
      next_block->prev_size = size;                                   
    }                                                                 
  } else if ( next_is_free ) {    /* coalesce next */                 
 80096e4:	44 e0 00 1b 	be r7,r0,8009750 <_Heap_Free+0x154>            
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
 80096e8:	28 64 00 08 	lw r4,(r3+8)                                   
 80096ec:	28 61 00 0c 	lw r1,(r3+12)                                  
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
      next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;             
      next_block->prev_size = size;                                   
    }                                                                 
  } else if ( next_is_free ) {    /* coalesce next */                 
    uintptr_t const size = block_size + next_block_size;              
 80096f0:	b5 26 48 00 	add r9,r9,r6                                   
)                                                                     
{                                                                     
  Heap_Block *next = old_block->next;                                 
  Heap_Block *prev = old_block->prev;                                 
                                                                      
  new_block->next = next;                                             
 80096f4:	58 44 00 08 	sw (r2+8),r4                                   
  new_block->prev = prev;                                             
 80096f8:	58 41 00 0c 	sw (r2+12),r1                                  
    _Heap_Free_list_replace( next_block, block );                     
    block->size_and_flag = size | HEAP_PREV_BLOCK_USED;               
 80096fc:	39 25 00 01 	ori r5,r9,0x1                                  
    next_block  = _Heap_Block_at( block, size );                      
    next_block->prev_size = size;                                     
 8009700:	b4 49 18 00 	add r3,r2,r9                                   
                                                                      
  next->prev = new_block;                                             
 8009704:	58 82 00 0c 	sw (r4+12),r2                                  
  prev->next = new_block;                                             
 8009708:	58 22 00 08 	sw (r1+8),r2                                   
      next_block->prev_size = size;                                   
    }                                                                 
  } else if ( next_is_free ) {    /* coalesce next */                 
    uintptr_t const size = block_size + next_block_size;              
    _Heap_Free_list_replace( next_block, block );                     
    block->size_and_flag = size | HEAP_PREV_BLOCK_USED;               
 800970c:	58 45 00 04 	sw (r2+4),r5                                   
    next_block  = _Heap_Block_at( block, size );                      
    next_block->prev_size = size;                                     
 8009710:	58 69 00 00 	sw (r3+0),r9                                   
      stats->max_free_blocks = stats->free_blocks;                    
    }                                                                 
  }                                                                   
                                                                      
  /* Statistics */                                                    
  --stats->used_blocks;                                               
 8009714:	29 62 00 40 	lw r2,(r11+64)                                 
  ++stats->frees;                                                     
 8009718:	29 61 00 50 	lw r1,(r11+80)                                 
  stats->free_size += block_size;                                     
 800971c:	29 63 00 30 	lw r3,(r11+48)                                 
      stats->max_free_blocks = stats->free_blocks;                    
    }                                                                 
  }                                                                   
                                                                      
  /* Statistics */                                                    
  --stats->used_blocks;                                               
 8009720:	34 42 ff ff 	addi r2,r2,-1                                  
  ++stats->frees;                                                     
 8009724:	34 21 00 01 	addi r1,r1,1                                   
  stats->free_size += block_size;                                     
 8009728:	b4 66 30 00 	add r6,r3,r6                                   
    }                                                                 
  }                                                                   
                                                                      
  /* Statistics */                                                    
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
 800972c:	59 61 00 50 	sw (r11+80),r1                                 
      stats->max_free_blocks = stats->free_blocks;                    
    }                                                                 
  }                                                                   
                                                                      
  /* Statistics */                                                    
  --stats->used_blocks;                                               
 8009730:	59 62 00 40 	sw (r11+64),r2                                 
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
 8009734:	59 66 00 30 	sw (r11+48),r6                                 
                                                                      
  return( true );                                                     
 8009738:	34 01 00 01 	mvi r1,1                                       
}                                                                     
 800973c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8009740:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8009744:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8009748:	37 9c 00 0c 	addi sp,sp,12                                  
 800974c:	c3 a0 00 00 	ret                                            
    next_block->prev_size = size;                                     
  } else {                        /* no coalesce */                   
    /* Add 'block' to the head of the free blocks list as it tends to 
       produce less fragmentation than adding to the tail. */         
    _Heap_Free_list_insert_after( _Heap_Free_list_head( heap), block );
    block->size_and_flag = block_size | HEAP_PREV_BLOCK_USED;         
 8009750:	38 c1 00 01 	ori r1,r6,0x1                                  
 8009754:	58 41 00 04 	sw (r2+4),r1                                   
    next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;               
 8009758:	28 67 00 04 	lw r7,(r3+4)                                   
    next_block->prev_size = block_size;                               
                                                                      
    /* Statistics */                                                  
    ++stats->free_blocks;                                             
 800975c:	29 61 00 38 	lw r1,(r11+56)                                 
RTEMS_INLINE_ROUTINE void _Heap_Free_list_insert_after(               
  Heap_Block *block_before,                                           
  Heap_Block *new_block                                               
)                                                                     
{                                                                     
  Heap_Block *next = block_before->next;                              
 8009760:	29 64 00 08 	lw r4,(r11+8)                                  
  } else {                        /* no coalesce */                   
    /* Add 'block' to the head of the free blocks list as it tends to 
       produce less fragmentation than adding to the tail. */         
    _Heap_Free_list_insert_after( _Heap_Free_list_head( heap), block );
    block->size_and_flag = block_size | HEAP_PREV_BLOCK_USED;         
    next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;               
 8009764:	34 05 ff fe 	mvi r5,-2                                      
                                                                      
  new_block->next = next;                                             
  new_block->prev = block_before;                                     
 8009768:	58 4b 00 0c 	sw (r2+12),r11                                 
 800976c:	a0 e5 28 00 	and r5,r7,r5                                   
    next_block->prev_size = block_size;                               
                                                                      
    /* Statistics */                                                  
    ++stats->free_blocks;                                             
    if ( stats->max_free_blocks < stats->free_blocks ) {              
 8009770:	29 67 00 3c 	lw r7,(r11+60)                                 
    block->size_and_flag = block_size | HEAP_PREV_BLOCK_USED;         
    next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;               
    next_block->prev_size = block_size;                               
                                                                      
    /* Statistics */                                                  
    ++stats->free_blocks;                                             
 8009774:	34 21 00 01 	addi r1,r1,1                                   
  Heap_Block *new_block                                               
)                                                                     
{                                                                     
  Heap_Block *next = block_before->next;                              
                                                                      
  new_block->next = next;                                             
 8009778:	58 44 00 08 	sw (r2+8),r4                                   
  new_block->prev = block_before;                                     
  block_before->next = new_block;                                     
  next->prev = new_block;                                             
 800977c:	58 82 00 0c 	sw (r4+12),r2                                  
  } else {                        /* no coalesce */                   
    /* Add 'block' to the head of the free blocks list as it tends to 
       produce less fragmentation than adding to the tail. */         
    _Heap_Free_list_insert_after( _Heap_Free_list_head( heap), block );
    block->size_and_flag = block_size | HEAP_PREV_BLOCK_USED;         
    next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;               
 8009780:	58 65 00 04 	sw (r3+4),r5                                   
    next_block->prev_size = block_size;                               
 8009784:	58 66 00 00 	sw (r3+0),r6                                   
{                                                                     
  Heap_Block *next = block_before->next;                              
                                                                      
  new_block->next = next;                                             
  new_block->prev = block_before;                                     
  block_before->next = new_block;                                     
 8009788:	59 62 00 08 	sw (r11+8),r2                                  
                                                                      
    /* Statistics */                                                  
    ++stats->free_blocks;                                             
 800978c:	59 61 00 38 	sw (r11+56),r1                                 
    if ( stats->max_free_blocks < stats->free_blocks ) {              
 8009790:	50 e1 ff e1 	bgeu r7,r1,8009714 <_Heap_Free+0x118>          
      stats->max_free_blocks = stats->free_blocks;                    
 8009794:	59 61 00 3c 	sw (r11+60),r1                                 
 8009798:	e3 ff ff df 	bi 8009714 <_Heap_Free+0x118>                  
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
      next_block = _Heap_Block_at( prev_block, size );                
      _HAssert(!_Heap_Is_prev_used( next_block));                     
      next_block->prev_size = size;                                   
    } else {                      /* coalesce prev */                 
      uintptr_t const size = block_size + prev_size;                  
 800979c:	b4 ca 50 00 	add r10,r6,r10                                 
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
 80097a0:	39 41 00 01 	ori r1,r10,0x1                                 
 80097a4:	58 41 00 04 	sw (r2+4),r1                                   
      next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;             
 80097a8:	28 62 00 04 	lw r2,(r3+4)                                   
 80097ac:	34 01 ff fe 	mvi r1,-2                                      
      next_block->prev_size = size;                                   
 80097b0:	58 6a 00 00 	sw (r3+0),r10                                  
      _HAssert(!_Heap_Is_prev_used( next_block));                     
      next_block->prev_size = size;                                   
    } else {                      /* coalesce prev */                 
      uintptr_t const size = block_size + prev_size;                  
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
      next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;             
 80097b4:	a0 41 08 00 	and r1,r2,r1                                   
 80097b8:	58 61 00 04 	sw (r3+4),r1                                   
 80097bc:	e3 ff ff d6 	bi 8009714 <_Heap_Free+0x118>                  
                                                                      

0800a1e8 <_Heap_Get_information>: void _Heap_Get_information( Heap_Control *the_heap, Heap_Information_block *the_info ) {
 800a1e8:	37 9c ff fc 	addi sp,sp,-4                                  
 800a1ec:	5b 8b 00 04 	sw (sp+4),r11                                  
  Heap_Block *the_block = the_heap->first_block;                      
 800a1f0:	28 26 00 20 	lw r6,(r1+32)                                  
  Heap_Block *const end = the_heap->last_block;                       
 800a1f4:	28 29 00 24 	lw r9,(r1+36)                                  
                                                                      
  memset(the_info, 0, sizeof(*the_info));                             
 800a1f8:	58 40 00 00 	sw (r2+0),r0                                   
 800a1fc:	58 40 00 04 	sw (r2+4),r0                                   
 800a200:	58 40 00 08 	sw (r2+8),r0                                   
 800a204:	58 40 00 0c 	sw (r2+12),r0                                  
 800a208:	58 40 00 10 	sw (r2+16),r0                                  
 800a20c:	58 40 00 14 	sw (r2+20),r0                                  
                                                                      
  while ( the_block != end ) {                                        
 800a210:	44 c9 00 15 	be r6,r9,800a264 <_Heap_Get_information+0x7c>  <== NEVER TAKEN
 800a214:	28 c5 00 04 	lw r5,(r6+4)                                   
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 800a218:	34 0a ff fe 	mvi r10,-2                                     
 800a21c:	a0 aa 18 00 	and r3,r5,r10                                  
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
 800a220:	b4 c3 20 00 	add r4,r6,r3                                   
    if ( info->largest < the_size )                                   
      info->largest = the_size;                                       
                                                                      
    the_block = next_block;                                           
  }                                                                   
}                                                                     
 800a224:	28 85 00 04 	lw r5,(r4+4)                                   
    Heap_Information  *info;                                          
                                                                      
    if ( _Heap_Is_prev_used(next_block) )                             
      info = &the_info->Used;                                         
    else                                                              
      info = &the_info->Free;                                         
 800a228:	b8 40 08 00 	mv r1,r2                                       
  Heap_Block *the_block = the_heap->first_block;                      
  Heap_Block *const end = the_heap->last_block;                       
                                                                      
  memset(the_info, 0, sizeof(*the_info));                             
                                                                      
  while ( the_block != end ) {                                        
 800a22c:	b8 80 30 00 	mv r6,r4                                       
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 800a230:	20 a7 00 01 	andi r7,r5,0x1                                 
    uintptr_t const     the_size = _Heap_Block_size(the_block);       
    Heap_Block *const  next_block = _Heap_Block_at(the_block, the_size);
    Heap_Information  *info;                                          
                                                                      
    if ( _Heap_Is_prev_used(next_block) )                             
 800a234:	44 e0 00 02 	be r7,r0,800a23c <_Heap_Get_information+0x54>  
      info = &the_info->Used;                                         
 800a238:	34 41 00 0c 	addi r1,r2,12                                  
    else                                                              
      info = &the_info->Free;                                         
                                                                      
    info->number++;                                                   
 800a23c:	28 28 00 00 	lw r8,(r1+0)                                   
    info->total += the_size;                                          
 800a240:	28 27 00 08 	lw r7,(r1+8)                                   
    if ( info->largest < the_size )                                   
 800a244:	28 2b 00 04 	lw r11,(r1+4)                                  
    if ( _Heap_Is_prev_used(next_block) )                             
      info = &the_info->Used;                                         
    else                                                              
      info = &the_info->Free;                                         
                                                                      
    info->number++;                                                   
 800a248:	35 08 00 01 	addi r8,r8,1                                   
    info->total += the_size;                                          
 800a24c:	b4 e3 38 00 	add r7,r7,r3                                   
    if ( _Heap_Is_prev_used(next_block) )                             
      info = &the_info->Used;                                         
    else                                                              
      info = &the_info->Free;                                         
                                                                      
    info->number++;                                                   
 800a250:	58 28 00 00 	sw (r1+0),r8                                   
    info->total += the_size;                                          
 800a254:	58 27 00 08 	sw (r1+8),r7                                   
    if ( info->largest < the_size )                                   
 800a258:	51 63 00 02 	bgeu r11,r3,800a260 <_Heap_Get_information+0x78>
      info->largest = the_size;                                       
 800a25c:	58 23 00 04 	sw (r1+4),r3                                   
  Heap_Block *the_block = the_heap->first_block;                      
  Heap_Block *const end = the_heap->last_block;                       
                                                                      
  memset(the_info, 0, sizeof(*the_info));                             
                                                                      
  while ( the_block != end ) {                                        
 800a260:	5d 24 ff ef 	bne r9,r4,800a21c <_Heap_Get_information+0x34> 
    if ( info->largest < the_size )                                   
      info->largest = the_size;                                       
                                                                      
    the_block = next_block;                                           
  }                                                                   
}                                                                     
 800a264:	2b 8b 00 04 	lw r11,(sp+4)                                  
 800a268:	37 9c 00 04 	addi sp,sp,4                                   
 800a26c:	c3 a0 00 00 	ret                                            
                                                                      

08011a20 <_Heap_Size_of_alloc_area>: bool _Heap_Size_of_alloc_area( Heap_Control *heap, void *alloc_begin_ptr, uintptr_t *alloc_size ) {
 8011a20:	37 9c ff f0 	addi sp,sp,-16                                 
 8011a24:	5b 8b 00 10 	sw (sp+16),r11                                 
 8011a28:	5b 8c 00 0c 	sw (sp+12),r12                                 
 8011a2c:	5b 8d 00 08 	sw (sp+8),r13                                  
 8011a30:	5b 9d 00 04 	sw (sp+4),ra                                   
 8011a34:	b8 40 60 00 	mv r12,r2                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
 8011a38:	28 22 00 10 	lw r2,(r1+16)                                  
 8011a3c:	b8 20 58 00 	mv r11,r1                                      
 8011a40:	b9 80 08 00 	mv r1,r12                                      
 8011a44:	b8 60 68 00 	mv r13,r3                                      
 8011a48:	fb ff fd 6b 	calli 8010ff4 <__umodsi3>                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_block_in_heap(                     
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
 8011a4c:	29 62 00 20 	lw r2,(r11+32)                                 
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
 8011a50:	35 84 ff f8 	addi r4,r12,-8                                 
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
    - HEAP_BLOCK_HEADER_SIZE);                                        
 8011a54:	c8 81 20 00 	sub r4,r4,r1                                   
  Heap_Block *block = _Heap_Block_of_alloc_area( alloc_begin, page_size );
  Heap_Block *next_block = NULL;                                      
  uintptr_t block_size = 0;                                           
                                                                      
  if ( !_Heap_Is_block_in_heap( heap, block ) ) {                     
    return false;                                                     
 8011a58:	34 01 00 00 	mvi r1,0                                       
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
    && (uintptr_t) block <= (uintptr_t) heap->last_block;             
 8011a5c:	54 44 00 10 	bgu r2,r4,8011a9c <_Heap_Size_of_alloc_area+0x7c>
 8011a60:	29 65 00 24 	lw r5,(r11+36)                                 
 8011a64:	54 85 00 0e 	bgu r4,r5,8011a9c <_Heap_Size_of_alloc_area+0x7c><== NEVER TAKEN
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8011a68:	28 86 00 04 	lw r6,(r4+4)                                   
 8011a6c:	34 03 ff fe 	mvi r3,-2                                      
 8011a70:	a0 66 18 00 	and r3,r3,r6                                   
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
 8011a74:	b4 83 20 00 	add r4,r4,r3                                   
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
    && (uintptr_t) block <= (uintptr_t) heap->last_block;             
 8011a78:	54 44 00 09 	bgu r2,r4,8011a9c <_Heap_Size_of_alloc_area+0x7c><== NEVER TAKEN
 8011a7c:	54 85 00 08 	bgu r4,r5,8011a9c <_Heap_Size_of_alloc_area+0x7c><== NEVER TAKEN
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 8011a80:	28 82 00 04 	lw r2,(r4+4)                                   
 8011a84:	20 42 00 01 	andi r2,r2,0x1                                 
  block_size = _Heap_Block_size( block );                             
  next_block = _Heap_Block_at( block, block_size );                   
                                                                      
  if (                                                                
    !_Heap_Is_block_in_heap( heap, next_block )                       
      || !_Heap_Is_prev_used( next_block )                            
 8011a88:	44 40 00 05 	be r2,r0,8011a9c <_Heap_Size_of_alloc_area+0x7c><== NEVER TAKEN
  ) {                                                                 
    return false;                                                     
  }                                                                   
                                                                      
  *alloc_size = (uintptr_t) next_block + HEAP_ALLOC_BONUS - alloc_begin;
 8011a8c:	c8 8c 20 00 	sub r4,r4,r12                                  
 8011a90:	34 84 00 04 	addi r4,r4,4                                   
 8011a94:	59 a4 00 00 	sw (r13+0),r4                                  
                                                                      
  return true;                                                        
 8011a98:	34 01 00 01 	mvi r1,1                                       
}                                                                     
 8011a9c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8011aa0:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8011aa4:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 8011aa8:	2b 8d 00 08 	lw r13,(sp+8)                                  
 8011aac:	37 9c 00 10 	addi sp,sp,16                                  
 8011ab0:	c3 a0 00 00 	ret                                            
                                                                      

08004e1c <_Heap_Walk>: bool _Heap_Walk( Heap_Control *heap, int source, bool dump ) {
 8004e1c:	37 9c ff 9c 	addi sp,sp,-100                                
 8004e20:	5b 8b 00 50 	sw (sp+80),r11                                 
 8004e24:	5b 8c 00 4c 	sw (sp+76),r12                                 
 8004e28:	5b 8d 00 48 	sw (sp+72),r13                                 
 8004e2c:	5b 8e 00 44 	sw (sp+68),r14                                 
 8004e30:	5b 8f 00 40 	sw (sp+64),r15                                 
 8004e34:	5b 90 00 3c 	sw (sp+60),r16                                 
 8004e38:	5b 91 00 38 	sw (sp+56),r17                                 
 8004e3c:	5b 92 00 34 	sw (sp+52),r18                                 
 8004e40:	5b 93 00 30 	sw (sp+48),r19                                 
 8004e44:	5b 94 00 2c 	sw (sp+44),r20                                 
 8004e48:	5b 95 00 28 	sw (sp+40),r21                                 
 8004e4c:	5b 96 00 24 	sw (sp+36),r22                                 
 8004e50:	5b 97 00 20 	sw (sp+32),r23                                 
 8004e54:	5b 98 00 1c 	sw (sp+28),r24                                 
 8004e58:	5b 99 00 18 	sw (sp+24),r25                                 
 8004e5c:	5b 9b 00 14 	sw (sp+20),fp                                  
 8004e60:	5b 9d 00 10 	sw (sp+16),ra                                  
  uintptr_t const min_block_size = heap->min_block_size;              
  Heap_Block *const first_block = heap->first_block;                  
  Heap_Block *const last_block = heap->last_block;                    
  Heap_Block *block = first_block;                                    
  Heap_Walk_printer printer = dump ?                                  
    _Heap_Walk_print : _Heap_Walk_print_nothing;                      
 8004e64:	78 0f 08 00 	mvhi r15,0x800                                 
bool _Heap_Walk(                                                      
  Heap_Control *heap,                                                 
  int source,                                                         
  bool dump                                                           
)                                                                     
{                                                                     
 8004e68:	20 63 00 ff 	andi r3,r3,0xff                                
 8004e6c:	b8 20 68 00 	mv r13,r1                                      
 8004e70:	b8 40 98 00 	mv r19,r2                                      
  uintptr_t const page_size = heap->page_size;                        
 8004e74:	28 35 00 10 	lw r21,(r1+16)                                 
  uintptr_t const min_block_size = heap->min_block_size;              
 8004e78:	28 36 00 14 	lw r22,(r1+20)                                 
  Heap_Block *const first_block = heap->first_block;                  
 8004e7c:	28 34 00 20 	lw r20,(r1+32)                                 
  Heap_Block *const last_block = heap->last_block;                    
 8004e80:	28 37 00 24 	lw r23,(r1+36)                                 
  Heap_Block *block = first_block;                                    
  Heap_Walk_printer printer = dump ?                                  
    _Heap_Walk_print : _Heap_Walk_print_nothing;                      
 8004e84:	39 ef 4d 74 	ori r15,r15,0x4d74                             
 8004e88:	44 60 00 03 	be r3,r0,8004e94 <_Heap_Walk+0x78>             
 8004e8c:	78 0f 08 00 	mvhi r15,0x800                                 
 8004e90:	39 ef 4d 98 	ori r15,r15,0x4d98                             
                                                                      
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
 8004e94:	78 03 08 01 	mvhi r3,0x801                                  
 8004e98:	38 63 59 e4 	ori r3,r3,0x59e4                               
 8004e9c:	28 69 00 00 	lw r9,(r3+0)                                   
 8004ea0:	34 07 00 03 	mvi r7,3                                       
    return true;                                                      
 8004ea4:	34 03 00 01 	mvi r3,1                                       
  Heap_Block *const last_block = heap->last_block;                    
  Heap_Block *block = first_block;                                    
  Heap_Walk_printer printer = dump ?                                  
    _Heap_Walk_print : _Heap_Walk_print_nothing;                      
                                                                      
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
 8004ea8:	45 27 00 15 	be r9,r7,8004efc <_Heap_Walk+0xe0>             
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
 8004eac:	b8 60 08 00 	mv r1,r3                                       
 8004eb0:	2b 9d 00 10 	lw ra,(sp+16)                                  
 8004eb4:	2b 8b 00 50 	lw r11,(sp+80)                                 
 8004eb8:	2b 8c 00 4c 	lw r12,(sp+76)                                 
 8004ebc:	2b 8d 00 48 	lw r13,(sp+72)                                 
 8004ec0:	2b 8e 00 44 	lw r14,(sp+68)                                 
 8004ec4:	2b 8f 00 40 	lw r15,(sp+64)                                 
 8004ec8:	2b 90 00 3c 	lw r16,(sp+60)                                 
 8004ecc:	2b 91 00 38 	lw r17,(sp+56)                                 
 8004ed0:	2b 92 00 34 	lw r18,(sp+52)                                 
 8004ed4:	2b 93 00 30 	lw r19,(sp+48)                                 
 8004ed8:	2b 94 00 2c 	lw r20,(sp+44)                                 
 8004edc:	2b 95 00 28 	lw r21,(sp+40)                                 
 8004ee0:	2b 96 00 24 	lw r22,(sp+36)                                 
 8004ee4:	2b 97 00 20 	lw r23,(sp+32)                                 
 8004ee8:	2b 98 00 1c 	lw r24,(sp+28)                                 
 8004eec:	2b 99 00 18 	lw r25,(sp+24)                                 
 8004ef0:	2b 9b 00 14 	lw fp,(sp+20)                                  
 8004ef4:	37 9c 00 64 	addi sp,sp,100                                 
 8004ef8:	c3 a0 00 00 	ret                                            
  Heap_Block *const first_free_block = _Heap_Free_list_first( heap ); 
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  Heap_Block *const first_block = heap->first_block;                  
  Heap_Block *const last_block = heap->last_block;                    
                                                                      
  (*printer)(                                                         
 8004efc:	29 a2 00 08 	lw r2,(r13+8)                                  
 8004f00:	29 a1 00 0c 	lw r1,(r13+12)                                 
 8004f04:	29 a6 00 18 	lw r6,(r13+24)                                 
 8004f08:	29 a7 00 1c 	lw r7,(r13+28)                                 
 8004f0c:	78 03 08 01 	mvhi r3,0x801                                  
 8004f10:	5b 82 00 08 	sw (sp+8),r2                                   
 8004f14:	5b 81 00 0c 	sw (sp+12),r1                                  
 8004f18:	5b 97 00 04 	sw (sp+4),r23                                  
 8004f1c:	ba 60 08 00 	mv r1,r19                                      
 8004f20:	34 02 00 00 	mvi r2,0                                       
 8004f24:	38 63 32 78 	ori r3,r3,0x3278                               
 8004f28:	ba a0 20 00 	mv r4,r21                                      
 8004f2c:	ba c0 28 00 	mv r5,r22                                      
 8004f30:	ba 80 40 00 	mv r8,r20                                      
 8004f34:	d9 e0 00 00 	call r15                                       
    heap->area_begin, heap->area_end,                                 
    first_block, last_block,                                          
    first_free_block, last_free_block                                 
  );                                                                  
                                                                      
  if ( page_size == 0 ) {                                             
 8004f38:	46 a0 00 26 	be r21,r0,8004fd0 <_Heap_Walk+0x1b4>           
)                                                                     
{                                                                     
#if (CPU_ALIGNMENT == 0)                                              
    return true;                                                      
#else                                                                 
    return (((uintptr_t)address % CPU_ALIGNMENT) == 0);               
 8004f3c:	22 ab 00 07 	andi r11,r21,0x7                               
    (*printer)( source, true, "page size is zero\n" );                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Addresses_Is_aligned( (void *) page_size ) ) {               
 8004f40:	5d 60 00 2b 	bne r11,r0,8004fec <_Heap_Walk+0x1d0>          
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
 8004f44:	ba c0 08 00 	mv r1,r22                                      
 8004f48:	ba a0 10 00 	mv r2,r21                                      
 8004f4c:	fb ff ee a9 	calli 80009f0 <__umodsi3>                      
 8004f50:	b8 20 60 00 	mv r12,r1                                      
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_aligned( min_block_size, page_size ) ) {             
 8004f54:	5c 2b 00 2e 	bne r1,r11,800500c <_Heap_Walk+0x1f0>          <== NEVER TAKEN
 8004f58:	36 81 00 08 	addi r1,r20,8                                  
 8004f5c:	ba a0 10 00 	mv r2,r21                                      
 8004f60:	fb ff ee a4 	calli 80009f0 <__umodsi3>                      
 8004f64:	b8 20 18 00 	mv r3,r1                                       
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if (                                                                
 8004f68:	5c 2c 00 31 	bne r1,r12,800502c <_Heap_Walk+0x210>          <== NEVER TAKEN
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
 8004f6c:	2a 8c 00 04 	lw r12,(r20+4)                                 
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 8004f70:	21 81 00 01 	andi r1,r12,0x1                                
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_prev_used( first_block ) ) {                         
 8004f74:	44 23 00 fe 	be r1,r3,800536c <_Heap_Walk+0x550>            <== NEVER TAKEN
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8004f78:	2a e2 00 04 	lw r2,(r23+4)                                  
 8004f7c:	34 01 ff fe 	mvi r1,-2                                      
 8004f80:	a0 22 08 00 	and r1,r1,r2                                   
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
 8004f84:	b6 e1 08 00 	add r1,r23,r1                                  
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 8004f88:	28 22 00 04 	lw r2,(r1+4)                                   
 8004f8c:	20 42 00 01 	andi r2,r2,0x1                                 
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( _Heap_Is_free( last_block ) ) {                                
 8004f90:	44 43 00 09 	be r2,r3,8004fb4 <_Heap_Walk+0x198>            
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if (                                                                
 8004f94:	46 81 00 2e 	be r20,r1,800504c <_Heap_Walk+0x230>           <== ALWAYS TAKEN
    _Heap_Block_at( last_block, _Heap_Block_size( last_block ) ) != first_block
  ) {                                                                 
    (*printer)(                                                       
 8004f98:	78 03 08 01 	mvhi r3,0x801                                  <== NOT EXECUTED
 8004f9c:	38 63 33 e0 	ori r3,r3,0x33e0                               <== NOT EXECUTED
 8004fa0:	ba 60 08 00 	mv r1,r19                                      <== NOT EXECUTED
 8004fa4:	34 02 00 01 	mvi r2,1                                       <== NOT EXECUTED
 8004fa8:	d9 e0 00 00 	call r15                                       <== NOT EXECUTED
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8004fac:	34 03 00 00 	mvi r3,0                                       <== NOT EXECUTED
 8004fb0:	e3 ff ff bf 	bi 8004eac <_Heap_Walk+0x90>                   <== NOT EXECUTED
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( _Heap_Is_free( last_block ) ) {                                
    (*printer)(                                                       
 8004fb4:	78 03 08 01 	mvhi r3,0x801                                  
 8004fb8:	38 63 33 c8 	ori r3,r3,0x33c8                               
 8004fbc:	ba 60 08 00 	mv r1,r19                                      
 8004fc0:	34 02 00 01 	mvi r2,1                                       
 8004fc4:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8004fc8:	34 03 00 00 	mvi r3,0                                       
 8004fcc:	e3 ff ff b8 	bi 8004eac <_Heap_Walk+0x90>                   
    first_block, last_block,                                          
    first_free_block, last_free_block                                 
  );                                                                  
                                                                      
  if ( page_size == 0 ) {                                             
    (*printer)( source, true, "page size is zero\n" );                
 8004fd0:	78 03 08 01 	mvhi r3,0x801                                  
 8004fd4:	38 63 33 0c 	ori r3,r3,0x330c                               
 8004fd8:	ba 60 08 00 	mv r1,r19                                      
 8004fdc:	34 02 00 01 	mvi r2,1                                       
 8004fe0:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8004fe4:	34 03 00 00 	mvi r3,0                                       
 8004fe8:	e3 ff ff b1 	bi 8004eac <_Heap_Walk+0x90>                   
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Addresses_Is_aligned( (void *) page_size ) ) {               
    (*printer)(                                                       
 8004fec:	78 03 08 01 	mvhi r3,0x801                                  
 8004ff0:	38 63 33 20 	ori r3,r3,0x3320                               
 8004ff4:	ba 60 08 00 	mv r1,r19                                      
 8004ff8:	34 02 00 01 	mvi r2,1                                       
 8004ffc:	ba a0 20 00 	mv r4,r21                                      
 8005000:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8005004:	34 03 00 00 	mvi r3,0                                       
 8005008:	e3 ff ff a9 	bi 8004eac <_Heap_Walk+0x90>                   
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_aligned( min_block_size, page_size ) ) {             
    (*printer)(                                                       
 800500c:	78 03 08 01 	mvhi r3,0x801                                  
 8005010:	38 63 33 40 	ori r3,r3,0x3340                               
 8005014:	ba 60 08 00 	mv r1,r19                                      
 8005018:	34 02 00 01 	mvi r2,1                                       
 800501c:	ba c0 20 00 	mv r4,r22                                      
 8005020:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8005024:	34 03 00 00 	mvi r3,0                                       
 8005028:	e3 ff ff a1 	bi 8004eac <_Heap_Walk+0x90>                   
  }                                                                   
                                                                      
  if (                                                                
    !_Heap_Is_aligned( _Heap_Alloc_area_of_block( first_block ), page_size )
  ) {                                                                 
    (*printer)(                                                       
 800502c:	78 03 08 01 	mvhi r3,0x801                                  
 8005030:	38 63 33 64 	ori r3,r3,0x3364                               
 8005034:	ba 60 08 00 	mv r1,r19                                      
 8005038:	34 02 00 01 	mvi r2,1                                       
 800503c:	ba 80 20 00 	mv r4,r20                                      
 8005040:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8005044:	34 03 00 00 	mvi r3,0                                       
 8005048:	e3 ff ff 99 	bi 8004eac <_Heap_Walk+0x90>                   
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
 800504c:	29 ab 00 08 	lw r11,(r13+8)                                 
  int source,                                                         
  Heap_Walk_printer printer,                                          
  Heap_Control *heap                                                  
)                                                                     
{                                                                     
  uintptr_t const page_size = heap->page_size;                        
 8005050:	29 b2 00 10 	lw r18,(r13+16)                                
  const Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );
  const Heap_Block *const first_free_block = _Heap_Free_list_first( heap );
  const Heap_Block *prev_block = free_list_tail;                      
  const Heap_Block *free_block = first_free_block;                    
                                                                      
  while ( free_block != free_list_tail ) {                            
 8005054:	45 ab 00 2f 	be r13,r11,8005110 <_Heap_Walk+0x2f4>          
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
 8005058:	29 ae 00 20 	lw r14,(r13+32)                                
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
    && (uintptr_t) block <= (uintptr_t) heap->last_block;             
 800505c:	55 cb 00 dd 	bgu r14,r11,80053d0 <_Heap_Walk+0x5b4>         <== NEVER TAKEN
 8005060:	29 b8 00 24 	lw r24,(r13+36)                                
 8005064:	55 78 00 db 	bgu r11,r24,80053d0 <_Heap_Walk+0x5b4>         <== NEVER TAKEN
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
 8005068:	35 61 00 08 	addi r1,r11,8                                  
 800506c:	ba 40 10 00 	mv r2,r18                                      
 8005070:	fb ff ee 60 	calli 80009f0 <__umodsi3>                      
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if (                                                              
 8005074:	5c 20 00 df 	bne r1,r0,80053f0 <_Heap_Walk+0x5d4>           <== NEVER TAKEN
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8005078:	29 63 00 04 	lw r3,(r11+4)                                  
 800507c:	34 02 ff fe 	mvi r2,-2                                      
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
 8005080:	b9 60 80 00 	mv r16,r11                                     
 8005084:	a0 43 10 00 	and r2,r2,r3                                   
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
 8005088:	b5 62 10 00 	add r2,r11,r2                                  
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 800508c:	28 42 00 04 	lw r2,(r2+4)                                   
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
 8005090:	b9 a0 18 00 	mv r3,r13                                      
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8005094:	34 11 ff fe 	mvi r17,-2                                     
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 8005098:	20 42 00 01 	andi r2,r2,0x1                                 
 800509c:	44 41 00 12 	be r2,r1,80050e4 <_Heap_Walk+0x2c8>            <== ALWAYS TAKEN
 80050a0:	e0 00 00 dc 	bi 8005410 <_Heap_Walk+0x5f4>                  <== NOT EXECUTED
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    prev_block = free_block;                                          
    free_block = free_block->next;                                    
 80050a4:	29 6b 00 08 	lw r11,(r11+8)                                 
  const Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );
  const Heap_Block *const first_free_block = _Heap_Free_list_first( heap );
  const Heap_Block *prev_block = free_list_tail;                      
  const Heap_Block *free_block = first_free_block;                    
                                                                      
  while ( free_block != free_list_tail ) {                            
 80050a8:	45 ab 00 1b 	be r13,r11,8005114 <_Heap_Walk+0x2f8>          
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
    && (uintptr_t) block <= (uintptr_t) heap->last_block;             
 80050ac:	55 cb 00 c9 	bgu r14,r11,80053d0 <_Heap_Walk+0x5b4>         
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
 80050b0:	35 61 00 08 	addi r1,r11,8                                  
 80050b4:	ba 40 10 00 	mv r2,r18                                      
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
    && (uintptr_t) block <= (uintptr_t) heap->last_block;             
 80050b8:	55 78 00 c6 	bgu r11,r24,80053d0 <_Heap_Walk+0x5b4>         <== NEVER TAKEN
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
 80050bc:	fb ff ee 4d 	calli 80009f0 <__umodsi3>                      
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if (                                                              
 80050c0:	5c 20 00 cc 	bne r1,r0,80053f0 <_Heap_Walk+0x5d4>           
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 80050c4:	29 64 00 04 	lw r4,(r11+4)                                  
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
 80050c8:	ba 00 18 00 	mv r3,r16                                      
 80050cc:	b9 60 80 00 	mv r16,r11                                     
 80050d0:	a2 24 20 00 	and r4,r17,r4                                  
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
 80050d4:	b4 8b 20 00 	add r4,r4,r11                                  
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 80050d8:	28 84 00 04 	lw r4,(r4+4)                                   
 80050dc:	20 84 00 01 	andi r4,r4,0x1                                 
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
 80050e0:	5c 81 00 cc 	bne r4,r1,8005410 <_Heap_Walk+0x5f4>           
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( free_block->prev != prev_block ) {                           
 80050e4:	29 67 00 0c 	lw r7,(r11+12)                                 
 80050e8:	44 e3 ff ef 	be r7,r3,80050a4 <_Heap_Walk+0x288>            
      (*printer)(                                                     
 80050ec:	78 03 08 01 	mvhi r3,0x801                                  
 80050f0:	38 63 34 7c 	ori r3,r3,0x347c                               
 80050f4:	ba 60 08 00 	mv r1,r19                                      
 80050f8:	34 02 00 01 	mvi r2,1                                       
 80050fc:	b9 60 20 00 	mv r4,r11                                      
 8005100:	b8 e0 28 00 	mv r5,r7                                       
 8005104:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8005108:	34 03 00 00 	mvi r3,0                                       
 800510c:	e3 ff ff 68 	bi 8004eac <_Heap_Walk+0x90>                   
  const Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );
  const Heap_Block *const first_free_block = _Heap_Free_list_first( heap );
  const Heap_Block *prev_block = free_list_tail;                      
  const Heap_Block *free_block = first_free_block;                    
                                                                      
  while ( free_block != free_list_tail ) {                            
 8005110:	29 ae 00 20 	lw r14,(r13+32)                                
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  bool const prev_used = _Heap_Is_prev_used( block );                 
  uintptr_t const block_size = _Heap_Block_size( block );             
  Heap_Block *const next_block = _Heap_Block_at( block, block_size ); 
                                                                      
  (*printer)(                                                         
 8005114:	78 01 08 01 	mvhi r1,0x801                                  
 8005118:	5b 81 00 54 	sw (sp+84),r1                                  
 800511c:	78 01 08 01 	mvhi r1,0x801                                  
 8005120:	5b 81 00 58 	sw (sp+88),r1                                  
 8005124:	78 01 08 01 	mvhi r1,0x801                                  
 8005128:	5b 81 00 5c 	sw (sp+92),r1                                  
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
    block->next,                                                      
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
 800512c:	78 01 08 01 	mvhi r1,0x801                                  
 8005130:	5b 81 00 60 	sw (sp+96),r1                                  
    block,                                                            
    block_size,                                                       
    block->prev,                                                      
    block->prev == first_free_block ?                                 
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
 8005134:	78 01 08 01 	mvhi r1,0x801                                  
 8005138:	5b 81 00 64 	sw (sp+100),r1                                 
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  bool const prev_used = _Heap_Is_prev_used( block );                 
  uintptr_t const block_size = _Heap_Block_size( block );             
  Heap_Block *const next_block = _Heap_Block_at( block, block_size ); 
                                                                      
  (*printer)(                                                         
 800513c:	2b 81 00 54 	lw r1,(sp+84)                                  
        "block 0x%08x: size %u\n",                                    
        block,                                                        
        block_size                                                    
      );                                                              
    } else {                                                          
      (*printer)(                                                     
 8005140:	78 1b 08 01 	mvhi fp,0x801                                  
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
      }                                                               
    } else if (prev_used) {                                           
      (*printer)(                                                     
 8005144:	78 19 08 01 	mvhi r25,0x801                                 
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  bool const prev_used = _Heap_Is_prev_used( block );                 
  uintptr_t const block_size = _Heap_Block_size( block );             
  Heap_Block *const next_block = _Heap_Block_at( block, block_size ); 
                                                                      
  (*printer)(                                                         
 8005148:	38 21 32 40 	ori r1,r1,0x3240                               
 800514c:	5b 81 00 54 	sw (sp+84),r1                                  
 8005150:	2b 81 00 58 	lw r1,(sp+88)                                  
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
    block->next,                                                      
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
 8005154:	78 18 08 01 	mvhi r24,0x801                                 
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
 8005158:	ba 80 88 00 	mv r17,r20                                     
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  bool const prev_used = _Heap_Is_prev_used( block );                 
  uintptr_t const block_size = _Heap_Block_size( block );             
  Heap_Block *const next_block = _Heap_Block_at( block, block_size ); 
                                                                      
  (*printer)(                                                         
 800515c:	38 21 32 5c 	ori r1,r1,0x325c                               
 8005160:	5b 81 00 58 	sw (sp+88),r1                                  
 8005164:	2b 81 00 5c 	lw r1,(sp+92)                                  
        "block 0x%08x: size %u\n",                                    
        block,                                                        
        block_size                                                    
      );                                                              
    } else {                                                          
      (*printer)(                                                     
 8005168:	3b 7b 36 2c 	ori fp,fp,0x362c                               
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
      }                                                               
    } else if (prev_used) {                                           
      (*printer)(                                                     
 800516c:	3b 39 36 14 	ori r25,r25,0x3614                             
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  bool const prev_used = _Heap_Is_prev_used( block );                 
  uintptr_t const block_size = _Heap_Block_size( block );             
  Heap_Block *const next_block = _Heap_Block_at( block, block_size ); 
                                                                      
  (*printer)(                                                         
 8005170:	38 21 35 70 	ori r1,r1,0x3570                               
 8005174:	5b 81 00 5c 	sw (sp+92),r1                                  
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
    block->next,                                                      
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
 8005178:	2b 81 00 60 	lw r1,(sp+96)                                  
 800517c:	3b 18 35 e0 	ori r24,r24,0x35e0                             
 8005180:	38 21 32 6c 	ori r1,r1,0x326c                               
 8005184:	5b 81 00 60 	sw (sp+96),r1                                  
    block,                                                            
    block_size,                                                       
    block->prev,                                                      
    block->prev == first_free_block ?                                 
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
 8005188:	2b 81 00 64 	lw r1,(sp+100)                                 
 800518c:	38 21 32 50 	ori r1,r1,0x3250                               
 8005190:	5b 81 00 64 	sw (sp+100),r1                                 
    - HEAP_BLOCK_HEADER_SIZE);                                        
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & ~HEAP_PREV_BLOCK_USED;                
 8005194:	34 01 ff fe 	mvi r1,-2                                      
 8005198:	a1 81 90 00 	and r18,r12,r1                                 
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
 800519c:	b6 51 80 00 	add r16,r18,r17                                
  const Heap_Control *heap,                                           
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block >= (uintptr_t) heap->first_block           
    && (uintptr_t) block <= (uintptr_t) heap->last_block;             
 80051a0:	55 d0 00 7a 	bgu r14,r16,8005388 <_Heap_Walk+0x56c>         <== NEVER TAKEN
 80051a4:	29 a4 00 24 	lw r4,(r13+36)                                 
 80051a8:	56 04 00 78 	bgu r16,r4,8005388 <_Heap_Walk+0x56c>          
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
 80051ac:	ba 40 08 00 	mv r1,r18                                      
 80051b0:	ba a0 10 00 	mv r2,r21                                      
    uintptr_t const block_begin = (uintptr_t) block;                  
    uintptr_t const block_size = _Heap_Block_size( block );           
    bool const prev_used = _Heap_Is_prev_used( block );               
    Heap_Block *const next_block = _Heap_Block_at( block, block_size );
    uintptr_t const next_block_begin = (uintptr_t) next_block;        
    bool const is_not_last_block = block != last_block;               
 80051b4:	fe 37 58 00 	cmpne r11,r17,r23                              
 80051b8:	fb ff ee 0e 	calli 80009f0 <__umodsi3>                      
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_aligned( block_size, page_size ) && is_not_last_block ) {
 80051bc:	44 20 00 02 	be r1,r0,80051c4 <_Heap_Walk+0x3a8>            
 80051c0:	5d 60 00 15 	bne r11,r0,8005214 <_Heap_Walk+0x3f8>          
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( block_size < min_block_size && is_not_last_block ) {         
 80051c4:	52 56 00 02 	bgeu r18,r22,80051cc <_Heap_Walk+0x3b0>        
 80051c8:	5d 60 00 1c 	bne r11,r0,8005238 <_Heap_Walk+0x41c>          <== ALWAYS TAKEN
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( next_block_begin <= block_begin && is_not_last_block ) {     
 80051cc:	56 11 00 02 	bgu r16,r17,80051d4 <_Heap_Walk+0x3b8>         
 80051d0:	5d 60 00 77 	bne r11,r0,80053ac <_Heap_Walk+0x590>          
  block->size_and_flag = size | flag;                                 
}                                                                     
                                                                      
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used( const Heap_Block *block )
{                                                                     
  return block->size_and_flag & HEAP_PREV_BLOCK_USED;                 
 80051d4:	2a 06 00 04 	lw r6,(r16+4)                                  
 80051d8:	21 8c 00 01 	andi r12,r12,0x1                               
 80051dc:	20 c6 00 01 	andi r6,r6,0x1                                 
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
 80051e0:	44 c0 00 28 	be r6,r0,8005280 <_Heap_Walk+0x464>            
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
      }                                                               
    } else if (prev_used) {                                           
 80051e4:	45 80 00 1f 	be r12,r0,8005260 <_Heap_Walk+0x444>           
      (*printer)(                                                     
 80051e8:	ba 60 08 00 	mv r1,r19                                      
 80051ec:	34 02 00 00 	mvi r2,0                                       
 80051f0:	bb 20 18 00 	mv r3,r25                                      
 80051f4:	ba 20 20 00 	mv r4,r17                                      
 80051f8:	ba 40 28 00 	mv r5,r18                                      
 80051fc:	d9 e0 00 00 	call r15                                       
        block->prev_size                                              
      );                                                              
    }                                                                 
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
 8005200:	46 90 00 43 	be r20,r16,800530c <_Heap_Walk+0x4f0>          
 8005204:	2a 0c 00 04 	lw r12,(r16+4)                                 
 8005208:	29 ae 00 20 	lw r14,(r13+32)                                
 800520c:	ba 00 88 00 	mv r17,r16                                     
 8005210:	e3 ff ff e1 	bi 8005194 <_Heap_Walk+0x378>                  
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_aligned( block_size, page_size ) && is_not_last_block ) {
      (*printer)(                                                     
 8005214:	78 03 08 01 	mvhi r3,0x801                                  
 8005218:	38 63 34 e0 	ori r3,r3,0x34e0                               
 800521c:	ba 60 08 00 	mv r1,r19                                      
 8005220:	34 02 00 01 	mvi r2,1                                       
 8005224:	ba 20 20 00 	mv r4,r17                                      
 8005228:	ba 40 28 00 	mv r5,r18                                      
 800522c:	d9 e0 00 00 	call r15                                       
        "block 0x%08x: block size %u not page aligned\n",             
        block,                                                        
        block_size                                                    
      );                                                              
                                                                      
      return false;                                                   
 8005230:	34 03 00 00 	mvi r3,0                                       
 8005234:	e3 ff ff 1e 	bi 8004eac <_Heap_Walk+0x90>                   
    }                                                                 
                                                                      
    if ( block_size < min_block_size && is_not_last_block ) {         
      (*printer)(                                                     
 8005238:	78 03 08 01 	mvhi r3,0x801                                  
 800523c:	38 63 35 10 	ori r3,r3,0x3510                               
 8005240:	ba 60 08 00 	mv r1,r19                                      
 8005244:	34 02 00 01 	mvi r2,1                                       
 8005248:	ba 20 20 00 	mv r4,r17                                      
 800524c:	ba 40 28 00 	mv r5,r18                                      
 8005250:	ba c0 30 00 	mv r6,r22                                      
 8005254:	d9 e0 00 00 	call r15                                       
        block,                                                        
        block_size,                                                   
        min_block_size                                                
      );                                                              
                                                                      
      return false;                                                   
 8005258:	34 03 00 00 	mvi r3,0                                       
 800525c:	e3 ff ff 14 	bi 8004eac <_Heap_Walk+0x90>                   
        "block 0x%08x: size %u\n",                                    
        block,                                                        
        block_size                                                    
      );                                                              
    } else {                                                          
      (*printer)(                                                     
 8005260:	2a 26 00 00 	lw r6,(r17+0)                                  
 8005264:	ba 20 20 00 	mv r4,r17                                      
 8005268:	ba 60 08 00 	mv r1,r19                                      
 800526c:	34 02 00 00 	mvi r2,0                                       
 8005270:	bb 60 18 00 	mv r3,fp                                       
 8005274:	ba 40 28 00 	mv r5,r18                                      
 8005278:	d9 e0 00 00 	call r15                                       
 800527c:	e3 ff ff e1 	bi 8005200 <_Heap_Walk+0x3e4>                  
    false,                                                            
    "block 0x%08x: size %u, prev 0x%08x%s, next 0x%08x%s\n",          
    block,                                                            
    block_size,                                                       
    block->prev,                                                      
    block->prev == first_free_block ?                                 
 8005280:	2a 26 00 0c 	lw r6,(r17+12)                                 
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  bool const prev_used = _Heap_Is_prev_used( block );                 
  uintptr_t const block_size = _Heap_Block_size( block );             
  Heap_Block *const next_block = _Heap_Block_at( block, block_size ); 
                                                                      
  (*printer)(                                                         
 8005284:	29 a4 00 08 	lw r4,(r13+8)                                  
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
 8005288:	29 a5 00 0c 	lw r5,(r13+12)                                 
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  bool const prev_used = _Heap_Is_prev_used( block );                 
  uintptr_t const block_size = _Heap_Block_size( block );             
  Heap_Block *const next_block = _Heap_Block_at( block, block_size ); 
                                                                      
  (*printer)(                                                         
 800528c:	2b 87 00 54 	lw r7,(sp+84)                                  
 8005290:	44 86 00 03 	be r4,r6,800529c <_Heap_Walk+0x480>            
    block,                                                            
    block_size,                                                       
    block->prev,                                                      
    block->prev == first_free_block ?                                 
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
 8005294:	bb 00 38 00 	mv r7,r24                                      
 8005298:	45 a6 00 29 	be r13,r6,800533c <_Heap_Walk+0x520>           
    block->next,                                                      
    block->next == last_free_block ?                                  
 800529c:	2a 28 00 08 	lw r8,(r17+8)                                  
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  bool const prev_used = _Heap_Is_prev_used( block );                 
  uintptr_t const block_size = _Heap_Block_size( block );             
  Heap_Block *const next_block = _Heap_Block_at( block, block_size ); 
                                                                      
  (*printer)(                                                         
 80052a0:	2b 84 00 58 	lw r4,(sp+88)                                  
 80052a4:	44 a8 00 03 	be r5,r8,80052b0 <_Heap_Walk+0x494>            
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
    block->next,                                                      
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
 80052a8:	bb 00 20 00 	mv r4,r24                                      
 80052ac:	45 a8 00 26 	be r13,r8,8005344 <_Heap_Walk+0x528>           
  Heap_Block *const last_free_block = _Heap_Free_list_last( heap );   
  bool const prev_used = _Heap_Is_prev_used( block );                 
  uintptr_t const block_size = _Heap_Block_size( block );             
  Heap_Block *const next_block = _Heap_Block_at( block, block_size ); 
                                                                      
  (*printer)(                                                         
 80052b0:	2b 83 00 5c 	lw r3,(sp+92)                                  
 80052b4:	5b 84 00 04 	sw (sp+4),r4                                   
 80052b8:	ba 60 08 00 	mv r1,r19                                      
 80052bc:	34 02 00 00 	mvi r2,0                                       
 80052c0:	ba 20 20 00 	mv r4,r17                                      
 80052c4:	ba 40 28 00 	mv r5,r18                                      
 80052c8:	d9 e0 00 00 	call r15                                       
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
  );                                                                  
                                                                      
  if ( block_size != next_block->prev_size ) {                        
 80052cc:	2a 06 00 00 	lw r6,(r16+0)                                  
 80052d0:	5e 46 00 11 	bne r18,r6,8005314 <_Heap_Walk+0x4f8>          
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !prev_used ) {                                                 
 80052d4:	45 80 00 1e 	be r12,r0,800534c <_Heap_Walk+0x530>           
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
 80052d8:	29 a5 00 08 	lw r5,(r13+8)                                  
)                                                                     
{                                                                     
  const Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );
  const Heap_Block *free_block = _Heap_Free_list_first( heap );       
                                                                      
  while ( free_block != free_list_tail ) {                            
 80052dc:	45 a5 00 04 	be r13,r5,80052ec <_Heap_Walk+0x4d0>           <== NEVER TAKEN
    if ( free_block == block ) {                                      
 80052e0:	46 25 ff c8 	be r17,r5,8005200 <_Heap_Walk+0x3e4>           
      return true;                                                    
    }                                                                 
    free_block = free_block->next;                                    
 80052e4:	28 a5 00 08 	lw r5,(r5+8)                                   
)                                                                     
{                                                                     
  const Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );
  const Heap_Block *free_block = _Heap_Free_list_first( heap );       
                                                                      
  while ( free_block != free_list_tail ) {                            
 80052e8:	5d a5 ff fe 	bne r13,r5,80052e0 <_Heap_Walk+0x4c4>          
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Walk_is_in_free_list( heap, block ) ) {                 
    (*printer)(                                                       
 80052ec:	78 03 08 01 	mvhi r3,0x801                                  
 80052f0:	38 63 36 54 	ori r3,r3,0x3654                               
 80052f4:	ba 60 08 00 	mv r1,r19                                      
 80052f8:	34 02 00 01 	mvi r2,1                                       
 80052fc:	ba 20 20 00 	mv r4,r17                                      
 8005300:	d9 e0 00 00 	call r15                                       
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
 8005304:	34 03 00 00 	mvi r3,0                                       
 8005308:	e3 ff fe e9 	bi 8004eac <_Heap_Walk+0x90>                   
    }                                                                 
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
 800530c:	34 03 00 01 	mvi r3,1                                       
 8005310:	e3 ff fe e7 	bi 8004eac <_Heap_Walk+0x90>                   
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
  );                                                                  
                                                                      
  if ( block_size != next_block->prev_size ) {                        
    (*printer)(                                                       
 8005314:	78 03 08 01 	mvhi r3,0x801                                  
 8005318:	38 63 35 a8 	ori r3,r3,0x35a8                               
 800531c:	ba 60 08 00 	mv r1,r19                                      
 8005320:	34 02 00 01 	mvi r2,1                                       
 8005324:	ba 20 20 00 	mv r4,r17                                      
 8005328:	ba 40 28 00 	mv r5,r18                                      
 800532c:	ba 00 38 00 	mv r7,r16                                      
 8005330:	d9 e0 00 00 	call r15                                       
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
 8005334:	34 03 00 00 	mvi r3,0                                       
 8005338:	e3 ff fe dd 	bi 8004eac <_Heap_Walk+0x90>                   
    block,                                                            
    block_size,                                                       
    block->prev,                                                      
    block->prev == first_free_block ?                                 
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
 800533c:	2b 87 00 64 	lw r7,(sp+100)                                 
 8005340:	e3 ff ff d7 	bi 800529c <_Heap_Walk+0x480>                  
    block->next,                                                      
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
 8005344:	2b 84 00 60 	lw r4,(sp+96)                                  
 8005348:	e3 ff ff da 	bi 80052b0 <_Heap_Walk+0x494>                  
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !prev_used ) {                                                 
    (*printer)(                                                       
 800534c:	78 03 08 01 	mvhi r3,0x801                                  
 8005350:	38 63 35 e4 	ori r3,r3,0x35e4                               
 8005354:	ba 60 08 00 	mv r1,r19                                      
 8005358:	34 02 00 01 	mvi r2,1                                       
 800535c:	ba 20 20 00 	mv r4,r17                                      
 8005360:	d9 e0 00 00 	call r15                                       
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
 8005364:	34 03 00 00 	mvi r3,0                                       
 8005368:	e3 ff fe d1 	bi 8004eac <_Heap_Walk+0x90>                   
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_prev_used( first_block ) ) {                         
    (*printer)(                                                       
 800536c:	78 03 08 01 	mvhi r3,0x801                                  
 8005370:	38 63 33 98 	ori r3,r3,0x3398                               
 8005374:	ba 60 08 00 	mv r1,r19                                      
 8005378:	34 02 00 01 	mvi r2,1                                       
 800537c:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8005380:	34 03 00 00 	mvi r3,0                                       
 8005384:	e3 ff fe ca 	bi 8004eac <_Heap_Walk+0x90>                   
    Heap_Block *const next_block = _Heap_Block_at( block, block_size );
    uintptr_t const next_block_begin = (uintptr_t) next_block;        
    bool const is_not_last_block = block != last_block;               
                                                                      
    if ( !_Heap_Is_block_in_heap( heap, next_block ) ) {              
      (*printer)(                                                     
 8005388:	78 03 08 01 	mvhi r3,0x801                                  
 800538c:	38 63 34 b0 	ori r3,r3,0x34b0                               
 8005390:	ba 60 08 00 	mv r1,r19                                      
 8005394:	34 02 00 01 	mvi r2,1                                       
 8005398:	ba 20 20 00 	mv r4,r17                                      
 800539c:	ba 00 28 00 	mv r5,r16                                      
 80053a0:	d9 e0 00 00 	call r15                                       
        "block 0x%08x: next block 0x%08x not in heap\n",              
        block,                                                        
        next_block                                                    
      );                                                              
                                                                      
      return false;                                                   
 80053a4:	34 03 00 00 	mvi r3,0                                       
 80053a8:	e3 ff fe c1 	bi 8004eac <_Heap_Walk+0x90>                   
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( next_block_begin <= block_begin && is_not_last_block ) {     
      (*printer)(                                                     
 80053ac:	78 03 08 01 	mvhi r3,0x801                                  
 80053b0:	38 63 35 3c 	ori r3,r3,0x353c                               
 80053b4:	ba 60 08 00 	mv r1,r19                                      
 80053b8:	34 02 00 01 	mvi r2,1                                       
 80053bc:	ba 20 20 00 	mv r4,r17                                      
 80053c0:	ba 00 28 00 	mv r5,r16                                      
 80053c4:	d9 e0 00 00 	call r15                                       
        "block 0x%08x: next block 0x%08x is not a successor\n",       
        block,                                                        
        next_block                                                    
      );                                                              
                                                                      
      return false;                                                   
 80053c8:	34 03 00 00 	mvi r3,0                                       
 80053cc:	e3 ff fe b8 	bi 8004eac <_Heap_Walk+0x90>                   
  const Heap_Block *prev_block = free_list_tail;                      
  const Heap_Block *free_block = first_free_block;                    
                                                                      
  while ( free_block != free_list_tail ) {                            
    if ( !_Heap_Is_block_in_heap( heap, free_block ) ) {              
      (*printer)(                                                     
 80053d0:	78 03 08 01 	mvhi r3,0x801                                  
 80053d4:	38 63 34 10 	ori r3,r3,0x3410                               
 80053d8:	ba 60 08 00 	mv r1,r19                                      
 80053dc:	34 02 00 01 	mvi r2,1                                       
 80053e0:	b9 60 20 00 	mv r4,r11                                      
 80053e4:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 80053e8:	34 03 00 00 	mvi r3,0                                       
 80053ec:	e3 ff fe b0 	bi 8004eac <_Heap_Walk+0x90>                   
    }                                                                 
                                                                      
    if (                                                              
      !_Heap_Is_aligned( _Heap_Alloc_area_of_block( free_block ), page_size )
    ) {                                                               
      (*printer)(                                                     
 80053f0:	78 03 08 01 	mvhi r3,0x801                                  
 80053f4:	38 63 34 30 	ori r3,r3,0x3430                               
 80053f8:	ba 60 08 00 	mv r1,r19                                      
 80053fc:	34 02 00 01 	mvi r2,1                                       
 8005400:	b9 60 20 00 	mv r4,r11                                      
 8005404:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8005408:	34 03 00 00 	mvi r3,0                                       
 800540c:	e3 ff fe a8 	bi 8004eac <_Heap_Walk+0x90>                   
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
      (*printer)(                                                     
 8005410:	78 03 08 01 	mvhi r3,0x801                                  
 8005414:	38 63 34 60 	ori r3,r3,0x3460                               
 8005418:	ba 60 08 00 	mv r1,r19                                      
 800541c:	34 02 00 01 	mvi r2,1                                       
 8005420:	b9 60 20 00 	mv r4,r11                                      
 8005424:	d9 e0 00 00 	call r15                                       
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
 8005428:	34 03 00 00 	mvi r3,0                                       
 800542c:	e3 ff fe a0 	bi 8004eac <_Heap_Walk+0x90>                   
                                                                      

0800357c <_IO_Initialize_all_drivers>: * * Output Parameters: NONE */ void _IO_Initialize_all_drivers( void ) {
 800357c:	37 9c ff f4 	addi sp,sp,-12                                 
 8003580:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8003584:	5b 8c 00 08 	sw (sp+8),r12                                  
 8003588:	5b 9d 00 04 	sw (sp+4),ra                                   
   rtems_device_major_number major;                                   
                                                                      
   for ( major=0 ; major < _IO_Number_of_drivers ; major ++ )         
 800358c:	78 0c 08 01 	mvhi r12,0x801                                 
 8003590:	39 8c 3a 4c 	ori r12,r12,0x3a4c                             
 8003594:	29 81 00 00 	lw r1,(r12+0)                                  
 8003598:	44 20 00 09 	be r1,r0,80035bc <_IO_Initialize_all_drivers+0x40><== NEVER TAKEN
 800359c:	34 0b 00 00 	mvi r11,0                                      
     (void) rtems_io_initialize( major, 0, NULL );                    
 80035a0:	b9 60 08 00 	mv r1,r11                                      
 80035a4:	34 02 00 00 	mvi r2,0                                       
 80035a8:	34 03 00 00 	mvi r3,0                                       
 80035ac:	f8 00 16 c9 	calli 80090d0 <rtems_io_initialize>            
                                                                      
void _IO_Initialize_all_drivers( void )                               
{                                                                     
   rtems_device_major_number major;                                   
                                                                      
   for ( major=0 ; major < _IO_Number_of_drivers ; major ++ )         
 80035b0:	29 81 00 00 	lw r1,(r12+0)                                  
 80035b4:	35 6b 00 01 	addi r11,r11,1                                 
 80035b8:	54 2b ff fa 	bgu r1,r11,80035a0 <_IO_Initialize_all_drivers+0x24>
     (void) rtems_io_initialize( major, 0, NULL );                    
}                                                                     
 80035bc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80035c0:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 80035c4:	2b 8c 00 08 	lw r12,(sp+8)                                  
 80035c8:	37 9c 00 0c 	addi sp,sp,12                                  
 80035cc:	c3 a0 00 00 	ret                                            
                                                                      

0800345c <_IO_Manager_initialization>: * workspace. * */ void _IO_Manager_initialization(void) {
 800345c:	37 9c ff e8 	addi sp,sp,-24                                 
 8003460:	5b 8b 00 18 	sw (sp+24),r11                                 
 8003464:	5b 8c 00 14 	sw (sp+20),r12                                 
 8003468:	5b 8d 00 10 	sw (sp+16),r13                                 
 800346c:	5b 8e 00 0c 	sw (sp+12),r14                                 
 8003470:	5b 8f 00 08 	sw (sp+8),r15                                  
 8003474:	5b 9d 00 04 	sw (sp+4),ra                                   
  uint32_t                    index;                                  
  rtems_driver_address_table *driver_table;                           
  uint32_t                    drivers_in_table;                       
  uint32_t                    number_of_drivers;                      
                                                                      
  driver_table      = Configuration.Device_driver_table;              
 8003478:	78 01 08 01 	mvhi r1,0x801                                  
 800347c:	38 21 30 c4 	ori r1,r1,0x30c4                               
  drivers_in_table  = Configuration.number_of_device_drivers;         
 8003480:	28 2b 00 30 	lw r11,(r1+48)                                 
  number_of_drivers = Configuration.maximum_drivers;                  
 8003484:	28 2e 00 2c 	lw r14,(r1+44)                                 
  uint32_t                    index;                                  
  rtems_driver_address_table *driver_table;                           
  uint32_t                    drivers_in_table;                       
  uint32_t                    number_of_drivers;                      
                                                                      
  driver_table      = Configuration.Device_driver_table;              
 8003488:	28 2d 00 34 	lw r13,(r1+52)                                 
                                                                      
  /*                                                                  
   *  If the user claims there are less drivers than are actually in  
   *  the table, then let's just go with the table's count.           
   */                                                                 
  if ( number_of_drivers <= drivers_in_table )                        
 800348c:	51 6e 00 2e 	bgeu r11,r14,8003544 <_IO_Manager_initialization+0xe8>
   *  have to allocate a new driver table and copy theirs to it.      
   */                                                                 
                                                                      
  _IO_Driver_address_table = (rtems_driver_address_table *)           
      _Workspace_Allocate_or_fatal_error(                             
        sizeof( rtems_driver_address_table ) * ( number_of_drivers )  
 8003490:	b5 ce 60 00 	add r12,r14,r14                                
 8003494:	b5 8e 60 00 	add r12,r12,r14                                
 8003498:	b5 8c 60 00 	add r12,r12,r12                                
 800349c:	b5 8c 60 00 	add r12,r12,r12                                
 80034a0:	b5 8c 60 00 	add r12,r12,r12                                
   *  The application requested extra slots in the driver table, so we
   *  have to allocate a new driver table and copy theirs to it.      
   */                                                                 
                                                                      
  _IO_Driver_address_table = (rtems_driver_address_table *)           
      _Workspace_Allocate_or_fatal_error(                             
 80034a4:	b9 80 08 00 	mv r1,r12                                      
 80034a8:	f8 00 0e 2f 	calli 8006d64 <_Workspace_Allocate_or_fatal_error>
        sizeof( rtems_driver_address_table ) * ( number_of_drivers )  
      );                                                              
  _IO_Number_of_drivers = number_of_drivers;                          
 80034ac:	78 04 08 01 	mvhi r4,0x801                                  
  /*                                                                  
   *  The application requested extra slots in the driver table, so we
   *  have to allocate a new driver table and copy theirs to it.      
   */                                                                 
                                                                      
  _IO_Driver_address_table = (rtems_driver_address_table *)           
 80034b0:	78 0f 08 01 	mvhi r15,0x801                                 
      _Workspace_Allocate_or_fatal_error(                             
        sizeof( rtems_driver_address_table ) * ( number_of_drivers )  
      );                                                              
  _IO_Number_of_drivers = number_of_drivers;                          
 80034b4:	38 84 3a 4c 	ori r4,r4,0x3a4c                               
  /*                                                                  
   *  The application requested extra slots in the driver table, so we
   *  have to allocate a new driver table and copy theirs to it.      
   */                                                                 
                                                                      
  _IO_Driver_address_table = (rtems_driver_address_table *)           
 80034b8:	39 ef 3a 50 	ori r15,r15,0x3a50                             
      _Workspace_Allocate_or_fatal_error(                             
        sizeof( rtems_driver_address_table ) * ( number_of_drivers )  
      );                                                              
  _IO_Number_of_drivers = number_of_drivers;                          
                                                                      
  memset(                                                             
 80034bc:	34 02 00 00 	mvi r2,0                                       
 80034c0:	b9 80 18 00 	mv r3,r12                                      
                                                                      
  _IO_Driver_address_table = (rtems_driver_address_table *)           
      _Workspace_Allocate_or_fatal_error(                             
        sizeof( rtems_driver_address_table ) * ( number_of_drivers )  
      );                                                              
  _IO_Number_of_drivers = number_of_drivers;                          
 80034c4:	58 8e 00 00 	sw (r4+0),r14                                  
  /*                                                                  
   *  The application requested extra slots in the driver table, so we
   *  have to allocate a new driver table and copy theirs to it.      
   */                                                                 
                                                                      
  _IO_Driver_address_table = (rtems_driver_address_table *)           
 80034c8:	59 e1 00 00 	sw (r15+0),r1                                  
      _Workspace_Allocate_or_fatal_error(                             
        sizeof( rtems_driver_address_table ) * ( number_of_drivers )  
      );                                                              
  _IO_Number_of_drivers = number_of_drivers;                          
                                                                      
  memset(                                                             
 80034cc:	f8 00 24 24 	calli 800c55c <memset>                         
    _IO_Driver_address_table, 0,                                      
    sizeof( rtems_driver_address_table ) * ( number_of_drivers )      
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
 80034d0:	45 60 00 15 	be r11,r0,8003524 <_IO_Manager_initialization+0xc8><== NEVER TAKEN
 80034d4:	29 e5 00 00 	lw r5,(r15+0)                                  
 80034d8:	34 03 00 00 	mvi r3,0                                       
 80034dc:	34 04 00 00 	mvi r4,0                                       
 *  registration. The driver table is now allocated in the            
 *  workspace.                                                        
 *                                                                    
 */                                                                   
                                                                      
void _IO_Manager_initialization(void)                                 
 80034e0:	b5 a3 08 00 	add r1,r13,r3                                  
    _IO_Driver_address_table, 0,                                      
    sizeof( rtems_driver_address_table ) * ( number_of_drivers )      
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
    _IO_Driver_address_table[index] = driver_table[index];            
 80034e4:	28 26 00 00 	lw r6,(r1+0)                                   
 *  registration. The driver table is now allocated in the            
 *  workspace.                                                        
 *                                                                    
 */                                                                   
                                                                      
void _IO_Manager_initialization(void)                                 
 80034e8:	b4 a3 10 00 	add r2,r5,r3                                   
  memset(                                                             
    _IO_Driver_address_table, 0,                                      
    sizeof( rtems_driver_address_table ) * ( number_of_drivers )      
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
 80034ec:	34 84 00 01 	addi r4,r4,1                                   
    _IO_Driver_address_table[index] = driver_table[index];            
 80034f0:	58 46 00 00 	sw (r2+0),r6                                   
 80034f4:	28 26 00 04 	lw r6,(r1+4)                                   
  memset(                                                             
    _IO_Driver_address_table, 0,                                      
    sizeof( rtems_driver_address_table ) * ( number_of_drivers )      
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
 80034f8:	34 63 00 18 	addi r3,r3,24                                  
    _IO_Driver_address_table[index] = driver_table[index];            
 80034fc:	58 46 00 04 	sw (r2+4),r6                                   
 8003500:	28 26 00 08 	lw r6,(r1+8)                                   
 8003504:	58 46 00 08 	sw (r2+8),r6                                   
 8003508:	28 26 00 0c 	lw r6,(r1+12)                                  
 800350c:	58 46 00 0c 	sw (r2+12),r6                                  
 8003510:	28 26 00 10 	lw r6,(r1+16)                                  
 8003514:	58 46 00 10 	sw (r2+16),r6                                  
 8003518:	28 21 00 14 	lw r1,(r1+20)                                  
 800351c:	58 41 00 14 	sw (r2+20),r1                                  
  memset(                                                             
    _IO_Driver_address_table, 0,                                      
    sizeof( rtems_driver_address_table ) * ( number_of_drivers )      
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
 8003520:	55 64 ff f0 	bgu r11,r4,80034e0 <_IO_Manager_initialization+0x84>
    _IO_Driver_address_table[index] = driver_table[index];            
  number_of_drivers = drivers_in_table;                               
}                                                                     
 8003524:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003528:	2b 8b 00 18 	lw r11,(sp+24)                                 
 800352c:	2b 8c 00 14 	lw r12,(sp+20)                                 
 8003530:	2b 8d 00 10 	lw r13,(sp+16)                                 
 8003534:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 8003538:	2b 8f 00 08 	lw r15,(sp+8)                                  
 800353c:	37 9c 00 18 	addi sp,sp,24                                  
 8003540:	c3 a0 00 00 	ret                                            
   *  If the maximum number of driver is the same as the number in the
   *  table, then we do not have to copy the driver table.  They can't
   *  register any dynamically.                                       
   */                                                                 
  if ( number_of_drivers == drivers_in_table ) {                      
    _IO_Driver_address_table = driver_table;                          
 8003544:	78 02 08 01 	mvhi r2,0x801                                  
    _IO_Number_of_drivers = number_of_drivers;                        
 8003548:	78 01 08 01 	mvhi r1,0x801                                  
   *  If the maximum number of driver is the same as the number in the
   *  table, then we do not have to copy the driver table.  They can't
   *  register any dynamically.                                       
   */                                                                 
  if ( number_of_drivers == drivers_in_table ) {                      
    _IO_Driver_address_table = driver_table;                          
 800354c:	38 42 3a 50 	ori r2,r2,0x3a50                               
    _IO_Number_of_drivers = number_of_drivers;                        
 8003550:	38 21 3a 4c 	ori r1,r1,0x3a4c                               
   *  If the maximum number of driver is the same as the number in the
   *  table, then we do not have to copy the driver table.  They can't
   *  register any dynamically.                                       
   */                                                                 
  if ( number_of_drivers == drivers_in_table ) {                      
    _IO_Driver_address_table = driver_table;                          
 8003554:	58 4d 00 00 	sw (r2+0),r13                                  
    _IO_Number_of_drivers = number_of_drivers;                        
 8003558:	58 2b 00 00 	sw (r1+0),r11                                  
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
    _IO_Driver_address_table[index] = driver_table[index];            
  number_of_drivers = drivers_in_table;                               
}                                                                     
 800355c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003560:	2b 8b 00 18 	lw r11,(sp+24)                                 
 8003564:	2b 8c 00 14 	lw r12,(sp+20)                                 
 8003568:	2b 8d 00 10 	lw r13,(sp+16)                                 
 800356c:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 8003570:	2b 8f 00 08 	lw r15,(sp+8)                                  
 8003574:	37 9c 00 18 	addi sp,sp,24                                  
 8003578:	c3 a0 00 00 	ret                                            
                                                                      

08004470 <_Objects_Allocate>: */ Objects_Control *_Objects_Allocate( Objects_Information *information ) {
 8004470:	37 9c ff ec 	addi sp,sp,-20                                 
 8004474:	5b 8b 00 14 	sw (sp+20),r11                                 
 8004478:	5b 8c 00 10 	sw (sp+16),r12                                 
 800447c:	5b 8d 00 0c 	sw (sp+12),r13                                 
 8004480:	5b 8e 00 08 	sw (sp+8),r14                                  
 8004484:	5b 9d 00 04 	sw (sp+4),ra                                   
 8004488:	b8 20 58 00 	mv r11,r1                                      
   *  If the application is using the optional manager stubs and      
   *  still attempts to create the object, the information block      
   *  should be all zeroed out because it is in the BSS.  So let's    
   *  check that code for this manager is even present.               
   */                                                                 
  if ( information->size == 0 )                                       
 800448c:	28 21 00 18 	lw r1,(r1+24)                                  
    return NULL;                                                      
 8004490:	34 0c 00 00 	mvi r12,0                                      
   *  If the application is using the optional manager stubs and      
   *  still attempts to create the object, the information block      
   *  should be all zeroed out because it is in the BSS.  So let's    
   *  check that code for this manager is even present.               
   */                                                                 
  if ( information->size == 0 )                                       
 8004494:	5c 20 00 09 	bne r1,r0,80044b8 <_Objects_Allocate+0x48>     <== ALWAYS TAKEN
    );                                                                
  }                                                                   
#endif                                                                
                                                                      
  return the_object;                                                  
}                                                                     
 8004498:	b9 80 08 00 	mv r1,r12                                      
 800449c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80044a0:	2b 8b 00 14 	lw r11,(sp+20)                                 
 80044a4:	2b 8c 00 10 	lw r12,(sp+16)                                 
 80044a8:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 80044ac:	2b 8e 00 08 	lw r14,(sp+8)                                  
 80044b0:	37 9c 00 14 	addi sp,sp,20                                  
 80044b4:	c3 a0 00 00 	ret                                            
                                                                      
  /*                                                                  
   *  OK.  The manager should be initialized and configured to have objects.
   *  With any luck, it is safe to attempt to allocate an object.     
   */                                                                 
  the_object = (Objects_Control *) _Chain_Get( &information->Inactive );
 80044b8:	35 6d 00 20 	addi r13,r11,32                                
 80044bc:	b9 a0 08 00 	mv r1,r13                                      
 80044c0:	fb ff fc fb 	calli 80038ac <_Chain_Get>                     
 80044c4:	b8 20 60 00 	mv r12,r1                                      
                                                                      
  if ( information->auto_extend ) {                                   
 80044c8:	41 61 00 12 	lbu r1,(r11+18)                                
                                                                      
  /*                                                                  
   *  OK.  The manager should be initialized and configured to have objects.
   *  With any luck, it is safe to attempt to allocate an object.     
   */                                                                 
  the_object = (Objects_Control *) _Chain_Get( &information->Inactive );
 80044cc:	b9 80 70 00 	mv r14,r12                                     
                                                                      
  if ( information->auto_extend ) {                                   
 80044d0:	44 20 ff f2 	be r1,r0,8004498 <_Objects_Allocate+0x28>      
    /*                                                                
     *  If the list is empty then we are out of objects and need to   
     *  extend information base.                                      
     */                                                               
                                                                      
    if ( !the_object ) {                                              
 80044d4:	45 80 00 18 	be r12,r0,8004534 <_Objects_Allocate+0xc4>     
    }                                                                 
                                                                      
    if ( the_object ) {                                               
      uint32_t   block;                                               
                                                                      
      block = (uint32_t) _Objects_Get_index( the_object->id ) -       
 80044d8:	2d 83 00 0a 	lhu r3,(r12+10)                                
 80044dc:	2d 61 00 0a 	lhu r1,(r11+10)                                
              _Objects_Get_index( information->minimum_id );          
      block /= information->allocation_size;                          
 80044e0:	2d 62 00 14 	lhu r2,(r11+20)                                
 80044e4:	c8 61 08 00 	sub r1,r3,r1                                   
 80044e8:	f8 00 32 b3 	calli 8010fb4 <__udivsi3>                      
                                                                      
      information->inactive_per_block[ block ]--;                     
 80044ec:	29 62 00 30 	lw r2,(r11+48)                                 
 80044f0:	b4 21 08 00 	add r1,r1,r1                                   
 80044f4:	b4 21 08 00 	add r1,r1,r1                                   
 80044f8:	b4 41 08 00 	add r1,r2,r1                                   
 80044fc:	28 22 00 00 	lw r2,(r1+0)                                   
      information->inactive--;                                        
 8004500:	2d 63 00 2c 	lhu r3,(r11+44)                                
                                                                      
      block = (uint32_t) _Objects_Get_index( the_object->id ) -       
              _Objects_Get_index( information->minimum_id );          
      block /= information->allocation_size;                          
                                                                      
      information->inactive_per_block[ block ]--;                     
 8004504:	34 42 ff ff 	addi r2,r2,-1                                  
 8004508:	58 22 00 00 	sw (r1+0),r2                                   
      information->inactive--;                                        
 800450c:	34 61 ff ff 	addi r1,r3,-1                                  
 8004510:	0d 61 00 2c 	sh (r11+44),r1                                 
    );                                                                
  }                                                                   
#endif                                                                
                                                                      
  return the_object;                                                  
}                                                                     
 8004514:	b9 80 08 00 	mv r1,r12                                      
 8004518:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800451c:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8004520:	2b 8c 00 10 	lw r12,(sp+16)                                 
 8004524:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 8004528:	2b 8e 00 08 	lw r14,(sp+8)                                  
 800452c:	37 9c 00 14 	addi sp,sp,20                                  
 8004530:	c3 a0 00 00 	ret                                            
     *  If the list is empty then we are out of objects and need to   
     *  extend information base.                                      
     */                                                               
                                                                      
    if ( !the_object ) {                                              
      _Objects_Extend_information( information );                     
 8004534:	b9 60 08 00 	mv r1,r11                                      
 8004538:	f8 00 00 06 	calli 8004550 <_Objects_Extend_information>    
      the_object =  (Objects_Control *) _Chain_Get( &information->Inactive );
 800453c:	b9 a0 08 00 	mv r1,r13                                      
 8004540:	fb ff fc db 	calli 80038ac <_Chain_Get>                     
 8004544:	b8 20 60 00 	mv r12,r1                                      
    }                                                                 
                                                                      
    if ( the_object ) {                                               
 8004548:	44 2e ff d4 	be r1,r14,8004498 <_Objects_Allocate+0x28>     
 800454c:	e3 ff ff e3 	bi 80044d8 <_Objects_Allocate+0x68>            
                                                                      

08004550 <_Objects_Extend_information>: */ void _Objects_Extend_information( Objects_Information *information ) {
 8004550:	37 9c ff c8 	addi sp,sp,-56                                 
 8004554:	5b 8b 00 2c 	sw (sp+44),r11                                 
 8004558:	5b 8c 00 28 	sw (sp+40),r12                                 
 800455c:	5b 8d 00 24 	sw (sp+36),r13                                 
 8004560:	5b 8e 00 20 	sw (sp+32),r14                                 
 8004564:	5b 8f 00 1c 	sw (sp+28),r15                                 
 8004568:	5b 90 00 18 	sw (sp+24),r16                                 
 800456c:	5b 91 00 14 	sw (sp+20),r17                                 
 8004570:	5b 92 00 10 	sw (sp+16),r18                                 
 8004574:	5b 93 00 0c 	sw (sp+12),r19                                 
 8004578:	5b 94 00 08 	sw (sp+8),r20                                  
 800457c:	5b 9d 00 04 	sw (sp+4),ra                                   
  minimum_index = _Objects_Get_index( information->minimum_id );      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
 8004580:	28 2c 00 34 	lw r12,(r1+52)                                 
 */                                                                   
                                                                      
void _Objects_Extend_information(                                     
  Objects_Information *information                                    
)                                                                     
{                                                                     
 8004584:	b8 20 58 00 	mv r11,r1                                      
  /*                                                                  
   *  Search for a free block of indexes. If we do NOT need to allocate or
   *  extend the block table, then we will change do_extend.          
   */                                                                 
  do_extend     = true;                                               
  minimum_index = _Objects_Get_index( information->minimum_id );      
 8004588:	2c 30 00 0a 	lhu r16,(r1+10)                                
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
 800458c:	45 80 00 aa 	be r12,r0,8004834 <_Objects_Extend_information+0x2e4>
    block_count = 0;                                                  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
 8004590:	2c 2f 00 14 	lhu r15,(r1+20)                                
 8004594:	2c 31 00 10 	lhu r17,(r1+16)                                
 8004598:	b9 e0 10 00 	mv r2,r15                                      
 800459c:	ba 20 08 00 	mv r1,r17                                      
 80045a0:	f8 00 32 85 	calli 8010fb4 <__udivsi3>                      
 80045a4:	20 2e ff ff 	andi r14,r1,0xffff                             
                                                                      
    for ( ; block < block_count; block++ ) {                          
 80045a8:	45 c0 00 a9 	be r14,r0,800484c <_Objects_Extend_information+0x2fc><== NEVER TAKEN
      if ( information->object_blocks[ block ] == NULL ) {            
 80045ac:	29 81 00 00 	lw r1,(r12+0)                                  
 80045b0:	44 20 00 ac 	be r1,r0,8004860 <_Objects_Extend_information+0x310><== NEVER TAKEN
 80045b4:	b9 80 18 00 	mv r3,r12                                      
 80045b8:	b9 e0 08 00 	mv r1,r15                                      
  /*                                                                  
   *  Search for a free block of indexes. If we do NOT need to allocate or
   *  extend the block table, then we will change do_extend.          
   */                                                                 
  do_extend     = true;                                               
  minimum_index = _Objects_Get_index( information->minimum_id );      
 80045bc:	ba 00 68 00 	mv r13,r16                                     
  index_base    = minimum_index;                                      
  block         = 0;                                                  
 80045c0:	34 0c 00 00 	mvi r12,0                                      
  if ( information->object_blocks == NULL )                           
    block_count = 0;                                                  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
 80045c4:	35 8c 00 01 	addi r12,r12,1                                 
      if ( information->object_blocks[ block ] == NULL ) {            
        do_extend = false;                                            
        break;                                                        
      } else                                                          
        index_base += information->allocation_size;                   
 80045c8:	b5 af 68 00 	add r13,r13,r15                                
  if ( information->object_blocks == NULL )                           
    block_count = 0;                                                  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
 80045cc:	55 cc 00 81 	bgu r14,r12,80047d0 <_Objects_Extend_information+0x280>
                                                                      
  /*                                                                  
   *  Search for a free block of indexes. If we do NOT need to allocate or
   *  extend the block table, then we will change do_extend.          
   */                                                                 
  do_extend     = true;                                               
 80045d0:	34 12 00 01 	mvi r18,1                                      
      } else                                                          
        index_base += information->allocation_size;                   
    }                                                                 
  }                                                                   
                                                                      
  maximum = (uint32_t) information->maximum + information->allocation_size;
 80045d4:	b6 21 88 00 	add r17,r17,r1                                 
  /*                                                                  
   *  We need to limit the number of objects to the maximum number    
   *  representable in the index portion of the object Id.  In the    
   *  case of 16-bit Ids, this is only 256 object instances.          
   */                                                                 
  if ( maximum > OBJECTS_ID_FINAL_INDEX ) {                           
 80045d8:	38 02 ff ff 	mvu r2,0xffff                                  
 80045dc:	56 22 00 70 	bgu r17,r2,800479c <_Objects_Extend_information+0x24c>
                                                                      
  /*                                                                  
   * Allocate the name table, and the objects and if it fails either return or
   * generate a fatal error depending on auto-extending being active. 
   */                                                                 
  block_size = information->allocation_size * information->size;      
 80045e0:	29 62 00 18 	lw r2,(r11+24)                                 
 80045e4:	f8 00 32 0f 	calli 8010e20 <__mulsi3>                       
  if ( information->auto_extend ) {                                   
 80045e8:	41 62 00 12 	lbu r2,(r11+18)                                
 80045ec:	44 40 00 7e 	be r2,r0,80047e4 <_Objects_Extend_information+0x294>
    new_object_block = _Workspace_Allocate( block_size );             
 80045f0:	f8 00 09 c9 	calli 8006d14 <_Workspace_Allocate>            
 80045f4:	b8 20 78 00 	mv r15,r1                                      
    if ( !new_object_block )                                          
 80045f8:	44 20 00 69 	be r1,r0,800479c <_Objects_Extend_information+0x24c>
  }                                                                   
                                                                      
  /*                                                                  
   *  Do we need to grow the tables?                                  
   */                                                                 
  if ( do_extend ) {                                                  
 80045fc:	46 40 00 41 	be r18,r0,8004700 <_Objects_Extend_information+0x1b0>
     */                                                               
                                                                      
    /*                                                                
     *  Up the block count and maximum                                
     */                                                               
    block_count++;                                                    
 8004600:	35 c1 00 01 	addi r1,r14,1                                  
                                                                      
    /*                                                                
     *  Allocate the tables and break it up.                          
     */                                                               
    block_size = block_count *                                        
           (sizeof(void *) + sizeof(uint32_t) + sizeof(Objects_Name *)) +
 8004604:	b4 21 98 00 	add r19,r1,r1                                  
 8004608:	b6 61 08 00 	add r1,r19,r1                                  
          ((maximum + minimum_index) * sizeof(Objects_Control *));    
 800460c:	b6 21 08 00 	add r1,r17,r1                                  
                                                                      
    /*                                                                
     *  Allocate the tables and break it up.                          
     */                                                               
    block_size = block_count *                                        
           (sizeof(void *) + sizeof(uint32_t) + sizeof(Objects_Name *)) +
 8004610:	b4 30 08 00 	add r1,r1,r16                                  
    block_count++;                                                    
                                                                      
    /*                                                                
     *  Allocate the tables and break it up.                          
     */                                                               
    block_size = block_count *                                        
 8004614:	b4 21 08 00 	add r1,r1,r1                                   
 8004618:	b4 21 08 00 	add r1,r1,r1                                   
           (sizeof(void *) + sizeof(uint32_t) + sizeof(Objects_Name *)) +
          ((maximum + minimum_index) * sizeof(Objects_Control *));    
    object_blocks = (void**) _Workspace_Allocate( block_size );       
 800461c:	f8 00 09 be 	calli 8006d14 <_Workspace_Allocate>            
 8004620:	b8 20 90 00 	mv r18,r1                                      
                                                                      
    if ( !object_blocks ) {                                           
 8004624:	44 20 00 94 	be r1,r0,8004874 <_Objects_Extend_information+0x324>
     *  Take the block count down. Saves all the (block_count - 1)    
     *  in the copies.                                                
     */                                                               
    block_count--;                                                    
                                                                      
    if ( information->maximum > minimum_index ) {                     
 8004628:	2d 62 00 10 	lhu r2,(r11+16)                                
    }                                                                 
                                                                      
    /*                                                                
     *  Break the block into the various sections.                    
     */                                                               
    inactive_per_block = (uint32_t *) _Addresses_Add_offset(          
 800462c:	b6 73 a0 00 	add r20,r19,r19                                
 8004630:	b4 34 98 00 	add r19,r1,r20                                 
 8004634:	b6 74 a0 00 	add r20,r19,r20                                
     *  Take the block count down. Saves all the (block_count - 1)    
     *  in the copies.                                                
     */                                                               
    block_count--;                                                    
                                                                      
    if ( information->maximum > minimum_index ) {                     
 8004638:	54 50 00 6e 	bgu r2,r16,80047f0 <_Objects_Extend_information+0x2a0>
    } else {                                                          
                                                                      
      /*                                                              
       *  Deal with the special case of the 0 to minimum_index        
       */                                                             
      for ( index = 0; index < minimum_index; index++ ) {             
 800463c:	ba 80 20 00 	mv r4,r20                                      
 8004640:	34 03 00 00 	mvi r3,0                                       
 8004644:	46 00 00 05 	be r16,r0,8004658 <_Objects_Extend_information+0x108><== NEVER TAKEN
        local_table[ index ] = NULL;                                  
 8004648:	58 80 00 00 	sw (r4+0),r0                                   
    } else {                                                          
                                                                      
      /*                                                              
       *  Deal with the special case of the 0 to minimum_index        
       */                                                             
      for ( index = 0; index < minimum_index; index++ ) {             
 800464c:	34 63 00 01 	addi r3,r3,1                                   
 8004650:	34 84 00 04 	addi r4,r4,4                                   
 8004654:	56 03 ff fd 	bgu r16,r3,8004648 <_Objects_Extend_information+0xf8><== NEVER TAKEN
 8004658:	b5 ce 70 00 	add r14,r14,r14                                
 800465c:	b5 ce 70 00 	add r14,r14,r14                                
     */                                                               
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
          index < ( information->allocation_size + index_base );      
 8004660:	2d 65 00 14 	lhu r5,(r11+20)                                
    }                                                                 
                                                                      
    /*                                                                
     *  Initialise the new entries in the table.                      
     */                                                               
    object_blocks[block_count] = NULL;                                
 8004664:	b6 4e 08 00 	add r1,r18,r14                                 
 8004668:	58 20 00 00 	sw (r1+0),r0                                   
    inactive_per_block[block_count] = 0;                              
 800466c:	b6 6e 70 00 	add r14,r19,r14                                
 8004670:	59 c0 00 00 	sw (r14+0),r0                                  
                                                                      
    for ( index=index_base ;                                          
          index < ( information->allocation_size + index_base );      
 8004674:	b5 a5 28 00 	add r5,r13,r5                                  
     *  Initialise the new entries in the table.                      
     */                                                               
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
 8004678:	51 a5 00 09 	bgeu r13,r5,800469c <_Objects_Extend_information+0x14c><== NEVER TAKEN
 *    information     - object information table                      
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Objects_Extend_information(                                     
 800467c:	b5 ad 20 00 	add r4,r13,r13                                 
 8004680:	b4 84 20 00 	add r4,r4,r4                                   
     *  Initialise the new entries in the table.                      
     */                                                               
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
 8004684:	b6 84 20 00 	add r4,r20,r4                                  
 *    information     - object information table                      
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Objects_Extend_information(                                     
 8004688:	b9 a0 18 00 	mv r3,r13                                      
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
          index < ( information->allocation_size + index_base );      
          index++ ) {                                                 
      local_table[ index ] = NULL;                                    
 800468c:	58 80 00 00 	sw (r4+0),r0                                   
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
          index < ( information->allocation_size + index_base );      
          index++ ) {                                                 
 8004690:	34 63 00 01 	addi r3,r3,1                                   
 8004694:	34 84 00 04 	addi r4,r4,4                                   
     *  Initialise the new entries in the table.                      
     */                                                               
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
 8004698:	54 a3 ff fd 	bgu r5,r3,800468c <_Objects_Extend_information+0x13c>
          index < ( information->allocation_size + index_base );      
          index++ ) {                                                 
      local_table[ index ] = NULL;                                    
    }                                                                 
                                                                      
    _ISR_Disable( level );                                            
 800469c:	90 00 70 00 	rcsr r14,IE                                    
 80046a0:	34 01 ff fe 	mvi r1,-2                                      
 80046a4:	a1 c1 08 00 	and r1,r14,r1                                  
 80046a8:	d0 01 00 00 	wcsr IE,r1                                     
  uint32_t         the_class,                                         
  uint32_t         node,                                              
  uint32_t         index                                              
)                                                                     
{                                                                     
  return (( (Objects_Id) the_api )   << OBJECTS_API_START_BIT)   |    
 80046ac:	29 61 00 00 	lw r1,(r11+0)                                  
    old_tables = information->object_blocks;                          
                                                                      
    information->object_blocks = object_blocks;                       
    information->inactive_per_block = inactive_per_block;             
    information->local_table = local_table;                           
    information->maximum = (Objects_Maximum) maximum;                 
 80046b0:	22 31 ff ff 	andi r17,r17,0xffff                            
 80046b4:	0d 71 00 10 	sh (r11+16),r17                                
      local_table[ index ] = NULL;                                    
    }                                                                 
                                                                      
    _ISR_Disable( level );                                            
                                                                      
    old_tables = information->object_blocks;                          
 80046b8:	29 70 00 34 	lw r16,(r11+52)                                
                                                                      
    information->object_blocks = object_blocks;                       
    information->inactive_per_block = inactive_per_block;             
 80046bc:	59 73 00 30 	sw (r11+48),r19                                
                                                                      
    _ISR_Disable( level );                                            
                                                                      
    old_tables = information->object_blocks;                          
                                                                      
    information->object_blocks = object_blocks;                       
 80046c0:	59 72 00 34 	sw (r11+52),r18                                
    information->inactive_per_block = inactive_per_block;             
    information->local_table = local_table;                           
 80046c4:	59 74 00 1c 	sw (r11+28),r20                                
 80046c8:	34 02 00 18 	mvi r2,24                                      
 80046cc:	f8 00 31 60 	calli 8010c4c <__ashlsi3>                      
 80046d0:	78 12 00 01 	mvhi r18,0x1                                   
 80046d4:	b8 32 90 00 	or r18,r1,r18                                  
         (( (Objects_Id) the_class ) << OBJECTS_CLASS_START_BIT) |    
 80046d8:	2d 61 00 04 	lhu r1,(r11+4)                                 
 80046dc:	34 02 00 1b 	mvi r2,27                                      
 80046e0:	f8 00 31 5b 	calli 8010c4c <__ashlsi3>                      
 80046e4:	ba 41 08 00 	or r1,r18,r1                                   
  uint32_t         the_class,                                         
  uint32_t         node,                                              
  uint32_t         index                                              
)                                                                     
{                                                                     
  return (( (Objects_Id) the_api )   << OBJECTS_API_START_BIT)   |    
 80046e8:	b8 31 88 00 	or r17,r1,r17                                  
    information->maximum = (Objects_Maximum) maximum;                 
    information->maximum_id = _Objects_Build_id(                      
 80046ec:	59 71 00 0c 	sw (r11+12),r17                                
        information->the_class,                                       
        _Objects_Local_node,                                          
        information->maximum                                          
      );                                                              
                                                                      
    _ISR_Enable( level );                                             
 80046f0:	d0 0e 00 00 	wcsr IE,r14                                    
                                                                      
    if ( old_tables )                                                 
 80046f4:	46 00 00 03 	be r16,r0,8004700 <_Objects_Extend_information+0x1b0>
      _Workspace_Free( old_tables );                                  
 80046f8:	ba 00 08 00 	mv r1,r16                                      
 80046fc:	f8 00 09 91 	calli 8006d40 <_Workspace_Free>                
  }                                                                   
                                                                      
  /*                                                                  
   *  Assign the new object block to the object block table.          
   */                                                                 
  information->object_blocks[ block ] = new_object_block;             
 8004700:	29 61 00 34 	lw r1,(r11+52)                                 
 8004704:	b5 8c 60 00 	add r12,r12,r12                                
                                                                      
  /*                                                                  
   *  Initialize objects .. add to a local chain first.               
   */                                                                 
  _Chain_Initialize(                                                  
 8004708:	2d 63 00 14 	lhu r3,(r11+20)                                
 800470c:	29 64 00 18 	lw r4,(r11+24)                                 
  }                                                                   
                                                                      
  /*                                                                  
   *  Assign the new object block to the object block table.          
   */                                                                 
  information->object_blocks[ block ] = new_object_block;             
 8004710:	b5 8c 60 00 	add r12,r12,r12                                
 8004714:	b4 2c 08 00 	add r1,r1,r12                                  
                                                                      
  /*                                                                  
   *  Initialize objects .. add to a local chain first.               
   */                                                                 
  _Chain_Initialize(                                                  
 8004718:	37 90 00 30 	addi r16,sp,48                                 
  }                                                                   
                                                                      
  /*                                                                  
   *  Assign the new object block to the object block table.          
   */                                                                 
  information->object_blocks[ block ] = new_object_block;             
 800471c:	58 2f 00 00 	sw (r1+0),r15                                  
                                                                      
  /*                                                                  
   *  Initialize objects .. add to a local chain first.               
   */                                                                 
  _Chain_Initialize(                                                  
 8004720:	b9 e0 10 00 	mv r2,r15                                      
 8004724:	ba 00 08 00 	mv r1,r16                                      
 8004728:	f8 00 12 83 	calli 8009134 <_Chain_Initialize>              
 800472c:	78 12 00 01 	mvhi r18,0x1                                   
        information->the_class,                                       
        _Objects_Local_node,                                          
        index                                                         
      );                                                              
                                                                      
    _Chain_Append( &information->Inactive, &the_object->Node );       
 8004730:	35 71 00 20 	addi r17,r11,32                                
  /*                                                                  
   *  Move from the local chain, initialise, then append to the inactive chain
   */                                                                 
  index = index_base;                                                 
                                                                      
  while ((the_object = (Objects_Control *) _Chain_Get( &Inactive )) != NULL ) {
 8004734:	e0 00 00 0e 	bi 800476c <_Objects_Extend_information+0x21c> 
 8004738:	29 61 00 00 	lw r1,(r11+0)                                  
 800473c:	f8 00 31 44 	calli 8010c4c <__ashlsi3>                      
 8004740:	b8 32 78 00 	or r15,r1,r18                                  
         (( (Objects_Id) the_class ) << OBJECTS_CLASS_START_BIT) |    
 8004744:	2d 61 00 04 	lhu r1,(r11+4)                                 
 8004748:	34 02 00 1b 	mvi r2,27                                      
 800474c:	f8 00 31 40 	calli 8010c4c <__ashlsi3>                      
 8004750:	b9 e1 10 00 	or r2,r15,r1                                   
  uint32_t         the_class,                                         
  uint32_t         node,                                              
  uint32_t         index                                              
)                                                                     
{                                                                     
  return (( (Objects_Id) the_api )   << OBJECTS_API_START_BIT)   |    
 8004754:	b8 4d 10 00 	or r2,r2,r13                                   
                                                                      
    the_object->id = _Objects_Build_id(                               
 8004758:	59 c2 00 08 	sw (r14+8),r2                                  
        information->the_class,                                       
        _Objects_Local_node,                                          
        index                                                         
      );                                                              
                                                                      
    _Chain_Append( &information->Inactive, &the_object->Node );       
 800475c:	ba 20 08 00 	mv r1,r17                                      
 8004760:	b9 c0 10 00 	mv r2,r14                                      
 8004764:	fb ff fc 3c 	calli 8003854 <_Chain_Append>                  
                                                                      
    index++;                                                          
 8004768:	35 ad 00 01 	addi r13,r13,1                                 
  /*                                                                  
   *  Move from the local chain, initialise, then append to the inactive chain
   */                                                                 
  index = index_base;                                                 
                                                                      
  while ((the_object = (Objects_Control *) _Chain_Get( &Inactive )) != NULL ) {
 800476c:	ba 00 08 00 	mv r1,r16                                      
 8004770:	fb ff fc 4f 	calli 80038ac <_Chain_Get>                     
 8004774:	b8 20 70 00 	mv r14,r1                                      
 8004778:	34 02 00 18 	mvi r2,24                                      
 800477c:	5c 20 ff ef 	bne r1,r0,8004738 <_Objects_Extend_information+0x1e8>
    _Chain_Append( &information->Inactive, &the_object->Node );       
                                                                      
    index++;                                                          
  }                                                                   
                                                                      
  information->inactive_per_block[ block ] = information->allocation_size;
 8004780:	29 63 00 30 	lw r3,(r11+48)                                 
  information->inactive =                                             
    (Objects_Maximum)(information->inactive + information->allocation_size);
 8004784:	2d 62 00 2c 	lhu r2,(r11+44)                                
    _Chain_Append( &information->Inactive, &the_object->Node );       
                                                                      
    index++;                                                          
  }                                                                   
                                                                      
  information->inactive_per_block[ block ] = information->allocation_size;
 8004788:	2d 61 00 14 	lhu r1,(r11+20)                                
 800478c:	b4 6c 60 00 	add r12,r3,r12                                 
 8004790:	59 81 00 00 	sw (r12+0),r1                                  
  information->inactive =                                             
    (Objects_Maximum)(information->inactive + information->allocation_size);
 8004794:	b4 22 08 00 	add r1,r1,r2                                   
                                                                      
    index++;                                                          
  }                                                                   
                                                                      
  information->inactive_per_block[ block ] = information->allocation_size;
  information->inactive =                                             
 8004798:	0d 61 00 2c 	sh (r11+44),r1                                 
    (Objects_Maximum)(information->inactive + information->allocation_size);
}                                                                     
 800479c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80047a0:	2b 8b 00 2c 	lw r11,(sp+44)                                 
 80047a4:	2b 8c 00 28 	lw r12,(sp+40)                                 
 80047a8:	2b 8d 00 24 	lw r13,(sp+36)                                 
 80047ac:	2b 8e 00 20 	lw r14,(sp+32)                                 
 80047b0:	2b 8f 00 1c 	lw r15,(sp+28)                                 
 80047b4:	2b 90 00 18 	lw r16,(sp+24)                                 
 80047b8:	2b 91 00 14 	lw r17,(sp+20)                                 
 80047bc:	2b 92 00 10 	lw r18,(sp+16)                                 
 80047c0:	2b 93 00 0c 	lw r19,(sp+12)                                 
 80047c4:	2b 94 00 08 	lw r20,(sp+8)                                  
 80047c8:	37 9c 00 38 	addi sp,sp,56                                  
 80047cc:	c3 a0 00 00 	ret                                            
    block_count = 0;                                                  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
      if ( information->object_blocks[ block ] == NULL ) {            
 80047d0:	28 62 00 04 	lw r2,(r3+4)                                   
 80047d4:	34 63 00 04 	addi r3,r3,4                                   
 80047d8:	5c 40 ff 7b 	bne r2,r0,80045c4 <_Objects_Extend_information+0x74>
        do_extend = false;                                            
 80047dc:	34 12 00 00 	mvi r18,0                                      
 80047e0:	e3 ff ff 7d 	bi 80045d4 <_Objects_Extend_information+0x84>  
  if ( information->auto_extend ) {                                   
    new_object_block = _Workspace_Allocate( block_size );             
    if ( !new_object_block )                                          
      return;                                                         
  } else {                                                            
    new_object_block = _Workspace_Allocate_or_fatal_error( block_size );
 80047e4:	f8 00 09 60 	calli 8006d64 <_Workspace_Allocate_or_fatal_error>
 80047e8:	b8 20 78 00 	mv r15,r1                                      
 80047ec:	e3 ff ff 84 	bi 80045fc <_Objects_Extend_information+0xac>  
      /*                                                              
       *  Copy each section of the table over. This has to be performed as
       *  separate parts as size of each block has changed.           
       */                                                             
                                                                      
      memcpy( object_blocks,                                          
 80047f0:	29 62 00 34 	lw r2,(r11+52)                                 
              information->object_blocks,                             
              block_count * sizeof(void*) );                          
 80047f4:	b5 ce 70 00 	add r14,r14,r14                                
 80047f8:	b5 ce 70 00 	add r14,r14,r14                                
      /*                                                              
       *  Copy each section of the table over. This has to be performed as
       *  separate parts as size of each block has changed.           
       */                                                             
                                                                      
      memcpy( object_blocks,                                          
 80047fc:	b9 c0 18 00 	mv r3,r14                                      
 8004800:	f8 00 1f 16 	calli 800c458 <memcpy>                         
              information->object_blocks,                             
              block_count * sizeof(void*) );                          
      memcpy( inactive_per_block,                                     
 8004804:	29 62 00 30 	lw r2,(r11+48)                                 
 8004808:	b9 c0 18 00 	mv r3,r14                                      
 800480c:	ba 60 08 00 	mv r1,r19                                      
 8004810:	f8 00 1f 12 	calli 800c458 <memcpy>                         
              information->inactive_per_block,                        
              block_count * sizeof(uint32_t) );                       
      memcpy( local_table,                                            
              information->local_table,                               
              (information->maximum + minimum_index) * sizeof(Objects_Control *) );
 8004814:	2d 63 00 10 	lhu r3,(r11+16)                                
              information->object_blocks,                             
              block_count * sizeof(void*) );                          
      memcpy( inactive_per_block,                                     
              information->inactive_per_block,                        
              block_count * sizeof(uint32_t) );                       
      memcpy( local_table,                                            
 8004818:	29 62 00 1c 	lw r2,(r11+28)                                 
 800481c:	ba 80 08 00 	mv r1,r20                                      
              information->local_table,                               
              (information->maximum + minimum_index) * sizeof(Objects_Control *) );
 8004820:	b6 03 18 00 	add r3,r16,r3                                  
 8004824:	b4 63 18 00 	add r3,r3,r3                                   
 8004828:	b4 63 18 00 	add r3,r3,r3                                   
              information->object_blocks,                             
              block_count * sizeof(void*) );                          
      memcpy( inactive_per_block,                                     
              information->inactive_per_block,                        
              block_count * sizeof(uint32_t) );                       
      memcpy( local_table,                                            
 800482c:	f8 00 1f 0b 	calli 800c458 <memcpy>                         
 8004830:	e3 ff ff 8c 	bi 8004660 <_Objects_Extend_information+0x110> 
  minimum_index = _Objects_Get_index( information->minimum_id );      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
 8004834:	2c 31 00 10 	lhu r17,(r1+16)                                
  /*                                                                  
   *  Search for a free block of indexes. If we do NOT need to allocate or
   *  extend the block table, then we will change do_extend.          
   */                                                                 
  do_extend     = true;                                               
  minimum_index = _Objects_Get_index( information->minimum_id );      
 8004838:	ba 00 68 00 	mv r13,r16                                     
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
 800483c:	2c 21 00 14 	lhu r1,(r1+20)                                 
                                                                      
  /*                                                                  
   *  Search for a free block of indexes. If we do NOT need to allocate or
   *  extend the block table, then we will change do_extend.          
   */                                                                 
  do_extend     = true;                                               
 8004840:	34 12 00 01 	mvi r18,1                                      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
    block_count = 0;                                                  
 8004844:	34 0e 00 00 	mvi r14,0                                      
 8004848:	e3 ff ff 63 	bi 80045d4 <_Objects_Extend_information+0x84>  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
 800484c:	b9 e0 08 00 	mv r1,r15                                      <== NOT EXECUTED
  /*                                                                  
   *  Search for a free block of indexes. If we do NOT need to allocate or
   *  extend the block table, then we will change do_extend.          
   */                                                                 
  do_extend     = true;                                               
  minimum_index = _Objects_Get_index( information->minimum_id );      
 8004850:	ba 00 68 00 	mv r13,r16                                     <== NOT EXECUTED
                                                                      
  /*                                                                  
   *  Search for a free block of indexes. If we do NOT need to allocate or
   *  extend the block table, then we will change do_extend.          
   */                                                                 
  do_extend     = true;                                               
 8004854:	34 12 00 01 	mvi r18,1                                      <== NOT EXECUTED
  minimum_index = _Objects_Get_index( information->minimum_id );      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
 8004858:	34 0c 00 00 	mvi r12,0                                      <== NOT EXECUTED
 800485c:	e3 ff ff 5e 	bi 80045d4 <_Objects_Extend_information+0x84>  <== NOT EXECUTED
    block_count = 0;                                                  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
      if ( information->object_blocks[ block ] == NULL ) {            
 8004860:	b9 e0 08 00 	mv r1,r15                                      <== NOT EXECUTED
  /*                                                                  
   *  Search for a free block of indexes. If we do NOT need to allocate or
   *  extend the block table, then we will change do_extend.          
   */                                                                 
  do_extend     = true;                                               
  minimum_index = _Objects_Get_index( information->minimum_id );      
 8004864:	ba 00 68 00 	mv r13,r16                                     <== NOT EXECUTED
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
      if ( information->object_blocks[ block ] == NULL ) {            
        do_extend = false;                                            
 8004868:	34 12 00 00 	mvi r18,0                                      <== NOT EXECUTED
   *  extend the block table, then we will change do_extend.          
   */                                                                 
  do_extend     = true;                                               
  minimum_index = _Objects_Get_index( information->minimum_id );      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
 800486c:	34 0c 00 00 	mvi r12,0                                      <== NOT EXECUTED
 8004870:	e3 ff ff 59 	bi 80045d4 <_Objects_Extend_information+0x84>  <== NOT EXECUTED
           (sizeof(void *) + sizeof(uint32_t) + sizeof(Objects_Name *)) +
          ((maximum + minimum_index) * sizeof(Objects_Control *));    
    object_blocks = (void**) _Workspace_Allocate( block_size );       
                                                                      
    if ( !object_blocks ) {                                           
      _Workspace_Free( new_object_block );                            
 8004874:	b9 e0 08 00 	mv r1,r15                                      
 8004878:	f8 00 09 32 	calli 8006d40 <_Workspace_Free>                
      return;                                                         
 800487c:	e3 ff ff c8 	bi 800479c <_Objects_Extend_information+0x24c> 
                                                                      

08004968 <_Objects_Get_information>: Objects_Information *_Objects_Get_information( Objects_APIs the_api, uint16_t the_class ) {
 8004968:	37 9c ff f0 	addi sp,sp,-16                                 
 800496c:	5b 8b 00 10 	sw (sp+16),r11                                 
 8004970:	5b 8c 00 0c 	sw (sp+12),r12                                 
 8004974:	5b 8d 00 08 	sw (sp+8),r13                                  
 8004978:	5b 9d 00 04 	sw (sp+4),ra                                   
 800497c:	20 4c ff ff 	andi r12,r2,0xffff                             
 8004980:	b8 20 68 00 	mv r13,r1                                      
  Objects_Information *info;                                          
  int the_class_api_maximum;                                          
                                                                      
  if ( !the_class )                                                   
    return NULL;                                                      
 8004984:	34 0b 00 00 	mvi r11,0                                      
)                                                                     
{                                                                     
  Objects_Information *info;                                          
  int the_class_api_maximum;                                          
                                                                      
  if ( !the_class )                                                   
 8004988:	5d 80 00 08 	bne r12,r0,80049a8 <_Objects_Get_information+0x40>
    if ( info->maximum == 0 )                                         
      return NULL;                                                    
  #endif                                                              
                                                                      
  return info;                                                        
}                                                                     
 800498c:	b9 60 08 00 	mv r1,r11                                      
 8004990:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004994:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8004998:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 800499c:	2b 8d 00 08 	lw r13,(sp+8)                                  
 80049a0:	37 9c 00 10 	addi sp,sp,16                                  
 80049a4:	c3 a0 00 00 	ret                                            
                                                                      
  /*                                                                  
   *  This call implicitly validates the_api so we do not call        
   *  _Objects_Is_api_valid above here.                               
   */                                                                 
  the_class_api_maximum = _Objects_API_maximum_class( the_api );      
 80049a8:	f8 00 13 86 	calli 80097c0 <_Objects_API_maximum_class>     
  if ( the_class_api_maximum == 0 )                                   
 80049ac:	44 20 ff f8 	be r1,r0,800498c <_Objects_Get_information+0x24>
    return NULL;                                                      
                                                                      
  if ( the_class > (uint32_t) the_class_api_maximum )                 
 80049b0:	55 81 ff f7 	bgu r12,r1,800498c <_Objects_Get_information+0x24>
    return NULL;                                                      
                                                                      
  if ( !_Objects_Information_table[ the_api ] )                       
 80049b4:	78 01 08 01 	mvhi r1,0x801                                  
 80049b8:	b5 ad 68 00 	add r13,r13,r13                                
 80049bc:	38 21 37 b8 	ori r1,r1,0x37b8                               
 80049c0:	b5 ad 68 00 	add r13,r13,r13                                
 80049c4:	b4 2d 08 00 	add r1,r1,r13                                  
 80049c8:	28 21 00 00 	lw r1,(r1+0)                                   
 80049cc:	44 20 ff f0 	be r1,r0,800498c <_Objects_Get_information+0x24><== NEVER TAKEN
    return NULL;                                                      
                                                                      
  info = _Objects_Information_table[ the_api ][ the_class ];          
 80049d0:	b5 8c 60 00 	add r12,r12,r12                                
 80049d4:	b5 8c 60 00 	add r12,r12,r12                                
 80049d8:	b4 2c 08 00 	add r1,r1,r12                                  
 80049dc:	28 2b 00 00 	lw r11,(r1+0)                                  
  if ( !info )                                                        
 80049e0:	45 60 ff eb 	be r11,r0,800498c <_Objects_Get_information+0x24><== NEVER TAKEN
   *  In a multprocessing configuration, we may access remote objects.
   *  Thus we may have 0 local instances and still have a valid object
   *  pointer.                                                        
   */                                                                 
  #if !defined(RTEMS_MULTIPROCESSING)                                 
    if ( info->maximum == 0 )                                         
 80049e4:	2d 61 00 10 	lhu r1,(r11+16)                                
      return NULL;                                                    
 80049e8:	7c 21 00 00 	cmpnei r1,r1,0                                 
 80049ec:	c8 01 08 00 	sub r1,r0,r1                                   
 80049f0:	a1 61 58 00 	and r11,r11,r1                                 
 80049f4:	e3 ff ff e6 	bi 800498c <_Objects_Get_information+0x24>     
                                                                      

080069b0 <_Objects_Get_name_as_string>: char *_Objects_Get_name_as_string( Objects_Id id, size_t length, char *name ) {
 80069b0:	37 9c ff dc 	addi sp,sp,-36                                 
 80069b4:	5b 8b 00 18 	sw (sp+24),r11                                 
 80069b8:	5b 8c 00 14 	sw (sp+20),r12                                 
 80069bc:	5b 8d 00 10 	sw (sp+16),r13                                 
 80069c0:	5b 8e 00 0c 	sw (sp+12),r14                                 
 80069c4:	5b 8f 00 08 	sw (sp+8),r15                                  
 80069c8:	5b 9d 00 04 	sw (sp+4),ra                                   
 80069cc:	b8 40 60 00 	mv r12,r2                                      
 80069d0:	b8 60 58 00 	mv r11,r3                                      
  char                   lname[5];                                    
  Objects_Control       *the_object;                                  
  Objects_Locations      location;                                    
  Objects_Id             tmpId;                                       
                                                                      
  if ( length == 0 )                                                  
 80069d4:	5c 40 00 0b 	bne r2,r0,8006a00 <_Objects_Get_name_as_string+0x50>
#if defined(RTEMS_MULTIPROCESSING)                                    
    case OBJECTS_REMOTE:                                              
      /* not supported */                                             
#endif                                                                
    case OBJECTS_ERROR:                                               
      return NULL;                                                    
 80069d8:	34 0b 00 00 	mvi r11,0                                      
                                                                      
      _Thread_Enable_dispatch();                                      
      return name;                                                    
  }                                                                   
  return NULL;                  /* unreachable path */                
}                                                                     
 80069dc:	b9 60 08 00 	mv r1,r11                                      
 80069e0:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80069e4:	2b 8b 00 18 	lw r11,(sp+24)                                 
 80069e8:	2b 8c 00 14 	lw r12,(sp+20)                                 
 80069ec:	2b 8d 00 10 	lw r13,(sp+16)                                 
 80069f0:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 80069f4:	2b 8f 00 08 	lw r15,(sp+8)                                  
 80069f8:	37 9c 00 24 	addi sp,sp,36                                  
 80069fc:	c3 a0 00 00 	ret                                            
  Objects_Id             tmpId;                                       
                                                                      
  if ( length == 0 )                                                  
    return NULL;                                                      
                                                                      
  if ( name == NULL )                                                 
 8006a00:	44 60 ff f7 	be r3,r0,80069dc <_Objects_Get_name_as_string+0x2c>
    return NULL;                                                      
                                                                      
  tmpId = (id == OBJECTS_ID_OF_SELF) ? _Thread_Executing->Object.id : id;
 8006a04:	b8 20 68 00 	mv r13,r1                                      
 8006a08:	5c 20 00 05 	bne r1,r0,8006a1c <_Objects_Get_name_as_string+0x6c>
 8006a0c:	78 01 08 02 	mvhi r1,0x802                                  
 8006a10:	38 21 88 30 	ori r1,r1,0x8830                               
 8006a14:	28 21 00 0c 	lw r1,(r1+12)                                  
 8006a18:	28 2d 00 08 	lw r13,(r1+8)                                  
                                                                      
  information = _Objects_Get_information_id( tmpId );                 
 8006a1c:	b9 a0 08 00 	mv r1,r13                                      
 8006a20:	fb ff ff 92 	calli 8006868 <_Objects_Get_information_id>    
  if ( !information )                                                 
 8006a24:	44 20 ff ed 	be r1,r0,80069d8 <_Objects_Get_name_as_string+0x28>
    return NULL;                                                      
                                                                      
  the_object = _Objects_Get( information, tmpId, &location );         
 8006a28:	b9 a0 10 00 	mv r2,r13                                      
 8006a2c:	37 83 00 24 	addi r3,sp,36                                  
 8006a30:	f8 00 00 30 	calli 8006af0 <_Objects_Get>                   
  switch ( location ) {                                               
 8006a34:	2b 8f 00 24 	lw r15,(sp+36)                                 
 8006a38:	5d e0 ff e8 	bne r15,r0,80069d8 <_Objects_Get_name_as_string+0x28>
        if ( information->is_string ) {                               
          s = the_object->name.name_p;                                
        } else                                                        
      #endif                                                          
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
 8006a3c:	28 2e 00 0c 	lw r14,(r1+12)                                 
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
 8006a40:	34 02 00 18 	mvi r2,24                                      
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
 8006a44:	35 8c ff ff 	addi r12,r12,-1                                
        } else                                                        
      #endif                                                          
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
 8006a48:	b9 c0 08 00 	mv r1,r14                                      
 8006a4c:	fb ff e9 d8 	calli 80011ac <__lshrsi3>                      
 8006a50:	20 2d 00 ff 	andi r13,r1,0xff                               
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
 8006a54:	34 02 00 10 	mvi r2,16                                      
 8006a58:	b9 c0 08 00 	mv r1,r14                                      
        } else                                                        
      #endif                                                          
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
 8006a5c:	33 8d 00 1c 	sb (sp+28),r13                                 
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
 8006a60:	fb ff e9 d3 	calli 80011ac <__lshrsi3>                      
        lname[ 2 ] = (u32_name >>  8) & 0xff;                         
 8006a64:	01 c3 00 01 	srui r3,r14,1                                  
      #endif                                                          
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
 8006a68:	33 81 00 1d 	sb (sp+29),r1                                  
        lname[ 2 ] = (u32_name >>  8) & 0xff;                         
 8006a6c:	00 63 00 01 	srui r3,r3,1                                   
        lname[ 3 ] = (u32_name >>  0) & 0xff;                         
 8006a70:	33 8e 00 1f 	sb (sp+31),r14                                 
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
        lname[ 2 ] = (u32_name >>  8) & 0xff;                         
 8006a74:	00 63 00 01 	srui r3,r3,1                                   
        lname[ 3 ] = (u32_name >>  0) & 0xff;                         
        lname[ 4 ] = '\0';                                            
 8006a78:	33 80 00 20 	sb (sp+32),r0                                  
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
        lname[ 2 ] = (u32_name >>  8) & 0xff;                         
 8006a7c:	00 63 00 01 	srui r3,r3,1                                   
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
 8006a80:	b9 60 10 00 	mv r2,r11                                      
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
        lname[ 2 ] = (u32_name >>  8) & 0xff;                         
 8006a84:	00 63 00 01 	srui r3,r3,1                                   
 8006a88:	00 63 00 01 	srui r3,r3,1                                   
 8006a8c:	00 63 00 01 	srui r3,r3,1                                   
 8006a90:	00 63 00 01 	srui r3,r3,1                                   
 8006a94:	33 83 00 1e 	sb (sp+30),r3                                  
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
 8006a98:	45 8f 00 13 	be r12,r15,8006ae4 <_Objects_Get_name_as_string+0x134><== NEVER TAKEN
 8006a9c:	45 a0 00 12 	be r13,r0,8006ae4 <_Objects_Get_name_as_string+0x134>
 8006aa0:	78 03 08 02 	mvhi r3,0x802                                  
 8006aa4:	34 01 00 00 	mvi r1,0                                       
 8006aa8:	38 63 01 b8 	ori r3,r3,0x1b8                                
 *  This method objects the name of an object and returns its name    
 *  in the form of a C string.  It attempts to be careful about       
 *  overflowing the user's string and about returning unprintable characters.
 */                                                                   
                                                                      
char *_Objects_Get_name_as_string(                                    
 8006aac:	37 86 00 1c 	addi r6,sp,28                                  
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
          *d = (isprint((unsigned char)*s)) ? *s : '*';               
 8006ab0:	28 64 00 00 	lw r4,(r3+0)                                   
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
 8006ab4:	34 21 00 01 	addi r1,r1,1                                   
 *  This method objects the name of an object and returns its name    
 *  in the form of a C string.  It attempts to be careful about       
 *  overflowing the user's string and about returning unprintable characters.
 */                                                                   
                                                                      
char *_Objects_Get_name_as_string(                                    
 8006ab8:	b4 c1 28 00 	add r5,r6,r1                                   
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
          *d = (isprint((unsigned char)*s)) ? *s : '*';               
 8006abc:	b4 8d 20 00 	add r4,r4,r13                                  
 8006ac0:	40 84 00 01 	lbu r4,(r4+1)                                  
 8006ac4:	20 84 00 97 	andi r4,r4,0x97                                
 8006ac8:	5c 80 00 02 	bne r4,r0,8006ad0 <_Objects_Get_name_as_string+0x120>
 8006acc:	34 0d 00 2a 	mvi r13,42                                     
 8006ad0:	30 4d 00 00 	sb (r2+0),r13                                  
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
 8006ad4:	34 42 00 01 	addi r2,r2,1                                   
 8006ad8:	50 2c 00 03 	bgeu r1,r12,8006ae4 <_Objects_Get_name_as_string+0x134>
 8006adc:	40 ad 00 00 	lbu r13,(r5+0)                                 
 8006ae0:	5d a0 ff f4 	bne r13,r0,8006ab0 <_Objects_Get_name_as_string+0x100>
          *d = (isprint((unsigned char)*s)) ? *s : '*';               
        }                                                             
      }                                                               
      *d = '\0';                                                      
 8006ae4:	30 40 00 00 	sb (r2+0),r0                                   
                                                                      
      _Thread_Enable_dispatch();                                      
 8006ae8:	f8 00 02 41 	calli 80073ec <_Thread_Enable_dispatch>        
      return name;                                                    
 8006aec:	e3 ff ff bc 	bi 80069dc <_Objects_Get_name_as_string+0x2c>  
                                                                      

080174dc <_Objects_Get_no_protection>: /* * You can't just extract the index portion or you can get tricked * by a value between 1 and maximum. */ index = id - information->minimum_id + 1;
 80174dc:	28 25 00 08 	lw r5,(r1+8)                                   
                                                                      
  if ( information->maximum >= index ) {                              
 80174e0:	2c 24 00 10 	lhu r4,(r1+16)                                 
                                                                      
  /*                                                                  
   * You can't just extract the index portion or you can get tricked  
   * by a value between 1 and maximum.                                
   */                                                                 
  index = id - information->minimum_id + 1;                           
 80174e4:	c8 45 10 00 	sub r2,r2,r5                                   
 80174e8:	34 42 00 01 	addi r2,r2,1                                   
                                                                      
  if ( information->maximum >= index ) {                              
 80174ec:	54 44 00 09 	bgu r2,r4,8017510 <_Objects_Get_no_protection+0x34>
    if ( (the_object = information->local_table[ index ]) != NULL ) { 
 80174f0:	28 24 00 1c 	lw r4,(r1+28)                                  
 80174f4:	b4 42 08 00 	add r1,r2,r2                                   
 80174f8:	b4 21 08 00 	add r1,r1,r1                                   
 80174fc:	b4 81 08 00 	add r1,r4,r1                                   
 8017500:	28 21 00 00 	lw r1,(r1+0)                                   
 8017504:	44 20 00 03 	be r1,r0,8017510 <_Objects_Get_no_protection+0x34><== NEVER TAKEN
      *location = OBJECTS_LOCAL;                                      
 8017508:	58 60 00 00 	sw (r3+0),r0                                   
      return the_object;                                              
 801750c:	c3 a0 00 00 	ret                                            
                                                                      
  /*                                                                  
   *  This isn't supported or required yet for Global objects so      
   *  if it isn't local, we don't find it.                            
   */                                                                 
  *location = OBJECTS_ERROR;                                          
 8017510:	34 01 00 01 	mvi r1,1                                       
 8017514:	58 61 00 00 	sw (r3+0),r1                                   
  return NULL;                                                        
 8017518:	34 01 00 00 	mvi r1,0                                       
}                                                                     
 801751c:	c3 a0 00 00 	ret                                            
                                                                      

080064f0 <_Objects_Id_to_name>: */ Objects_Name_or_id_lookup_errors _Objects_Id_to_name ( Objects_Id id, Objects_Name *name ) {
 80064f0:	37 9c ff e8 	addi sp,sp,-24                                 
 80064f4:	5b 8b 00 14 	sw (sp+20),r11                                 
 80064f8:	5b 8c 00 10 	sw (sp+16),r12                                 
 80064fc:	5b 8d 00 0c 	sw (sp+12),r13                                 
 8006500:	5b 8e 00 08 	sw (sp+8),r14                                  
 8006504:	5b 9d 00 04 	sw (sp+4),ra                                   
                                                                      
  /*                                                                  
   *  Caller is trusted for name != NULL.                             
   */                                                                 
                                                                      
  tmpId = (id == OBJECTS_ID_OF_SELF) ? _Thread_Executing->Object.id : id;
 8006508:	b8 20 58 00 	mv r11,r1                                      
 */                                                                   
Objects_Name_or_id_lookup_errors _Objects_Id_to_name (                
  Objects_Id      id,                                                 
  Objects_Name   *name                                                
)                                                                     
{                                                                     
 800650c:	b8 40 70 00 	mv r14,r2                                      
                                                                      
  /*                                                                  
   *  Caller is trusted for name != NULL.                             
   */                                                                 
                                                                      
  tmpId = (id == OBJECTS_ID_OF_SELF) ? _Thread_Executing->Object.id : id;
 8006510:	5c 20 00 05 	bne r1,r0,8006524 <_Objects_Id_to_name+0x34>   
 8006514:	78 01 08 01 	mvhi r1,0x801                                  
 8006518:	38 21 fa 48 	ori r1,r1,0xfa48                               
 800651c:	28 21 00 0c 	lw r1,(r1+12)                                  
 8006520:	28 2b 00 08 	lw r11,(r1+8)                                  
 */                                                                   
RTEMS_INLINE_ROUTINE Objects_APIs _Objects_Get_API(                   
  Objects_Id id                                                       
)                                                                     
{                                                                     
  return (Objects_APIs) ((id >> OBJECTS_API_START_BIT) & OBJECTS_API_VALID_BITS);
 8006524:	b9 60 08 00 	mv r1,r11                                      
 8006528:	34 02 00 18 	mvi r2,24                                      
 800652c:	f8 00 53 84 	calli 801b33c <__lshrsi3>                      
 8006530:	20 23 00 07 	andi r3,r1,0x7                                 
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Objects_Is_api_valid(                      
  uint32_t   the_api                                                  
)                                                                     
{                                                                     
  if ( !the_api || the_api > OBJECTS_APIS_LAST )                      
 8006534:	34 64 ff ff 	addi r4,r3,-1                                  
 8006538:	34 01 00 02 	mvi r1,2                                       
                                                                      
  the_api = _Objects_Get_API( tmpId );                                
  if ( !_Objects_Is_api_valid( the_api ) )                            
    return OBJECTS_INVALID_ID;                                        
 800653c:	34 0c 00 03 	mvi r12,3                                      
 8006540:	54 81 00 18 	bgu r4,r1,80065a0 <_Objects_Id_to_name+0xb0>   <== NEVER TAKEN
                                                                      
  if ( !_Objects_Information_table[ the_api ] )                       
 8006544:	78 04 08 01 	mvhi r4,0x801                                  
 8006548:	b4 63 18 00 	add r3,r3,r3                                   
 800654c:	38 84 f8 18 	ori r4,r4,0xf818                               
 8006550:	b4 63 18 00 	add r3,r3,r3                                   
 8006554:	b4 83 18 00 	add r3,r4,r3                                   
 8006558:	28 6d 00 00 	lw r13,(r3+0)                                  
 800655c:	45 a0 00 11 	be r13,r0,80065a0 <_Objects_Id_to_name+0xb0>   <== NEVER TAKEN
 */                                                                   
RTEMS_INLINE_ROUTINE uint32_t _Objects_Get_class(                     
  Objects_Id id                                                       
)                                                                     
{                                                                     
  return (uint32_t)                                                   
 8006560:	b9 60 08 00 	mv r1,r11                                      
 8006564:	34 02 00 1b 	mvi r2,27                                      
 8006568:	f8 00 53 75 	calli 801b33c <__lshrsi3>                      
    return OBJECTS_INVALID_ID;                                        
                                                                      
  the_class = _Objects_Get_class( tmpId );                            
                                                                      
  information = _Objects_Information_table[ the_api ][ the_class ];   
 800656c:	b4 21 18 00 	add r3,r1,r1                                   
 8006570:	b4 63 18 00 	add r3,r3,r3                                   
 8006574:	b5 a3 18 00 	add r3,r13,r3                                  
 8006578:	28 61 00 00 	lw r1,(r3+0)                                   
  if ( !information )                                                 
 800657c:	44 20 00 09 	be r1,r0,80065a0 <_Objects_Id_to_name+0xb0>    <== NEVER TAKEN
  #if defined(RTEMS_SCORE_OBJECT_ENABLE_STRING_NAMES)                 
    if ( information->is_string )                                     
      return OBJECTS_INVALID_ID;                                      
  #endif                                                              
                                                                      
  the_object = _Objects_Get( information, tmpId, &ignored_location ); 
 8006580:	b9 60 10 00 	mv r2,r11                                      
 8006584:	37 83 00 18 	addi r3,sp,24                                  
 8006588:	fb ff ff b4 	calli 8006458 <_Objects_Get>                   
  if ( !the_object )                                                  
 800658c:	44 20 00 05 	be r1,r0,80065a0 <_Objects_Id_to_name+0xb0>    
    return OBJECTS_INVALID_ID;                                        
                                                                      
  *name = the_object->name;                                           
 8006590:	28 21 00 0c 	lw r1,(r1+12)                                  
  _Thread_Enable_dispatch();                                          
  return OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL;                        
 8006594:	34 0c 00 00 	mvi r12,0                                      
                                                                      
  the_object = _Objects_Get( information, tmpId, &ignored_location ); 
  if ( !the_object )                                                  
    return OBJECTS_INVALID_ID;                                        
                                                                      
  *name = the_object->name;                                           
 8006598:	59 c1 00 00 	sw (r14+0),r1                                  
  _Thread_Enable_dispatch();                                          
 800659c:	f8 00 02 86 	calli 8006fb4 <_Thread_Enable_dispatch>        
  return OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL;                        
}                                                                     
 80065a0:	b9 80 08 00 	mv r1,r12                                      
 80065a4:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80065a8:	2b 8b 00 14 	lw r11,(sp+20)                                 
 80065ac:	2b 8c 00 10 	lw r12,(sp+16)                                 
 80065b0:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 80065b4:	2b 8e 00 08 	lw r14,(sp+8)                                  
 80065b8:	37 9c 00 18 	addi sp,sp,24                                  
 80065bc:	c3 a0 00 00 	ret                                            
                                                                      

08004afc <_Objects_Initialize_information>: , bool supports_global, Objects_Thread_queue_Extract_callout extract #endif ) {
 8004afc:	37 9c ff e8 	addi sp,sp,-24                                 
 8004b00:	5b 8b 00 18 	sw (sp+24),r11                                 
 8004b04:	5b 8c 00 14 	sw (sp+20),r12                                 
 8004b08:	5b 8d 00 10 	sw (sp+16),r13                                 
 8004b0c:	5b 8e 00 0c 	sw (sp+12),r14                                 
 8004b10:	5b 8f 00 08 	sw (sp+8),r15                                  
 8004b14:	5b 9d 00 04 	sw (sp+4),ra                                   
 8004b18:	b8 40 68 00 	mv r13,r2                                      
  information->maximum = 0;                                           
                                                                      
  /*                                                                  
   *  Register this Object Class in the Object Information Table.     
   */                                                                 
  _Objects_Information_table[ the_api ][ the_class ] = information;   
 8004b1c:	b5 ad 30 00 	add r6,r13,r13                                 
 8004b20:	78 02 08 01 	mvhi r2,0x801                                  
 8004b24:	38 42 37 b8 	ori r2,r2,0x37b8                               
 8004b28:	b4 c6 30 00 	add r6,r6,r6                                   
 8004b2c:	b4 46 30 00 	add r6,r2,r6                                   
 8004b30:	28 c2 00 00 	lw r2,(r6+0)                                   
  ,                                                                   
  bool                 supports_global,                               
  Objects_Thread_queue_Extract_callout extract                        
#endif                                                                
)                                                                     
{                                                                     
 8004b34:	20 6c ff ff 	andi r12,r3,0xffff                             
  information->maximum = 0;                                           
                                                                      
  /*                                                                  
   *  Register this Object Class in the Object Information Table.     
   */                                                                 
  _Objects_Information_table[ the_api ][ the_class ] = information;   
 8004b38:	b5 8c 30 00 	add r6,r12,r12                                 
  ,                                                                   
  bool                 supports_global,                               
  Objects_Thread_queue_Extract_callout extract                        
#endif                                                                
)                                                                     
{                                                                     
 8004b3c:	20 a5 ff ff 	andi r5,r5,0xffff                              
  information->maximum = 0;                                           
                                                                      
  /*                                                                  
   *  Register this Object Class in the Object Information Table.     
   */                                                                 
  _Objects_Information_table[ the_api ][ the_class ] = information;   
 8004b40:	b4 c6 30 00 	add r6,r6,r6                                   
  uint32_t                maximum_per_allocation;                     
  #if defined(RTEMS_MULTIPROCESSING)                                  
    uint32_t              index;                                      
  #endif                                                              
                                                                      
  information->the_api            = the_api;                          
 8004b44:	58 2d 00 00 	sw (r1+0),r13                                  
  information->the_class          = the_class;                        
 8004b48:	0c 2c 00 04 	sh (r1+4),r12                                  
  information->size               = size;                             
 8004b4c:	58 25 00 18 	sw (r1+24),r5                                  
  information->local_table        = 0;                                
 8004b50:	58 20 00 1c 	sw (r1+28),r0                                  
  information->inactive_per_block = 0;                                
 8004b54:	58 20 00 30 	sw (r1+48),r0                                  
  information->object_blocks      = 0;                                
 8004b58:	58 20 00 34 	sw (r1+52),r0                                  
  information->inactive           = 0;                                
 8004b5c:	0c 20 00 2c 	sh (r1+44),r0                                  
                                                                      
  /*                                                                  
   *  Set the maximum value to 0. It will be updated when objects are 
   *  added to the inactive set from _Objects_Extend_information()    
   */                                                                 
  information->maximum = 0;                                           
 8004b60:	0c 20 00 10 	sh (r1+16),r0                                  
                                                                      
  /*                                                                  
   *  Register this Object Class in the Object Information Table.     
   */                                                                 
  _Objects_Information_table[ the_api ][ the_class ] = information;   
 8004b64:	b4 46 30 00 	add r6,r2,r6                                   
  ,                                                                   
  bool                 supports_global,                               
  Objects_Thread_queue_Extract_callout extract                        
#endif                                                                
)                                                                     
{                                                                     
 8004b68:	b8 20 58 00 	mv r11,r1                                      
  information->maximum = 0;                                           
                                                                      
  /*                                                                  
   *  Register this Object Class in the Object Information Table.     
   */                                                                 
  _Objects_Information_table[ the_api ][ the_class ] = information;   
 8004b6c:	58 c1 00 00 	sw (r6+0),r1                                   
                                                                      
  /*                                                                  
   *  Are we operating in limited or unlimited (e.g. auto-extend) mode.
   */                                                                 
  information->auto_extend =                                          
        (maximum & OBJECTS_UNLIMITED_OBJECTS) ? true : false;         
 8004b70:	34 02 00 1f 	mvi r2,31                                      
 8004b74:	b8 80 08 00 	mv r1,r4                                       
  ,                                                                   
  bool                 supports_global,                               
  Objects_Thread_queue_Extract_callout extract                        
#endif                                                                
)                                                                     
{                                                                     
 8004b78:	b8 80 70 00 	mv r14,r4                                      
 8004b7c:	b8 e0 78 00 	mv r15,r7                                      
                                                                      
  /*                                                                  
   *  Are we operating in limited or unlimited (e.g. auto-extend) mode.
   */                                                                 
  information->auto_extend =                                          
        (maximum & OBJECTS_UNLIMITED_OBJECTS) ? true : false;         
 8004b80:	f8 00 30 81 	calli 8010d84 <__lshrsi3>                      
  maximum_per_allocation = maximum & ~OBJECTS_UNLIMITED_OBJECTS;      
 8004b84:	78 03 08 01 	mvhi r3,0x801                                  
 8004b88:	38 63 21 cc 	ori r3,r3,0x21cc                               
                                                                      
  /*                                                                  
   *  Are we operating in limited or unlimited (e.g. auto-extend) mode.
   */                                                                 
  information->auto_extend =                                          
        (maximum & OBJECTS_UNLIMITED_OBJECTS) ? true : false;         
 8004b8c:	20 22 00 ff 	andi r2,r1,0xff                                
  maximum_per_allocation = maximum & ~OBJECTS_UNLIMITED_OBJECTS;      
 8004b90:	28 61 00 00 	lw r1,(r3+0)                                   
  _Objects_Information_table[ the_api ][ the_class ] = information;   
                                                                      
  /*                                                                  
   *  Are we operating in limited or unlimited (e.g. auto-extend) mode.
   */                                                                 
  information->auto_extend =                                          
 8004b94:	31 62 00 12 	sb (r11+18),r2                                 
        (maximum & OBJECTS_UNLIMITED_OBJECTS) ? true : false;         
  maximum_per_allocation = maximum & ~OBJECTS_UNLIMITED_OBJECTS;      
 8004b98:	a1 c1 70 00 	and r14,r14,r1                                 
                                                                      
  /*                                                                  
   *  Unlimited and maximum of zero is illogical.                     
   */                                                                 
  if ( information->auto_extend && maximum_per_allocation == 0) {     
 8004b9c:	44 40 00 02 	be r2,r0,8004ba4 <_Objects_Initialize_information+0xa8>
 8004ba0:	45 c0 00 29 	be r14,r0,8004c44 <_Objects_Initialize_information+0x148><== NEVER TAKEN
  information->allocation_size = maximum_per_allocation;              
                                                                      
  /*                                                                  
   *  Provide a null local table entry for the case of any empty table.
   */                                                                 
  information->local_table = &null_local_table;                       
 8004ba4:	78 01 08 01 	mvhi r1,0x801                                  
 8004ba8:	38 21 36 28 	ori r1,r1,0x3628                               
  uint32_t         the_class,                                         
  uint32_t         node,                                              
  uint32_t         index                                              
)                                                                     
{                                                                     
  return (( (Objects_Id) the_api )   << OBJECTS_API_START_BIT)   |    
 8004bac:	34 02 00 18 	mvi r2,24                                      
 8004bb0:	59 61 00 1c 	sw (r11+28),r1                                 
  }                                                                   
                                                                      
  /*                                                                  
   *  The allocation unit is the maximum value                        
   */                                                                 
  information->allocation_size = maximum_per_allocation;              
 8004bb4:	0d 6e 00 14 	sh (r11+20),r14                                
 8004bb8:	b9 a0 08 00 	mv r1,r13                                      
 8004bbc:	f8 00 30 24 	calli 8010c4c <__ashlsi3>                      
 8004bc0:	78 0d 00 01 	mvhi r13,0x1                                   
 8004bc4:	b8 2d 68 00 	or r13,r1,r13                                  
         (( (Objects_Id) the_class ) << OBJECTS_CLASS_START_BIT) |    
 8004bc8:	34 02 00 1b 	mvi r2,27                                      
 8004bcc:	b9 80 08 00 	mv r1,r12                                      
 8004bd0:	f8 00 30 1f 	calli 8010c4c <__ashlsi3>                      
  information->local_table = &null_local_table;                       
                                                                      
  /*                                                                  
   *  Calculate minimum and maximum Id's                              
   */                                                                 
  minimum_index = (maximum_per_allocation == 0) ? 0 : 1;              
 8004bd4:	7d c2 00 00 	cmpnei r2,r14,0                                
 8004bd8:	b9 a1 08 00 	or r1,r13,r1                                   
  uint32_t         the_class,                                         
  uint32_t         node,                                              
  uint32_t         index                                              
)                                                                     
{                                                                     
  return (( (Objects_Id) the_api )   << OBJECTS_API_START_BIT)   |    
 8004bdc:	b8 22 08 00 	or r1,r1,r2                                    
  information->minimum_id =                                           
 8004be0:	59 61 00 08 	sw (r11+8),r1                                  
  /*                                                                  
   *  Calculate the maximum name length                               
   */                                                                 
  name_length = maximum_name_length;                                  
                                                                      
  if ( name_length & (OBJECTS_NAME_ALIGNMENT-1) )                     
 8004be4:	21 e1 00 03 	andi r1,r15,0x3                                
 8004be8:	b9 e0 38 00 	mv r7,r15                                      
 8004bec:	5c 20 00 12 	bne r1,r0,8004c34 <_Objects_Initialize_information+0x138><== NEVER TAKEN
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 8004bf0:	35 62 00 24 	addi r2,r11,36                                 
    name_length = (name_length + OBJECTS_NAME_ALIGNMENT) &            
                  ~(OBJECTS_NAME_ALIGNMENT-1);                        
                                                                      
  information->name_length = name_length;                             
                                                                      
  _Chain_Initialize_empty( &information->Inactive );                  
 8004bf4:	35 61 00 20 	addi r1,r11,32                                 
                                                                      
  if ( name_length & (OBJECTS_NAME_ALIGNMENT-1) )                     
    name_length = (name_length + OBJECTS_NAME_ALIGNMENT) &            
                  ~(OBJECTS_NAME_ALIGNMENT-1);                        
                                                                      
  information->name_length = name_length;                             
 8004bf8:	0d 67 00 38 	sh (r11+56),r7                                 
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
 8004bfc:	59 62 00 20 	sw (r11+32),r2                                 
  the_chain->permanent_null = NULL;                                   
 8004c00:	59 60 00 24 	sw (r11+36),r0                                 
  the_chain->last           = _Chain_Head(the_chain);                 
 8004c04:	59 61 00 28 	sw (r11+40),r1                                 
  _Chain_Initialize_empty( &information->Inactive );                  
                                                                      
  /*                                                                  
   *  Initialize objects .. if there are any                          
   */                                                                 
  if ( maximum_per_allocation ) {                                     
 8004c08:	45 c0 00 03 	be r14,r0,8004c14 <_Objects_Initialize_information+0x118>
    /*                                                                
     *  Always have the maximum size available so the current performance
     *  figures are create are met.  If the user moves past the maximum
     *  number then a performance hit is taken.                       
     */                                                               
    _Objects_Extend_information( information );                       
 8004c0c:	b9 60 08 00 	mv r1,r11                                      
 8004c10:	fb ff fe 50 	calli 8004550 <_Objects_Extend_information>    
	_Chain_Initialize_empty( &information->global_table[ index ] );      
     }                                                                
     else                                                             
       information->global_table = NULL;                              
  #endif                                                              
}                                                                     
 8004c14:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004c18:	2b 8b 00 18 	lw r11,(sp+24)                                 
 8004c1c:	2b 8c 00 14 	lw r12,(sp+20)                                 
 8004c20:	2b 8d 00 10 	lw r13,(sp+16)                                 
 8004c24:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 8004c28:	2b 8f 00 08 	lw r15,(sp+8)                                  
 8004c2c:	37 9c 00 18 	addi sp,sp,24                                  
 8004c30:	c3 a0 00 00 	ret                                            
   *  Calculate the maximum name length                               
   */                                                                 
  name_length = maximum_name_length;                                  
                                                                      
  if ( name_length & (OBJECTS_NAME_ALIGNMENT-1) )                     
    name_length = (name_length + OBJECTS_NAME_ALIGNMENT) &            
 8004c34:	35 e7 00 04 	addi r7,r15,4                                  <== NOT EXECUTED
 8004c38:	34 01 ff fc 	mvi r1,-4                                      <== NOT EXECUTED
 8004c3c:	a0 e1 38 00 	and r7,r7,r1                                   <== NOT EXECUTED
 8004c40:	e3 ff ff ec 	bi 8004bf0 <_Objects_Initialize_information+0xf4><== NOT EXECUTED
                                                                      
  /*                                                                  
   *  Unlimited and maximum of zero is illogical.                     
   */                                                                 
  if ( information->auto_extend && maximum_per_allocation == 0) {     
    _Internal_error_Occurred(                                         
 8004c44:	34 01 00 00 	mvi r1,0                                       <== NOT EXECUTED
 8004c48:	34 02 00 01 	mvi r2,1                                       <== NOT EXECUTED
 8004c4c:	34 03 00 13 	mvi r3,19                                      <== NOT EXECUTED
 8004c50:	fb ff fd d5 	calli 80043a4 <_Internal_error_Occurred>       <== NOT EXECUTED
                                                                      

08004cd0 <_Objects_Shrink_information>: */ void _Objects_Shrink_information( Objects_Information *information ) {
 8004cd0:	37 9c ff ec 	addi sp,sp,-20                                 
 8004cd4:	5b 8b 00 14 	sw (sp+20),r11                                 
 8004cd8:	5b 8c 00 10 	sw (sp+16),r12                                 
 8004cdc:	5b 8d 00 0c 	sw (sp+12),r13                                 
 8004ce0:	5b 8e 00 08 	sw (sp+8),r14                                  
 8004ce4:	5b 9d 00 04 	sw (sp+4),ra                                   
                                                                      
  /*                                                                  
   * Search the list to find block or chunk with all objects inactive.
   */                                                                 
                                                                      
  index_base = _Objects_Get_index( information->minimum_id );         
 8004ce8:	2c 2c 00 0a 	lhu r12,(r1+10)                                
  block_count = (information->maximum - index_base) /                 
 8004cec:	2c 2d 00 14 	lhu r13,(r1+20)                                
 */                                                                   
                                                                      
void _Objects_Shrink_information(                                     
  Objects_Information *information                                    
)                                                                     
{                                                                     
 8004cf0:	b8 20 70 00 	mv r14,r1                                      
  /*                                                                  
   * Search the list to find block or chunk with all objects inactive.
   */                                                                 
                                                                      
  index_base = _Objects_Get_index( information->minimum_id );         
  block_count = (information->maximum - index_base) /                 
 8004cf4:	2c 21 00 10 	lhu r1,(r1+16)                                 
 8004cf8:	b9 a0 10 00 	mv r2,r13                                      
 8004cfc:	c8 2c 08 00 	sub r1,r1,r12                                  
 8004d00:	f8 00 30 ad 	calli 8010fb4 <__udivsi3>                      
                 information->allocation_size;                        
                                                                      
  for ( block = 0; block < block_count; block++ ) {                   
 8004d04:	44 20 00 09 	be r1,r0,8004d28 <_Objects_Shrink_information+0x58><== NEVER TAKEN
    if ( information->inactive_per_block[ block ] ==                  
 8004d08:	29 c5 00 30 	lw r5,(r14+48)                                 
 8004d0c:	34 0b 00 04 	mvi r11,4                                      
 8004d10:	34 03 00 00 	mvi r3,0                                       
 8004d14:	28 a2 00 00 	lw r2,(r5+0)                                   
 8004d18:	45 a2 00 11 	be r13,r2,8004d5c <_Objects_Shrink_information+0x8c><== NEVER TAKEN
                                                                      
  index_base = _Objects_Get_index( information->minimum_id );         
  block_count = (information->maximum - index_base) /                 
                 information->allocation_size;                        
                                                                      
  for ( block = 0; block < block_count; block++ ) {                   
 8004d1c:	34 63 00 01 	addi r3,r3,1                                   
 *    the_block       - the block to remove                           
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Objects_Shrink_information(                                     
 8004d20:	b4 ab 10 00 	add r2,r5,r11                                  
                                                                      
  index_base = _Objects_Get_index( information->minimum_id );         
  block_count = (information->maximum - index_base) /                 
                 information->allocation_size;                        
                                                                      
  for ( block = 0; block < block_count; block++ ) {                   
 8004d24:	54 23 00 08 	bgu r1,r3,8004d44 <_Objects_Shrink_information+0x74>
      return;                                                         
    }                                                                 
                                                                      
    index_base += information->allocation_size;                       
  }                                                                   
}                                                                     
 8004d28:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004d2c:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8004d30:	2b 8c 00 10 	lw r12,(sp+16)                                 
 8004d34:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 8004d38:	2b 8e 00 08 	lw r14,(sp+8)                                  
 8004d3c:	37 9c 00 14 	addi sp,sp,20                                  
 8004d40:	c3 a0 00 00 	ret                                            
  index_base = _Objects_Get_index( information->minimum_id );         
  block_count = (information->maximum - index_base) /                 
                 information->allocation_size;                        
                                                                      
  for ( block = 0; block < block_count; block++ ) {                   
    if ( information->inactive_per_block[ block ] ==                  
 8004d44:	28 42 00 00 	lw r2,(r2+0)                                   
      information->inactive -= information->allocation_size;          
                                                                      
      return;                                                         
    }                                                                 
                                                                      
    index_base += information->allocation_size;                       
 8004d48:	35 64 00 04 	addi r4,r11,4                                  
 8004d4c:	b5 8d 60 00 	add r12,r12,r13                                
  index_base = _Objects_Get_index( information->minimum_id );         
  block_count = (information->maximum - index_base) /                 
                 information->allocation_size;                        
                                                                      
  for ( block = 0; block < block_count; block++ ) {                   
    if ( information->inactive_per_block[ block ] ==                  
 8004d50:	45 a2 00 04 	be r13,r2,8004d60 <_Objects_Shrink_information+0x90>
 8004d54:	b8 80 58 00 	mv r11,r4                                      
 8004d58:	e3 ff ff f1 	bi 8004d1c <_Objects_Shrink_information+0x4c>  
 8004d5c:	34 0b 00 00 	mvi r11,0                                      <== NOT EXECUTED
         information->allocation_size ) {                             
                                                                      
      /*                                                              
       *  Assume the Inactive chain is never empty at this point      
       */                                                             
      the_object = (Objects_Control *) information->Inactive.first;   
 8004d60:	29 c1 00 20 	lw r1,(r14+32)                                 
                                                                      
      do {                                                            
         index = _Objects_Get_index( the_object->id );                
 8004d64:	2c 22 00 0a 	lhu r2,(r1+10)                                 
         /*                                                           
          *  Get the next node before the node is extracted           
          */                                                          
         extract_me = the_object;                                     
         the_object = (Objects_Control *) the_object->Node.next;      
 8004d68:	28 2d 00 00 	lw r13,(r1+0)                                  
         if ((index >= index_base) &&                                 
 8004d6c:	55 82 00 05 	bgu r12,r2,8004d80 <_Objects_Shrink_information+0xb0>
             (index < (index_base + information->allocation_size))) { 
 8004d70:	2d c3 00 14 	lhu r3,(r14+20)                                
 8004d74:	b5 83 18 00 	add r3,r12,r3                                  
         /*                                                           
          *  Get the next node before the node is extracted           
          */                                                          
         extract_me = the_object;                                     
         the_object = (Objects_Control *) the_object->Node.next;      
         if ((index >= index_base) &&                                 
 8004d78:	50 43 00 02 	bgeu r2,r3,8004d80 <_Objects_Shrink_information+0xb0>
             (index < (index_base + information->allocation_size))) { 
           _Chain_Extract( &extract_me->Node );                       
 8004d7c:	fb ff fa c2 	calli 8003884 <_Chain_Extract>                 
         }                                                            
       }                                                              
       while ( the_object );                                          
 8004d80:	45 a0 00 03 	be r13,r0,8004d8c <_Objects_Shrink_information+0xbc>
         index = _Objects_Get_index( the_object->id );                
         /*                                                           
          *  Get the next node before the node is extracted           
          */                                                          
         extract_me = the_object;                                     
         the_object = (Objects_Control *) the_object->Node.next;      
 8004d84:	b9 a0 08 00 	mv r1,r13                                      
 8004d88:	e3 ff ff f7 	bi 8004d64 <_Objects_Shrink_information+0x94>  
       while ( the_object );                                          
      /*                                                              
       *  Free the memory and reset the structures in the object' information
       */                                                             
                                                                      
      _Workspace_Free( information->object_blocks[ block ] );         
 8004d8c:	29 c1 00 34 	lw r1,(r14+52)                                 
 8004d90:	b4 2b 08 00 	add r1,r1,r11                                  
 8004d94:	28 21 00 00 	lw r1,(r1+0)                                   
 8004d98:	f8 00 07 ea 	calli 8006d40 <_Workspace_Free>                
      information->object_blocks[ block ] = NULL;                     
 8004d9c:	29 c2 00 34 	lw r2,(r14+52)                                 
      information->inactive_per_block[ block ] = 0;                   
 8004da0:	29 c4 00 30 	lw r4,(r14+48)                                 
                                                                      
      information->inactive -= information->allocation_size;          
 8004da4:	2d c3 00 2c 	lhu r3,(r14+44)                                
 8004da8:	2d c1 00 14 	lhu r1,(r14+20)                                
      /*                                                              
       *  Free the memory and reset the structures in the object' information
       */                                                             
                                                                      
      _Workspace_Free( information->object_blocks[ block ] );         
      information->object_blocks[ block ] = NULL;                     
 8004dac:	b4 4b 10 00 	add r2,r2,r11                                  
 8004db0:	58 40 00 00 	sw (r2+0),r0                                   
      information->inactive_per_block[ block ] = 0;                   
 8004db4:	b4 8b 58 00 	add r11,r4,r11                                 
 8004db8:	59 60 00 00 	sw (r11+0),r0                                  
                                                                      
      information->inactive -= information->allocation_size;          
 8004dbc:	c8 61 08 00 	sub r1,r3,r1                                   
 8004dc0:	0d c1 00 2c 	sh (r14+44),r1                                 
      return;                                                         
    }                                                                 
                                                                      
    index_base += information->allocation_size;                       
  }                                                                   
}                                                                     
 8004dc4:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004dc8:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8004dcc:	2b 8c 00 10 	lw r12,(sp+16)                                 
 8004dd0:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 8004dd4:	2b 8e 00 08 	lw r14,(sp+8)                                  
 8004dd8:	37 9c 00 14 	addi sp,sp,20                                  
 8004ddc:	c3 a0 00 00 	ret                                            
                                                                      

08003194 <_RTEMS_tasks_Initialize_user_tasks_body>: * * Output parameters: NONE */ void _RTEMS_tasks_Initialize_user_tasks_body( void ) {
 8003194:	37 9c ff e8 	addi sp,sp,-24                                 
 8003198:	5b 8b 00 14 	sw (sp+20),r11                                 
 800319c:	5b 8c 00 10 	sw (sp+16),r12                                 
 80031a0:	5b 8d 00 0c 	sw (sp+12),r13                                 
 80031a4:	5b 8e 00 08 	sw (sp+8),r14                                  
 80031a8:	5b 9d 00 04 	sw (sp+4),ra                                   
  rtems_initialization_tasks_table *user_tasks;                       
                                                                      
  /*                                                                  
   *  Move information into local variables                           
   */                                                                 
  user_tasks = Configuration_RTEMS_API.User_initialization_tasks_table;
 80031ac:	78 01 08 01 	mvhi r1,0x801                                  
 80031b0:	38 21 30 8c 	ori r1,r1,0x308c                               
 80031b4:	28 2b 00 2c 	lw r11,(r1+44)                                 
  maximum    = Configuration_RTEMS_API.number_of_initialization_tasks;
 80031b8:	28 2e 00 28 	lw r14,(r1+40)                                 
                                                                      
  /*                                                                  
   *  Verify that we have a set of user tasks to iterate              
   */                                                                 
  if ( !user_tasks )                                                  
 80031bc:	45 60 00 15 	be r11,r0,8003210 <_RTEMS_tasks_Initialize_user_tasks_body+0x7c>
    return;                                                           
                                                                      
  /*                                                                  
   *  Now iterate over the initialization tasks and create/start them.
   */                                                                 
  for ( index=0 ; index < maximum ; index++ ) {                       
 80031c0:	45 c0 00 14 	be r14,r0,8003210 <_RTEMS_tasks_Initialize_user_tasks_body+0x7c><== NEVER TAKEN
 80031c4:	34 0c 00 00 	mvi r12,0                                      
    return_value = rtems_task_create(                                 
 80031c8:	29 61 00 00 	lw r1,(r11+0)                                  
 80031cc:	29 62 00 08 	lw r2,(r11+8)                                  
 80031d0:	29 63 00 04 	lw r3,(r11+4)                                  
 80031d4:	29 64 00 14 	lw r4,(r11+20)                                 
 80031d8:	29 65 00 0c 	lw r5,(r11+12)                                 
 80031dc:	37 86 00 18 	addi r6,sp,24                                  
 80031e0:	fb ff ff 52 	calli 8002f28 <rtems_task_create>              
 80031e4:	b8 20 68 00 	mv r13,r1                                      
      user_tasks[ index ].stack_size,                                 
      user_tasks[ index ].mode_set,                                   
      user_tasks[ index ].attribute_set,                              
      &id                                                             
    );                                                                
    if ( !rtems_is_status_successful( return_value ) )                
 80031e8:	5c 20 00 11 	bne r1,r0,800322c <_RTEMS_tasks_Initialize_user_tasks_body+0x98><== NEVER TAKEN
      _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, true, return_value );
                                                                      
    return_value = rtems_task_start(                                  
 80031ec:	29 63 00 18 	lw r3,(r11+24)                                 
 80031f0:	2b 81 00 18 	lw r1,(sp+24)                                  
 80031f4:	29 62 00 10 	lw r2,(r11+16)                                 
 80031f8:	f8 00 00 14 	calli 8003248 <rtems_task_start>               
 80031fc:	b8 20 18 00 	mv r3,r1                                       
      id,                                                             
      user_tasks[ index ].entry_point,                                
      user_tasks[ index ].argument                                    
    );                                                                
    if ( !rtems_is_status_successful( return_value ) )                
 8003200:	5c 2d 00 0f 	bne r1,r13,800323c <_RTEMS_tasks_Initialize_user_tasks_body+0xa8><== NEVER TAKEN
    return;                                                           
                                                                      
  /*                                                                  
   *  Now iterate over the initialization tasks and create/start them.
   */                                                                 
  for ( index=0 ; index < maximum ; index++ ) {                       
 8003204:	35 8c 00 01 	addi r12,r12,1                                 
 8003208:	35 6b 00 1c 	addi r11,r11,28                                
 800320c:	55 cc ff ef 	bgu r14,r12,80031c8 <_RTEMS_tasks_Initialize_user_tasks_body+0x34><== NEVER TAKEN
      user_tasks[ index ].argument                                    
    );                                                                
    if ( !rtems_is_status_successful( return_value ) )                
      _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, true, return_value );
  }                                                                   
}                                                                     
 8003210:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003214:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8003218:	2b 8c 00 10 	lw r12,(sp+16)                                 
 800321c:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 8003220:	2b 8e 00 08 	lw r14,(sp+8)                                  
 8003224:	37 9c 00 18 	addi sp,sp,24                                  
 8003228:	c3 a0 00 00 	ret                                            
      user_tasks[ index ].mode_set,                                   
      user_tasks[ index ].attribute_set,                              
      &id                                                             
    );                                                                
    if ( !rtems_is_status_successful( return_value ) )                
      _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, true, return_value );
 800322c:	34 01 00 01 	mvi r1,1                                       <== NOT EXECUTED
 8003230:	34 02 00 01 	mvi r2,1                                       <== NOT EXECUTED
 8003234:	b9 a0 18 00 	mv r3,r13                                      <== NOT EXECUTED
 8003238:	f8 00 04 5b 	calli 80043a4 <_Internal_error_Occurred>       <== NOT EXECUTED
      id,                                                             
      user_tasks[ index ].entry_point,                                
      user_tasks[ index ].argument                                    
    );                                                                
    if ( !rtems_is_status_successful( return_value ) )                
      _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, true, return_value );
 800323c:	34 01 00 01 	mvi r1,1                                       <== NOT EXECUTED
 8003240:	34 02 00 01 	mvi r2,1                                       <== NOT EXECUTED
 8003244:	f8 00 04 58 	calli 80043a4 <_Internal_error_Occurred>       <== NOT EXECUTED
                                                                      

08008e34 <_RTEMS_tasks_Post_switch_extension>: */ void _RTEMS_tasks_Post_switch_extension( Thread_Control *executing ) {
 8008e34:	37 9c ff f0 	addi sp,sp,-16                                 
 8008e38:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8008e3c:	5b 8c 00 08 	sw (sp+8),r12                                  
 8008e40:	5b 9d 00 04 	sw (sp+4),ra                                   
  RTEMS_API_Control *api;                                             
  ASR_Information   *asr;                                             
  rtems_signal_set   signal_set;                                      
  Modes_Control      prev_mode;                                       
                                                                      
  api = executing->API_Extensions[ THREAD_API_RTEMS ];                
 8008e44:	28 2b 01 24 	lw r11,(r1+292)                                
  if ( !api )                                                         
 8008e48:	45 60 00 1a 	be r11,r0,8008eb0 <_RTEMS_tasks_Post_switch_extension+0x7c><== NEVER TAKEN
   *  Signal Processing                                               
   */                                                                 
                                                                      
  asr = &api->Signal;                                                 
                                                                      
  _ISR_Disable( level );                                              
 8008e4c:	90 00 10 00 	rcsr r2,IE                                     
 8008e50:	34 01 ff fe 	mvi r1,-2                                      
 8008e54:	a0 41 08 00 	and r1,r2,r1                                   
 8008e58:	d0 01 00 00 	wcsr IE,r1                                     
    signal_set = asr->signals_posted;                                 
 8008e5c:	29 6c 00 14 	lw r12,(r11+20)                                
    asr->signals_posted = 0;                                          
 8008e60:	59 60 00 14 	sw (r11+20),r0                                 
  _ISR_Enable( level );                                               
 8008e64:	d0 02 00 00 	wcsr IE,r2                                     
                                                                      
                                                                      
  if ( !signal_set ) /* similar to _ASR_Are_signals_pending( asr ) */ 
 8008e68:	45 80 00 12 	be r12,r0,8008eb0 <_RTEMS_tasks_Post_switch_extension+0x7c>
    return;                                                           
                                                                      
  asr->nest_level += 1;                                               
 8008e6c:	29 64 00 1c 	lw r4,(r11+28)                                 
  rtems_task_mode( asr->mode_set, RTEMS_ALL_MODE_MASKS, &prev_mode ); 
 8008e70:	29 61 00 10 	lw r1,(r11+16)                                 
 8008e74:	37 83 00 10 	addi r3,sp,16                                  
                                                                      
                                                                      
  if ( !signal_set ) /* similar to _ASR_Are_signals_pending( asr ) */ 
    return;                                                           
                                                                      
  asr->nest_level += 1;                                               
 8008e78:	34 84 00 01 	addi r4,r4,1                                   
  rtems_task_mode( asr->mode_set, RTEMS_ALL_MODE_MASKS, &prev_mode ); 
 8008e7c:	38 02 ff ff 	mvu r2,0xffff                                  
                                                                      
                                                                      
  if ( !signal_set ) /* similar to _ASR_Are_signals_pending( asr ) */ 
    return;                                                           
                                                                      
  asr->nest_level += 1;                                               
 8008e80:	59 64 00 1c 	sw (r11+28),r4                                 
  rtems_task_mode( asr->mode_set, RTEMS_ALL_MODE_MASKS, &prev_mode ); 
 8008e84:	f8 00 09 62 	calli 800b40c <rtems_task_mode>                
                                                                      
  (*asr->handler)( signal_set );                                      
 8008e88:	29 62 00 0c 	lw r2,(r11+12)                                 
 8008e8c:	b9 80 08 00 	mv r1,r12                                      
 8008e90:	d8 40 00 00 	call r2                                        
                                                                      
  asr->nest_level -= 1;                                               
 8008e94:	29 63 00 1c 	lw r3,(r11+28)                                 
  rtems_task_mode( prev_mode, RTEMS_ALL_MODE_MASKS, &prev_mode );     
 8008e98:	2b 81 00 10 	lw r1,(sp+16)                                  
 8008e9c:	38 02 ff ff 	mvu r2,0xffff                                  
  asr->nest_level += 1;                                               
  rtems_task_mode( asr->mode_set, RTEMS_ALL_MODE_MASKS, &prev_mode ); 
                                                                      
  (*asr->handler)( signal_set );                                      
                                                                      
  asr->nest_level -= 1;                                               
 8008ea0:	34 63 ff ff 	addi r3,r3,-1                                  
 8008ea4:	59 63 00 1c 	sw (r11+28),r3                                 
  rtems_task_mode( prev_mode, RTEMS_ALL_MODE_MASKS, &prev_mode );     
 8008ea8:	37 83 00 10 	addi r3,sp,16                                  
 8008eac:	f8 00 09 58 	calli 800b40c <rtems_task_mode>                
                                                                      
}                                                                     
 8008eb0:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8008eb4:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8008eb8:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8008ebc:	37 9c 00 10 	addi sp,sp,16                                  
 8008ec0:	c3 a0 00 00 	ret                                            
                                                                      

08008dc0 <_RTEMS_tasks_Switch_extension>: /* * Per Task Variables */ tvp = executing->task_variables;
 8008dc0:	28 21 01 30 	lw r1,(r1+304)                                 
  while (tvp) {                                                       
 8008dc4:	44 20 00 08 	be r1,r0,8008de4 <_RTEMS_tasks_Switch_extension+0x24>
    tvp->tval = *tvp->ptr;                                            
 8008dc8:	28 23 00 04 	lw r3,(r1+4)                                   
    *tvp->ptr = tvp->gval;                                            
 8008dcc:	28 24 00 08 	lw r4,(r1+8)                                   
   *  Per Task Variables                                              
   */                                                                 
                                                                      
  tvp = executing->task_variables;                                    
  while (tvp) {                                                       
    tvp->tval = *tvp->ptr;                                            
 8008dd0:	28 65 00 00 	lw r5,(r3+0)                                   
 8008dd4:	58 25 00 0c 	sw (r1+12),r5                                  
    *tvp->ptr = tvp->gval;                                            
    tvp = (rtems_task_variable_t *)tvp->next;                         
 8008dd8:	28 21 00 00 	lw r1,(r1+0)                                   
   */                                                                 
                                                                      
  tvp = executing->task_variables;                                    
  while (tvp) {                                                       
    tvp->tval = *tvp->ptr;                                            
    *tvp->ptr = tvp->gval;                                            
 8008ddc:	58 64 00 00 	sw (r3+0),r4                                   
  /*                                                                  
   *  Per Task Variables                                              
   */                                                                 
                                                                      
  tvp = executing->task_variables;                                    
  while (tvp) {                                                       
 8008de0:	5c 20 ff fa 	bne r1,r0,8008dc8 <_RTEMS_tasks_Switch_extension+0x8><== NEVER TAKEN
    tvp->tval = *tvp->ptr;                                            
    *tvp->ptr = tvp->gval;                                            
    tvp = (rtems_task_variable_t *)tvp->next;                         
  }                                                                   
                                                                      
  tvp = heir->task_variables;                                         
 8008de4:	28 41 01 30 	lw r1,(r2+304)                                 
  while (tvp) {                                                       
 8008de8:	44 20 00 08 	be r1,r0,8008e08 <_RTEMS_tasks_Switch_extension+0x48>
    tvp->gval = *tvp->ptr;                                            
 8008dec:	28 22 00 04 	lw r2,(r1+4)                                   
    *tvp->ptr = tvp->tval;                                            
 8008df0:	28 23 00 0c 	lw r3,(r1+12)                                  
    tvp = (rtems_task_variable_t *)tvp->next;                         
  }                                                                   
                                                                      
  tvp = heir->task_variables;                                         
  while (tvp) {                                                       
    tvp->gval = *tvp->ptr;                                            
 8008df4:	28 44 00 00 	lw r4,(r2+0)                                   
 8008df8:	58 24 00 08 	sw (r1+8),r4                                   
    *tvp->ptr = tvp->tval;                                            
    tvp = (rtems_task_variable_t *)tvp->next;                         
 8008dfc:	28 21 00 00 	lw r1,(r1+0)                                   
  }                                                                   
                                                                      
  tvp = heir->task_variables;                                         
  while (tvp) {                                                       
    tvp->gval = *tvp->ptr;                                            
    *tvp->ptr = tvp->tval;                                            
 8008e00:	58 43 00 00 	sw (r2+0),r3                                   
    *tvp->ptr = tvp->gval;                                            
    tvp = (rtems_task_variable_t *)tvp->next;                         
  }                                                                   
                                                                      
  tvp = heir->task_variables;                                         
  while (tvp) {                                                       
 8008e04:	5c 20 ff fa 	bne r1,r0,8008dec <_RTEMS_tasks_Switch_extension+0x2c><== NEVER TAKEN
 8008e08:	c3 a0 00 00 	ret                                            
                                                                      

08004878 <_Rate_monotonic_Timeout>: void _Rate_monotonic_Timeout( Objects_Id id, void *ignored ) {
 8004878:	37 9c ff f4 	addi sp,sp,-12                                 
 800487c:	5b 8b 00 08 	sw (sp+8),r11                                  
 8004880:	5b 9d 00 04 	sw (sp+4),ra                                   
 8004884:	b8 20 10 00 	mv r2,r1                                       
 8004888:	78 01 08 01 	mvhi r1,0x801                                  
 800488c:	38 21 f8 18 	ori r1,r1,0xf818                               
 8004890:	37 83 00 0c 	addi r3,sp,12                                  
 8004894:	f8 00 09 11 	calli 8006cd8 <_Objects_Get>                   
  /*                                                                  
   *  When we get here, the Timer is already off the chain so we do not
   *  have to worry about that -- hence no _Watchdog_Remove().        
   */                                                                 
  the_period = _Rate_monotonic_Get( id, &location );                  
  switch ( location ) {                                               
 8004898:	2b 82 00 0c 	lw r2,(sp+12)                                  
 800489c:	b8 20 58 00 	mv r11,r1                                      
 80048a0:	44 40 00 05 	be r2,r0,80048b4 <_Rate_monotonic_Timeout+0x3c><== ALWAYS TAKEN
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
}                                                                     
 80048a4:	2b 9d 00 04 	lw ra,(sp+4)                                   <== NOT EXECUTED
 80048a8:	2b 8b 00 08 	lw r11,(sp+8)                                  <== NOT EXECUTED
 80048ac:	37 9c 00 0c 	addi sp,sp,12                                  <== NOT EXECUTED
 80048b0:	c3 a0 00 00 	ret                                            <== NOT EXECUTED
   */                                                                 
  the_period = _Rate_monotonic_Get( id, &location );                  
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      the_thread = the_period->owner;                                 
 80048b4:	28 21 00 40 	lw r1,(r1+64)                                  
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_waiting_for_period (             
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_WAITING_FOR_PERIOD);                   
 80048b8:	28 23 00 10 	lw r3,(r1+16)                                  
 80048bc:	20 63 40 00 	andi r3,r3,0x4000                              
      if ( _States_Is_waiting_for_period( the_thread->current_state ) &&
 80048c0:	44 62 00 04 	be r3,r2,80048d0 <_Rate_monotonic_Timeout+0x58>
 80048c4:	28 23 00 20 	lw r3,(r1+32)                                  
 80048c8:	29 62 00 08 	lw r2,(r11+8)                                  
 80048cc:	44 62 00 1a 	be r3,r2,8004934 <_Rate_monotonic_Timeout+0xbc>
        _Thread_Unblock( the_thread );                                
                                                                      
        _Rate_monotonic_Initiate_statistics( the_period );            
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, the_period->next_length );
      } else if ( the_period->state == RATE_MONOTONIC_OWNER_IS_BLOCKING ) {
 80048d0:	29 62 00 38 	lw r2,(r11+56)                                 
 80048d4:	34 01 00 01 	mvi r1,1                                       
 80048d8:	44 41 00 0c 	be r2,r1,8004908 <_Rate_monotonic_Timeout+0x90><== NEVER TAKEN
                                                                      
        _Rate_monotonic_Initiate_statistics( the_period );            
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, the_period->next_length );
      } else                                                          
        the_period->state = RATE_MONOTONIC_EXPIRED;                   
 80048dc:	34 01 00 04 	mvi r1,4                                       
 80048e0:	59 61 00 38 	sw (r11+56),r1                                 
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unnest_dispatch( void )             
{                                                                     
  RTEMS_COMPILER_MEMORY_BARRIER();                                    
  _Thread_Dispatch_disable_level -= 1;                                
 80048e4:	78 01 08 01 	mvhi r1,0x801                                  
 80048e8:	38 21 f9 44 	ori r1,r1,0xf944                               
 80048ec:	28 22 00 00 	lw r2,(r1+0)                                   
 80048f0:	34 42 ff ff 	addi r2,r2,-1                                  
 80048f4:	58 22 00 00 	sw (r1+0),r2                                   
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
}                                                                     
 80048f8:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80048fc:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8004900:	37 9c 00 0c 	addi sp,sp,12                                  
 8004904:	c3 a0 00 00 	ret                                            
                                                                      
        _Rate_monotonic_Initiate_statistics( the_period );            
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, the_period->next_length );
      } else if ( the_period->state == RATE_MONOTONIC_OWNER_IS_BLOCKING ) {
        the_period->state = RATE_MONOTONIC_EXPIRED_WHILE_BLOCKING;    
 8004908:	34 02 00 03 	mvi r2,3                                       <== NOT EXECUTED
                                                                      
        _Rate_monotonic_Initiate_statistics( the_period );            
 800490c:	b9 60 08 00 	mv r1,r11                                      <== NOT EXECUTED
                                                                      
        _Rate_monotonic_Initiate_statistics( the_period );            
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, the_period->next_length );
      } else if ( the_period->state == RATE_MONOTONIC_OWNER_IS_BLOCKING ) {
        the_period->state = RATE_MONOTONIC_EXPIRED_WHILE_BLOCKING;    
 8004910:	59 62 00 38 	sw (r11+56),r2                                 <== NOT EXECUTED
                                                                      
        _Rate_monotonic_Initiate_statistics( the_period );            
 8004914:	fb ff fe 00 	calli 8004114 <_Rate_monotonic_Initiate_statistics>
  Watchdog_Control      *the_watchdog,                                
  Watchdog_Interval      units                                        
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
 8004918:	29 62 00 3c 	lw r2,(r11+60)                                 
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
 800491c:	78 01 08 01 	mvhi r1,0x801                                  
 8004920:	38 21 fa 08 	ori r1,r1,0xfa08                               
  Watchdog_Control      *the_watchdog,                                
  Watchdog_Interval      units                                        
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
 8004924:	59 62 00 1c 	sw (r11+28),r2                                 
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
 8004928:	35 62 00 10 	addi r2,r11,16                                 
 800492c:	f8 00 11 d1 	calli 8009070 <_Watchdog_Insert>               
 8004930:	e3 ff ff ed 	bi 80048e4 <_Rate_monotonic_Timeout+0x6c>      
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unblock (                           
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
  _Thread_Clear_state( the_thread, STATES_BLOCKED );                  
 8004934:	78 03 08 01 	mvhi r3,0x801                                  
 8004938:	38 63 d6 64 	ori r3,r3,0xd664                               
 800493c:	28 62 00 00 	lw r2,(r3+0)                                   
 8004940:	f8 00 0a 99 	calli 80073a4 <_Thread_Clear_state>            
      the_thread = the_period->owner;                                 
      if ( _States_Is_waiting_for_period( the_thread->current_state ) &&
            the_thread->Wait.id == the_period->Object.id ) {          
        _Thread_Unblock( the_thread );                                
                                                                      
        _Rate_monotonic_Initiate_statistics( the_period );            
 8004944:	b9 60 08 00 	mv r1,r11                                      
 8004948:	e3 ff ff f3 	bi 8004914 <_Rate_monotonic_Timeout+0x9c>      
                                                                      

080041c0 <_Rate_monotonic_Update_statistics>: void _Rate_monotonic_Update_statistics( Rate_monotonic_Control *the_period ) {
 80041c0:	37 9c ff e0 	addi sp,sp,-32                                 
 80041c4:	5b 8b 00 10 	sw (sp+16),r11                                 
 80041c8:	5b 8c 00 0c 	sw (sp+12),r12                                 
 80041cc:	5b 8d 00 08 	sw (sp+8),r13                                  
 80041d0:	5b 9d 00 04 	sw (sp+4),ra                                   
 80041d4:	b8 20 58 00 	mv r11,r1                                      
                                                                      
  /*                                                                  
   *  Update the counts.                                              
   */                                                                 
  stats = &the_period->Statistics;                                    
  stats->count++;                                                     
 80041d8:	28 21 00 54 	lw r1,(r1+84)                                  
                                                                      
  if ( the_period->state == RATE_MONOTONIC_EXPIRED )                  
 80041dc:	29 62 00 38 	lw r2,(r11+56)                                 
                                                                      
  /*                                                                  
   *  Update the counts.                                              
   */                                                                 
  stats = &the_period->Statistics;                                    
  stats->count++;                                                     
 80041e0:	34 21 00 01 	addi r1,r1,1                                   
 80041e4:	59 61 00 54 	sw (r11+84),r1                                 
                                                                      
  if ( the_period->state == RATE_MONOTONIC_EXPIRED )                  
 80041e8:	34 01 00 04 	mvi r1,4                                       
 80041ec:	44 41 00 36 	be r2,r1,80042c4 <_Rate_monotonic_Update_statistics+0x104>
                                                                      
  /*                                                                  
   *  Grab status for time statistics.                                
   */                                                                 
  valid_status =                                                      
    _Rate_monotonic_Get_status( the_period, &since_last_period, &executed );
 80041f0:	37 8c 00 14 	addi r12,sp,20                                 
 80041f4:	37 8d 00 1c 	addi r13,sp,28                                 
    stats->missed_count++;                                            
                                                                      
  /*                                                                  
   *  Grab status for time statistics.                                
   */                                                                 
  valid_status =                                                      
 80041f8:	b9 60 08 00 	mv r1,r11                                      
 80041fc:	b9 80 10 00 	mv r2,r12                                      
 8004200:	b9 a0 18 00 	mv r3,r13                                      
 8004204:	fb ff ff 8a 	calli 800402c <_Rate_monotonic_Get_status>     
    _Rate_monotonic_Get_status( the_period, &since_last_period, &executed );
  if (!valid_status)                                                  
 8004208:	5c 20 00 07 	bne r1,r0,8004224 <_Rate_monotonic_Update_statistics+0x64><== ALWAYS TAKEN
      stats->min_wall_time = since_last_period;                       
                                                                      
    if ( since_last_period > stats->max_wall_time )                   
      stats->max_wall_time = since_last_period;                       
  #endif                                                              
}                                                                     
 800420c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004210:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8004214:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 8004218:	2b 8d 00 08 	lw r13,(sp+8)                                  
 800421c:	37 9c 00 20 	addi sp,sp,32                                  
 8004220:	c3 a0 00 00 	ret                                            
                                                                      
  /*                                                                  
   *  Update CPU time                                                 
   */                                                                 
  #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                          
    _Timestamp_Add_to( &stats->total_cpu_time, &executed );           
 8004224:	b9 a0 10 00 	mv r2,r13                                      
 8004228:	35 61 00 6c 	addi r1,r11,108                                
 800422c:	f8 00 11 93 	calli 8008878 <_Timespec_Add_to>               
                                                                      
    if ( _Timestamp_Less_than( &executed, &stats->min_cpu_time ) )    
 8004230:	b9 a0 08 00 	mv r1,r13                                      
 8004234:	35 62 00 5c 	addi r2,r11,92                                 
 8004238:	f8 00 12 7c 	calli 8008c28 <_Timespec_Less_than>            
 800423c:	44 20 00 05 	be r1,r0,8004250 <_Rate_monotonic_Update_statistics+0x90>
      stats->min_cpu_time = executed;                                 
 8004240:	2b 81 00 1c 	lw r1,(sp+28)                                  
 8004244:	59 61 00 5c 	sw (r11+92),r1                                 
 8004248:	2b 81 00 20 	lw r1,(sp+32)                                  
 800424c:	59 61 00 60 	sw (r11+96),r1                                 
                                                                      
    if ( _Timestamp_Greater_than( &executed, &stats->max_cpu_time ) ) 
 8004250:	b9 a0 08 00 	mv r1,r13                                      
 8004254:	35 62 00 64 	addi r2,r11,100                                
 8004258:	f8 00 12 69 	calli 8008bfc <_Timespec_Greater_than>         
 800425c:	44 20 00 05 	be r1,r0,8004270 <_Rate_monotonic_Update_statistics+0xb0>
      stats->max_cpu_time = executed;                                 
 8004260:	2b 81 00 1c 	lw r1,(sp+28)                                  
 8004264:	59 61 00 64 	sw (r11+100),r1                                
 8004268:	2b 81 00 20 	lw r1,(sp+32)                                  
 800426c:	59 61 00 68 	sw (r11+104),r1                                
                                                                      
  /*                                                                  
   *  Update Wall time                                                
   */                                                                 
  #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                          
    _Timestamp_Add_to( &stats->total_wall_time, &since_last_period ); 
 8004270:	b9 80 10 00 	mv r2,r12                                      
 8004274:	35 61 00 84 	addi r1,r11,132                                
 8004278:	f8 00 11 80 	calli 8008878 <_Timespec_Add_to>               
                                                                      
    if ( _Timestamp_Less_than( &since_last_period, &stats->min_wall_time ) )
 800427c:	b9 80 08 00 	mv r1,r12                                      
 8004280:	35 62 00 74 	addi r2,r11,116                                
 8004284:	f8 00 12 69 	calli 8008c28 <_Timespec_Less_than>            
 8004288:	5c 20 00 13 	bne r1,r0,80042d4 <_Rate_monotonic_Update_statistics+0x114>
      stats->min_wall_time = since_last_period;                       
                                                                      
    if ( _Timestamp_Greater_than( &since_last_period, &stats->max_wall_time ) )
 800428c:	b9 80 08 00 	mv r1,r12                                      
 8004290:	35 62 00 7c 	addi r2,r11,124                                
 8004294:	f8 00 12 5a 	calli 8008bfc <_Timespec_Greater_than>         
 8004298:	44 20 ff dd 	be r1,r0,800420c <_Rate_monotonic_Update_statistics+0x4c>
      stats->max_wall_time = since_last_period;                       
 800429c:	2b 81 00 14 	lw r1,(sp+20)                                  
 80042a0:	59 61 00 7c 	sw (r11+124),r1                                
 80042a4:	2b 81 00 18 	lw r1,(sp+24)                                  
 80042a8:	59 61 00 80 	sw (r11+128),r1                                
      stats->min_wall_time = since_last_period;                       
                                                                      
    if ( since_last_period > stats->max_wall_time )                   
      stats->max_wall_time = since_last_period;                       
  #endif                                                              
}                                                                     
 80042ac:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80042b0:	2b 8b 00 10 	lw r11,(sp+16)                                 
 80042b4:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 80042b8:	2b 8d 00 08 	lw r13,(sp+8)                                  
 80042bc:	37 9c 00 20 	addi sp,sp,32                                  
 80042c0:	c3 a0 00 00 	ret                                            
   */                                                                 
  stats = &the_period->Statistics;                                    
  stats->count++;                                                     
                                                                      
  if ( the_period->state == RATE_MONOTONIC_EXPIRED )                  
    stats->missed_count++;                                            
 80042c4:	29 61 00 58 	lw r1,(r11+88)                                 
 80042c8:	34 21 00 01 	addi r1,r1,1                                   
 80042cc:	59 61 00 58 	sw (r11+88),r1                                 
 80042d0:	e3 ff ff c8 	bi 80041f0 <_Rate_monotonic_Update_statistics+0x30>
   */                                                                 
  #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                          
    _Timestamp_Add_to( &stats->total_wall_time, &since_last_period ); 
                                                                      
    if ( _Timestamp_Less_than( &since_last_period, &stats->min_wall_time ) )
      stats->min_wall_time = since_last_period;                       
 80042d4:	2b 81 00 14 	lw r1,(sp+20)                                  
 80042d8:	59 61 00 74 	sw (r11+116),r1                                
 80042dc:	2b 81 00 18 	lw r1,(sp+24)                                  
 80042e0:	59 61 00 78 	sw (r11+120),r1                                
 80042e4:	e3 ff ff ea 	bi 800428c <_Rate_monotonic_Update_statistics+0xcc>
                                                                      

08003d1c <_TOD_Get>: */ void _TOD_Get( struct timespec *time ) {
 8003d1c:	37 9c ff e4 	addi sp,sp,-28                                 
 8003d20:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8003d24:	5b 8c 00 08 	sw (sp+8),r12                                  
 8003d28:	5b 9d 00 04 	sw (sp+4),ra                                   
 8003d2c:	b8 20 58 00 	mv r11,r1                                      
                                                                      
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Now is the native current time */                           
  nanoseconds = 0;                                                    
  _ISR_Disable( level );                                              
 8003d30:	90 00 60 00 	rcsr r12,IE                                    
 8003d34:	34 01 ff fe 	mvi r1,-2                                      
 8003d38:	a1 81 08 00 	and r1,r12,r1                                  
 8003d3c:	d0 01 00 00 	wcsr IE,r1                                     
    now = _TOD_Now;                                                   
 8003d40:	78 02 08 01 	mvhi r2,0x801                                  
 8003d44:	38 42 38 a4 	ori r2,r2,0x38a4                               
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
 8003d48:	78 03 08 01 	mvhi r3,0x801                                  
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Now is the native current time */                           
  nanoseconds = 0;                                                    
  _ISR_Disable( level );                                              
    now = _TOD_Now;                                                   
 8003d4c:	28 44 00 00 	lw r4,(r2+0)                                   
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
 8003d50:	38 63 39 a0 	ori r3,r3,0x39a0                               
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Now is the native current time */                           
  nanoseconds = 0;                                                    
  _ISR_Disable( level );                                              
    now = _TOD_Now;                                                   
 8003d54:	28 42 00 04 	lw r2,(r2+4)                                   
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
 8003d58:	28 61 00 00 	lw r1,(r3+0)                                   
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Now is the native current time */                           
  nanoseconds = 0;                                                    
  _ISR_Disable( level );                                              
    now = _TOD_Now;                                                   
 8003d5c:	5b 84 00 10 	sw (sp+16),r4                                  
 8003d60:	5b 82 00 14 	sw (sp+20),r2                                  
  long              nanoseconds;                                      
                                                                      
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Now is the native current time */                           
  nanoseconds = 0;                                                    
 8003d64:	34 03 00 00 	mvi r3,0                                       
  _ISR_Disable( level );                                              
    now = _TOD_Now;                                                   
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
 8003d68:	44 20 00 03 	be r1,r0,8003d74 <_TOD_Get+0x58>               <== ALWAYS TAKEN
      nanoseconds = (*_Watchdog_Nanoseconds_since_tick_handler)();    
 8003d6c:	d8 20 00 00 	call r1                                        <== NOT EXECUTED
 8003d70:	b8 20 18 00 	mv r3,r1                                       <== NOT EXECUTED
  _ISR_Enable( level );                                               
 8003d74:	d0 0c 00 00 	wcsr IE,r12                                    
                                                                      
  _Timestamp_Set( &offset, 0, nanoseconds );                          
  _Timestamp_Add_to( &now, &offset );                                 
 8003d78:	37 82 00 18 	addi r2,sp,24                                  
 8003d7c:	37 81 00 10 	addi r1,sp,16                                  
    now = _TOD_Now;                                                   
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
      nanoseconds = (*_Watchdog_Nanoseconds_since_tick_handler)();    
  _ISR_Enable( level );                                               
                                                                      
  _Timestamp_Set( &offset, 0, nanoseconds );                          
 8003d80:	5b 80 00 18 	sw (sp+24),r0                                  
 8003d84:	5b 83 00 1c 	sw (sp+28),r3                                  
  _Timestamp_Add_to( &now, &offset );                                 
 8003d88:	f8 00 09 b2 	calli 8006450 <_Timespec_Add_to>               
  _Timestamp_To_timespec( &now, time );                               
 8003d8c:	2b 81 00 14 	lw r1,(sp+20)                                  
 8003d90:	2b 82 00 10 	lw r2,(sp+16)                                  
 8003d94:	59 61 00 04 	sw (r11+4),r1                                  
 8003d98:	59 62 00 00 	sw (r11+0),r2                                  
}                                                                     
 8003d9c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003da0:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8003da4:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8003da8:	37 9c 00 1c 	addi sp,sp,28                                  
 8003dac:	c3 a0 00 00 	ret                                            
                                                                      

08009334 <_TOD_Get_uptime>: */ void _TOD_Get_uptime( Timestamp_Control *uptime ) {
 8009334:	37 9c ff e4 	addi sp,sp,-28                                 
 8009338:	5b 8b 00 0c 	sw (sp+12),r11                                 
 800933c:	5b 8c 00 08 	sw (sp+8),r12                                  
 8009340:	5b 9d 00 04 	sw (sp+4),ra                                   
 8009344:	b8 20 58 00 	mv r11,r1                                      
                                                                      
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Uptime is in native timestamp format */                     
  nanoseconds = 0;                                                    
  _ISR_Disable( level );                                              
 8009348:	90 00 60 00 	rcsr r12,IE                                    
 800934c:	34 01 ff fe 	mvi r1,-2                                      
 8009350:	a1 81 08 00 	and r1,r12,r1                                  
 8009354:	d0 01 00 00 	wcsr IE,r1                                     
    up = _TOD_Uptime;                                                 
 8009358:	78 02 08 01 	mvhi r2,0x801                                  
 800935c:	38 42 38 98 	ori r2,r2,0x3898                               
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
 8009360:	78 03 08 01 	mvhi r3,0x801                                  
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Uptime is in native timestamp format */                     
  nanoseconds = 0;                                                    
  _ISR_Disable( level );                                              
    up = _TOD_Uptime;                                                 
 8009364:	28 44 00 00 	lw r4,(r2+0)                                   
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
 8009368:	38 63 39 a0 	ori r3,r3,0x39a0                               
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Uptime is in native timestamp format */                     
  nanoseconds = 0;                                                    
  _ISR_Disable( level );                                              
    up = _TOD_Uptime;                                                 
 800936c:	28 42 00 04 	lw r2,(r2+4)                                   
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
 8009370:	28 61 00 00 	lw r1,(r3+0)                                   
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Uptime is in native timestamp format */                     
  nanoseconds = 0;                                                    
  _ISR_Disable( level );                                              
    up = _TOD_Uptime;                                                 
 8009374:	5b 84 00 10 	sw (sp+16),r4                                  
 8009378:	5b 82 00 14 	sw (sp+20),r2                                  
  long              nanoseconds;                                      
                                                                      
  /* assume time checked for NULL by caller */                        
                                                                      
  /* _TOD_Uptime is in native timestamp format */                     
  nanoseconds = 0;                                                    
 800937c:	34 03 00 00 	mvi r3,0                                       
  _ISR_Disable( level );                                              
    up = _TOD_Uptime;                                                 
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
 8009380:	44 20 00 03 	be r1,r0,800938c <_TOD_Get_uptime+0x58>        <== ALWAYS TAKEN
      nanoseconds = (*_Watchdog_Nanoseconds_since_tick_handler)();    
 8009384:	d8 20 00 00 	call r1                                        <== NOT EXECUTED
 8009388:	b8 20 18 00 	mv r3,r1                                       <== NOT EXECUTED
  _ISR_Enable( level );                                               
 800938c:	d0 0c 00 00 	wcsr IE,r12                                    
                                                                      
  _Timestamp_Set( &offset, 0, nanoseconds );                          
  _Timestamp_Add_to( &up, &offset );                                  
 8009390:	37 82 00 18 	addi r2,sp,24                                  
 8009394:	37 81 00 10 	addi r1,sp,16                                  
    up = _TOD_Uptime;                                                 
    if ( _Watchdog_Nanoseconds_since_tick_handler )                   
      nanoseconds = (*_Watchdog_Nanoseconds_since_tick_handler)();    
  _ISR_Enable( level );                                               
                                                                      
  _Timestamp_Set( &offset, 0, nanoseconds );                          
 8009398:	5b 80 00 18 	sw (sp+24),r0                                  
 800939c:	5b 83 00 1c 	sw (sp+28),r3                                  
  _Timestamp_Add_to( &up, &offset );                                  
 80093a0:	fb ff f4 2c 	calli 8006450 <_Timespec_Add_to>               
  *uptime = up;                                                       
 80093a4:	2b 81 00 14 	lw r1,(sp+20)                                  
 80093a8:	2b 82 00 10 	lw r2,(sp+16)                                  
 80093ac:	59 61 00 04 	sw (r11+4),r1                                  
 80093b0:	59 62 00 00 	sw (r11+0),r2                                  
}                                                                     
 80093b4:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80093b8:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 80093bc:	2b 8c 00 08 	lw r12,(sp+8)                                  
 80093c0:	37 9c 00 1c 	addi sp,sp,28                                  
 80093c4:	c3 a0 00 00 	ret                                            
                                                                      

08003dec <_TOD_Tickle_ticks>: * * Output parameters: NONE */ void _TOD_Tickle_ticks( void ) {
 8003dec:	37 9c ff ec 	addi sp,sp,-20                                 
 8003df0:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8003df4:	5b 8c 00 08 	sw (sp+8),r12                                  
 8003df8:	5b 9d 00 04 	sw (sp+4),ra                                   
  Timestamp_Control tick;                                             
  uint32_t          seconds;                                          
                                                                      
  /* Convert the tick quantum to a timestamp */                       
  _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
 8003dfc:	78 01 08 01 	mvhi r1,0x801                                  
 8003e00:	38 21 30 c4 	ori r1,r1,0x30c4                               
 8003e04:	28 21 00 0c 	lw r1,(r1+12)                                  
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
 8003e08:	78 03 08 01 	mvhi r3,0x801                                  
 8003e0c:	38 63 39 54 	ori r3,r3,0x3954                               
{                                                                     
  Timestamp_Control tick;                                             
  uint32_t          seconds;                                          
                                                                      
  /* Convert the tick quantum to a timestamp */                       
  _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
 8003e10:	b4 21 08 00 	add r1,r1,r1                                   
 8003e14:	b4 21 08 00 	add r1,r1,r1                                   
 8003e18:	b4 21 08 00 	add r1,r1,r1                                   
 8003e1c:	b4 21 10 00 	add r2,r1,r1                                   
 8003e20:	b4 42 10 00 	add r2,r2,r2                                   
 8003e24:	b4 22 08 00 	add r1,r1,r2                                   
 8003e28:	b4 21 10 00 	add r2,r1,r1                                   
 8003e2c:	b4 42 10 00 	add r2,r2,r2                                   
 8003e30:	b4 22 08 00 	add r1,r1,r2                                   
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
 8003e34:	28 65 00 00 	lw r5,(r3+0)                                   
{                                                                     
  Timestamp_Control tick;                                             
  uint32_t          seconds;                                          
                                                                      
  /* Convert the tick quantum to a timestamp */                       
  _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
 8003e38:	b4 21 20 00 	add r4,r1,r1                                   
 8003e3c:	b4 84 20 00 	add r4,r4,r4                                   
 8003e40:	b4 24 20 00 	add r4,r1,r4                                   
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
                                                                      
  /* Update the timespec format uptime */                             
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
 8003e44:	37 8b 00 10 	addi r11,sp,16                                 
                                                                      
  /* Convert the tick quantum to a timestamp */                       
  _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
 8003e48:	34 a5 00 01 	addi r5,r5,1                                   
                                                                      
  /* Update the timespec format uptime */                             
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
 8003e4c:	78 01 08 01 	mvhi r1,0x801                                  
 8003e50:	b9 60 10 00 	mv r2,r11                                      
                                                                      
  /* Convert the tick quantum to a timestamp */                       
  _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
 8003e54:	58 65 00 00 	sw (r3+0),r5                                   
                                                                      
  /* Update the timespec format uptime */                             
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
 8003e58:	38 21 38 98 	ori r1,r1,0x3898                               
{                                                                     
  Timestamp_Control tick;                                             
  uint32_t          seconds;                                          
                                                                      
  /* Convert the tick quantum to a timestamp */                       
  _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
 8003e5c:	5b 84 00 14 	sw (sp+20),r4                                  
 8003e60:	5b 80 00 10 	sw (sp+16),r0                                  
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
                                                                      
  /* Update the timespec format uptime */                             
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
 8003e64:	f8 00 09 7b 	calli 8006450 <_Timespec_Add_to>               
  /* we do not care how much the uptime changed */                    
                                                                      
  /* Update the timespec format TOD */                                
  seconds = _Timestamp_Add_to_at_tick( &_TOD_Now, &tick );            
 8003e68:	78 01 08 01 	mvhi r1,0x801                                  
 8003e6c:	b9 60 10 00 	mv r2,r11                                      
 8003e70:	38 21 38 a4 	ori r1,r1,0x38a4                               
 8003e74:	f8 00 09 77 	calli 8006450 <_Timespec_Add_to>               
 8003e78:	b8 20 58 00 	mv r11,r1                                      
  while ( seconds ) {                                                 
 8003e7c:	44 20 00 07 	be r1,r0,8003e98 <_TOD_Tickle_ticks+0xac>      
 8003e80:	78 0c 08 01 	mvhi r12,0x801                                 
 8003e84:	39 8c 38 d4 	ori r12,r12,0x38d4                             
    _Watchdog_Tickle_seconds();                                       
    seconds--;                                                        
 8003e88:	35 6b ff ff 	addi r11,r11,-1                                
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Watchdog_Tickle_seconds( void )            
{                                                                     
                                                                      
  _Watchdog_Tickle( &_Watchdog_Seconds_chain );                       
 8003e8c:	b9 80 08 00 	mv r1,r12                                      
 8003e90:	f8 00 0b 47 	calli 8006bac <_Watchdog_Tickle>               
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
  /* we do not care how much the uptime changed */                    
                                                                      
  /* Update the timespec format TOD */                                
  seconds = _Timestamp_Add_to_at_tick( &_TOD_Now, &tick );            
  while ( seconds ) {                                                 
 8003e94:	5d 60 ff fd 	bne r11,r0,8003e88 <_TOD_Tickle_ticks+0x9c>    <== NEVER TAKEN
    _Watchdog_Tickle_seconds();                                       
    seconds--;                                                        
  }                                                                   
}                                                                     
 8003e98:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003e9c:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8003ea0:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8003ea4:	37 9c 00 14 	addi sp,sp,20                                  
 8003ea8:	c3 a0 00 00 	ret                                            
                                                                      

08004440 <_TOD_Validate>: */ bool _TOD_Validate( const rtems_time_of_day *the_tod ) {
 8004440:	37 9c ff f4 	addi sp,sp,-12                                 
 8004444:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8004448:	5b 8c 00 08 	sw (sp+8),r12                                  
 800444c:	5b 9d 00 04 	sw (sp+4),ra                                   
  uint32_t   days_in_month;                                           
  uint32_t   ticks_per_second;                                        
                                                                      
  ticks_per_second = TOD_MICROSECONDS_PER_SECOND /                    
	    rtems_configuration_get_microseconds_per_tick();                 
 8004450:	78 02 08 02 	mvhi r2,0x802                                  
 8004454:	38 42 00 c4 	ori r2,r2,0xc4                                 
 */                                                                   
                                                                      
bool _TOD_Validate(                                                   
  const rtems_time_of_day *the_tod                                    
)                                                                     
{                                                                     
 8004458:	b8 20 58 00 	mv r11,r1                                      
  uint32_t   days_in_month;                                           
  uint32_t   ticks_per_second;                                        
                                                                      
  ticks_per_second = TOD_MICROSECONDS_PER_SECOND /                    
	    rtems_configuration_get_microseconds_per_tick();                 
 800445c:	28 42 00 0c 	lw r2,(r2+12)                                  
      (the_tod->hour   >= TOD_HOURS_PER_DAY)      ||                  
      (the_tod->month  == 0)                      ||                  
      (the_tod->month  >  TOD_MONTHS_PER_YEAR)    ||                  
      (the_tod->year   <  TOD_BASE_YEAR)          ||                  
      (the_tod->day    == 0) )                                        
     return false;                                                    
 8004460:	34 0c 00 00 	mvi r12,0                                      
  uint32_t   days_in_month;                                           
  uint32_t   ticks_per_second;                                        
                                                                      
  ticks_per_second = TOD_MICROSECONDS_PER_SECOND /                    
	    rtems_configuration_get_microseconds_per_tick();                 
  if ((!the_tod)                                  ||                  
 8004464:	44 20 00 22 	be r1,r0,80044ec <_TOD_Validate+0xac>          <== NEVER TAKEN
)                                                                     
{                                                                     
  uint32_t   days_in_month;                                           
  uint32_t   ticks_per_second;                                        
                                                                      
  ticks_per_second = TOD_MICROSECONDS_PER_SECOND /                    
 8004468:	78 03 08 01 	mvhi r3,0x801                                  
 800446c:	38 63 d7 98 	ori r3,r3,0xd798                               
 8004470:	28 61 00 00 	lw r1,(r3+0)                                   
 8004474:	f8 00 60 89 	calli 801c698 <__udivsi3>                      
	    rtems_configuration_get_microseconds_per_tick();                 
  if ((!the_tod)                                  ||                  
 8004478:	29 62 00 18 	lw r2,(r11+24)                                 
 800447c:	50 41 00 1c 	bgeu r2,r1,80044ec <_TOD_Validate+0xac>        
      (the_tod->ticks  >= ticks_per_second)       ||                  
 8004480:	29 62 00 14 	lw r2,(r11+20)                                 
 8004484:	34 01 00 3b 	mvi r1,59                                      
 8004488:	54 41 00 19 	bgu r2,r1,80044ec <_TOD_Validate+0xac>         
      (the_tod->second >= TOD_SECONDS_PER_MINUTE) ||                  
 800448c:	29 62 00 10 	lw r2,(r11+16)                                 
 8004490:	54 41 00 17 	bgu r2,r1,80044ec <_TOD_Validate+0xac>         
      (the_tod->minute >= TOD_MINUTES_PER_HOUR)   ||                  
 8004494:	29 62 00 0c 	lw r2,(r11+12)                                 
 8004498:	34 01 00 17 	mvi r1,23                                      
 800449c:	54 41 00 14 	bgu r2,r1,80044ec <_TOD_Validate+0xac>         
      (the_tod->hour   >= TOD_HOURS_PER_DAY)      ||                  
      (the_tod->month  == 0)                      ||                  
 80044a0:	29 61 00 04 	lw r1,(r11+4)                                  
	    rtems_configuration_get_microseconds_per_tick();                 
  if ((!the_tod)                                  ||                  
      (the_tod->ticks  >= ticks_per_second)       ||                  
      (the_tod->second >= TOD_SECONDS_PER_MINUTE) ||                  
      (the_tod->minute >= TOD_MINUTES_PER_HOUR)   ||                  
      (the_tod->hour   >= TOD_HOURS_PER_DAY)      ||                  
 80044a4:	44 20 00 12 	be r1,r0,80044ec <_TOD_Validate+0xac>          <== NEVER TAKEN
      (the_tod->month  == 0)                      ||                  
 80044a8:	34 02 00 0c 	mvi r2,12                                      
 80044ac:	54 22 00 10 	bgu r1,r2,80044ec <_TOD_Validate+0xac>         
      (the_tod->month  >  TOD_MONTHS_PER_YEAR)    ||                  
      (the_tod->year   <  TOD_BASE_YEAR)          ||                  
 80044b0:	29 62 00 00 	lw r2,(r11+0)                                  
      (the_tod->ticks  >= ticks_per_second)       ||                  
      (the_tod->second >= TOD_SECONDS_PER_MINUTE) ||                  
      (the_tod->minute >= TOD_MINUTES_PER_HOUR)   ||                  
      (the_tod->hour   >= TOD_HOURS_PER_DAY)      ||                  
      (the_tod->month  == 0)                      ||                  
      (the_tod->month  >  TOD_MONTHS_PER_YEAR)    ||                  
 80044b4:	34 03 07 c3 	mvi r3,1987                                    
 80044b8:	50 62 00 0d 	bgeu r3,r2,80044ec <_TOD_Validate+0xac>        
      (the_tod->year   <  TOD_BASE_YEAR)          ||                  
      (the_tod->day    == 0) )                                        
 80044bc:	29 63 00 08 	lw r3,(r11+8)                                  
      (the_tod->second >= TOD_SECONDS_PER_MINUTE) ||                  
      (the_tod->minute >= TOD_MINUTES_PER_HOUR)   ||                  
      (the_tod->hour   >= TOD_HOURS_PER_DAY)      ||                  
      (the_tod->month  == 0)                      ||                  
      (the_tod->month  >  TOD_MONTHS_PER_YEAR)    ||                  
      (the_tod->year   <  TOD_BASE_YEAR)          ||                  
 80044c0:	44 60 00 0b 	be r3,r0,80044ec <_TOD_Validate+0xac>          <== NEVER TAKEN
      (the_tod->day    == 0) )                                        
     return false;                                                    
                                                                      
  if ( (the_tod->year % 4) == 0 )                                     
 80044c4:	20 42 00 03 	andi r2,r2,0x3                                 
 80044c8:	5c 40 00 02 	bne r2,r0,80044d0 <_TOD_Validate+0x90>         
    days_in_month = _TOD_Days_per_month[ 1 ][ the_tod->month ];       
 80044cc:	34 21 00 0d 	addi r1,r1,13                                  
  else                                                                
    days_in_month = _TOD_Days_per_month[ 0 ][ the_tod->month ];       
 80044d0:	78 02 08 01 	mvhi r2,0x801                                  
 80044d4:	b4 21 08 00 	add r1,r1,r1                                   
 80044d8:	38 42 e0 48 	ori r2,r2,0xe048                               
 80044dc:	b4 21 08 00 	add r1,r1,r1                                   
 80044e0:	b4 41 08 00 	add r1,r2,r1                                   
 80044e4:	28 2c 00 00 	lw r12,(r1+0)                                  
 *    false - if the the_tod is invalid                               
 *                                                                    
 *  NOTE: This routine only works for leap-years through 2099.        
 */                                                                   
                                                                      
bool _TOD_Validate(                                                   
 80044e8:	f1 83 60 00 	cmpgeu r12,r12,r3                              
                                                                      
  if ( the_tod->day > days_in_month )                                 
    return false;                                                     
                                                                      
  return true;                                                        
}                                                                     
 80044ec:	b9 80 08 00 	mv r1,r12                                      
 80044f0:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80044f4:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 80044f8:	2b 8c 00 08 	lw r12,(sp+8)                                  
 80044fc:	37 9c 00 0c 	addi sp,sp,12                                  
 8004500:	c3 a0 00 00 	ret                                            
                                                                      

08004ea8 <_Thread_Change_priority>: void _Thread_Change_priority( Thread_Control *the_thread, Priority_Control new_priority, bool prepend_it ) {
 8004ea8:	37 9c ff ec 	addi sp,sp,-20                                 
 8004eac:	5b 8b 00 14 	sw (sp+20),r11                                 
 8004eb0:	5b 8c 00 10 	sw (sp+16),r12                                 
 8004eb4:	5b 8d 00 0c 	sw (sp+12),r13                                 
 8004eb8:	5b 8e 00 08 	sw (sp+8),r14                                  
 8004ebc:	5b 9d 00 04 	sw (sp+4),ra                                   
 8004ec0:	b8 20 58 00 	mv r11,r1                                      
*/                                                                    
                                                                      
  /*                                                                  
   * Save original state                                              
   */                                                                 
  original_state = the_thread->current_state;                         
 8004ec4:	28 2d 00 10 	lw r13,(r1+16)                                 
void _Thread_Change_priority(                                         
  Thread_Control   *the_thread,                                       
  Priority_Control  new_priority,                                     
  bool              prepend_it                                        
)                                                                     
{                                                                     
 8004ec8:	b8 40 60 00 	mv r12,r2                                      
 8004ecc:	20 6e 00 ff 	andi r14,r3,0xff                               
  /*                                                                  
   * Set a transient state for the thread so it is pulled off the Ready chains.
   * This will prevent it from being scheduled no matter what happens in an
   * ISR.                                                             
   */                                                                 
  _Thread_Set_transient( the_thread );                                
 8004ed0:	f8 00 04 a7 	calli 800616c <_Thread_Set_transient>          
                                                                      
  /*                                                                  
   *  Do not bother recomputing all the priority related information if
   *  we are not REALLY changing priority.                            
   */                                                                 
 if ( the_thread->current_priority != new_priority )                  
 8004ed4:	29 61 00 14 	lw r1,(r11+20)                                 
 8004ed8:	44 2c 00 04 	be r1,r12,8004ee8 <_Thread_Change_priority+0x40>
    _Thread_Set_priority( the_thread, new_priority );                 
 8004edc:	b9 60 08 00 	mv r1,r11                                      
 8004ee0:	b9 80 10 00 	mv r2,r12                                      
 8004ee4:	f8 00 04 09 	calli 8005f08 <_Thread_Set_priority>           
                                                                      
  _ISR_Disable( level );                                              
 8004ee8:	90 00 20 00 	rcsr r4,IE                                     
 8004eec:	34 02 ff fe 	mvi r2,-2                                      
 8004ef0:	a0 82 10 00 	and r2,r4,r2                                   
 8004ef4:	d0 02 00 00 	wcsr IE,r2                                     
                                                                      
  /*                                                                  
   *  If the thread has more than STATES_TRANSIENT set, then it is blocked,
   *  If it is blocked on a thread queue, then we need to requeue it. 
   */                                                                 
  state = the_thread->current_state;                                  
 8004ef8:	29 61 00 10 	lw r1,(r11+16)                                 
  if ( state != STATES_TRANSIENT ) {                                  
 8004efc:	34 05 00 04 	mvi r5,4                                       
 8004f00:	44 25 00 23 	be r1,r5,8004f8c <_Thread_Change_priority+0xe4>
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_transient (                      
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_TRANSIENT);                            
 8004f04:	21 ad 00 04 	andi r13,r13,0x4                               
    /* Only clear the transient state if it wasn't set already */     
    if ( ! _States_Is_transient( original_state ) )                   
 8004f08:	45 a0 00 0e 	be r13,r0,8004f40 <_Thread_Change_priority+0x98><== ALWAYS TAKEN
      the_thread->current_state = _States_Clear( STATES_TRANSIENT, state );
    _ISR_Enable( level );                                             
 8004f0c:	d0 04 00 00 	wcsr IE,r4                                     <== NOT EXECUTED
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_waiting_on_thread_queue (        
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_WAITING_ON_THREAD_QUEUE);              
 8004f10:	78 03 08 01 	mvhi r3,0x801                                  <== NOT EXECUTED
 8004f14:	38 63 21 d0 	ori r3,r3,0x21d0                               <== NOT EXECUTED
 8004f18:	28 62 00 00 	lw r2,(r3+0)                                   <== NOT EXECUTED
 8004f1c:	a0 22 08 00 	and r1,r1,r2                                   <== NOT EXECUTED
    if ( _States_Is_waiting_on_thread_queue( state ) ) {              
 8004f20:	5c 20 00 11 	bne r1,r0,8004f64 <_Thread_Change_priority+0xbc><== NOT EXECUTED
                                                                      
  if ( !_Thread_Is_executing_also_the_heir() &&                       
       _Thread_Executing->is_preemptible )                            
    _Thread_Dispatch_necessary = true;                                
  _ISR_Enable( level );                                               
}                                                                     
 8004f24:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004f28:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8004f2c:	2b 8c 00 10 	lw r12,(sp+16)                                 
 8004f30:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 8004f34:	2b 8e 00 08 	lw r14,(sp+8)                                  
 8004f38:	37 9c 00 14 	addi sp,sp,20                                  
 8004f3c:	c3 a0 00 00 	ret                                            
RTEMS_INLINE_ROUTINE States_Control _States_Clear (                   
  States_Control states_to_clear,                                     
  States_Control current_state                                        
)                                                                     
{                                                                     
   return (current_state & ~states_to_clear);                         
 8004f40:	34 02 ff fb 	mvi r2,-5                                      
 8004f44:	a0 22 10 00 	and r2,r1,r2                                   
   */                                                                 
  state = the_thread->current_state;                                  
  if ( state != STATES_TRANSIENT ) {                                  
    /* Only clear the transient state if it wasn't set already */     
    if ( ! _States_Is_transient( original_state ) )                   
      the_thread->current_state = _States_Clear( STATES_TRANSIENT, state );
 8004f48:	59 62 00 10 	sw (r11+16),r2                                 
    _ISR_Enable( level );                                             
 8004f4c:	d0 04 00 00 	wcsr IE,r4                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_waiting_on_thread_queue (        
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_WAITING_ON_THREAD_QUEUE);              
 8004f50:	78 03 08 01 	mvhi r3,0x801                                  
 8004f54:	38 63 21 d0 	ori r3,r3,0x21d0                               
 8004f58:	28 62 00 00 	lw r2,(r3+0)                                   
 8004f5c:	a0 22 08 00 	and r1,r1,r2                                   
    if ( _States_Is_waiting_on_thread_queue( state ) ) {              
 8004f60:	44 20 ff f1 	be r1,r0,8004f24 <_Thread_Change_priority+0x7c>
      _Thread_queue_Requeue( the_thread->Wait.queue, the_thread );    
 8004f64:	29 61 00 44 	lw r1,(r11+68)                                 
 8004f68:	b9 60 10 00 	mv r2,r11                                      
 8004f6c:	f8 00 03 aa 	calli 8005e14 <_Thread_queue_Requeue>          
                                                                      
  if ( !_Thread_Is_executing_also_the_heir() &&                       
       _Thread_Executing->is_preemptible )                            
    _Thread_Dispatch_necessary = true;                                
  _ISR_Enable( level );                                               
}                                                                     
 8004f70:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004f74:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8004f78:	2b 8c 00 10 	lw r12,(sp+16)                                 
 8004f7c:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 8004f80:	2b 8e 00 08 	lw r14,(sp+8)                                  
 8004f84:	37 9c 00 14 	addi sp,sp,20                                  
 8004f88:	c3 a0 00 00 	ret                                            
 8004f8c:	78 01 08 01 	mvhi r1,0x801                                  
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_transient (                      
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_TRANSIENT);                            
 8004f90:	21 ad 00 04 	andi r13,r13,0x4                               
 8004f94:	38 21 38 bc 	ori r1,r1,0x38bc                               
    }                                                                 
    return;                                                           
  }                                                                   
                                                                      
  /* Only clear the transient state if it wasn't set already */       
  if ( ! _States_Is_transient( original_state ) ) {                   
 8004f98:	5d a0 00 13 	bne r13,r0,8004fe4 <_Thread_Change_priority+0x13c><== NEVER TAKEN
                                                                      
RTEMS_INLINE_ROUTINE void _Priority_bit_map_Add (                     
  Priority_bit_map_Information *the_priority_map                      
)                                                                     
{                                                                     
  *the_priority_map->minor |= the_priority_map->ready_minor;          
 8004f9c:	29 63 00 90 	lw r3,(r11+144)                                
 8004fa0:	2d 65 00 96 	lhu r5,(r11+150)                               
     *  Interrupts are STILL disabled.                                
     *  We now know the thread will be in the READY state when we remove
     *  the TRANSIENT state.  So we have to place it on the appropriate
     *  Ready Queue with interrupts off.                              
     */                                                               
    the_thread->current_state = _States_Clear( STATES_TRANSIENT, state );
 8004fa4:	59 60 00 10 	sw (r11+16),r0                                 
 8004fa8:	2c 66 00 00 	lhu r6,(r3+0)                                  
 8004fac:	b8 c5 28 00 	or r5,r6,r5                                    
 8004fb0:	0c 65 00 00 	sh (r3+0),r5                                   
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
 8004fb4:	2c 23 00 00 	lhu r3,(r1+0)                                  
 8004fb8:	2d 65 00 94 	lhu r5,(r11+148)                               
 8004fbc:	b8 a3 18 00 	or r3,r5,r3                                    
 8004fc0:	20 63 ff ff 	andi r3,r3,0xffff                              
 8004fc4:	0c 23 00 00 	sh (r1+0),r3                                   
                                                                      
    _Priority_bit_map_Add( &the_thread->Priority_map );               
    if ( prepend_it )                                                 
 8004fc8:	45 cd 00 52 	be r14,r13,8005110 <_Thread_Change_priority+0x268>
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Head(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) the_chain;                                   
 8004fcc:	29 63 00 8c 	lw r3,(r11+140)                                
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
  before_node           = after_node->next;                           
 8004fd0:	28 65 00 00 	lw r5,(r3+0)                                   
  Chain_Node *the_node                                                
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
 8004fd4:	59 63 00 04 	sw (r11+4),r3                                  
  before_node           = after_node->next;                           
  after_node->next      = the_node;                                   
 8004fd8:	58 6b 00 00 	sw (r3+0),r11                                  
  the_node->next        = before_node;                                
 8004fdc:	59 65 00 00 	sw (r11+0),r5                                  
  before_node->previous = the_node;                                   
 8004fe0:	58 ab 00 04 	sw (r5+4),r11                                  
      _Chain_Prepend_unprotected( the_thread->ready, &the_thread->Object.Node );
    else                                                              
      _Chain_Append_unprotected( the_thread->ready, &the_thread->Object.Node );
  }                                                                   
                                                                      
  _ISR_Flash( level );                                                
 8004fe4:	d0 04 00 00 	wcsr IE,r4                                     
 8004fe8:	d0 02 00 00 	wcsr IE,r2                                     
RTEMS_INLINE_ROUTINE Priority_Control _Priority_bit_map_Get_highest( void )
{                                                                     
  Priority_bit_map_Control minor;                                     
  Priority_bit_map_Control major;                                     
                                                                      
  _Bitfield_Find_first_bit( _Priority_Major_bit_map, major );         
 8004fec:	2c 22 00 00 	lhu r2,(r1+0)                                  
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Calculate_heir( void )              
{                                                                     
  _Thread_Heir = (Thread_Control *)                                   
    _Thread_Ready_chain[ _Priority_bit_map_Get_highest() ].first;     
 8004ff0:	78 01 08 01 	mvhi r1,0x801                                  
 8004ff4:	38 21 37 b0 	ori r1,r1,0x37b0                               
 8004ff8:	28 26 00 00 	lw r6,(r1+0)                                   
 8004ffc:	20 42 ff ff 	andi r2,r2,0xffff                              
 8005000:	34 01 00 ff 	mvi r1,255                                     
 8005004:	54 41 00 07 	bgu r2,r1,8005020 <_Thread_Change_priority+0x178>
 8005008:	78 03 08 01 	mvhi r3,0x801                                  
 800500c:	38 63 20 68 	ori r3,r3,0x2068                               
 8005010:	b4 62 10 00 	add r2,r3,r2                                   
 8005014:	40 42 00 00 	lbu r2,(r2+0)                                  
 8005018:	34 42 00 08 	addi r2,r2,8                                   
 800501c:	e0 00 00 0d 	bi 8005050 <_Thread_Change_priority+0x1a8>     
 8005020:	00 42 00 01 	srui r2,r2,1                                   
 8005024:	78 03 08 01 	mvhi r3,0x801                                  
 8005028:	00 42 00 01 	srui r2,r2,1                                   
 800502c:	38 63 20 68 	ori r3,r3,0x2068                               
 8005030:	00 42 00 01 	srui r2,r2,1                                   
 8005034:	00 42 00 01 	srui r2,r2,1                                   
 8005038:	00 42 00 01 	srui r2,r2,1                                   
 800503c:	00 42 00 01 	srui r2,r2,1                                   
 8005040:	00 42 00 01 	srui r2,r2,1                                   
 8005044:	00 42 00 01 	srui r2,r2,1                                   
 8005048:	b4 62 10 00 	add r2,r3,r2                                   
 800504c:	40 42 00 00 	lbu r2,(r2+0)                                  
  _Bitfield_Find_first_bit( _Priority_Bit_map[major], minor );        
 8005050:	78 05 08 01 	mvhi r5,0x801                                  
 8005054:	38 a5 39 30 	ori r5,r5,0x3930                               
 8005058:	b4 42 10 00 	add r2,r2,r2                                   
 800505c:	b4 a2 28 00 	add r5,r5,r2                                   
 8005060:	2c a1 00 00 	lhu r1,(r5+0)                                  
 8005064:	34 05 00 ff 	mvi r5,255                                     
 8005068:	54 25 00 1f 	bgu r1,r5,80050e4 <_Thread_Change_priority+0x23c>
 800506c:	b4 61 08 00 	add r1,r3,r1                                   
 8005070:	40 23 00 00 	lbu r3,(r1+0)                                  
 8005074:	34 63 00 08 	addi r3,r3,8                                   
                                                                      
  return (_Priority_Bits_index( major ) << 4) +                       
 8005078:	b4 42 08 00 	add r1,r2,r2                                   
 800507c:	b4 21 08 00 	add r1,r1,r1                                   
 8005080:	b4 21 08 00 	add r1,r1,r1                                   
 8005084:	b4 61 08 00 	add r1,r3,r1                                   
 8005088:	b4 21 10 00 	add r2,r1,r1                                   
 800508c:	b4 41 08 00 	add r1,r2,r1                                   
 8005090:	b4 21 08 00 	add r1,r1,r1                                   
 8005094:	b4 21 08 00 	add r1,r1,r1                                   
 8005098:	b4 c1 08 00 	add r1,r6,r1                                   
 *  ready thread.                                                     
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Calculate_heir( void )              
{                                                                     
  _Thread_Heir = (Thread_Control *)                                   
 800509c:	78 02 08 01 	mvhi r2,0x801                                  
 80050a0:	38 42 39 e8 	ori r2,r2,0x39e8                               
 80050a4:	28 21 00 00 	lw r1,(r1+0)                                   
 *  is also the heir thread, and false otherwise.                     
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_Is_executing_also_the_heir( void )  
{                                                                     
  return ( _Thread_Executing == _Thread_Heir );                       
 80050a8:	28 43 00 0c 	lw r3,(r2+12)                                  
 *  ready thread.                                                     
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Calculate_heir( void )              
{                                                                     
  _Thread_Heir = (Thread_Control *)                                   
 80050ac:	58 41 00 10 	sw (r2+16),r1                                  
   *  We altered the set of thread priorities.  So let's figure out   
   *  who is the heir and if we need to switch to them.               
   */                                                                 
  _Thread_Calculate_heir();                                           
                                                                      
  if ( !_Thread_Is_executing_also_the_heir() &&                       
 80050b0:	44 23 00 05 	be r1,r3,80050c4 <_Thread_Change_priority+0x21c>
 80050b4:	40 61 00 74 	lbu r1,(r3+116)                                
 80050b8:	44 20 00 03 	be r1,r0,80050c4 <_Thread_Change_priority+0x21c>
       _Thread_Executing->is_preemptible )                            
    _Thread_Dispatch_necessary = true;                                
 80050bc:	34 01 00 01 	mvi r1,1                                       
 80050c0:	30 41 00 18 	sb (r2+24),r1                                  
  _ISR_Enable( level );                                               
 80050c4:	d0 04 00 00 	wcsr IE,r4                                     
}                                                                     
 80050c8:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80050cc:	2b 8b 00 14 	lw r11,(sp+20)                                 
 80050d0:	2b 8c 00 10 	lw r12,(sp+16)                                 
 80050d4:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 80050d8:	2b 8e 00 08 	lw r14,(sp+8)                                  
 80050dc:	37 9c 00 14 	addi sp,sp,20                                  
 80050e0:	c3 a0 00 00 	ret                                            
{                                                                     
  Priority_bit_map_Control minor;                                     
  Priority_bit_map_Control major;                                     
                                                                      
  _Bitfield_Find_first_bit( _Priority_Major_bit_map, major );         
  _Bitfield_Find_first_bit( _Priority_Bit_map[major], minor );        
 80050e4:	00 21 00 01 	srui r1,r1,1                                   
 80050e8:	00 21 00 01 	srui r1,r1,1                                   
 80050ec:	00 21 00 01 	srui r1,r1,1                                   
 80050f0:	00 21 00 01 	srui r1,r1,1                                   
 80050f4:	00 21 00 01 	srui r1,r1,1                                   
 80050f8:	00 21 00 01 	srui r1,r1,1                                   
 80050fc:	00 21 00 01 	srui r1,r1,1                                   
 8005100:	00 21 00 01 	srui r1,r1,1                                   
 8005104:	b4 61 08 00 	add r1,r3,r1                                   
 8005108:	40 23 00 00 	lbu r3,(r1+0)                                  
 800510c:	e3 ff ff db 	bi 8005078 <_Thread_Change_priority+0x1d0>     
                                                                      
    _Priority_bit_map_Add( &the_thread->Priority_map );               
    if ( prepend_it )                                                 
      _Chain_Prepend_unprotected( the_thread->ready, &the_thread->Object.Node );
    else                                                              
      _Chain_Append_unprotected( the_thread->ready, &the_thread->Object.Node );
 8005110:	29 63 00 8c 	lw r3,(r11+140)                                
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
  old_last_node       = the_chain->last;                              
 8005114:	28 65 00 08 	lw r5,(r3+8)                                   
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 8005118:	34 66 00 04 	addi r6,r3,4                                   
  Chain_Node    *the_node                                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
 800511c:	59 66 00 00 	sw (r11+0),r6                                  
  old_last_node       = the_chain->last;                              
  the_chain->last     = the_node;                                     
 8005120:	58 6b 00 08 	sw (r3+8),r11                                  
  old_last_node->next = the_node;                                     
 8005124:	58 ab 00 00 	sw (r5+0),r11                                  
  the_node->previous  = old_last_node;                                
 8005128:	59 65 00 04 	sw (r11+4),r5                                  
 800512c:	e3 ff ff ae 	bi 8004fe4 <_Thread_Change_priority+0x13c>     
                                                                      

08009884 <_Thread_Clear_state>: ) { ISR_Level level; States_Control current_state; _ISR_Disable( level );
 8009884:	90 00 18 00 	rcsr r3,IE                                     
 8009888:	34 05 ff fe 	mvi r5,-2                                      
 800988c:	a0 65 28 00 	and r5,r3,r5                                   
 8009890:	d0 05 00 00 	wcsr IE,r5                                     
    current_state = the_thread->current_state;                        
 8009894:	28 24 00 10 	lw r4,(r1+16)                                  
                                                                      
    if ( current_state & state ) {                                    
 8009898:	a0 44 30 00 	and r6,r2,r4                                   
 800989c:	44 c0 00 26 	be r6,r0,8009934 <_Thread_Clear_state+0xb0>    
RTEMS_INLINE_ROUTINE States_Control _States_Clear (                   
  States_Control states_to_clear,                                     
  States_Control current_state                                        
)                                                                     
{                                                                     
   return (current_state & ~states_to_clear);                         
 80098a0:	a4 40 10 00 	not r2,r2                                      
 80098a4:	a0 44 20 00 	and r4,r2,r4                                   
      current_state =                                                 
      the_thread->current_state = _States_Clear( state, current_state );
 80098a8:	58 24 00 10 	sw (r1+16),r4                                  
                                                                      
      if ( _States_Is_ready( current_state ) ) {                      
 80098ac:	5c 80 00 22 	bne r4,r0,8009934 <_Thread_Clear_state+0xb0>   
                                                                      
RTEMS_INLINE_ROUTINE void _Priority_bit_map_Add (                     
  Priority_bit_map_Information *the_priority_map                      
)                                                                     
{                                                                     
  *the_priority_map->minor |= the_priority_map->ready_minor;          
 80098b0:	28 26 00 90 	lw r6,(r1+144)                                 
 80098b4:	2c 27 00 96 	lhu r7,(r1+150)                                
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
 80098b8:	78 02 08 01 	mvhi r2,0x801                                  
                                                                      
RTEMS_INLINE_ROUTINE void _Priority_bit_map_Add (                     
  Priority_bit_map_Information *the_priority_map                      
)                                                                     
{                                                                     
  *the_priority_map->minor |= the_priority_map->ready_minor;          
 80098bc:	2c c8 00 00 	lhu r8,(r6+0)                                  
                                                                      
        _Priority_bit_map_Add( &the_thread->Priority_map );           
                                                                      
        _Chain_Append_unprotected(the_thread->ready, &the_thread->Object.Node);
 80098c0:	28 24 00 8c 	lw r4,(r1+140)                                 
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
 80098c4:	38 42 38 bc 	ori r2,r2,0x38bc                               
                                                                      
RTEMS_INLINE_ROUTINE void _Priority_bit_map_Add (                     
  Priority_bit_map_Information *the_priority_map                      
)                                                                     
{                                                                     
  *the_priority_map->minor |= the_priority_map->ready_minor;          
 80098c8:	b9 07 38 00 	or r7,r8,r7                                    
 80098cc:	0c c7 00 00 	sh (r6+0),r7                                   
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
 80098d0:	2c 48 00 00 	lhu r8,(r2+0)                                  
 80098d4:	2c 29 00 94 	lhu r9,(r1+148)                                
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
  old_last_node       = the_chain->last;                              
 80098d8:	28 86 00 08 	lw r6,(r4+8)                                   
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 80098dc:	34 87 00 04 	addi r7,r4,4                                   
 80098e0:	b9 28 40 00 	or r8,r9,r8                                    
 80098e4:	21 08 ff ff 	andi r8,r8,0xffff                              
 80098e8:	0c 48 00 00 	sh (r2+0),r8                                   
  Chain_Node    *the_node                                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
 80098ec:	58 27 00 00 	sw (r1+0),r7                                   
  old_last_node       = the_chain->last;                              
  the_chain->last     = the_node;                                     
 80098f0:	58 81 00 08 	sw (r4+8),r1                                   
  old_last_node->next = the_node;                                     
 80098f4:	58 c1 00 00 	sw (r6+0),r1                                   
  the_node->previous  = old_last_node;                                
 80098f8:	58 26 00 04 	sw (r1+4),r6                                   
                                                                      
        _ISR_Flash( level );                                          
 80098fc:	d0 03 00 00 	wcsr IE,r3                                     
 8009900:	d0 05 00 00 	wcsr IE,r5                                     
         *    a context switch.                                       
         *  Pseudo-ISR case:                                          
         *    Even if the thread isn't preemptible, if the new heir is
         *    a pseudo-ISR system task, we need to do a context switch.
         */                                                           
        if ( the_thread->current_priority < _Thread_Heir->current_priority ) {
 8009904:	78 02 08 01 	mvhi r2,0x801                                  
 8009908:	38 42 39 e8 	ori r2,r2,0x39e8                               
 800990c:	28 45 00 10 	lw r5,(r2+16)                                  
 8009910:	28 24 00 14 	lw r4,(r1+20)                                  
 8009914:	28 a5 00 14 	lw r5,(r5+20)                                  
 8009918:	50 85 00 07 	bgeu r4,r5,8009934 <_Thread_Clear_state+0xb0>  
          _Thread_Heir = the_thread;                                  
          if ( _Thread_Executing->is_preemptible ||                   
 800991c:	28 45 00 0c 	lw r5,(r2+12)                                  
         *  Pseudo-ISR case:                                          
         *    Even if the thread isn't preemptible, if the new heir is
         *    a pseudo-ISR system task, we need to do a context switch.
         */                                                           
        if ( the_thread->current_priority < _Thread_Heir->current_priority ) {
          _Thread_Heir = the_thread;                                  
 8009920:	58 41 00 10 	sw (r2+16),r1                                  
          if ( _Thread_Executing->is_preemptible ||                   
 8009924:	40 a1 00 74 	lbu r1,(r5+116)                                
 8009928:	44 20 00 05 	be r1,r0,800993c <_Thread_Clear_state+0xb8>    
               the_thread->current_priority == 0 )                    
            _Thread_Dispatch_necessary = true;                        
 800992c:	34 01 00 01 	mvi r1,1                                       
 8009930:	30 41 00 18 	sb (r2+24),r1                                  
        }                                                             
      }                                                               
  }                                                                   
  _ISR_Enable( level );                                               
 8009934:	d0 03 00 00 	wcsr IE,r3                                     
}                                                                     
 8009938:	c3 a0 00 00 	ret                                            
         *    Even if the thread isn't preemptible, if the new heir is
         *    a pseudo-ISR system task, we need to do a context switch.
         */                                                           
        if ( the_thread->current_priority < _Thread_Heir->current_priority ) {
          _Thread_Heir = the_thread;                                  
          if ( _Thread_Executing->is_preemptible ||                   
 800993c:	44 81 ff fc 	be r4,r1,800992c <_Thread_Clear_state+0xa8>    <== NEVER TAKEN
 8009940:	e3 ff ff fd 	bi 8009934 <_Thread_Clear_state+0xb0>          
                                                                      

0800c420 <_Thread_Delay_ended>: void _Thread_Delay_ended( Objects_Id id, void *ignored __attribute__((unused)) ) {
 800c420:	37 9c ff f8 	addi sp,sp,-8                                  
 800c424:	5b 9d 00 04 	sw (sp+4),ra                                   
  Thread_Control    *the_thread;                                      
  Objects_Locations  location;                                        
                                                                      
  the_thread = _Thread_Get( id, &location );                          
 800c428:	37 82 00 08 	addi r2,sp,8                                   
 800c42c:	f8 00 00 8a 	calli 800c654 <_Thread_Get>                    
  switch ( location ) {                                               
 800c430:	2b 82 00 08 	lw r2,(sp+8)                                   
 800c434:	5c 40 00 0a 	bne r2,r0,800c45c <_Thread_Delay_ended+0x3c>   <== NEVER TAKEN
#if defined(RTEMS_MULTIPROCESSING)                                    
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
      break;                                                          
    case OBJECTS_LOCAL:                                               
      _Thread_Clear_state(                                            
 800c438:	78 03 08 02 	mvhi r3,0x802                                  
 800c43c:	38 63 5f 38 	ori r3,r3,0x5f38                               
 800c440:	28 62 00 00 	lw r2,(r3+0)                                   
 800c444:	fb ff ff 57 	calli 800c1a0 <_Thread_Clear_state>            
 800c448:	78 01 08 02 	mvhi r1,0x802                                  
 800c44c:	38 21 89 9c 	ori r1,r1,0x899c                               
 800c450:	28 22 00 00 	lw r2,(r1+0)                                   
 800c454:	34 42 ff ff 	addi r2,r2,-1                                  
 800c458:	58 22 00 00 	sw (r1+0),r2                                   
          | STATES_INTERRUPTIBLE_BY_SIGNAL                            
      );                                                              
      _Thread_Unnest_dispatch();                                      
      break;                                                          
  }                                                                   
}                                                                     
 800c45c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800c460:	37 9c 00 08 	addi sp,sp,8                                   
 800c464:	c3 a0 00 00 	ret                                            
                                                                      

080052f0 <_Thread_Dispatch>: * dispatch thread * no dispatch thread */ void _Thread_Dispatch( void ) {
 80052f0:	37 9c ff bc 	addi sp,sp,-68                                 
 80052f4:	5b 8b 00 34 	sw (sp+52),r11                                 
 80052f8:	5b 8c 00 30 	sw (sp+48),r12                                 
 80052fc:	5b 8d 00 2c 	sw (sp+44),r13                                 
 8005300:	5b 8e 00 28 	sw (sp+40),r14                                 
 8005304:	5b 8f 00 24 	sw (sp+36),r15                                 
 8005308:	5b 90 00 20 	sw (sp+32),r16                                 
 800530c:	5b 91 00 1c 	sw (sp+28),r17                                 
 8005310:	5b 92 00 18 	sw (sp+24),r18                                 
 8005314:	5b 93 00 14 	sw (sp+20),r19                                 
 8005318:	5b 94 00 10 	sw (sp+16),r20                                 
 800531c:	5b 95 00 0c 	sw (sp+12),r21                                 
 8005320:	5b 96 00 08 	sw (sp+8),r22                                  
 8005324:	5b 9d 00 04 	sw (sp+4),ra                                   
  Thread_Control   *executing;                                        
  Thread_Control   *heir;                                             
  ISR_Level         level;                                            
                                                                      
  executing   = _Thread_Executing;                                    
 8005328:	78 01 08 01 	mvhi r1,0x801                                  
 800532c:	38 21 39 e8 	ori r1,r1,0x39e8                               
 8005330:	28 2c 00 0c 	lw r12,(r1+12)                                 
  _ISR_Disable( level );                                              
 8005334:	90 00 08 00 	rcsr r1,IE                                     
 8005338:	34 02 ff fe 	mvi r2,-2                                      
 800533c:	a0 22 10 00 	and r2,r1,r2                                   
 8005340:	d0 02 00 00 	wcsr IE,r2                                     
  while ( _Thread_Dispatch_necessary == true ) {                      
 8005344:	78 0e 08 01 	mvhi r14,0x801                                 
 8005348:	39 ce 39 e8 	ori r14,r14,0x39e8                             
 800534c:	41 c2 00 18 	lbu r2,(r14+24)                                
 8005350:	78 10 08 01 	mvhi r16,0x801                                 
  Thread_Control   *executing;                                        
  Thread_Control   *heir;                                             
  ISR_Level         level;                                            
                                                                      
  executing   = _Thread_Executing;                                    
  _ISR_Disable( level );                                              
 8005354:	b8 20 20 00 	mv r4,r1                                       
  while ( _Thread_Dispatch_necessary == true ) {                      
 8005358:	20 42 00 ff 	andi r2,r2,0xff                                
 800535c:	3a 10 38 1c 	ori r16,r16,0x381c                             
 8005360:	44 40 00 40 	be r2,r0,8005460 <_Thread_Dispatch+0x170>      
    heir = _Thread_Heir;                                              
 8005364:	29 cb 00 10 	lw r11,(r14+16)                                
    _Thread_Dispatch_disable_level = 1;                               
 8005368:	34 02 00 01 	mvi r2,1                                       
 800536c:	5a 02 00 00 	sw (r16+0),r2                                  
    _Thread_Dispatch_necessary = false;                               
 8005370:	31 c0 00 18 	sb (r14+24),r0                                 
    _Thread_Executing = heir;                                         
 8005374:	59 cb 00 0c 	sw (r14+12),r11                                
    /*                                                                
     *  When the heir and executing are the same, then we are being   
     *  requested to do the post switch dispatching.  This is normally
     *  done to dispatch signals.                                     
     */                                                               
    if ( heir == executing )                                          
 8005378:	45 8b 00 3a 	be r12,r11,8005460 <_Thread_Dispatch+0x170>    
 800537c:	78 0f 08 01 	mvhi r15,0x801                                 
 8005380:	78 14 08 01 	mvhi r20,0x801                                 
#if __RTEMS_ADA__                                                     
    executing->rtems_ada_self = rtems_ada_self;                       
    rtems_ada_self = heir->rtems_ada_self;                            
#endif                                                                
    if ( heir->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_RESET_TIMESLICE )
      heir->cpu_time_budget = _Thread_Ticks_per_timeslice;            
 8005384:	78 15 08 01 	mvhi r21,0x801                                 
 8005388:	37 92 00 40 	addi r18,sp,64                                 
 800538c:	39 ef 38 cc 	ori r15,r15,0x38cc                             
 8005390:	37 91 00 38 	addi r17,sp,56                                 
 8005394:	3a 94 38 a0 	ori r20,r20,0x38a0                             
     */                                                               
#if __RTEMS_ADA__                                                     
    executing->rtems_ada_self = rtems_ada_self;                       
    rtems_ada_self = heir->rtems_ada_self;                            
#endif                                                                
    if ( heir->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_RESET_TIMESLICE )
 8005398:	34 13 00 01 	mvi r19,1                                      
      heir->cpu_time_budget = _Thread_Ticks_per_timeslice;            
 800539c:	3a b5 37 b4 	ori r21,r21,0x37b4                             
#endif                                                                
#endif                                                                
                                                                      
    executing = _Thread_Executing;                                    
                                                                      
    _ISR_Disable( level );                                            
 80053a0:	34 16 ff fe 	mvi r22,-2                                     
  Thread_Control   *heir;                                             
  ISR_Level         level;                                            
                                                                      
  executing   = _Thread_Executing;                                    
  _ISR_Disable( level );                                              
  while ( _Thread_Dispatch_necessary == true ) {                      
 80053a4:	b9 c0 68 00 	mv r13,r14                                     
 80053a8:	e0 00 00 29 	bi 800544c <_Thread_Dispatch+0x15c>            
    rtems_ada_self = heir->rtems_ada_self;                            
#endif                                                                
    if ( heir->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_RESET_TIMESLICE )
      heir->cpu_time_budget = _Thread_Ticks_per_timeslice;            
                                                                      
    _ISR_Enable( level );                                             
 80053ac:	d0 01 00 00 	wcsr IE,r1                                     
                                                                      
    #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                        
      {                                                               
        Timestamp_Control uptime, ran;                                
        _TOD_Get_uptime( &uptime );                                   
 80053b0:	ba 40 08 00 	mv r1,r18                                      
 80053b4:	f8 00 0f e0 	calli 8009334 <_TOD_Get_uptime>                
        _Timestamp_Subtract(                                          
 80053b8:	ba 20 18 00 	mv r3,r17                                      
 80053bc:	b9 e0 08 00 	mv r1,r15                                      
 80053c0:	ba 40 10 00 	mv r2,r18                                      
 80053c4:	f8 00 04 3a 	calli 80064ac <_Timespec_Subtract>             
          &_Thread_Time_of_last_context_switch,                       
          &uptime,                                                    
          &ran                                                        
        );                                                            
        _Timestamp_Add_to( &executing->cpu_time_used, &ran );         
 80053c8:	ba 20 10 00 	mv r2,r17                                      
 80053cc:	35 81 00 84 	addi r1,r12,132                                
 80053d0:	f8 00 04 20 	calli 8006450 <_Timespec_Add_to>               
        _Thread_Time_of_last_context_switch = uptime;                 
 80053d4:	2b 83 00 40 	lw r3,(sp+64)                                  
    #endif                                                            
                                                                      
    /*                                                                
     * Switch libc's task specific data.                              
     */                                                               
    if ( _Thread_libc_reent ) {                                       
 80053d8:	2a 84 00 00 	lw r4,(r20+0)                                  
      executing->libc_reent = *_Thread_libc_reent;                    
      *_Thread_libc_reent = heir->libc_reent;                         
    }                                                                 
                                                                      
    _User_extensions_Thread_switch( executing, heir );                
 80053dc:	b9 80 08 00 	mv r1,r12                                      
          &_Thread_Time_of_last_context_switch,                       
          &uptime,                                                    
          &ran                                                        
        );                                                            
        _Timestamp_Add_to( &executing->cpu_time_used, &ran );         
        _Thread_Time_of_last_context_switch = uptime;                 
 80053e0:	59 e3 00 00 	sw (r15+0),r3                                  
 80053e4:	2b 83 00 44 	lw r3,(sp+68)                                  
    if ( _Thread_libc_reent ) {                                       
      executing->libc_reent = *_Thread_libc_reent;                    
      *_Thread_libc_reent = heir->libc_reent;                         
    }                                                                 
                                                                      
    _User_extensions_Thread_switch( executing, heir );                
 80053e8:	b9 60 10 00 	mv r2,r11                                      
          &_Thread_Time_of_last_context_switch,                       
          &uptime,                                                    
          &ran                                                        
        );                                                            
        _Timestamp_Add_to( &executing->cpu_time_used, &ran );         
        _Thread_Time_of_last_context_switch = uptime;                 
 80053ec:	59 e3 00 04 	sw (r15+4),r3                                  
    #endif                                                            
                                                                      
    /*                                                                
     * Switch libc's task specific data.                              
     */                                                               
    if ( _Thread_libc_reent ) {                                       
 80053f0:	44 80 00 05 	be r4,r0,8005404 <_Thread_Dispatch+0x114>      <== NEVER TAKEN
      executing->libc_reent = *_Thread_libc_reent;                    
 80053f4:	28 83 00 00 	lw r3,(r4+0)                                   
 80053f8:	59 83 01 20 	sw (r12+288),r3                                
      *_Thread_libc_reent = heir->libc_reent;                         
 80053fc:	29 63 01 20 	lw r3,(r11+288)                                
 8005400:	58 83 00 00 	sw (r4+0),r3                                   
    }                                                                 
                                                                      
    _User_extensions_Thread_switch( executing, heir );                
 8005404:	f8 00 05 31 	calli 80068c8 <_User_extensions_Thread_switch> 
    if ( executing->fp_context != NULL )                              
      _Context_Save_fp( &executing->fp_context );                     
#endif                                                                
#endif                                                                
                                                                      
    _Context_Switch( &executing->Registers, &heir->Registers );       
 8005408:	35 81 00 cc 	addi r1,r12,204                                
 800540c:	35 62 00 cc 	addi r2,r11,204                                
 8005410:	f8 00 06 64 	calli 8006da0 <_CPU_Context_switch>            
    if ( executing->fp_context != NULL )                              
      _Context_Restore_fp( &executing->fp_context );                  
#endif                                                                
#endif                                                                
                                                                      
    executing = _Thread_Executing;                                    
 8005414:	29 cc 00 0c 	lw r12,(r14+12)                                
                                                                      
    _ISR_Disable( level );                                            
 8005418:	90 00 20 00 	rcsr r4,IE                                     
 800541c:	a0 96 08 00 	and r1,r4,r22                                  
 8005420:	d0 01 00 00 	wcsr IE,r1                                     
  Thread_Control   *heir;                                             
  ISR_Level         level;                                            
                                                                      
  executing   = _Thread_Executing;                                    
  _ISR_Disable( level );                                              
  while ( _Thread_Dispatch_necessary == true ) {                      
 8005424:	41 a2 00 18 	lbu r2,(r13+24)                                
 8005428:	b9 a0 70 00 	mv r14,r13                                     
#endif                                                                
#endif                                                                
                                                                      
    executing = _Thread_Executing;                                    
                                                                      
    _ISR_Disable( level );                                            
 800542c:	b8 80 08 00 	mv r1,r4                                       
  Thread_Control   *heir;                                             
  ISR_Level         level;                                            
                                                                      
  executing   = _Thread_Executing;                                    
  _ISR_Disable( level );                                              
  while ( _Thread_Dispatch_necessary == true ) {                      
 8005430:	20 42 00 ff 	andi r2,r2,0xff                                
 8005434:	44 40 00 0b 	be r2,r0,8005460 <_Thread_Dispatch+0x170>      <== ALWAYS TAKEN
    heir = _Thread_Heir;                                              
 8005438:	29 ab 00 10 	lw r11,(r13+16)                                <== NOT EXECUTED
    _Thread_Dispatch_disable_level = 1;                               
 800543c:	5a 13 00 00 	sw (r16+0),r19                                 <== NOT EXECUTED
    _Thread_Dispatch_necessary = false;                               
 8005440:	31 a0 00 18 	sb (r13+24),r0                                 <== NOT EXECUTED
    _Thread_Executing = heir;                                         
 8005444:	59 ab 00 0c 	sw (r13+12),r11                                <== NOT EXECUTED
    /*                                                                
     *  When the heir and executing are the same, then we are being   
     *  requested to do the post switch dispatching.  This is normally
     *  done to dispatch signals.                                     
     */                                                               
    if ( heir == executing )                                          
 8005448:	45 6c 00 06 	be r11,r12,8005460 <_Thread_Dispatch+0x170>    <== NOT EXECUTED
     */                                                               
#if __RTEMS_ADA__                                                     
    executing->rtems_ada_self = rtems_ada_self;                       
    rtems_ada_self = heir->rtems_ada_self;                            
#endif                                                                
    if ( heir->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_RESET_TIMESLICE )
 800544c:	29 62 00 7c 	lw r2,(r11+124)                                
 8005450:	5c 53 ff d7 	bne r2,r19,80053ac <_Thread_Dispatch+0xbc>     
      heir->cpu_time_budget = _Thread_Ticks_per_timeslice;            
 8005454:	2a a2 00 00 	lw r2,(r21+0)                                  
 8005458:	59 62 00 78 	sw (r11+120),r2                                
 800545c:	e3 ff ff d4 	bi 80053ac <_Thread_Dispatch+0xbc>             
                                                                      
    _ISR_Disable( level );                                            
  }                                                                   
                                                                      
post_switch:                                                          
  _Thread_Dispatch_disable_level = 0;                                 
 8005460:	5a 00 00 00 	sw (r16+0),r0                                  
                                                                      
  _ISR_Enable( level );                                               
 8005464:	d0 04 00 00 	wcsr IE,r4                                     
                                                                      
  _API_extensions_Run_postswitch();                                   
 8005468:	fb ff f8 93 	calli 80036b4 <_API_extensions_Run_postswitch> 
}                                                                     
 800546c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8005470:	2b 8b 00 34 	lw r11,(sp+52)                                 
 8005474:	2b 8c 00 30 	lw r12,(sp+48)                                 
 8005478:	2b 8d 00 2c 	lw r13,(sp+44)                                 
 800547c:	2b 8e 00 28 	lw r14,(sp+40)                                 
 8005480:	2b 8f 00 24 	lw r15,(sp+36)                                 
 8005484:	2b 90 00 20 	lw r16,(sp+32)                                 
 8005488:	2b 91 00 1c 	lw r17,(sp+28)                                 
 800548c:	2b 92 00 18 	lw r18,(sp+24)                                 
 8005490:	2b 93 00 14 	lw r19,(sp+20)                                 
 8005494:	2b 94 00 10 	lw r20,(sp+16)                                 
 8005498:	2b 95 00 0c 	lw r21,(sp+12)                                 
 800549c:	2b 96 00 08 	lw r22,(sp+8)                                  
 80054a0:	37 9c 00 44 	addi sp,sp,68                                  
 80054a4:	c3 a0 00 00 	ret                                            
                                                                      

080054dc <_Thread_Get>: */ Thread_Control *_Thread_Get ( Objects_Id id, Objects_Locations *location ) {
 80054dc:	37 9c ff f0 	addi sp,sp,-16                                 
 80054e0:	5b 8b 00 10 	sw (sp+16),r11                                 
 80054e4:	5b 8c 00 0c 	sw (sp+12),r12                                 
 80054e8:	5b 8d 00 08 	sw (sp+8),r13                                  
 80054ec:	5b 9d 00 04 	sw (sp+4),ra                                   
 80054f0:	b8 20 58 00 	mv r11,r1                                      
 80054f4:	b8 40 60 00 	mv r12,r2                                      
  uint32_t             the_class;                                     
  Objects_Information **api_information;                              
  Objects_Information *information;                                   
  Thread_Control      *tp = (Thread_Control *) 0;                     
                                                                      
  if ( _Objects_Are_ids_equal( id, OBJECTS_ID_OF_SELF ) ) {           
 80054f8:	44 20 00 28 	be r1,r0,8005598 <_Thread_Get+0xbc>            
 */                                                                   
RTEMS_INLINE_ROUTINE Objects_APIs _Objects_Get_API(                   
  Objects_Id id                                                       
)                                                                     
{                                                                     
  return (Objects_APIs) ((id >> OBJECTS_API_START_BIT) & OBJECTS_API_VALID_BITS);
 80054fc:	34 02 00 18 	mvi r2,24                                      
 8005500:	f8 00 2e 21 	calli 8010d84 <__lshrsi3>                      
 8005504:	20 2d 00 07 	andi r13,r1,0x7                                
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Objects_Is_api_valid(                      
  uint32_t   the_api                                                  
)                                                                     
{                                                                     
  if ( !the_api || the_api > OBJECTS_APIS_LAST )                      
 8005508:	35 a1 ff ff 	addi r1,r13,-1                                 
 800550c:	34 02 00 02 	mvi r2,2                                       
 8005510:	50 41 00 0a 	bgeu r2,r1,8005538 <_Thread_Get+0x5c>          
    goto done;                                                        
  }                                                                   
                                                                      
  the_api = _Objects_Get_API( id );                                   
  if ( !_Objects_Is_api_valid( the_api ) ) {                          
    *location = OBJECTS_ERROR;                                        
 8005514:	34 01 00 01 	mvi r1,1                                       
 8005518:	59 81 00 00 	sw (r12+0),r1                                  
{                                                                     
  uint32_t             the_api;                                       
  uint32_t             the_class;                                     
  Objects_Information **api_information;                              
  Objects_Information *information;                                   
  Thread_Control      *tp = (Thread_Control *) 0;                     
 800551c:	34 01 00 00 	mvi r1,0                                       
                                                                      
  tp = (Thread_Control *) _Objects_Get( information, id, location );  
                                                                      
done:                                                                 
  return tp;                                                          
}                                                                     
 8005520:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8005524:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8005528:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 800552c:	2b 8d 00 08 	lw r13,(sp+8)                                  
 8005530:	37 9c 00 10 	addi sp,sp,16                                  
 8005534:	c3 a0 00 00 	ret                                            
 */                                                                   
RTEMS_INLINE_ROUTINE uint32_t _Objects_Get_class(                     
  Objects_Id id                                                       
)                                                                     
{                                                                     
  return (uint32_t)                                                   
 8005538:	b9 60 08 00 	mv r1,r11                                      
 800553c:	34 02 00 1b 	mvi r2,27                                      
 8005540:	f8 00 2e 11 	calli 8010d84 <__lshrsi3>                      
 8005544:	b8 20 20 00 	mv r4,r1                                       
    *location = OBJECTS_ERROR;                                        
    goto done;                                                        
  }                                                                   
                                                                      
  the_class = _Objects_Get_class( id );                               
  if ( the_class != 1 ) {       /* threads are always first class :) */
 8005548:	34 01 00 01 	mvi r1,1                                       
 800554c:	5c 81 00 22 	bne r4,r1,80055d4 <_Thread_Get+0xf8>           
    *location = OBJECTS_ERROR;                                        
    goto done;                                                        
  }                                                                   
                                                                      
  api_information = _Objects_Information_table[ the_api ];            
 8005550:	78 03 08 01 	mvhi r3,0x801                                  
 8005554:	b5 ad 10 00 	add r2,r13,r13                                 
 8005558:	38 63 37 b8 	ori r3,r3,0x37b8                               
 800555c:	b4 42 10 00 	add r2,r2,r2                                   
 8005560:	b4 62 10 00 	add r2,r3,r2                                   
 8005564:	28 41 00 00 	lw r1,(r2+0)                                   
  /*                                                                  
   *  There is no way for this to happen if POSIX is enabled.         
   */                                                                 
  #if !defined(RTEMS_POSIX_API)                                       
    if ( !api_information ) {                                         
 8005568:	44 20 00 23 	be r1,r0,80055f4 <_Thread_Get+0x118>           <== NEVER TAKEN
      *location = OBJECTS_ERROR;                                      
      goto done;                                                      
    }                                                                 
  #endif                                                              
                                                                      
  information = api_information[ the_class ];                         
 800556c:	28 21 00 04 	lw r1,(r1+4)                                   
  if ( !information ) {                                               
 8005570:	44 20 00 21 	be r1,r0,80055f4 <_Thread_Get+0x118>           
    *location = OBJECTS_ERROR;                                        
    goto done;                                                        
  }                                                                   
                                                                      
  tp = (Thread_Control *) _Objects_Get( information, id, location );  
 8005574:	b9 60 10 00 	mv r2,r11                                      
 8005578:	b9 80 18 00 	mv r3,r12                                      
 800557c:	fb ff fd 3a 	calli 8004a64 <_Objects_Get>                   
                                                                      
done:                                                                 
  return tp;                                                          
}                                                                     
 8005580:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8005584:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8005588:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 800558c:	2b 8d 00 08 	lw r13,(sp+8)                                  
 8005590:	37 9c 00 10 	addi sp,sp,16                                  
 8005594:	c3 a0 00 00 	ret                                            
	rtems_fatal_error_occurred( 99 );                                    
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  _Thread_Dispatch_disable_level += 1;                                
 8005598:	78 01 08 01 	mvhi r1,0x801                                  
 800559c:	38 21 38 1c 	ori r1,r1,0x381c                               
 80055a0:	28 22 00 00 	lw r2,(r1+0)                                   
 80055a4:	34 42 00 01 	addi r2,r2,1                                   
 80055a8:	58 22 00 00 	sw (r1+0),r2                                   
  Thread_Control      *tp = (Thread_Control *) 0;                     
                                                                      
  if ( _Objects_Are_ids_equal( id, OBJECTS_ID_OF_SELF ) ) {           
    _Thread_Disable_dispatch();                                       
    *location = OBJECTS_LOCAL;                                        
    tp = _Thread_Executing;                                           
 80055ac:	78 01 08 01 	mvhi r1,0x801                                  
 80055b0:	38 21 39 e8 	ori r1,r1,0x39e8                               
 80055b4:	28 21 00 0c 	lw r1,(r1+12)                                  
  Objects_Information *information;                                   
  Thread_Control      *tp = (Thread_Control *) 0;                     
                                                                      
  if ( _Objects_Are_ids_equal( id, OBJECTS_ID_OF_SELF ) ) {           
    _Thread_Disable_dispatch();                                       
    *location = OBJECTS_LOCAL;                                        
 80055b8:	59 80 00 00 	sw (r12+0),r0                                  
                                                                      
  tp = (Thread_Control *) _Objects_Get( information, id, location );  
                                                                      
done:                                                                 
  return tp;                                                          
}                                                                     
 80055bc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80055c0:	2b 8b 00 10 	lw r11,(sp+16)                                 
 80055c4:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 80055c8:	2b 8d 00 08 	lw r13,(sp+8)                                  
 80055cc:	37 9c 00 10 	addi sp,sp,16                                  
 80055d0:	c3 a0 00 00 	ret                                            
    goto done;                                                        
  }                                                                   
                                                                      
  the_class = _Objects_Get_class( id );                               
  if ( the_class != 1 ) {       /* threads are always first class :) */
    *location = OBJECTS_ERROR;                                        
 80055d4:	59 81 00 00 	sw (r12+0),r1                                  
{                                                                     
  uint32_t             the_api;                                       
  uint32_t             the_class;                                     
  Objects_Information **api_information;                              
  Objects_Information *information;                                   
  Thread_Control      *tp = (Thread_Control *) 0;                     
 80055d8:	34 01 00 00 	mvi r1,0                                       
                                                                      
  tp = (Thread_Control *) _Objects_Get( information, id, location );  
                                                                      
done:                                                                 
  return tp;                                                          
}                                                                     
 80055dc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80055e0:	2b 8b 00 10 	lw r11,(sp+16)                                 
 80055e4:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 80055e8:	2b 8d 00 08 	lw r13,(sp+8)                                  
 80055ec:	37 9c 00 10 	addi sp,sp,16                                  
 80055f0:	c3 a0 00 00 	ret                                            
    }                                                                 
  #endif                                                              
                                                                      
  information = api_information[ the_class ];                         
  if ( !information ) {                                               
    *location = OBJECTS_ERROR;                                        
 80055f4:	59 84 00 00 	sw (r12+0),r4                                  
    goto done;                                                        
 80055f8:	e3 ff ff e2 	bi 8005580 <_Thread_Get+0xa4>                  
                                                                      

0800b7c4 <_Thread_Handler>: * * Output parameters: NONE */ void _Thread_Handler( void ) {
 800b7c4:	37 9c ff f4 	addi sp,sp,-12                                 
 800b7c8:	5b 8b 00 0c 	sw (sp+12),r11                                 
 800b7cc:	5b 8c 00 08 	sw (sp+8),r12                                  
 800b7d0:	5b 9d 00 04 	sw (sp+4),ra                                   
  #if defined(EXECUTE_GLOBAL_CONSTRUCTORS)                            
    static char doneConstructors;                                     
    char doneCons;                                                    
  #endif                                                              
                                                                      
  executing = _Thread_Executing;                                      
 800b7d4:	78 01 08 01 	mvhi r1,0x801                                  
 800b7d8:	38 21 39 e8 	ori r1,r1,0x39e8                               
 800b7dc:	28 2b 00 0c 	lw r11,(r1+12)                                 
  /*                                                                  
   * have to put level into a register for those cpu's that use       
   * inline asm here                                                  
   */                                                                 
                                                                      
  level = executing->Start.isr_level;                                 
 800b7e0:	29 61 00 b8 	lw r1,(r11+184)                                
  _ISR_Set_level(level);                                              
 800b7e4:	64 21 00 00 	cmpei r1,r1,0                                  
 800b7e8:	d0 01 00 00 	wcsr IE,r1                                     
                                                                      
  #if defined(EXECUTE_GLOBAL_CONSTRUCTORS)                            
    doneCons = doneConstructors;                                      
 800b7ec:	78 02 08 01 	mvhi r2,0x801                                  
 800b7f0:	38 42 36 30 	ori r2,r2,0x3630                               
 800b7f4:	40 4c 00 00 	lbu r12,(r2+0)                                 
    doneConstructors = 1;                                             
 800b7f8:	34 03 00 01 	mvi r3,1                                       
  /*                                                                  
   * Take care that 'begin' extensions get to complete before         
   * 'switch' extensions can run.  This means must keep dispatch      
   * disabled until all 'begin' extensions complete.                  
   */                                                                 
  _User_extensions_Thread_begin( executing );                         
 800b7fc:	b9 60 08 00 	mv r1,r11                                      
  level = executing->Start.isr_level;                                 
  _ISR_Set_level(level);                                              
                                                                      
  #if defined(EXECUTE_GLOBAL_CONSTRUCTORS)                            
    doneCons = doneConstructors;                                      
    doneConstructors = 1;                                             
 800b800:	30 43 00 00 	sb (r2+0),r3                                   
  /*                                                                  
   * Take care that 'begin' extensions get to complete before         
   * 'switch' extensions can run.  This means must keep dispatch      
   * disabled until all 'begin' extensions complete.                  
   */                                                                 
  _User_extensions_Thread_begin( executing );                         
 800b804:	fb ff eb 85 	calli 8006618 <_User_extensions_Thread_begin>  
                                                                      
  /*                                                                  
   *  At this point, the dispatch disable level BETTER be 1.          
   */                                                                 
  _Thread_Enable_dispatch();                                          
 800b808:	fb ff e7 28 	calli 80054a8 <_Thread_Enable_dispatch>        
    /*                                                                
     *  _init could be a weak symbol and we SHOULD test it but it isn't
     *  in any configuration I know of and it generates a warning on every
     *  RTEMS target configuration.  --joel (12 May 2007)             
     */                                                               
    if (!doneCons) /* && (volatile void *)_init) */ {                 
 800b80c:	45 80 00 09 	be r12,r0,800b830 <_Thread_Handler+0x6c>       
      INIT_NAME ();                                                   
    }                                                                 
  #endif                                                              
                                                                      
  if ( executing->Start.prototype == THREAD_START_NUMERIC ) {         
 800b810:	29 61 00 a0 	lw r1,(r11+160)                                
 800b814:	44 20 00 0a 	be r1,r0,800b83c <_Thread_Handler+0x78>        <== ALWAYS TAKEN
   *  was placed in return_argument.  This assumed that if it returned
   *  anything (which is not supporting in all APIs), then it would be
   *  able to fit in a (void *).                                      
   */                                                                 
                                                                      
  _User_extensions_Thread_exitted( executing );                       
 800b818:	b9 60 08 00 	mv r1,r11                                      
 800b81c:	fb ff eb 97 	calli 8006678 <_User_extensions_Thread_exitted>
                                                                      
  _Internal_error_Occurred(                                           
 800b820:	34 01 00 00 	mvi r1,0                                       
 800b824:	34 02 00 01 	mvi r2,1                                       
 800b828:	34 03 00 05 	mvi r3,5                                       
 800b82c:	fb ff e2 de 	calli 80043a4 <_Internal_error_Occurred>       
     *  _init could be a weak symbol and we SHOULD test it but it isn't
     *  in any configuration I know of and it generates a warning on every
     *  RTEMS target configuration.  --joel (12 May 2007)             
     */                                                               
    if (!doneCons) /* && (volatile void *)_init) */ {                 
      INIT_NAME ();                                                   
 800b830:	fb ff d1 f4 	calli 8000000 <RamBase>                        
    }                                                                 
  #endif                                                              
                                                                      
  if ( executing->Start.prototype == THREAD_START_NUMERIC ) {         
 800b834:	29 61 00 a0 	lw r1,(r11+160)                                
 800b838:	5c 20 ff f8 	bne r1,r0,800b818 <_Thread_Handler+0x54>       <== NEVER TAKEN
    executing->Wait.return_argument =                                 
      (*(Thread_Entry_numeric) executing->Start.entry_point)(         
 800b83c:	29 62 00 9c 	lw r2,(r11+156)                                
 800b840:	29 61 00 a8 	lw r1,(r11+168)                                
 800b844:	d8 40 00 00 	call r2                                        
      INIT_NAME ();                                                   
    }                                                                 
  #endif                                                              
                                                                      
  if ( executing->Start.prototype == THREAD_START_NUMERIC ) {         
    executing->Wait.return_argument =                                 
 800b848:	59 61 00 28 	sw (r11+40),r1                                 
 800b84c:	e3 ff ff f3 	bi 800b818 <_Thread_Handler+0x54>              
                                                                      

080055fc <_Thread_Initialize>: Thread_CPU_budget_algorithms budget_algorithm, Thread_CPU_budget_algorithm_callout budget_callout, uint32_t isr_level, Objects_Name name ) {
 80055fc:	37 9c ff e0 	addi sp,sp,-32                                 
 8005600:	5b 8b 00 20 	sw (sp+32),r11                                 
 8005604:	5b 8c 00 1c 	sw (sp+28),r12                                 
 8005608:	5b 8d 00 18 	sw (sp+24),r13                                 
 800560c:	5b 8e 00 14 	sw (sp+20),r14                                 
 8005610:	5b 8f 00 10 	sw (sp+16),r15                                 
 8005614:	5b 90 00 0c 	sw (sp+12),r16                                 
 8005618:	5b 91 00 08 	sw (sp+8),r17                                  
 800561c:	5b 9d 00 04 	sw (sp+4),ra                                   
                                                                      
  /*                                                                  
   *  Zero out all the allocated memory fields                        
   */                                                                 
  for ( i=0 ; i <= THREAD_API_LAST ; i++ )                            
    the_thread->API_Extensions[i] = NULL;                             
 8005620:	58 40 01 24 	sw (r2+292),r0                                 
 8005624:	58 40 01 28 	sw (r2+296),r0                                 
                                                                      
  extensions_area = NULL;                                             
  the_thread->libc_reent = NULL;                                      
 8005628:	58 40 01 20 	sw (r2+288),r0                                 
  Thread_CPU_budget_algorithms          budget_algorithm,             
  Thread_CPU_budget_algorithm_callout   budget_callout,               
  uint32_t                              isr_level,                    
  Objects_Name                          name                          
)                                                                     
{                                                                     
 800562c:	b8 40 58 00 	mv r11,r2                                      
 8005630:	b8 20 78 00 	mv r15,r1                                      
                                                                      
  /*                                                                  
   *  Allocate and Initialize the stack for this thread.              
   */                                                                 
  #if !defined(RTEMS_SCORE_THREAD_ENABLE_USER_PROVIDED_STACK_VIA_API) 
    actual_stack_size = _Thread_Stack_Allocate( the_thread, stack_size );
 8005634:	b8 40 08 00 	mv r1,r2                                       
 8005638:	b8 80 10 00 	mv r2,r4                                       
  Thread_CPU_budget_algorithms          budget_algorithm,             
  Thread_CPU_budget_algorithm_callout   budget_callout,               
  uint32_t                              isr_level,                    
  Objects_Name                          name                          
)                                                                     
{                                                                     
 800563c:	b8 80 60 00 	mv r12,r4                                      
 8005640:	b8 c0 68 00 	mv r13,r6                                      
 8005644:	b9 00 88 00 	mv r17,r8                                      
 8005648:	20 f0 00 ff 	andi r16,r7,0xff                               
                                                                      
  /*                                                                  
   *  Allocate and Initialize the stack for this thread.              
   */                                                                 
  #if !defined(RTEMS_SCORE_THREAD_ENABLE_USER_PROVIDED_STACK_VIA_API) 
    actual_stack_size = _Thread_Stack_Allocate( the_thread, stack_size );
 800564c:	f8 00 02 eb 	calli 80061f8 <_Thread_Stack_Allocate>         
    if ( !actual_stack_size || actual_stack_size < stack_size )       
 8005650:	f5 81 60 00 	cmpgu r12,r12,r1                               
 8005654:	64 22 00 00 	cmpei r2,r1,0                                  
                                                                      
  /*                                                                  
   *  Allocate and Initialize the stack for this thread.              
   */                                                                 
  #if !defined(RTEMS_SCORE_THREAD_ENABLE_USER_PROVIDED_STACK_VIA_API) 
    actual_stack_size = _Thread_Stack_Allocate( the_thread, stack_size );
 8005658:	b8 20 18 00 	mv r3,r1                                       
    if ( !actual_stack_size || actual_stack_size < stack_size )       
 800565c:	b9 82 60 00 	or r12,r12,r2                                  
      return false;                     /* stack allocation failed */ 
 8005660:	34 05 00 00 	mvi r5,0                                       
  /*                                                                  
   *  Allocate and Initialize the stack for this thread.              
   */                                                                 
  #if !defined(RTEMS_SCORE_THREAD_ENABLE_USER_PROVIDED_STACK_VIA_API) 
    actual_stack_size = _Thread_Stack_Allocate( the_thread, stack_size );
    if ( !actual_stack_size || actual_stack_size < stack_size )       
 8005664:	5d 80 00 3a 	bne r12,r0,800574c <_Thread_Initialize+0x150>  
  #endif                                                              
                                                                      
  /*                                                                  
   *  Allocate the extensions area for this thread                    
   */                                                                 
  if ( _Thread_Maximum_extensions ) {                                 
 8005668:	78 0e 08 01 	mvhi r14,0x801                                 
  Stack_Control *the_stack,                                           
  void          *starting_address,                                    
  size_t         size                                                 
)                                                                     
{                                                                     
  the_stack->area = starting_address;                                 
 800566c:	29 61 00 c8 	lw r1,(r11+200)                                
 8005670:	39 ce 38 ac 	ori r14,r14,0x38ac                             
 8005674:	29 c2 00 00 	lw r2,(r14+0)                                  
 8005678:	59 61 00 c4 	sw (r11+196),r1                                
  the_stack->size = size;                                             
 800567c:	59 63 00 c0 	sw (r11+192),r3                                
  Watchdog_Service_routine_entry  routine,                            
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
 8005680:	59 60 00 50 	sw (r11+80),r0                                 
  the_watchdog->routine   = routine;                                  
 8005684:	59 60 00 64 	sw (r11+100),r0                                
  the_watchdog->id        = id;                                       
 8005688:	59 60 00 68 	sw (r11+104),r0                                
  the_watchdog->user_data = user_data;                                
 800568c:	59 60 00 6c 	sw (r11+108),r0                                
 8005690:	5c 4c 00 3a 	bne r2,r12,8005778 <_Thread_Initialize+0x17c>  
      (_Thread_Maximum_extensions + 1) * sizeof( void * )             
    );                                                                
    if ( !extensions_area )                                           
      goto failed;                                                    
  }                                                                   
  the_thread->extensions = (void **) extensions_area;                 
 8005694:	59 60 01 2c 	sw (r11+300),r0                                
   *  Zero out all the allocated memory fields                        
   */                                                                 
  for ( i=0 ; i <= THREAD_API_LAST ; i++ )                            
    the_thread->API_Extensions[i] = NULL;                             
                                                                      
  extensions_area = NULL;                                             
 8005698:	34 0c 00 00 	mvi r12,0                                      
   *  General initialization                                          
   */                                                                 
                                                                      
  the_thread->Start.is_preemptible   = is_preemptible;                
  the_thread->Start.budget_algorithm = budget_algorithm;              
  the_thread->Start.budget_callout   = budget_callout;                
 800569c:	2b 83 00 24 	lw r3,(sp+36)                                  
  the_thread->current_state           = STATES_DORMANT;               
  the_thread->Wait.queue              = NULL;                         
  the_thread->resource_count          = 0;                            
  the_thread->real_priority           = priority;                     
  the_thread->Start.initial_priority  = priority;                     
  _Thread_Set_priority( the_thread, priority );                       
 80056a0:	b9 60 08 00 	mv r1,r11                                      
 80056a4:	b9 a0 10 00 	mv r2,r13                                      
   *  General initialization                                          
   */                                                                 
                                                                      
  the_thread->Start.is_preemptible   = is_preemptible;                
  the_thread->Start.budget_algorithm = budget_algorithm;              
  the_thread->Start.budget_callout   = budget_callout;                
 80056a8:	59 63 00 b4 	sw (r11+180),r3                                
      case THREAD_CPU_BUDGET_ALGORITHM_CALLOUT:                       
	break;                                                               
    #endif                                                            
  }                                                                   
                                                                      
  the_thread->Start.isr_level         = isr_level;                    
 80056ac:	2b 83 00 28 	lw r3,(sp+40)                                  
                                                                      
  /*                                                                  
   *  General initialization                                          
   */                                                                 
                                                                      
  the_thread->Start.is_preemptible   = is_preemptible;                
 80056b0:	31 70 00 ac 	sb (r11+172),r16                               
  the_thread->Start.budget_algorithm = budget_algorithm;              
 80056b4:	59 71 00 b0 	sw (r11+176),r17                               
      case THREAD_CPU_BUDGET_ALGORITHM_CALLOUT:                       
	break;                                                               
    #endif                                                            
  }                                                                   
                                                                      
  the_thread->Start.isr_level         = isr_level;                    
 80056b8:	59 63 00 b8 	sw (r11+184),r3                                
                                                                      
  the_thread->current_state           = STATES_DORMANT;               
 80056bc:	34 03 00 01 	mvi r3,1                                       
 80056c0:	59 63 00 10 	sw (r11+16),r3                                 
  the_thread->Wait.queue              = NULL;                         
 80056c4:	59 60 00 44 	sw (r11+68),r0                                 
  the_thread->resource_count          = 0;                            
 80056c8:	59 60 00 1c 	sw (r11+28),r0                                 
  the_thread->real_priority           = priority;                     
 80056cc:	59 6d 00 18 	sw (r11+24),r13                                
  the_thread->Start.initial_priority  = priority;                     
 80056d0:	59 6d 00 bc 	sw (r11+188),r13                               
  _Thread_Set_priority( the_thread, priority );                       
 80056d4:	f8 00 02 0d 	calli 8005f08 <_Thread_Set_priority>           
  Objects_Information *information,                                   
  Objects_Control     *the_object,                                    
  Objects_Name         name                                           
)                                                                     
{                                                                     
  _Objects_Set_local_object(                                          
 80056d8:	2d 62 00 0a 	lhu r2,(r11+10)                                
                                                                      
   _Thread_Stack_Free( the_thread );                                  
  return false;                                                       
                                                                      
                                                                      
}                                                                     
 80056dc:	29 e3 00 1c 	lw r3,(r15+28)                                 
                                                                      
  /*                                                                  
   *  Initialize the CPU usage statistics                             
   */                                                                 
  #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                          
    _Timestamp_Set_to_zero( &the_thread->cpu_time_used );             
 80056e0:	59 60 00 84 	sw (r11+132),r0                                
  #if defined(RTEMS_DEBUG)                                            
    if ( index > information->maximum )                               
      return;                                                         
  #endif                                                              
                                                                      
  information->local_table[ index ] = the_object;                     
 80056e4:	b4 42 08 00 	add r1,r2,r2                                   
 80056e8:	b4 21 08 00 	add r1,r1,r1                                   
 80056ec:	b4 61 08 00 	add r1,r3,r1                                   
 80056f0:	59 60 00 88 	sw (r11+136),r0                                
 80056f4:	58 2b 00 00 	sw (r1+0),r11                                  
    information,                                                      
    _Objects_Get_index( the_object->id ),                             
    the_object                                                        
  );                                                                  
                                                                      
  the_object->name = name;                                            
 80056f8:	2b 81 00 2c 	lw r1,(sp+44)                                  
 80056fc:	59 61 00 0c 	sw (r11+12),r1                                 
   *  enabled when we get here.  We want to be able to run the        
   *  user extensions with dispatching enabled.  The Allocator        
   *  Mutex provides sufficient protection to let the user extensions 
   *  run safely.                                                     
   */                                                                 
  extension_status = _User_extensions_Thread_create( the_thread );    
 8005700:	b9 60 08 00 	mv r1,r11                                      
 8005704:	f8 00 04 11 	calli 8006748 <_User_extensions_Thread_create> 
  if ( extension_status )                                             
    return true;                                                      
 8005708:	34 05 00 01 	mvi r5,1                                       
   *  user extensions with dispatching enabled.  The Allocator        
   *  Mutex provides sufficient protection to let the user extensions 
   *  run safely.                                                     
   */                                                                 
  extension_status = _User_extensions_Thread_create( the_thread );    
  if ( extension_status )                                             
 800570c:	5c 20 00 10 	bne r1,r0,800574c <_Thread_Initialize+0x150>   
    return true;                                                      
                                                                      
failed:                                                               
  if ( the_thread->libc_reent )                                       
 8005710:	29 61 01 20 	lw r1,(r11+288)                                
 8005714:	44 20 00 02 	be r1,r0,800571c <_Thread_Initialize+0x120>    
    _Workspace_Free( the_thread->libc_reent );                        
 8005718:	f8 00 05 8a 	calli 8006d40 <_Workspace_Free>                
                                                                      
  for ( i=0 ; i <= THREAD_API_LAST ; i++ )                            
    if ( the_thread->API_Extensions[i] )                              
 800571c:	29 61 01 24 	lw r1,(r11+292)                                
 8005720:	44 20 00 02 	be r1,r0,8005728 <_Thread_Initialize+0x12c>    
      _Workspace_Free( the_thread->API_Extensions[i] );               
 8005724:	f8 00 05 87 	calli 8006d40 <_Workspace_Free>                
failed:                                                               
  if ( the_thread->libc_reent )                                       
    _Workspace_Free( the_thread->libc_reent );                        
                                                                      
  for ( i=0 ; i <= THREAD_API_LAST ; i++ )                            
    if ( the_thread->API_Extensions[i] )                              
 8005728:	29 61 01 28 	lw r1,(r11+296)                                
 800572c:	44 20 00 02 	be r1,r0,8005734 <_Thread_Initialize+0x138>    <== ALWAYS TAKEN
      _Workspace_Free( the_thread->API_Extensions[i] );               
 8005730:	f8 00 05 84 	calli 8006d40 <_Workspace_Free>                <== NOT EXECUTED
                                                                      
  if ( extensions_area )                                              
 8005734:	45 80 00 03 	be r12,r0,8005740 <_Thread_Initialize+0x144>   
    (void) _Workspace_Free( extensions_area );                        
 8005738:	b9 80 08 00 	mv r1,r12                                      
 800573c:	f8 00 05 81 	calli 8006d40 <_Workspace_Free>                
  #if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )      
    if ( fp_area )                                                    
      (void) _Workspace_Free( fp_area );                              
  #endif                                                              
                                                                      
   _Thread_Stack_Free( the_thread );                                  
 8005740:	b9 60 08 00 	mv r1,r11                                      
 8005744:	f8 00 02 cd 	calli 8006278 <_Thread_Stack_Free>             
  return false;                                                       
 8005748:	34 05 00 00 	mvi r5,0                                       
                                                                      
                                                                      
}                                                                     
 800574c:	b8 a0 08 00 	mv r1,r5                                       
 8005750:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8005754:	2b 8b 00 20 	lw r11,(sp+32)                                 
 8005758:	2b 8c 00 1c 	lw r12,(sp+28)                                 
 800575c:	2b 8d 00 18 	lw r13,(sp+24)                                 
 8005760:	2b 8e 00 14 	lw r14,(sp+20)                                 
 8005764:	2b 8f 00 10 	lw r15,(sp+16)                                 
 8005768:	2b 90 00 0c 	lw r16,(sp+12)                                 
 800576c:	2b 91 00 08 	lw r17,(sp+8)                                  
 8005770:	37 9c 00 20 	addi sp,sp,32                                  
 8005774:	c3 a0 00 00 	ret                                            
                                                                      
  /*                                                                  
   *  Allocate the extensions area for this thread                    
   */                                                                 
  if ( _Thread_Maximum_extensions ) {                                 
    extensions_area = _Workspace_Allocate(                            
 8005778:	34 42 00 01 	addi r2,r2,1                                   
      (_Thread_Maximum_extensions + 1) * sizeof( void * )             
 800577c:	b4 42 10 00 	add r2,r2,r2                                   
 8005780:	b4 42 10 00 	add r2,r2,r2                                   
                                                                      
  /*                                                                  
   *  Allocate the extensions area for this thread                    
   */                                                                 
  if ( _Thread_Maximum_extensions ) {                                 
    extensions_area = _Workspace_Allocate(                            
 8005784:	b8 40 08 00 	mv r1,r2                                       
 8005788:	f8 00 05 63 	calli 8006d14 <_Workspace_Allocate>            
 800578c:	b8 20 60 00 	mv r12,r1                                      
      (_Thread_Maximum_extensions + 1) * sizeof( void * )             
    );                                                                
    if ( !extensions_area )                                           
 8005790:	44 20 ff e0 	be r1,r0,8005710 <_Thread_Initialize+0x114>    
      goto failed;                                                    
  }                                                                   
  the_thread->extensions = (void **) extensions_area;                 
 8005794:	29 c5 00 00 	lw r5,(r14+0)                                  
 8005798:	59 61 01 2c 	sw (r11+300),r1                                
   * create the extension long after tasks have been created          
   * so they cannot rely on the thread create user extension          
   * call.                                                            
   */                                                                 
  if ( the_thread->extensions ) {                                     
    for ( i = 0; i <= _Thread_Maximum_extensions ; i++ )              
 800579c:	34 03 00 00 	mvi r3,0                                       
      (_Thread_Maximum_extensions + 1) * sizeof( void * )             
    );                                                                
    if ( !extensions_area )                                           
      goto failed;                                                    
  }                                                                   
  the_thread->extensions = (void **) extensions_area;                 
 80057a0:	34 04 00 00 	mvi r4,0                                       
   * so they cannot rely on the thread create user extension          
   * call.                                                            
   */                                                                 
  if ( the_thread->extensions ) {                                     
    for ( i = 0; i <= _Thread_Maximum_extensions ; i++ )              
      the_thread->extensions[i] = NULL;                               
 80057a4:	b4 63 18 00 	add r3,r3,r3                                   
 80057a8:	b4 63 18 00 	add r3,r3,r3                                   
 80057ac:	b5 83 18 00 	add r3,r12,r3                                  
   * create the extension long after tasks have been created          
   * so they cannot rely on the thread create user extension          
   * call.                                                            
   */                                                                 
  if ( the_thread->extensions ) {                                     
    for ( i = 0; i <= _Thread_Maximum_extensions ; i++ )              
 80057b0:	34 84 00 01 	addi r4,r4,1                                   
      the_thread->extensions[i] = NULL;                               
 80057b4:	58 60 00 00 	sw (r3+0),r0                                   
   * create the extension long after tasks have been created          
   * so they cannot rely on the thread create user extension          
   * call.                                                            
   */                                                                 
  if ( the_thread->extensions ) {                                     
    for ( i = 0; i <= _Thread_Maximum_extensions ; i++ )              
 80057b8:	b8 80 18 00 	mv r3,r4                                       
 80057bc:	50 a4 ff fa 	bgeu r5,r4,80057a4 <_Thread_Initialize+0x1a8>  
 80057c0:	e3 ff ff b7 	bi 800569c <_Thread_Initialize+0xa0>           
                                                                      

08006e64 <_Thread_Restart>: bool _Thread_Restart( Thread_Control *the_thread, void *pointer_argument, Thread_Entry_numeric_type numeric_argument ) {
 8006e64:	37 9c ff ec 	addi sp,sp,-20                                 
 8006e68:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8006e6c:	5b 8c 00 08 	sw (sp+8),r12                                  
 8006e70:	5b 9d 00 04 	sw (sp+4),ra                                   
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_dormant (                        
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_DORMANT);                              
 8006e74:	28 24 00 10 	lw r4,(r1+16)                                  
 8006e78:	b8 20 58 00 	mv r11,r1                                      
      _Thread_Restart_self();                                         
                                                                      
    return true;                                                      
  }                                                                   
                                                                      
  return false;                                                       
 8006e7c:	34 0c 00 00 	mvi r12,0                                      
 8006e80:	20 84 00 01 	andi r4,r4,0x1                                 
  Thread_Control            *the_thread,                              
  void                      *pointer_argument,                        
  Thread_Entry_numeric_type  numeric_argument                         
)                                                                     
{                                                                     
  if ( !_States_Is_dormant( the_thread->current_state ) ) {           
 8006e84:	44 80 00 07 	be r4,r0,8006ea0 <_Thread_Restart+0x3c>        
                                                                      
    return true;                                                      
  }                                                                   
                                                                      
  return false;                                                       
}                                                                     
 8006e88:	b9 80 08 00 	mv r1,r12                                      
 8006e8c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8006e90:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8006e94:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8006e98:	37 9c 00 14 	addi sp,sp,20                                  
 8006e9c:	c3 a0 00 00 	ret                                            
  Thread_Entry_numeric_type  numeric_argument                         
)                                                                     
{                                                                     
  if ( !_States_Is_dormant( the_thread->current_state ) ) {           
                                                                      
    _Thread_Set_transient( the_thread );                              
 8006ea0:	5b 82 00 14 	sw (sp+20),r2                                  
 8006ea4:	5b 83 00 10 	sw (sp+16),r3                                  
 8006ea8:	f8 00 00 ac 	calli 8007158 <_Thread_Set_transient>          
                                                                      
    _Thread_Reset( the_thread, pointer_argument, numeric_argument );  
 8006eac:	2b 82 00 14 	lw r2,(sp+20)                                  
 8006eb0:	2b 83 00 10 	lw r3,(sp+16)                                  
 8006eb4:	b9 60 08 00 	mv r1,r11                                      
    _User_extensions_Thread_restart( the_thread );                    
                                                                      
    if ( _Thread_Is_executing ( the_thread ) )                        
      _Thread_Restart_self();                                         
                                                                      
    return true;                                                      
 8006eb8:	34 0c 00 01 	mvi r12,1                                      
{                                                                     
  if ( !_States_Is_dormant( the_thread->current_state ) ) {           
                                                                      
    _Thread_Set_transient( the_thread );                              
                                                                      
    _Thread_Reset( the_thread, pointer_argument, numeric_argument );  
 8006ebc:	f8 00 10 2b 	calli 800af68 <_Thread_Reset>                  
                                                                      
    _Thread_Load_environment( the_thread );                           
 8006ec0:	b9 60 08 00 	mv r1,r11                                      
 8006ec4:	f8 00 0e f6 	calli 800aa9c <_Thread_Load_environment>       
                                                                      
    _Thread_Ready( the_thread );                                      
 8006ec8:	b9 60 08 00 	mv r1,r11                                      
 8006ecc:	f8 00 0f c8 	calli 800adec <_Thread_Ready>                  
                                                                      
    _User_extensions_Thread_restart( the_thread );                    
 8006ed0:	b9 60 08 00 	mv r1,r11                                      
 8006ed4:	f8 00 02 5b 	calli 8007840 <_User_extensions_Thread_restart>
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_Is_executing (                      
  const Thread_Control *the_thread                                    
)                                                                     
{                                                                     
  return ( the_thread == _Thread_Executing );                         
 8006ed8:	78 01 08 01 	mvhi r1,0x801                                  
 8006edc:	38 21 ea 48 	ori r1,r1,0xea48                               
                                                                      
    if ( _Thread_Is_executing ( the_thread ) )                        
 8006ee0:	28 21 00 0c 	lw r1,(r1+12)                                  
 8006ee4:	5d 61 ff e9 	bne r11,r1,8006e88 <_Thread_Restart+0x24>      
#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )        
  if ( _Thread_Executing->fp_context != NULL )                        
    _Context_Restore_fp( &_Thread_Executing->fp_context );            
#endif                                                                
                                                                      
  _CPU_Context_Restart_self( &_Thread_Executing->Registers );         
 8006ee8:	35 61 00 cc 	addi r1,r11,204                                
 8006eec:	f8 00 03 fa 	calli 8007ed4 <_CPU_Context_restore>           
 8006ef0:	e3 ff ff e6 	bi 8006e88 <_Thread_Restart+0x24>              <== NOT EXECUTED
                                                                      

0800a5bc <_Thread_Resume>: { ISR_Level level; States_Control current_state; _ISR_Disable( level );
 800a5bc:	90 00 10 00 	rcsr r2,IE                                     
 800a5c0:	34 04 ff fe 	mvi r4,-2                                      
 800a5c4:	a0 44 20 00 	and r4,r2,r4                                   
 800a5c8:	d0 04 00 00 	wcsr IE,r4                                     
                                                                      
  current_state = the_thread->current_state;                          
 800a5cc:	28 23 00 10 	lw r3,(r1+16)                                  
  if ( current_state & STATES_SUSPENDED ) {                           
 800a5d0:	20 65 00 02 	andi r5,r3,0x2                                 
 800a5d4:	44 a0 00 26 	be r5,r0,800a66c <_Thread_Resume+0xb0>         <== NEVER TAKEN
RTEMS_INLINE_ROUTINE States_Control _States_Clear (                   
  States_Control states_to_clear,                                     
  States_Control current_state                                        
)                                                                     
{                                                                     
   return (current_state & ~states_to_clear);                         
 800a5d8:	34 05 ff fd 	mvi r5,-3                                      
 800a5dc:	a0 65 18 00 	and r3,r3,r5                                   
    current_state =                                                   
    the_thread->current_state = _States_Clear(STATES_SUSPENDED, current_state);
 800a5e0:	58 23 00 10 	sw (r1+16),r3                                  
                                                                      
    if ( _States_Is_ready( current_state ) ) {                        
 800a5e4:	5c 60 00 22 	bne r3,r0,800a66c <_Thread_Resume+0xb0>        
                                                                      
RTEMS_INLINE_ROUTINE void _Priority_bit_map_Add (                     
  Priority_bit_map_Information *the_priority_map                      
)                                                                     
{                                                                     
  *the_priority_map->minor |= the_priority_map->ready_minor;          
 800a5e8:	28 26 00 90 	lw r6,(r1+144)                                 
 800a5ec:	2c 27 00 96 	lhu r7,(r1+150)                                
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
 800a5f0:	78 03 08 01 	mvhi r3,0x801                                  
                                                                      
RTEMS_INLINE_ROUTINE void _Priority_bit_map_Add (                     
  Priority_bit_map_Information *the_priority_map                      
)                                                                     
{                                                                     
  *the_priority_map->minor |= the_priority_map->ready_minor;          
 800a5f4:	2c c8 00 00 	lhu r8,(r6+0)                                  
                                                                      
      _Priority_bit_map_Add( &the_thread->Priority_map );             
                                                                      
      _Chain_Append_unprotected(the_thread->ready, &the_thread->Object.Node);
 800a5f8:	28 25 00 8c 	lw r5,(r1+140)                                 
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
 800a5fc:	38 63 89 8c 	ori r3,r3,0x898c                               
                                                                      
RTEMS_INLINE_ROUTINE void _Priority_bit_map_Add (                     
  Priority_bit_map_Information *the_priority_map                      
)                                                                     
{                                                                     
  *the_priority_map->minor |= the_priority_map->ready_minor;          
 800a600:	b9 07 38 00 	or r7,r8,r7                                    
 800a604:	0c c7 00 00 	sh (r6+0),r7                                   
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
 800a608:	2c 68 00 00 	lhu r8,(r3+0)                                  
 800a60c:	2c 29 00 94 	lhu r9,(r1+148)                                
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
  old_last_node       = the_chain->last;                              
 800a610:	28 a6 00 08 	lw r6,(r5+8)                                   
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 800a614:	34 a7 00 04 	addi r7,r5,4                                   
 800a618:	b9 28 40 00 	or r8,r9,r8                                    
 800a61c:	21 08 ff ff 	andi r8,r8,0xffff                              
 800a620:	0c 68 00 00 	sh (r3+0),r8                                   
  Chain_Node    *the_node                                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
 800a624:	58 27 00 00 	sw (r1+0),r7                                   
  old_last_node       = the_chain->last;                              
  the_chain->last     = the_node;                                     
 800a628:	58 a1 00 08 	sw (r5+8),r1                                   
  old_last_node->next = the_node;                                     
 800a62c:	58 c1 00 00 	sw (r6+0),r1                                   
  the_node->previous  = old_last_node;                                
 800a630:	58 26 00 04 	sw (r1+4),r6                                   
                                                                      
      _ISR_Flash( level );                                            
 800a634:	d0 02 00 00 	wcsr IE,r2                                     
 800a638:	d0 04 00 00 	wcsr IE,r4                                     
                                                                      
      if ( the_thread->current_priority < _Thread_Heir->current_priority ) {
 800a63c:	78 03 08 01 	mvhi r3,0x801                                  
 800a640:	38 63 8a b8 	ori r3,r3,0x8ab8                               
 800a644:	28 65 00 10 	lw r5,(r3+16)                                  
 800a648:	28 24 00 14 	lw r4,(r1+20)                                  
 800a64c:	28 a5 00 14 	lw r5,(r5+20)                                  
 800a650:	50 85 00 07 	bgeu r4,r5,800a66c <_Thread_Resume+0xb0>       
        _Thread_Heir = the_thread;                                    
        if ( _Thread_Executing->is_preemptible ||                     
 800a654:	28 65 00 0c 	lw r5,(r3+12)                                  
      _Chain_Append_unprotected(the_thread->ready, &the_thread->Object.Node);
                                                                      
      _ISR_Flash( level );                                            
                                                                      
      if ( the_thread->current_priority < _Thread_Heir->current_priority ) {
        _Thread_Heir = the_thread;                                    
 800a658:	58 61 00 10 	sw (r3+16),r1                                  
        if ( _Thread_Executing->is_preemptible ||                     
 800a65c:	40 a1 00 74 	lbu r1,(r5+116)                                
 800a660:	44 20 00 05 	be r1,r0,800a674 <_Thread_Resume+0xb8>         
             the_thread->current_priority == 0 )                      
          _Thread_Dispatch_necessary = true;                          
 800a664:	34 01 00 01 	mvi r1,1                                       
 800a668:	30 61 00 18 	sb (r3+24),r1                                  
      }                                                               
    }                                                                 
  }                                                                   
                                                                      
  _ISR_Enable( level );                                               
 800a66c:	d0 02 00 00 	wcsr IE,r2                                     
}                                                                     
 800a670:	c3 a0 00 00 	ret                                            
                                                                      
      _ISR_Flash( level );                                            
                                                                      
      if ( the_thread->current_priority < _Thread_Heir->current_priority ) {
        _Thread_Heir = the_thread;                                    
        if ( _Thread_Executing->is_preemptible ||                     
 800a674:	44 81 ff fc 	be r4,r1,800a664 <_Thread_Resume+0xa8>         <== NEVER TAKEN
 800a678:	e3 ff ff fd 	bi 800a66c <_Thread_Resume+0xb0>               
                                                                      

080063c8 <_Thread_Yield_processor>: { ISR_Level level; Thread_Control *executing; Chain_Control *ready; executing = _Thread_Executing;
 80063c8:	78 02 08 01 	mvhi r2,0x801                                  
 80063cc:	38 42 39 e8 	ori r2,r2,0x39e8                               
 80063d0:	28 41 00 0c 	lw r1,(r2+12)                                  
  ready     = executing->ready;                                       
 80063d4:	28 23 00 8c 	lw r3,(r1+140)                                 
  _ISR_Disable( level );                                              
 80063d8:	90 00 20 00 	rcsr r4,IE                                     
 80063dc:	34 06 ff fe 	mvi r6,-2                                      
 80063e0:	a0 86 30 00 	and r6,r4,r6                                   
 80063e4:	d0 06 00 00 	wcsr IE,r6                                     
    }                                                                 
    else if ( !_Thread_Is_heir( executing ) )                         
      _Thread_Dispatch_necessary = true;                              
                                                                      
  _ISR_Enable( level );                                               
}                                                                     
 80063e8:	28 65 00 08 	lw r5,(r3+8)                                   
  Chain_Control  *ready;                                              
                                                                      
  executing = _Thread_Executing;                                      
  ready     = executing->ready;                                       
  _ISR_Disable( level );                                              
    if ( !_Chain_Has_only_one_node( ready ) ) {                       
 80063ec:	28 67 00 00 	lw r7,(r3+0)                                   
 80063f0:	44 e5 00 15 	be r7,r5,8006444 <_Thread_Yield_processor+0x7c>
)                                                                     
{                                                                     
  Chain_Node *next;                                                   
  Chain_Node *previous;                                               
                                                                      
  next           = the_node->next;                                    
 80063f4:	28 27 00 00 	lw r7,(r1+0)                                   
  previous       = the_node->previous;                                
 80063f8:	28 29 00 04 	lw r9,(r1+4)                                   
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 80063fc:	34 68 00 04 	addi r8,r3,4                                   
  Chain_Node *previous;                                               
                                                                      
  next           = the_node->next;                                    
  previous       = the_node->previous;                                
  next->previous = previous;                                          
  previous->next = next;                                              
 8006400:	59 27 00 00 	sw (r9+0),r7                                   
  Chain_Node *next;                                                   
  Chain_Node *previous;                                               
                                                                      
  next           = the_node->next;                                    
  previous       = the_node->previous;                                
  next->previous = previous;                                          
 8006404:	58 e9 00 04 	sw (r7+4),r9                                   
  Chain_Node    *the_node                                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
 8006408:	58 28 00 00 	sw (r1+0),r8                                   
  old_last_node       = the_chain->last;                              
  the_chain->last     = the_node;                                     
 800640c:	58 61 00 08 	sw (r3+8),r1                                   
  old_last_node->next = the_node;                                     
 8006410:	58 a1 00 00 	sw (r5+0),r1                                   
  the_node->previous  = old_last_node;                                
 8006414:	58 25 00 04 	sw (r1+4),r5                                   
      _Chain_Extract_unprotected( &executing->Object.Node );          
      _Chain_Append_unprotected( ready, &executing->Object.Node );    
                                                                      
      _ISR_Flash( level );                                            
 8006418:	d0 04 00 00 	wcsr IE,r4                                     
 800641c:	d0 06 00 00 	wcsr IE,r6                                     
                                                                      
      if ( _Thread_Is_heir( executing ) )                             
 8006420:	28 45 00 10 	lw r5,(r2+16)                                  
 8006424:	44 25 00 05 	be r1,r5,8006438 <_Thread_Yield_processor+0x70><== ALWAYS TAKEN
        _Thread_Heir = (Thread_Control *) ready->first;               
      _Thread_Dispatch_necessary = true;                              
    }                                                                 
    else if ( !_Thread_Is_heir( executing ) )                         
      _Thread_Dispatch_necessary = true;                              
 8006428:	34 01 00 01 	mvi r1,1                                       
 800642c:	30 41 00 18 	sb (r2+24),r1                                  
                                                                      
  _ISR_Enable( level );                                               
 8006430:	d0 04 00 00 	wcsr IE,r4                                     
}                                                                     
 8006434:	c3 a0 00 00 	ret                                            
      _Chain_Append_unprotected( ready, &executing->Object.Node );    
                                                                      
      _ISR_Flash( level );                                            
                                                                      
      if ( _Thread_Is_heir( executing ) )                             
        _Thread_Heir = (Thread_Control *) ready->first;               
 8006438:	28 61 00 00 	lw r1,(r3+0)                                   
 800643c:	58 41 00 10 	sw (r2+16),r1                                  
 8006440:	e3 ff ff fa 	bi 8006428 <_Thread_Yield_processor+0x60>      
      _Thread_Dispatch_necessary = true;                              
    }                                                                 
    else if ( !_Thread_Is_heir( executing ) )                         
 8006444:	28 43 00 10 	lw r3,(r2+16)                                  
 8006448:	5c 23 ff f8 	bne r1,r3,8006428 <_Thread_Yield_processor+0x60><== NEVER TAKEN
 800644c:	e3 ff ff f9 	bi 8006430 <_Thread_Yield_processor+0x68>      
                                                                      

08005b5c <_Thread_queue_Enqueue_priority>: Thread_blocking_operation_States _Thread_queue_Enqueue_priority ( Thread_queue_Control *the_thread_queue, Thread_Control *the_thread, ISR_Level *level_p ) {
 8005b5c:	37 9c ff f0 	addi sp,sp,-16                                 
 8005b60:	5b 8b 00 10 	sw (sp+16),r11                                 
 8005b64:	5b 8c 00 0c 	sw (sp+12),r12                                 
 8005b68:	5b 8d 00 08 	sw (sp+8),r13                                  
 8005b6c:	5b 8e 00 04 	sw (sp+4),r14                                  
  Priority_Control     priority;                                      
  States_Control       block_state;                                   
                                                                      
  _Chain_Initialize_empty( &the_thread->Wait.Block2n );               
                                                                      
  priority     = the_thread->current_priority;                        
 8005b70:	28 45 00 14 	lw r5,(r2+20)                                  
 8005b74:	34 47 00 3c 	addi r7,r2,60                                  
  Chain_Node          *previous_node;                                 
  Chain_Node          *search_node;                                   
  Priority_Control     priority;                                      
  States_Control       block_state;                                   
                                                                      
  _Chain_Initialize_empty( &the_thread->Wait.Block2n );               
 8005b78:	34 46 00 38 	addi r6,r2,56                                  
                                                                      
RTEMS_INLINE_ROUTINE uint32_t   _Thread_queue_Header_number (         
  Priority_Control the_priority                                       
)                                                                     
{                                                                     
  return (the_priority / TASK_QUEUE_DATA_PRIORITIES_PER_HEADER);      
 8005b7c:	00 a4 00 01 	srui r4,r5,1                                   
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
 8005b80:	58 47 00 38 	sw (r2+56),r7                                  
 8005b84:	00 84 00 01 	srui r4,r4,1                                   
  the_chain->permanent_null = NULL;                                   
  the_chain->last           = _Chain_Head(the_chain);                 
 8005b88:	58 46 00 40 	sw (r2+64),r6                                  
 8005b8c:	00 84 00 01 	srui r4,r4,1                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
  the_chain->permanent_null = NULL;                                   
 8005b90:	58 40 00 3c 	sw (r2+60),r0                                  
 8005b94:	00 84 00 01 	srui r4,r4,1                                   
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_queue_Is_reverse_search (           
  Priority_Control the_priority                                       
)                                                                     
{                                                                     
  return ( the_priority & TASK_QUEUE_DATA_REVERSE_SEARCH_MASK );      
 8005b98:	20 a6 00 20 	andi r6,r5,0x20                                
                                                                      
RTEMS_INLINE_ROUTINE uint32_t   _Thread_queue_Header_number (         
  Priority_Control the_priority                                       
)                                                                     
{                                                                     
  return (the_priority / TASK_QUEUE_DATA_PRIORITIES_PER_HEADER);      
 8005b9c:	00 84 00 01 	srui r4,r4,1                                   
                                                                      
  priority     = the_thread->current_priority;                        
  header_index = _Thread_queue_Header_number( priority );             
  header       = &the_thread_queue->Queues.Priority[ header_index ];  
  block_state  = the_thread_queue->state;                             
 8005ba0:	28 27 00 38 	lw r7,(r1+56)                                  
 8005ba4:	00 84 00 01 	srui r4,r4,1                                   
                                                                      
  if ( _Thread_queue_Is_reverse_search( priority ) )                  
 8005ba8:	5c c0 00 19 	bne r6,r0,8005c0c <_Thread_queue_Enqueue_priority+0xb0>
 8005bac:	b4 84 50 00 	add r10,r4,r4                                  
    goto restart_reverse_search;                                      
                                                                      
restart_forward_search:                                               
  search_priority = PRIORITY_MINIMUM - 1;                             
  _ISR_Disable( level );                                              
  search_thread = (Thread_Control *) header->first;                   
 8005bb0:	b5 44 20 00 	add r4,r10,r4                                  
 8005bb4:	b4 84 20 00 	add r4,r4,r4                                   
 8005bb8:	b4 84 20 00 	add r4,r4,r4                                   
 8005bbc:	b4 24 60 00 	add r12,r1,r4                                  
  if ( _Thread_queue_Is_reverse_search( priority ) )                  
    goto restart_reverse_search;                                      
                                                                      
restart_forward_search:                                               
  search_priority = PRIORITY_MINIMUM - 1;                             
  _ISR_Disable( level );                                              
 8005bc0:	34 0d ff fe 	mvi r13,-2                                     
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 8005bc4:	35 8b 00 04 	addi r11,r12,4                                 
 8005bc8:	90 00 40 00 	rcsr r8,IE                                     
 8005bcc:	a1 0d 50 00 	and r10,r8,r13                                 
 8005bd0:	d0 0a 00 00 	wcsr IE,r10                                    
  search_thread = (Thread_Control *) header->first;                   
 8005bd4:	29 84 00 00 	lw r4,(r12+0)                                  
  while ( !_Chain_Is_tail( header, (Chain_Node *)search_thread ) ) {  
 8005bd8:	5c 8b 00 04 	bne r4,r11,8005be8 <_Thread_queue_Enqueue_priority+0x8c>
 8005bdc:	e0 00 00 28 	bi 8005c7c <_Thread_queue_Enqueue_priority+0x120>
    if ( !_States_Are_set( search_thread->current_state, block_state) ) {
      _ISR_Enable( level );                                           
      goto restart_forward_search;                                    
    }                                                                 
    search_thread =                                                   
       (Thread_Control *)search_thread->Object.Node.next;             
 8005be0:	28 84 00 00 	lw r4,(r4+0)                                   
                                                                      
restart_forward_search:                                               
  search_priority = PRIORITY_MINIMUM - 1;                             
  _ISR_Disable( level );                                              
  search_thread = (Thread_Control *) header->first;                   
  while ( !_Chain_Is_tail( header, (Chain_Node *)search_thread ) ) {  
 8005be4:	44 8b 00 27 	be r4,r11,8005c80 <_Thread_queue_Enqueue_priority+0x124>
    search_priority = search_thread->current_priority;                
 8005be8:	28 86 00 14 	lw r6,(r4+20)                                  
    if ( priority <= search_priority )                                
 8005bec:	50 c5 00 25 	bgeu r6,r5,8005c80 <_Thread_queue_Enqueue_priority+0x124>
      break;                                                          
    search_priority = search_thread->current_priority;                
    if ( priority <= search_priority )                                
      break;                                                          
#endif                                                                
    _ISR_Flash( level );                                              
 8005bf0:	d0 08 00 00 	wcsr IE,r8                                     
 8005bf4:	d0 0a 00 00 	wcsr IE,r10                                    
RTEMS_INLINE_ROUTINE bool _States_Are_set (                           
  States_Control the_states,                                          
  States_Control mask                                                 
)                                                                     
{                                                                     
   return ( (the_states & mask) != STATES_READY);                     
 8005bf8:	28 89 00 10 	lw r9,(r4+16)                                  
 8005bfc:	a0 e9 48 00 	and r9,r7,r9                                   
    if ( !_States_Are_set( search_thread->current_state, block_state) ) {
 8005c00:	5d 20 ff f8 	bne r9,r0,8005be0 <_Thread_queue_Enqueue_priority+0x84><== ALWAYS TAKEN
      _ISR_Enable( level );                                           
 8005c04:	d0 08 00 00 	wcsr IE,r8                                     <== NOT EXECUTED
      goto restart_forward_search;                                    
 8005c08:	e3 ff ff f0 	bi 8005bc8 <_Thread_queue_Enqueue_priority+0x6c><== NOT EXECUTED
                                                                      
  _Chain_Initialize_empty( &the_thread->Wait.Block2n );               
                                                                      
  priority     = the_thread->current_priority;                        
  header_index = _Thread_queue_Header_number( priority );             
  header       = &the_thread_queue->Queues.Priority[ header_index ];  
 8005c0c:	b4 84 50 00 	add r10,r4,r4                                  
 8005c10:	b5 44 50 00 	add r10,r10,r4                                 
 8005c14:	b5 4a 50 00 	add r10,r10,r10                                
 8005c18:	b5 4a 50 00 	add r10,r10,r10                                
 8005c1c:	b4 2a 50 00 	add r10,r1,r10                                 
 8005c20:	78 0c 08 01 	mvhi r12,0x801                                 
 8005c24:	39 8c 30 c0 	ori r12,r12,0x30c0                             
  return THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED;                  
                                                                      
restart_reverse_search:                                               
  search_priority     = PRIORITY_MAXIMUM + 1;                         
                                                                      
  _ISR_Disable( level );                                              
 8005c28:	34 0e ff fe 	mvi r14,-2                                     
  search_thread = (Thread_Control *) header->last;                    
 8005c2c:	b9 40 68 00 	mv r13,r10                                     
  the_thread->Wait.queue = the_thread_queue;                          
  _ISR_Enable( level );                                               
  return THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED;                  
                                                                      
restart_reverse_search:                                               
  search_priority     = PRIORITY_MAXIMUM + 1;                         
 8005c30:	41 86 00 00 	lbu r6,(r12+0)                                 
 8005c34:	34 c6 00 01 	addi r6,r6,1                                   
                                                                      
  _ISR_Disable( level );                                              
 8005c38:	90 00 40 00 	rcsr r8,IE                                     
 8005c3c:	a1 0e 58 00 	and r11,r8,r14                                 
 8005c40:	d0 0b 00 00 	wcsr IE,r11                                    
  search_thread = (Thread_Control *) header->last;                    
 8005c44:	29 a4 00 08 	lw r4,(r13+8)                                  
  while ( !_Chain_Is_head( header, (Chain_Node *)search_thread ) ) {  
 8005c48:	5c 8a 00 04 	bne r4,r10,8005c58 <_Thread_queue_Enqueue_priority+0xfc>
 8005c4c:	e0 00 00 19 	bi 8005cb0 <_Thread_queue_Enqueue_priority+0x154>
    if ( !_States_Are_set( search_thread->current_state, block_state) ) {
      _ISR_Enable( level );                                           
      goto restart_reverse_search;                                    
    }                                                                 
    search_thread = (Thread_Control *)                                
                         search_thread->Object.Node.previous;         
 8005c50:	28 84 00 04 	lw r4,(r4+4)                                   
restart_reverse_search:                                               
  search_priority     = PRIORITY_MAXIMUM + 1;                         
                                                                      
  _ISR_Disable( level );                                              
  search_thread = (Thread_Control *) header->last;                    
  while ( !_Chain_Is_head( header, (Chain_Node *)search_thread ) ) {  
 8005c54:	44 8a 00 17 	be r4,r10,8005cb0 <_Thread_queue_Enqueue_priority+0x154><== NEVER TAKEN
    search_priority = search_thread->current_priority;                
 8005c58:	28 86 00 14 	lw r6,(r4+20)                                  
    if ( priority >= search_priority )                                
 8005c5c:	50 a6 00 15 	bgeu r5,r6,8005cb0 <_Thread_queue_Enqueue_priority+0x154>
      break;                                                          
    search_priority = search_thread->current_priority;                
    if ( priority >= search_priority )                                
      break;                                                          
#endif                                                                
    _ISR_Flash( level );                                              
 8005c60:	d0 08 00 00 	wcsr IE,r8                                     
 8005c64:	d0 0b 00 00 	wcsr IE,r11                                    
 8005c68:	28 89 00 10 	lw r9,(r4+16)                                  
 8005c6c:	a0 e9 48 00 	and r9,r7,r9                                   
    if ( !_States_Are_set( search_thread->current_state, block_state) ) {
 8005c70:	5d 20 ff f8 	bne r9,r0,8005c50 <_Thread_queue_Enqueue_priority+0xf4><== ALWAYS TAKEN
      _ISR_Enable( level );                                           
 8005c74:	d0 08 00 00 	wcsr IE,r8                                     <== NOT EXECUTED
      goto restart_reverse_search;                                    
 8005c78:	e3 ff ff ee 	bi 8005c30 <_Thread_queue_Enqueue_priority+0xd4><== NOT EXECUTED
                                                                      
  if ( _Thread_queue_Is_reverse_search( priority ) )                  
    goto restart_reverse_search;                                      
                                                                      
restart_forward_search:                                               
  search_priority = PRIORITY_MINIMUM - 1;                             
 8005c7c:	34 06 ff ff 	mvi r6,-1                                      
    }                                                                 
    search_thread =                                                   
       (Thread_Control *)search_thread->Object.Node.next;             
  }                                                                   
                                                                      
  if ( the_thread_queue->sync_state !=                                
 8005c80:	28 27 00 30 	lw r7,(r1+48)                                  
 8005c84:	34 0a 00 01 	mvi r10,1                                      
 8005c88:	b9 00 48 00 	mv r9,r8                                       
 8005c8c:	44 ea 00 1d 	be r7,r10,8005d00 <_Thread_queue_Enqueue_priority+0x1a4>
   *  For example, the blocking thread could have been given          
   *  the mutex by an ISR or timed out.                               
   *                                                                  
   *  WARNING! Returning with interrupts disabled!                    
   */                                                                 
  *level_p = level;                                                   
 8005c90:	58 69 00 00 	sw (r3+0),r9                                   
  return the_thread_queue->sync_state;                                
}                                                                     
 8005c94:	b8 e0 08 00 	mv r1,r7                                       
 8005c98:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8005c9c:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 8005ca0:	2b 8d 00 08 	lw r13,(sp+8)                                  
 8005ca4:	2b 8e 00 04 	lw r14,(sp+4)                                  
 8005ca8:	37 9c 00 10 	addi sp,sp,16                                  
 8005cac:	c3 a0 00 00 	ret                                            
    }                                                                 
    search_thread = (Thread_Control *)                                
                         search_thread->Object.Node.previous;         
  }                                                                   
                                                                      
  if ( the_thread_queue->sync_state !=                                
 8005cb0:	28 27 00 30 	lw r7,(r1+48)                                  
 8005cb4:	34 0a 00 01 	mvi r10,1                                      
 8005cb8:	b9 00 48 00 	mv r9,r8                                       
 8005cbc:	5c ea ff f5 	bne r7,r10,8005c90 <_Thread_queue_Enqueue_priority+0x134>
       THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )                   
    goto synchronize;                                                 
                                                                      
  the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_SYNCHRONIZED;
 8005cc0:	58 20 00 30 	sw (r1+48),r0                                  
                                                                      
  if ( priority == search_priority )                                  
 8005cc4:	44 a6 00 1f 	be r5,r6,8005d40 <_Thread_queue_Enqueue_priority+0x1e4><== NEVER TAKEN
    goto equal_priority;                                              
                                                                      
  search_node = (Chain_Node *) search_thread;                         
  next_node   = search_node->next;                                    
 8005cc8:	28 83 00 00 	lw r3,(r4+0)                                   
  the_node    = (Chain_Node *) the_thread;                            
                                                                      
  the_node->next          = next_node;                                
  the_node->previous      = search_node;                              
 8005ccc:	58 44 00 04 	sw (r2+4),r4                                   
                                                                      
  search_node = (Chain_Node *) search_thread;                         
  next_node   = search_node->next;                                    
  the_node    = (Chain_Node *) the_thread;                            
                                                                      
  the_node->next          = next_node;                                
 8005cd0:	58 43 00 00 	sw (r2+0),r3                                   
  the_node->previous      = search_node;                              
  search_node->next       = the_node;                                 
 8005cd4:	58 82 00 00 	sw (r4+0),r2                                   
  next_node->previous    = the_node;                                  
 8005cd8:	58 62 00 04 	sw (r3+4),r2                                   
  the_thread->Wait.queue = the_thread_queue;                          
 8005cdc:	58 41 00 44 	sw (r2+68),r1                                  
  _ISR_Enable( level );                                               
 8005ce0:	d0 08 00 00 	wcsr IE,r8                                     
   *                                                                  
   *  WARNING! Returning with interrupts disabled!                    
   */                                                                 
  *level_p = level;                                                   
  return the_thread_queue->sync_state;                                
}                                                                     
 8005ce4:	b8 e0 08 00 	mv r1,r7                                       
 8005ce8:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8005cec:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 8005cf0:	2b 8d 00 08 	lw r13,(sp+8)                                  
 8005cf4:	2b 8e 00 04 	lw r14,(sp+4)                                  
 8005cf8:	37 9c 00 10 	addi sp,sp,16                                  
 8005cfc:	c3 a0 00 00 	ret                                            
                                                                      
  if ( the_thread_queue->sync_state !=                                
       THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )                   
    goto synchronize;                                                 
                                                                      
  the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_SYNCHRONIZED;
 8005d00:	58 20 00 30 	sw (r1+48),r0                                  
                                                                      
  if ( priority == search_priority )                                  
 8005d04:	44 a6 00 0f 	be r5,r6,8005d40 <_Thread_queue_Enqueue_priority+0x1e4>
    goto equal_priority;                                              
                                                                      
  search_node   = (Chain_Node *) search_thread;                       
  previous_node = search_node->previous;                              
 8005d08:	28 83 00 04 	lw r3,(r4+4)                                   
  the_node      = (Chain_Node *) the_thread;                          
                                                                      
  the_node->next         = search_node;                               
 8005d0c:	58 44 00 00 	sw (r2+0),r4                                   
  the_node->previous     = previous_node;                             
 8005d10:	58 43 00 04 	sw (r2+4),r3                                   
  previous_node->next    = the_node;                                  
 8005d14:	58 62 00 00 	sw (r3+0),r2                                   
  search_node->previous  = the_node;                                  
 8005d18:	58 82 00 04 	sw (r4+4),r2                                   
  the_thread->Wait.queue = the_thread_queue;                          
 8005d1c:	58 41 00 44 	sw (r2+68),r1                                  
  _ISR_Enable( level );                                               
 8005d20:	d0 08 00 00 	wcsr IE,r8                                     
   *                                                                  
   *  WARNING! Returning with interrupts disabled!                    
   */                                                                 
  *level_p = level;                                                   
  return the_thread_queue->sync_state;                                
}                                                                     
 8005d24:	b8 e0 08 00 	mv r1,r7                                       
 8005d28:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8005d2c:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 8005d30:	2b 8d 00 08 	lw r13,(sp+8)                                  
 8005d34:	2b 8e 00 04 	lw r14,(sp+4)                                  
 8005d38:	37 9c 00 10 	addi sp,sp,16                                  
 8005d3c:	c3 a0 00 00 	ret                                            
 8005d40:	34 84 00 3c 	addi r4,r4,60                                  
  _ISR_Enable( level );                                               
  return THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED;                  
                                                                      
equal_priority:               /* add at end of priority group */      
  search_node   = _Chain_Tail( &search_thread->Wait.Block2n );        
  previous_node = search_node->previous;                              
 8005d44:	28 83 00 04 	lw r3,(r4+4)                                   
  the_node      = (Chain_Node *) the_thread;                          
                                                                      
  the_node->next         = search_node;                               
 8005d48:	58 44 00 00 	sw (r2+0),r4                                   
  the_node->previous     = previous_node;                             
 8005d4c:	58 43 00 04 	sw (r2+4),r3                                   
  previous_node->next    = the_node;                                  
 8005d50:	58 62 00 00 	sw (r3+0),r2                                   
  search_node->previous  = the_node;                                  
 8005d54:	58 82 00 04 	sw (r4+4),r2                                   
  the_thread->Wait.queue = the_thread_queue;                          
 8005d58:	58 41 00 44 	sw (r2+68),r1                                  
  _ISR_Enable( level );                                               
 8005d5c:	d0 08 00 00 	wcsr IE,r8                                     
  return THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED;                  
 8005d60:	34 07 00 01 	mvi r7,1                                       
 8005d64:	e3 ff ff cc 	bi 8005c94 <_Thread_queue_Enqueue_priority+0x138>
                                                                      

08009c30 <_Thread_queue_Process_timeout>: #include <rtems/score/tqdata.h> void _Thread_queue_Process_timeout( Thread_Control *the_thread ) {
 8009c30:	37 9c ff fc 	addi sp,sp,-4                                  
 8009c34:	5b 9d 00 04 	sw (sp+4),ra                                   
  Thread_queue_Control *the_thread_queue = the_thread->Wait.queue;    
 8009c38:	28 23 00 44 	lw r3,(r1+68)                                  
#include <rtems/score/tqdata.h>                                       
                                                                      
void _Thread_queue_Process_timeout(                                   
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
 8009c3c:	b8 20 20 00 	mv r4,r1                                       
   *  If it is not satisfied, then it is "nothing happened" and       
   *  this is the "timeout" transition.  After a request is satisfied,
   *  a timeout is not allowed to occur.                              
   */                                                                 
                                                                      
  if ( the_thread_queue->sync_state != THREAD_BLOCKING_OPERATION_SYNCHRONIZED &&
 8009c40:	28 62 00 30 	lw r2,(r3+48)                                  
 8009c44:	44 40 00 05 	be r2,r0,8009c58 <_Thread_queue_Process_timeout+0x28><== ALWAYS TAKEN
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_Is_executing (                      
  const Thread_Control *the_thread                                    
)                                                                     
{                                                                     
  return ( the_thread == _Thread_Executing );                         
 8009c48:	78 01 08 01 	mvhi r1,0x801                                  <== NOT EXECUTED
 8009c4c:	38 21 39 e8 	ori r1,r1,0x39e8                               <== NOT EXECUTED
 8009c50:	28 21 00 0c 	lw r1,(r1+12)                                  <== NOT EXECUTED
 8009c54:	44 81 00 09 	be r4,r1,8009c78 <_Thread_queue_Process_timeout+0x48><== NOT EXECUTED
    if ( the_thread_queue->sync_state != THREAD_BLOCKING_OPERATION_SATISFIED ) {
      the_thread->Wait.return_code = the_thread->Wait.queue->timeout_status;
      the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_TIMEOUT;
    }                                                                 
  } else {                                                            
    the_thread->Wait.return_code = the_thread->Wait.queue->timeout_status;
 8009c58:	28 65 00 3c 	lw r5,(r3+60)                                  
    _Thread_queue_Extract( the_thread->Wait.queue, the_thread );      
 8009c5c:	b8 60 08 00 	mv r1,r3                                       
 8009c60:	b8 80 10 00 	mv r2,r4                                       
    if ( the_thread_queue->sync_state != THREAD_BLOCKING_OPERATION_SATISFIED ) {
      the_thread->Wait.return_code = the_thread->Wait.queue->timeout_status;
      the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_TIMEOUT;
    }                                                                 
  } else {                                                            
    the_thread->Wait.return_code = the_thread->Wait.queue->timeout_status;
 8009c64:	58 85 00 34 	sw (r4+52),r5                                  
    _Thread_queue_Extract( the_thread->Wait.queue, the_thread );      
 8009c68:	fb ff ff 91 	calli 8009aac <_Thread_queue_Extract>          
  }                                                                   
}                                                                     
 8009c6c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8009c70:	37 9c 00 04 	addi sp,sp,4                                   
 8009c74:	c3 a0 00 00 	ret                                            
   *  a timeout is not allowed to occur.                              
   */                                                                 
                                                                      
  if ( the_thread_queue->sync_state != THREAD_BLOCKING_OPERATION_SYNCHRONIZED &&
       _Thread_Is_executing( the_thread ) ) {                         
    if ( the_thread_queue->sync_state != THREAD_BLOCKING_OPERATION_SATISFIED ) {
 8009c78:	34 01 00 03 	mvi r1,3                                       <== NOT EXECUTED
 8009c7c:	44 41 ff fc 	be r2,r1,8009c6c <_Thread_queue_Process_timeout+0x3c><== NOT EXECUTED
      the_thread->Wait.return_code = the_thread->Wait.queue->timeout_status;
 8009c80:	28 61 00 3c 	lw r1,(r3+60)                                  <== NOT EXECUTED
 8009c84:	58 81 00 34 	sw (r4+52),r1                                  <== NOT EXECUTED
      the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_TIMEOUT;
 8009c88:	34 01 00 02 	mvi r1,2                                       <== NOT EXECUTED
 8009c8c:	58 61 00 30 	sw (r3+48),r1                                  <== NOT EXECUTED
 8009c90:	e3 ff ff f7 	bi 8009c6c <_Thread_queue_Process_timeout+0x3c><== NOT EXECUTED
                                                                      

08005e14 <_Thread_queue_Requeue>: void _Thread_queue_Requeue( Thread_queue_Control *the_thread_queue, Thread_Control *the_thread ) {
 8005e14:	37 9c ff ec 	addi sp,sp,-20                                 
 8005e18:	5b 8b 00 10 	sw (sp+16),r11                                 
 8005e1c:	5b 8c 00 0c 	sw (sp+12),r12                                 
 8005e20:	5b 8d 00 08 	sw (sp+8),r13                                  
 8005e24:	5b 9d 00 04 	sw (sp+4),ra                                   
 8005e28:	b8 20 58 00 	mv r11,r1                                      
 8005e2c:	b8 40 60 00 	mv r12,r2                                      
  /*                                                                  
   * Just in case the thread really wasn't blocked on a thread queue  
   * when we get here.                                                
   */                                                                 
  if ( !the_thread_queue )                                            
 8005e30:	44 20 00 04 	be r1,r0,8005e40 <_Thread_queue_Requeue+0x2c>  <== NEVER TAKEN
                                                                      
  /*                                                                  
   * If queueing by FIFO, there is nothing to do. This only applies to
   * priority blocking discipline.                                    
   */                                                                 
  if ( the_thread_queue->discipline == THREAD_QUEUE_DISCIPLINE_PRIORITY ) {
 8005e34:	28 22 00 34 	lw r2,(r1+52)                                  
 8005e38:	34 01 00 01 	mvi r1,1                                       
 8005e3c:	44 41 00 07 	be r2,r1,8005e58 <_Thread_queue_Requeue+0x44>  <== ALWAYS TAKEN
      _Thread_queue_Extract_priority_helper( tq, the_thread, true );  
      (void) _Thread_queue_Enqueue_priority( tq, the_thread, &level_ignored );
    }                                                                 
    _ISR_Enable( level );                                             
  }                                                                   
}                                                                     
 8005e40:	2b 9d 00 04 	lw ra,(sp+4)                                   <== NOT EXECUTED
 8005e44:	2b 8b 00 10 	lw r11,(sp+16)                                 <== NOT EXECUTED
 8005e48:	2b 8c 00 0c 	lw r12,(sp+12)                                 <== NOT EXECUTED
 8005e4c:	2b 8d 00 08 	lw r13,(sp+8)                                  <== NOT EXECUTED
 8005e50:	37 9c 00 14 	addi sp,sp,20                                  <== NOT EXECUTED
 8005e54:	c3 a0 00 00 	ret                                            <== NOT EXECUTED
  if ( the_thread_queue->discipline == THREAD_QUEUE_DISCIPLINE_PRIORITY ) {
    Thread_queue_Control *tq = the_thread_queue;                      
    ISR_Level             level;                                      
    ISR_Level             level_ignored;                              
                                                                      
    _ISR_Disable( level );                                            
 8005e58:	90 00 68 00 	rcsr r13,IE                                    
 8005e5c:	34 01 ff fe 	mvi r1,-2                                      
 8005e60:	a1 a1 08 00 	and r1,r13,r1                                  
 8005e64:	d0 01 00 00 	wcsr IE,r1                                     
 8005e68:	78 03 08 01 	mvhi r3,0x801                                  
 8005e6c:	38 63 21 d0 	ori r3,r3,0x21d0                               
 8005e70:	29 82 00 10 	lw r2,(r12+16)                                 
 8005e74:	28 61 00 00 	lw r1,(r3+0)                                   
 8005e78:	a0 41 08 00 	and r1,r2,r1                                   
    if ( _States_Is_waiting_on_thread_queue( the_thread->current_state ) ) {
 8005e7c:	5c 20 00 08 	bne r1,r0,8005e9c <_Thread_queue_Requeue+0x88> <== ALWAYS TAKEN
      _Thread_queue_Enter_critical_section( tq );                     
      _Thread_queue_Extract_priority_helper( tq, the_thread, true );  
      (void) _Thread_queue_Enqueue_priority( tq, the_thread, &level_ignored );
    }                                                                 
    _ISR_Enable( level );                                             
 8005e80:	d0 0d 00 00 	wcsr IE,r13                                    <== NOT EXECUTED
  }                                                                   
}                                                                     
 8005e84:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8005e88:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8005e8c:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 8005e90:	2b 8d 00 08 	lw r13,(sp+8)                                  
 8005e94:	37 9c 00 14 	addi sp,sp,20                                  
 8005e98:	c3 a0 00 00 	ret                                            
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_queue_Enter_critical_section (      
  Thread_queue_Control *the_thread_queue                              
)                                                                     
{                                                                     
  the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED;
 8005e9c:	34 01 00 01 	mvi r1,1                                       
 8005ea0:	59 61 00 30 	sw (r11+48),r1                                 
    ISR_Level             level_ignored;                              
                                                                      
    _ISR_Disable( level );                                            
    if ( _States_Is_waiting_on_thread_queue( the_thread->current_state ) ) {
      _Thread_queue_Enter_critical_section( tq );                     
      _Thread_queue_Extract_priority_helper( tq, the_thread, true );  
 8005ea4:	b9 80 10 00 	mv r2,r12                                      
 8005ea8:	b9 60 08 00 	mv r1,r11                                      
 8005eac:	34 03 00 01 	mvi r3,1                                       
 8005eb0:	f8 00 0f 0d 	calli 8009ae4 <_Thread_queue_Extract_priority_helper>
      (void) _Thread_queue_Enqueue_priority( tq, the_thread, &level_ignored );
 8005eb4:	b9 60 08 00 	mv r1,r11                                      
 8005eb8:	b9 80 10 00 	mv r2,r12                                      
 8005ebc:	37 83 00 14 	addi r3,sp,20                                  
 8005ec0:	fb ff ff 27 	calli 8005b5c <_Thread_queue_Enqueue_priority> 
    }                                                                 
    _ISR_Enable( level );                                             
 8005ec4:	d0 0d 00 00 	wcsr IE,r13                                    
 8005ec8:	e3 ff ff ef 	bi 8005e84 <_Thread_queue_Requeue+0x70>        
                                                                      

08005ecc <_Thread_queue_Timeout>: void _Thread_queue_Timeout( Objects_Id id, void *ignored __attribute__((unused)) ) {
 8005ecc:	37 9c ff f8 	addi sp,sp,-8                                  
 8005ed0:	5b 9d 00 04 	sw (sp+4),ra                                   
  Thread_Control       *the_thread;                                   
  Objects_Locations     location;                                     
                                                                      
  the_thread = _Thread_Get( id, &location );                          
 8005ed4:	37 82 00 08 	addi r2,sp,8                                   
 8005ed8:	fb ff fd 81 	calli 80054dc <_Thread_Get>                    
  switch ( location ) {                                               
 8005edc:	2b 82 00 08 	lw r2,(sp+8)                                   
 8005ee0:	5c 40 00 07 	bne r2,r0,8005efc <_Thread_queue_Timeout+0x30> <== NEVER TAKEN
#if defined(RTEMS_MULTIPROCESSING)                                    
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
      break;                                                          
    case OBJECTS_LOCAL:                                               
      _Thread_queue_Process_timeout( the_thread );                    
 8005ee4:	f8 00 0f 53 	calli 8009c30 <_Thread_queue_Process_timeout>  
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unnest_dispatch( void )             
{                                                                     
  RTEMS_COMPILER_MEMORY_BARRIER();                                    
  _Thread_Dispatch_disable_level -= 1;                                
 8005ee8:	78 01 08 01 	mvhi r1,0x801                                  
 8005eec:	38 21 38 1c 	ori r1,r1,0x381c                               
 8005ef0:	28 22 00 00 	lw r2,(r1+0)                                   
 8005ef4:	34 42 ff ff 	addi r2,r2,-1                                  
 8005ef8:	58 22 00 00 	sw (r1+0),r2                                   
      _Thread_Unnest_dispatch();                                      
      break;                                                          
  }                                                                   
}                                                                     
 8005efc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8005f00:	37 9c 00 08 	addi sp,sp,8                                   
 8005f04:	c3 a0 00 00 	ret                                            
                                                                      

08014498 <_Timer_server_Body>: * @a arg points to the corresponding timer server control block. */ static rtems_task _Timer_server_Body( rtems_task_argument arg ) {
 8014498:	37 9c ff a4 	addi sp,sp,-92                                 
 801449c:	5b 8b 00 44 	sw (sp+68),r11                                 
 80144a0:	5b 8c 00 40 	sw (sp+64),r12                                 
 80144a4:	5b 8d 00 3c 	sw (sp+60),r13                                 
 80144a8:	5b 8e 00 38 	sw (sp+56),r14                                 
 80144ac:	5b 8f 00 34 	sw (sp+52),r15                                 
 80144b0:	5b 90 00 30 	sw (sp+48),r16                                 
 80144b4:	5b 91 00 2c 	sw (sp+44),r17                                 
 80144b8:	5b 92 00 28 	sw (sp+40),r18                                 
 80144bc:	5b 93 00 24 	sw (sp+36),r19                                 
 80144c0:	5b 94 00 20 	sw (sp+32),r20                                 
 80144c4:	5b 95 00 1c 	sw (sp+28),r21                                 
 80144c8:	5b 96 00 18 	sw (sp+24),r22                                 
 80144cc:	5b 97 00 14 	sw (sp+20),r23                                 
 80144d0:	5b 98 00 10 	sw (sp+16),r24                                 
 80144d4:	5b 99 00 0c 	sw (sp+12),r25                                 
 80144d8:	5b 9b 00 08 	sw (sp+8),fp                                   
 80144dc:	5b 9d 00 04 	sw (sp+4),ra                                   
 80144e0:	78 13 08 03 	mvhi r19,0x803                                 
 80144e4:	37 96 00 54 	addi r22,sp,84                                 
 80144e8:	37 95 00 58 	addi r21,sp,88                                 
 80144ec:	37 8e 00 48 	addi r14,sp,72                                 
 80144f0:	37 94 00 4c 	addi r20,sp,76                                 
 80144f4:	78 12 08 03 	mvhi r18,0x803                                 
 80144f8:	78 17 08 03 	mvhi r23,0x803                                 
 80144fc:	b8 20 58 00 	mv r11,r1                                      
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
 8014500:	5b 95 00 54 	sw (sp+84),r21                                 
  the_chain->permanent_null = NULL;                                   
 8014504:	5b 80 00 58 	sw (sp+88),r0                                  
  the_chain->last           = _Chain_Head(the_chain);                 
 8014508:	5b 96 00 5c 	sw (sp+92),r22                                 
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
 801450c:	5b 94 00 48 	sw (sp+72),r20                                 
  the_chain->permanent_null = NULL;                                   
 8014510:	5b 80 00 4c 	sw (sp+76),r0                                  
  the_chain->last           = _Chain_Head(the_chain);                 
 8014514:	5b 8e 00 50 	sw (sp+80),r14                                 
 8014518:	3a 73 ed 64 	ori r19,r19,0xed64                             
 801451c:	34 30 00 30 	addi r16,r1,48                                 
 8014520:	3a 52 ec b4 	ori r18,r18,0xecb4                             
 8014524:	34 2f 00 68 	addi r15,r1,104                                
 8014528:	3a f7 ec 2c 	ori r23,r23,0xec2c                             
 801452c:	34 3b 00 08 	addi fp,r1,8                                   
 8014530:	34 39 00 40 	addi r25,r1,64                                 
  Timer_Control *timer                                                
)                                                                     
{                                                                     
  if ( timer->the_class == TIMER_INTERVAL_ON_TASK ) {                 
    _Watchdog_Insert( &ts->Interval_watchdogs.Chain, &timer->Ticker );
  } else if ( timer->the_class == TIMER_TIME_OF_DAY_ON_TASK ) {       
 8014534:	34 0d 00 03 	mvi r13,3                                      
     *  of zero it will be processed in the next iteration of the timer server
     *  body loop.                                                    
     */                                                               
    _Timer_server_Process_insertions( ts );                           
                                                                      
    _ISR_Disable( level );                                            
 8014538:	34 11 ff fe 	mvi r17,-2                                     
        _Thread_Set_state( ts->thread, STATES_DELAYING );             
        _Timer_server_Reset_interval_system_watchdog( ts );           
        _Timer_server_Reset_tod_system_watchdog( ts );                
      _Thread_Enable_dispatch();                                      
                                                                      
      ts->active = true;                                              
 801453c:	34 18 00 01 	mvi r24,1                                      
{                                                                     
  /*                                                                  
   *  Afterwards all timer inserts are directed to this chain and the interval
   *  and TOD chains will be no more modified by other parties.       
   */                                                                 
  ts->insert_chain = insert_chain;                                    
 8014540:	59 76 00 78 	sw (r11+120),r22                               
static void _Timer_server_Process_interval_watchdogs(                 
  Timer_server_Watchdogs *watchdogs,                                  
  Chain_Control *fire_chain                                           
)                                                                     
{                                                                     
  Watchdog_Interval snapshot = _Watchdog_Ticks_since_boot;            
 8014544:	2a 62 00 00 	lw r2,(r19+0)                                  
                                                                      
  /*                                                                  
   *  We assume adequate unsigned arithmetic here.                    
   */                                                                 
  Watchdog_Interval delta = snapshot - watchdogs->last_snapshot;      
 8014548:	29 63 00 3c 	lw r3,(r11+60)                                 
                                                                      
  watchdogs->last_snapshot = snapshot;                                
                                                                      
  _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );  
 801454c:	ba 00 08 00 	mv r1,r16                                      
  /*                                                                  
   *  We assume adequate unsigned arithmetic here.                    
   */                                                                 
  Watchdog_Interval delta = snapshot - watchdogs->last_snapshot;      
                                                                      
  watchdogs->last_snapshot = snapshot;                                
 8014550:	59 62 00 3c 	sw (r11+60),r2                                 
                                                                      
  _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );  
 8014554:	c8 43 10 00 	sub r2,r2,r3                                   
 8014558:	b9 c0 18 00 	mv r3,r14                                      
 801455c:	f8 00 15 44 	calli 8019a6c <_Watchdog_Adjust_to_chain>      
  Timer_server_Watchdogs *watchdogs,                                  
  Chain_Control *fire_chain                                           
)                                                                     
{                                                                     
  Watchdog_Interval snapshot = (Watchdog_Interval) _TOD_Seconds_since_epoch();
  Watchdog_Interval last_snapshot = watchdogs->last_snapshot;         
 8014560:	29 64 00 74 	lw r4,(r11+116)                                
static void _Timer_server_Process_tod_watchdogs(                      
  Timer_server_Watchdogs *watchdogs,                                  
  Chain_Control *fire_chain                                           
)                                                                     
{                                                                     
  Watchdog_Interval snapshot = (Watchdog_Interval) _TOD_Seconds_since_epoch();
 8014564:	2a 4c 00 00 	lw r12,(r18+0)                                 
  /*                                                                  
   *  Process the seconds chain.  Start by checking that the Time     
   *  of Day (TOD) has not been set backwards.  If it has then        
   *  we want to adjust the watchdogs->Chain to indicate this.        
   */                                                                 
  if ( snapshot > last_snapshot ) {                                   
 8014568:	50 8c 00 1c 	bgeu r4,r12,80145d8 <_Timer_server_Body+0x140> 
    /*                                                                
     *  This path is for normal forward movement and cases where the  
     *  TOD has been set forward.                                     
     */                                                               
    delta = snapshot - last_snapshot;                                 
    _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );
 801456c:	b9 e0 08 00 	mv r1,r15                                      
 8014570:	c9 84 10 00 	sub r2,r12,r4                                  
 8014574:	b9 c0 18 00 	mv r3,r14                                      
 8014578:	f8 00 15 3d 	calli 8019a6c <_Watchdog_Adjust_to_chain>      
      */                                                              
     delta = last_snapshot - snapshot;                                
     _Watchdog_Adjust( &watchdogs->Chain, WATCHDOG_BACKWARD, delta ); 
  }                                                                   
                                                                      
  watchdogs->last_snapshot = snapshot;                                
 801457c:	59 6c 00 74 	sw (r11+116),r12                               
static void _Timer_server_Insert_timer(                               
  Timer_server_Control *ts,                                           
  Timer_Control *timer                                                
)                                                                     
{                                                                     
  if ( timer->the_class == TIMER_INTERVAL_ON_TASK ) {                 
 8014580:	34 0c 00 01 	mvi r12,1                                      
}                                                                     
                                                                      
static void _Timer_server_Process_insertions( Timer_server_Control *ts )
{                                                                     
  while ( true ) {                                                    
    Timer_Control *timer = (Timer_Control *) _Chain_Get( ts->insert_chain );
 8014584:	29 61 00 78 	lw r1,(r11+120)                                
 8014588:	f8 00 03 37 	calli 8015264 <_Chain_Get>                     
 801458c:	b8 20 10 00 	mv r2,r1                                       
                                                                      
    if ( timer == NULL ) {                                            
 8014590:	44 20 00 0b 	be r1,r0,80145bc <_Timer_server_Body+0x124>    <== ALWAYS TAKEN
static void _Timer_server_Insert_timer(                               
  Timer_server_Control *ts,                                           
  Timer_Control *timer                                                
)                                                                     
{                                                                     
  if ( timer->the_class == TIMER_INTERVAL_ON_TASK ) {                 
 8014594:	28 24 00 38 	lw r4,(r1+56)                                  <== NOT EXECUTED
 8014598:	44 8c 00 16 	be r4,r12,80145f0 <_Timer_server_Body+0x158>   <== NOT EXECUTED
    _Watchdog_Insert( &ts->Interval_watchdogs.Chain, &timer->Ticker );
  } else if ( timer->the_class == TIMER_TIME_OF_DAY_ON_TASK ) {       
 801459c:	5c 8d ff fa 	bne r4,r13,8014584 <_Timer_server_Body+0xec>   <== NOT EXECUTED
    _Watchdog_Insert( &ts->TOD_watchdogs.Chain, &timer->Ticker );     
 80145a0:	34 42 00 10 	addi r2,r2,16                                  <== NOT EXECUTED
 80145a4:	b9 e0 08 00 	mv r1,r15                                      <== NOT EXECUTED
 80145a8:	f8 00 15 57 	calli 8019b04 <_Watchdog_Insert>               <== NOT EXECUTED
}                                                                     
                                                                      
static void _Timer_server_Process_insertions( Timer_server_Control *ts )
{                                                                     
  while ( true ) {                                                    
    Timer_Control *timer = (Timer_Control *) _Chain_Get( ts->insert_chain );
 80145ac:	29 61 00 78 	lw r1,(r11+120)                                <== NOT EXECUTED
 80145b0:	f8 00 03 2d 	calli 8015264 <_Chain_Get>                     <== NOT EXECUTED
 80145b4:	b8 20 10 00 	mv r2,r1                                       <== NOT EXECUTED
                                                                      
    if ( timer == NULL ) {                                            
 80145b8:	5c 20 ff f7 	bne r1,r0,8014594 <_Timer_server_Body+0xfc>    <== NOT EXECUTED
     *  of zero it will be processed in the next iteration of the timer server
     *  body loop.                                                    
     */                                                               
    _Timer_server_Process_insertions( ts );                           
                                                                      
    _ISR_Disable( level );                                            
 80145bc:	90 00 10 00 	rcsr r2,IE                                     
 80145c0:	a0 51 18 00 	and r3,r2,r17                                  
 80145c4:	d0 03 00 00 	wcsr IE,r3                                     
    if ( _Chain_Is_empty( insert_chain ) ) {                          
 80145c8:	2b 83 00 54 	lw r3,(sp+84)                                  
 80145cc:	46 a3 00 0d 	be r21,r3,8014600 <_Timer_server_Body+0x168>   <== ALWAYS TAKEN
      ts->insert_chain = NULL;                                        
      _ISR_Enable( level );                                           
                                                                      
      break;                                                          
    } else {                                                          
      _ISR_Enable( level );                                           
 80145d0:	d0 02 00 00 	wcsr IE,r2                                     <== NOT EXECUTED
 80145d4:	e3 ff ff dc 	bi 8014544 <_Timer_server_Body+0xac>           <== NOT EXECUTED
     *  TOD has been set forward.                                     
     */                                                               
    delta = snapshot - last_snapshot;                                 
    _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );
                                                                      
  } else if ( snapshot < last_snapshot ) {                            
 80145d8:	51 84 ff e9 	bgeu r12,r4,801457c <_Timer_server_Body+0xe4>  
     /*                                                               
      *  The current TOD is before the last TOD which indicates that  
      *  TOD has been set backwards.                                  
      */                                                              
     delta = last_snapshot - snapshot;                                
     _Watchdog_Adjust( &watchdogs->Chain, WATCHDOG_BACKWARD, delta ); 
 80145dc:	b9 e0 08 00 	mv r1,r15                                      
 80145e0:	34 02 00 01 	mvi r2,1                                       
 80145e4:	c8 8c 18 00 	sub r3,r4,r12                                  
 80145e8:	f8 00 14 e3 	calli 8019974 <_Watchdog_Adjust>               
 80145ec:	e3 ff ff e4 	bi 801457c <_Timer_server_Body+0xe4>           
  Timer_server_Control *ts,                                           
  Timer_Control *timer                                                
)                                                                     
{                                                                     
  if ( timer->the_class == TIMER_INTERVAL_ON_TASK ) {                 
    _Watchdog_Insert( &ts->Interval_watchdogs.Chain, &timer->Ticker );
 80145f0:	ba 00 08 00 	mv r1,r16                                      <== NOT EXECUTED
 80145f4:	34 42 00 10 	addi r2,r2,16                                  <== NOT EXECUTED
 80145f8:	f8 00 15 43 	calli 8019b04 <_Watchdog_Insert>               <== NOT EXECUTED
 80145fc:	e3 ff ff e2 	bi 8014584 <_Timer_server_Body+0xec>           <== NOT EXECUTED
     */                                                               
    _Timer_server_Process_insertions( ts );                           
                                                                      
    _ISR_Disable( level );                                            
    if ( _Chain_Is_empty( insert_chain ) ) {                          
      ts->insert_chain = NULL;                                        
 8014600:	59 60 00 78 	sw (r11+120),r0                                
      _ISR_Enable( level );                                           
 8014604:	d0 02 00 00 	wcsr IE,r2                                     
  _Chain_Initialize_empty( &fire_chain );                             
                                                                      
  while ( true ) {                                                    
    _Timer_server_Get_watchdogs_that_fire_now( ts, &insert_chain, &fire_chain );
                                                                      
    if ( !_Chain_Is_empty( &fire_chain ) ) {                          
 8014608:	2b 82 00 48 	lw r2,(sp+72)                                  
 801460c:	5e 82 00 0b 	bne r20,r2,8014638 <_Timer_server_Body+0x1a0>  
 8014610:	e0 00 00 11 	bi 8014654 <_Timer_server_Body+0x1bc>          
{                                                                     
  Chain_Node  *return_node;                                           
  Chain_Node  *new_first;                                             
                                                                      
  return_node         = the_chain->first;                             
  new_first           = return_node->next;                            
 8014614:	28 43 00 00 	lw r3,(r2+0)                                   
  the_chain->first    = new_first;                                    
  new_first->previous = _Chain_Head(the_chain);                       
 8014618:	58 6e 00 04 	sw (r3+4),r14                                  
  Chain_Node  *return_node;                                           
  Chain_Node  *new_first;                                             
                                                                      
  return_node         = the_chain->first;                             
  new_first           = return_node->next;                            
  the_chain->first    = new_first;                                    
 801461c:	5b 83 00 48 	sw (sp+72),r3                                  
         *  service routine may remove a watchdog from the chain.     
         */                                                           
        _ISR_Disable( level );                                        
        watchdog = (Watchdog_Control *) _Chain_Get_unprotected( &fire_chain );
        if ( watchdog != NULL ) {                                     
          watchdog->state = WATCHDOG_INACTIVE;                        
 8014620:	58 40 00 08 	sw (r2+8),r0                                   
          _ISR_Enable( level );                                       
 8014624:	d0 04 00 00 	wcsr IE,r4                                     
        /*                                                            
         *  The timer server may block here and wait for resources or time.
         *  The system watchdogs are inactive and will remain inactive since
         *  the active flag of the timer server is true.              
         */                                                           
        (*watchdog->routine)( watchdog->id, watchdog->user_data );    
 8014628:	28 43 00 1c 	lw r3,(r2+28)                                  
 801462c:	28 41 00 20 	lw r1,(r2+32)                                  
 8014630:	28 42 00 24 	lw r2,(r2+36)                                  
 8014634:	d8 60 00 00 	call r3                                        
                                                                      
        /*                                                            
         *  It is essential that interrupts are disable here since an interrupt
         *  service routine may remove a watchdog from the chain.     
         */                                                           
        _ISR_Disable( level );                                        
 8014638:	90 00 20 00 	rcsr r4,IE                                     
 801463c:	a0 91 10 00 	and r2,r4,r17                                  
 8014640:	d0 02 00 00 	wcsr IE,r2                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
 8014644:	2b 82 00 48 	lw r2,(sp+72)                                  
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Get_unprotected(              
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  if ( !_Chain_Is_empty(the_chain))                                   
 8014648:	5e 82 ff f3 	bne r20,r2,8014614 <_Timer_server_Body+0x17c>  
        watchdog = (Watchdog_Control *) _Chain_Get_unprotected( &fire_chain );
        if ( watchdog != NULL ) {                                     
          watchdog->state = WATCHDOG_INACTIVE;                        
          _ISR_Enable( level );                                       
        } else {                                                      
          _ISR_Enable( level );                                       
 801464c:	d0 04 00 00 	wcsr IE,r4                                     
 8014650:	e3 ff ff bc 	bi 8014540 <_Timer_server_Body+0xa8>           
         *  the active flag of the timer server is true.              
         */                                                           
        (*watchdog->routine)( watchdog->id, watchdog->user_data );    
      }                                                               
    } else {                                                          
      ts->active = false;                                             
 8014654:	31 60 00 7c 	sb (r11+124),r0                                
 8014658:	2a e1 00 00 	lw r1,(r23+0)                                  
 801465c:	34 21 00 01 	addi r1,r1,1                                   
 8014660:	5a e1 00 00 	sw (r23+0),r1                                  
                                                                      
      /*                                                              
       *  Block until there is something to do.                       
       */                                                             
      _Thread_Disable_dispatch();                                     
        _Thread_Set_state( ts->thread, STATES_DELAYING );             
 8014664:	29 61 00 00 	lw r1,(r11+0)                                  
 8014668:	34 02 00 08 	mvi r2,8                                       
 801466c:	f8 00 11 c2 	calli 8018d74 <_Thread_Set_state>              
        _Timer_server_Reset_interval_system_watchdog( ts );           
 8014670:	b9 60 08 00 	mv r1,r11                                      
 8014674:	fb ff ff 47 	calli 8014390 <_Timer_server_Reset_interval_system_watchdog>
        _Timer_server_Reset_tod_system_watchdog( ts );                
 8014678:	b9 60 08 00 	mv r1,r11                                      
 801467c:	fb ff ff 66 	calli 8014414 <_Timer_server_Reset_tod_system_watchdog>
      _Thread_Enable_dispatch();                                      
 8014680:	f8 00 0e 95 	calli 80180d4 <_Thread_Enable_dispatch>        
                                                                      
static void _Timer_server_Stop_interval_system_watchdog(              
  Timer_server_Control *ts                                            
)                                                                     
{                                                                     
  _Watchdog_Remove( &ts->Interval_watchdogs.System_watchdog );        
 8014684:	bb 60 08 00 	mv r1,fp                                       
        _Thread_Set_state( ts->thread, STATES_DELAYING );             
        _Timer_server_Reset_interval_system_watchdog( ts );           
        _Timer_server_Reset_tod_system_watchdog( ts );                
      _Thread_Enable_dispatch();                                      
                                                                      
      ts->active = true;                                              
 8014688:	31 78 00 7c 	sb (r11+124),r24                               
                                                                      
static void _Timer_server_Stop_interval_system_watchdog(              
  Timer_server_Control *ts                                            
)                                                                     
{                                                                     
  _Watchdog_Remove( &ts->Interval_watchdogs.System_watchdog );        
 801468c:	f8 00 15 87 	calli 8019ca8 <_Watchdog_Remove>               
                                                                      
static void _Timer_server_Stop_tod_system_watchdog(                   
  Timer_server_Control *ts                                            
)                                                                     
{                                                                     
  _Watchdog_Remove( &ts->TOD_watchdogs.System_watchdog );             
 8014690:	bb 20 08 00 	mv r1,r25                                      
 8014694:	f8 00 15 85 	calli 8019ca8 <_Watchdog_Remove>               
 8014698:	e3 ff ff aa 	bi 8014540 <_Timer_server_Body+0xa8>           
                                                                      

0801469c <_Timer_server_Schedule_operation_method>: static void _Timer_server_Schedule_operation_method( Timer_server_Control *ts, Timer_Control *timer ) {
 801469c:	37 9c ff f8 	addi sp,sp,-8                                  
 80146a0:	5b 8b 00 08 	sw (sp+8),r11                                  
 80146a4:	5b 9d 00 04 	sw (sp+4),ra                                   
 80146a8:	b8 20 58 00 	mv r11,r1                                      
  if ( ts->insert_chain == NULL ) {                                   
 80146ac:	28 21 00 78 	lw r1,(r1+120)                                 
                                                                      
static void _Timer_server_Schedule_operation_method(                  
  Timer_server_Control *ts,                                           
  Timer_Control *timer                                                
)                                                                     
{                                                                     
 80146b0:	b8 40 18 00 	mv r3,r2                                       
  if ( ts->insert_chain == NULL ) {                                   
 80146b4:	44 20 00 07 	be r1,r0,80146d0 <_Timer_server_Schedule_operation_method+0x34><== ALWAYS TAKEN
     *  server is not preemptible, so we must be in interrupt context here.  No
     *  thread dispatch will happen until the timer server finishes its
     *  critical section.  We have to use the protected chain methods because
     *  we may be interrupted by a higher priority interrupt.         
     */                                                               
    _Chain_Append( ts->insert_chain, &timer->Object.Node );           
 80146b8:	29 61 00 78 	lw r1,(r11+120)                                <== NOT EXECUTED
 80146bc:	f8 00 02 d4 	calli 801520c <_Chain_Append>                  <== NOT EXECUTED
  }                                                                   
}                                                                     
 80146c0:	2b 9d 00 04 	lw ra,(sp+4)                                   <== NOT EXECUTED
 80146c4:	2b 8b 00 08 	lw r11,(sp+8)                                  <== NOT EXECUTED
 80146c8:	37 9c 00 08 	addi sp,sp,8                                   <== NOT EXECUTED
 80146cc:	c3 a0 00 00 	ret                                            <== NOT EXECUTED
 80146d0:	78 01 08 03 	mvhi r1,0x803                                  
 80146d4:	38 21 ec 2c 	ori r1,r1,0xec2c                               
 80146d8:	28 22 00 00 	lw r2,(r1+0)                                   
 80146dc:	34 42 00 01 	addi r2,r2,1                                   
 80146e0:	58 22 00 00 	sw (r1+0),r2                                   
   *  being inserted.  This could result in an integer overflow.      
   */                                                                 
                                                                      
  _Thread_Disable_dispatch();                                         
                                                                      
  if ( timer->the_class == TIMER_INTERVAL_ON_TASK ) {                 
 80146e4:	28 61 00 38 	lw r1,(r3+56)                                  
 80146e8:	34 02 00 01 	mvi r2,1                                       
 80146ec:	44 22 00 28 	be r1,r2,801478c <_Timer_server_Schedule_operation_method+0xf0>
    _Watchdog_Insert( &ts->Interval_watchdogs.Chain, &timer->Ticker );
                                                                      
    if ( !ts->active ) {                                              
      _Timer_server_Reset_interval_system_watchdog( ts );             
    }                                                                 
  } else if ( timer->the_class == TIMER_TIME_OF_DAY_ON_TASK ) {       
 80146f0:	34 02 00 03 	mvi r2,3                                       
 80146f4:	44 22 00 06 	be r1,r2,801470c <_Timer_server_Schedule_operation_method+0x70>
    if ( !ts->active ) {                                              
      _Timer_server_Reset_tod_system_watchdog( ts );                  
    }                                                                 
  }                                                                   
                                                                      
  _Thread_Enable_dispatch();                                          
 80146f8:	f8 00 0e 77 	calli 80180d4 <_Thread_Enable_dispatch>        
     *  critical section.  We have to use the protected chain methods because
     *  we may be interrupted by a higher priority interrupt.         
     */                                                               
    _Chain_Append( ts->insert_chain, &timer->Object.Node );           
  }                                                                   
}                                                                     
 80146fc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8014700:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8014704:	37 9c 00 08 	addi sp,sp,8                                   
 8014708:	c3 a0 00 00 	ret                                            
  } else if ( timer->the_class == TIMER_TIME_OF_DAY_ON_TASK ) {       
    /*                                                                
     *  We have to advance the last known seconds value of the server and update
     *  the watchdog chain accordingly.                               
     */                                                               
    _ISR_Disable( level );                                            
 801470c:	90 00 38 00 	rcsr r7,IE                                     
 8014710:	34 01 ff fe 	mvi r1,-2                                      
 8014714:	a0 e1 08 00 	and r1,r7,r1                                   
 8014718:	d0 01 00 00 	wcsr IE,r1                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
 801471c:	29 62 00 68 	lw r2,(r11+104)                                
    snapshot = (Watchdog_Interval) _TOD_Seconds_since_epoch();        
 8014720:	78 01 08 03 	mvhi r1,0x803                                  
    last_snapshot = ts->TOD_watchdogs.last_snapshot;                  
 8014724:	29 64 00 74 	lw r4,(r11+116)                                
    /*                                                                
     *  We have to advance the last known seconds value of the server and update
     *  the watchdog chain accordingly.                               
     */                                                               
    _ISR_Disable( level );                                            
    snapshot = (Watchdog_Interval) _TOD_Seconds_since_epoch();        
 8014728:	38 21 ec b4 	ori r1,r1,0xecb4                               
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 801472c:	35 65 00 6c 	addi r5,r11,108                                
 8014730:	28 21 00 00 	lw r1,(r1+0)                                   
    last_snapshot = ts->TOD_watchdogs.last_snapshot;                  
    if ( !_Chain_Is_empty( &ts->TOD_watchdogs.Chain ) ) {             
 8014734:	44 45 00 0a 	be r2,r5,801475c <_Timer_server_Schedule_operation_method+0xc0>
      first_watchdog = _Watchdog_First( &ts->TOD_watchdogs.Chain );   
      delta_interval = first_watchdog->delta_interval;                
 8014738:	28 46 00 10 	lw r6,(r2+16)                                  
        }                                                             
      } else {                                                        
        /*                                                            
         *  Someone put us in the past.                               
         */                                                           
        delta = last_snapshot - snapshot;                             
 801473c:	b4 c4 28 00 	add r5,r6,r4                                   
        delta_interval += delta;                                      
 8014740:	c8 a1 28 00 	sub r5,r5,r1                                   
    snapshot = (Watchdog_Interval) _TOD_Seconds_since_epoch();        
    last_snapshot = ts->TOD_watchdogs.last_snapshot;                  
    if ( !_Chain_Is_empty( &ts->TOD_watchdogs.Chain ) ) {             
      first_watchdog = _Watchdog_First( &ts->TOD_watchdogs.Chain );   
      delta_interval = first_watchdog->delta_interval;                
      if ( snapshot > last_snapshot ) {                               
 8014744:	50 81 00 05 	bgeu r4,r1,8014758 <_Timer_server_Schedule_operation_method+0xbc>
        /*                                                            
         *  We advanced in time.                                      
         */                                                           
        delta = snapshot - last_snapshot;                             
 8014748:	c8 24 20 00 	sub r4,r1,r4                                   
        if (delta_interval > delta) {                                 
          delta_interval -= delta;                                    
        } else {                                                      
          delta_interval = 0;                                         
 801474c:	34 05 00 00 	mvi r5,0                                       
      if ( snapshot > last_snapshot ) {                               
        /*                                                            
         *  We advanced in time.                                      
         */                                                           
        delta = snapshot - last_snapshot;                             
        if (delta_interval > delta) {                                 
 8014750:	50 86 00 02 	bgeu r4,r6,8014758 <_Timer_server_Schedule_operation_method+0xbc><== NEVER TAKEN
          delta_interval -= delta;                                    
 8014754:	c8 c4 28 00 	sub r5,r6,r4                                   
         *  Someone put us in the past.                               
         */                                                           
        delta = last_snapshot - snapshot;                             
        delta_interval += delta;                                      
      }                                                               
      first_watchdog->delta_interval = delta_interval;                
 8014758:	58 45 00 10 	sw (r2+16),r5                                  
    }                                                                 
    ts->TOD_watchdogs.last_snapshot = snapshot;                       
 801475c:	59 61 00 74 	sw (r11+116),r1                                
    _ISR_Enable( level );                                             
 8014760:	d0 07 00 00 	wcsr IE,r7                                     
                                                                      
    _Watchdog_Insert( &ts->TOD_watchdogs.Chain, &timer->Ticker );     
 8014764:	35 61 00 68 	addi r1,r11,104                                
 8014768:	34 62 00 10 	addi r2,r3,16                                  
 801476c:	f8 00 14 e6 	calli 8019b04 <_Watchdog_Insert>               
                                                                      
    if ( !ts->active ) {                                              
 8014770:	41 61 00 7c 	lbu r1,(r11+124)                               
 8014774:	20 21 00 ff 	andi r1,r1,0xff                                
 8014778:	5c 20 ff e0 	bne r1,r0,80146f8 <_Timer_server_Schedule_operation_method+0x5c><== NEVER TAKEN
      _Timer_server_Reset_tod_system_watchdog( ts );                  
 801477c:	b9 60 08 00 	mv r1,r11                                      
 8014780:	fb ff ff 25 	calli 8014414 <_Timer_server_Reset_tod_system_watchdog>
    }                                                                 
  }                                                                   
                                                                      
  _Thread_Enable_dispatch();                                          
 8014784:	f8 00 0e 54 	calli 80180d4 <_Thread_Enable_dispatch>        
 8014788:	e3 ff ff dd 	bi 80146fc <_Timer_server_Schedule_operation_method+0x60>
  if ( timer->the_class == TIMER_INTERVAL_ON_TASK ) {                 
    /*                                                                
     *  We have to advance the last known ticks value of the server and update
     *  the watchdog chain accordingly.                               
     */                                                               
    _ISR_Disable( level );                                            
 801478c:	90 00 20 00 	rcsr r4,IE                                     
 8014790:	34 01 ff fe 	mvi r1,-2                                      
 8014794:	a0 81 08 00 	and r1,r4,r1                                   
 8014798:	d0 01 00 00 	wcsr IE,r1                                     
    snapshot = _Watchdog_Ticks_since_boot;                            
 801479c:	78 01 08 03 	mvhi r1,0x803                                  
 80147a0:	38 21 ed 64 	ori r1,r1,0xed64                               
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
 80147a4:	29 62 00 30 	lw r2,(r11+48)                                 
 80147a8:	28 21 00 00 	lw r1,(r1+0)                                   
    last_snapshot = ts->Interval_watchdogs.last_snapshot;             
 80147ac:	29 66 00 3c 	lw r6,(r11+60)                                 
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 80147b0:	35 65 00 34 	addi r5,r11,52                                 
    if ( !_Chain_Is_empty( &ts->Interval_watchdogs.Chain ) ) {        
 80147b4:	44 45 00 07 	be r2,r5,80147d0 <_Timer_server_Schedule_operation_method+0x134>
      /*                                                              
       *  We assume adequate unsigned arithmetic here.                
       */                                                             
      delta = snapshot - last_snapshot;                               
                                                                      
      delta_interval = first_watchdog->delta_interval;                
 80147b8:	28 47 00 10 	lw r7,(r2+16)                                  
      first_watchdog = _Watchdog_First( &ts->Interval_watchdogs.Chain );
                                                                      
      /*                                                              
       *  We assume adequate unsigned arithmetic here.                
       */                                                             
      delta = snapshot - last_snapshot;                               
 80147bc:	c8 26 30 00 	sub r6,r1,r6                                   
                                                                      
      delta_interval = first_watchdog->delta_interval;                
      if (delta_interval > delta) {                                   
        delta_interval -= delta;                                      
      } else {                                                        
        delta_interval = 0;                                           
 80147c0:	34 05 00 00 	mvi r5,0                                       
       *  We assume adequate unsigned arithmetic here.                
       */                                                             
      delta = snapshot - last_snapshot;                               
                                                                      
      delta_interval = first_watchdog->delta_interval;                
      if (delta_interval > delta) {                                   
 80147c4:	50 c7 00 02 	bgeu r6,r7,80147cc <_Timer_server_Schedule_operation_method+0x130>
        delta_interval -= delta;                                      
 80147c8:	c8 e6 28 00 	sub r5,r7,r6                                   
      } else {                                                        
        delta_interval = 0;                                           
      }                                                               
      first_watchdog->delta_interval = delta_interval;                
 80147cc:	58 45 00 10 	sw (r2+16),r5                                  
    }                                                                 
    ts->Interval_watchdogs.last_snapshot = snapshot;                  
 80147d0:	59 61 00 3c 	sw (r11+60),r1                                 
    _ISR_Enable( level );                                             
 80147d4:	d0 04 00 00 	wcsr IE,r4                                     
                                                                      
    _Watchdog_Insert( &ts->Interval_watchdogs.Chain, &timer->Ticker );
 80147d8:	35 61 00 30 	addi r1,r11,48                                 
 80147dc:	34 62 00 10 	addi r2,r3,16                                  
 80147e0:	f8 00 14 c9 	calli 8019b04 <_Watchdog_Insert>               
                                                                      
    if ( !ts->active ) {                                              
 80147e4:	41 61 00 7c 	lbu r1,(r11+124)                               
 80147e8:	20 21 00 ff 	andi r1,r1,0xff                                
 80147ec:	5c 20 ff c3 	bne r1,r0,80146f8 <_Timer_server_Schedule_operation_method+0x5c>
      _Timer_server_Reset_interval_system_watchdog( ts );             
 80147f0:	b9 60 08 00 	mv r1,r11                                      
 80147f4:	fb ff fe e7 	calli 8014390 <_Timer_server_Reset_interval_system_watchdog>
    if ( !ts->active ) {                                              
      _Timer_server_Reset_tod_system_watchdog( ts );                  
    }                                                                 
  }                                                                   
                                                                      
  _Thread_Enable_dispatch();                                          
 80147f8:	f8 00 0e 37 	calli 80180d4 <_Thread_Enable_dispatch>        
 80147fc:	e3 ff ff c0 	bi 80146fc <_Timer_server_Schedule_operation_method+0x60>
                                                                      

08006450 <_Timespec_Add_to>: uint32_t _Timespec_Add_to( struct timespec *time, const struct timespec *add ) {
 8006450:	b8 20 20 00 	mv r4,r1                                       
  uint32_t seconds = add->tv_sec;                                     
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
 8006454:	28 83 00 00 	lw r3,(r4+0)                                   
uint32_t _Timespec_Add_to(                                            
  struct timespec       *time,                                        
  const struct timespec *add                                          
)                                                                     
{                                                                     
  uint32_t seconds = add->tv_sec;                                     
 8006458:	28 41 00 00 	lw r1,(r2+0)                                   
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
  time->tv_nsec += add->tv_nsec;                                      
 800645c:	28 86 00 04 	lw r6,(r4+4)                                   
 8006460:	28 42 00 04 	lw r2,(r2+4)                                   
                                                                      
  /* Now adjust it so nanoseconds is in range */                      
  while ( time->tv_nsec >= TOD_NANOSECONDS_PER_SECOND ) {             
 8006464:	78 07 08 01 	mvhi r7,0x801                                  
 8006468:	38 e7 21 dc 	ori r7,r7,0x21dc                               
 800646c:	28 e5 00 00 	lw r5,(r7+0)                                   
)                                                                     
{                                                                     
  uint32_t seconds = add->tv_sec;                                     
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
 8006470:	b4 61 18 00 	add r3,r3,r1                                   
  time->tv_nsec += add->tv_nsec;                                      
 8006474:	b4 46 10 00 	add r2,r2,r6                                   
)                                                                     
{                                                                     
  uint32_t seconds = add->tv_sec;                                     
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
 8006478:	58 83 00 00 	sw (r4+0),r3                                   
  time->tv_nsec += add->tv_nsec;                                      
 800647c:	58 82 00 04 	sw (r4+4),r2                                   
                                                                      
  /* Now adjust it so nanoseconds is in range */                      
  while ( time->tv_nsec >= TOD_NANOSECONDS_PER_SECOND ) {             
 8006480:	50 a2 00 0a 	bgeu r5,r2,80064a8 <_Timespec_Add_to+0x58>     
    time->tv_nsec -= TOD_NANOSECONDS_PER_SECOND;                      
 8006484:	78 07 08 01 	mvhi r7,0x801                                  
 8006488:	38 e7 21 e0 	ori r7,r7,0x21e0                               
 800648c:	28 e6 00 00 	lw r6,(r7+0)                                   
 8006490:	b4 46 10 00 	add r2,r2,r6                                   
 *                                                                    
 *  This routines adds two timespecs.  The second argument is added   
 *  to the first.                                                     
 */                                                                   
                                                                      
uint32_t _Timespec_Add_to(                                            
 8006494:	34 63 00 01 	addi r3,r3,1                                   
                                                                      
  /* Now adjust it so nanoseconds is in range */                      
  while ( time->tv_nsec >= TOD_NANOSECONDS_PER_SECOND ) {             
    time->tv_nsec -= TOD_NANOSECONDS_PER_SECOND;                      
    time->tv_sec++;                                                   
    seconds++;                                                        
 8006498:	34 21 00 01 	addi r1,r1,1                                   
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
  time->tv_nsec += add->tv_nsec;                                      
                                                                      
  /* Now adjust it so nanoseconds is in range */                      
  while ( time->tv_nsec >= TOD_NANOSECONDS_PER_SECOND ) {             
 800649c:	54 45 ff fd 	bgu r2,r5,8006490 <_Timespec_Add_to+0x40>      <== NEVER TAKEN
 80064a0:	58 82 00 04 	sw (r4+4),r2                                   
 80064a4:	58 83 00 00 	sw (r4+0),r3                                   
    time->tv_sec++;                                                   
    seconds++;                                                        
  }                                                                   
                                                                      
  return seconds;                                                     
}                                                                     
 80064a8:	c3 a0 00 00 	ret                                            
                                                                      

08008bfc <_Timespec_Greater_than>: bool _Timespec_Greater_than( const struct timespec *lhs, const struct timespec *rhs ) { if ( lhs->tv_sec > rhs->tv_sec )
 8008bfc:	28 24 00 00 	lw r4,(r1+0)                                   
 8008c00:	28 45 00 00 	lw r5,(r2+0)                                   
                                                                      
bool _Timespec_Greater_than(                                          
  const struct timespec *lhs,                                         
  const struct timespec *rhs                                          
)                                                                     
{                                                                     
 8008c04:	b8 20 18 00 	mv r3,r1                                       
  if ( lhs->tv_sec > rhs->tv_sec )                                    
    return true;                                                      
 8008c08:	34 01 00 01 	mvi r1,1                                       
bool _Timespec_Greater_than(                                          
  const struct timespec *lhs,                                         
  const struct timespec *rhs                                          
)                                                                     
{                                                                     
  if ( lhs->tv_sec > rhs->tv_sec )                                    
 8008c0c:	48 85 00 06 	bg r4,r5,8008c24 <_Timespec_Greater_than+0x28> 
    return true;                                                      
                                                                      
  if ( lhs->tv_sec < rhs->tv_sec )                                    
    return false;                                                     
 8008c10:	34 01 00 00 	mvi r1,0                                       
)                                                                     
{                                                                     
  if ( lhs->tv_sec > rhs->tv_sec )                                    
    return true;                                                      
                                                                      
  if ( lhs->tv_sec < rhs->tv_sec )                                    
 8008c14:	48 a4 00 04 	bg r5,r4,8008c24 <_Timespec_Greater_than+0x28> <== NEVER TAKEN
                                                                      
#include <rtems/system.h>                                             
#include <rtems/score/timespec.h>                                     
#include <rtems/score/tod.h>                                          
                                                                      
bool _Timespec_Greater_than(                                          
 8008c18:	28 63 00 04 	lw r3,(r3+4)                                   
 8008c1c:	28 41 00 04 	lw r1,(r2+4)                                   
 8008c20:	e8 61 08 00 	cmpg r1,r3,r1                                  
  /* ASSERT: lhs->tv_sec == rhs->tv_sec */                            
  if ( lhs->tv_nsec > rhs->tv_nsec )                                  
    return true;                                                      
                                                                      
  return false;                                                       
}                                                                     
 8008c24:	c3 a0 00 00 	ret                                            
                                                                      

080066d0 <_User_extensions_Fatal>: void _User_extensions_Fatal ( Internal_errors_Source the_source, bool is_internal, Internal_errors_t the_error ) {
 80066d0:	37 9c ff e8 	addi sp,sp,-24                                 
 80066d4:	5b 8b 00 18 	sw (sp+24),r11                                 
 80066d8:	5b 8c 00 14 	sw (sp+20),r12                                 
 80066dc:	5b 8d 00 10 	sw (sp+16),r13                                 
 80066e0:	5b 8e 00 0c 	sw (sp+12),r14                                 
 80066e4:	5b 8f 00 08 	sw (sp+8),r15                                  
 80066e8:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
 80066ec:	78 0c 08 01 	mvhi r12,0x801                                 
 80066f0:	39 8c 39 a4 	ori r12,r12,0x39a4                             
 80066f4:	29 8b 00 08 	lw r11,(r12+8)                                 
void _User_extensions_Fatal (                                         
  Internal_errors_Source  the_source,                                 
  bool                    is_internal,                                
  Internal_errors_t       the_error                                   
)                                                                     
{                                                                     
 80066f8:	b8 20 78 00 	mv r15,r1                                      
 80066fc:	b8 60 70 00 	mv r14,r3                                      
 8006700:	20 4d 00 ff 	andi r13,r2,0xff                               
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
 8006704:	45 6c 00 09 	be r11,r12,8006728 <_User_extensions_Fatal+0x58><== NEVER TAKEN
        !_Chain_Is_head( &_User_extensions_List, the_node ) ;         
        the_node = the_node->previous ) {                             
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.fatal != NULL )                      
 8006708:	29 64 00 30 	lw r4,(r11+48)                                 
      (*the_extension->Callouts.fatal)( the_source, is_internal, the_error );
 800670c:	b9 e0 08 00 	mv r1,r15                                      
 8006710:	b9 a0 10 00 	mv r2,r13                                      
 8006714:	b9 c0 18 00 	mv r3,r14                                      
        !_Chain_Is_head( &_User_extensions_List, the_node ) ;         
        the_node = the_node->previous ) {                             
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.fatal != NULL )                      
 8006718:	44 80 00 02 	be r4,r0,8006720 <_User_extensions_Fatal+0x50> 
      (*the_extension->Callouts.fatal)( the_source, is_internal, the_error );
 800671c:	d8 80 00 00 	call r4                                        
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
        !_Chain_Is_head( &_User_extensions_List, the_node ) ;         
        the_node = the_node->previous ) {                             
 8006720:	29 6b 00 04 	lw r11,(r11+4)                                 
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
 8006724:	5d 6c ff f9 	bne r11,r12,8006708 <_User_extensions_Fatal+0x38>
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.fatal != NULL )                      
      (*the_extension->Callouts.fatal)( the_source, is_internal, the_error );
  }                                                                   
}                                                                     
 8006728:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800672c:	2b 8b 00 18 	lw r11,(sp+24)                                 
 8006730:	2b 8c 00 14 	lw r12,(sp+20)                                 
 8006734:	2b 8d 00 10 	lw r13,(sp+16)                                 
 8006738:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 800673c:	2b 8f 00 08 	lw r15,(sp+8)                                  
 8006740:	37 9c 00 18 	addi sp,sp,24                                  
 8006744:	c3 a0 00 00 	ret                                            
                                                                      

08006504 <_User_extensions_Handler_initialization>: #include <rtems/score/userext.h> #include <rtems/score/wkspace.h> #include <string.h> void _User_extensions_Handler_initialization(void) {
 8006504:	37 9c ff ec 	addi sp,sp,-20                                 
 8006508:	5b 8b 00 14 	sw (sp+20),r11                                 
 800650c:	5b 8c 00 10 	sw (sp+16),r12                                 
 8006510:	5b 8d 00 0c 	sw (sp+12),r13                                 
 8006514:	5b 8e 00 08 	sw (sp+8),r14                                  
 8006518:	5b 9d 00 04 	sw (sp+4),ra                                   
  User_extensions_Control *extension;                                 
  uint32_t                 i;                                         
  uint32_t                 number_of_extensions;                      
  User_extensions_Table   *initial_extensions;                        
                                                                      
  number_of_extensions = Configuration.number_of_initial_extensions;  
 800651c:	78 03 08 01 	mvhi r3,0x801                                  
 8006520:	38 63 30 c4 	ori r3,r3,0x30c4                               
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
 8006524:	78 02 08 01 	mvhi r2,0x801                                  
 8006528:	78 05 08 01 	mvhi r5,0x801                                  
 800652c:	78 01 08 01 	mvhi r1,0x801                                  
 8006530:	78 04 08 01 	mvhi r4,0x801                                  
  initial_extensions   = Configuration.User_extension_table;          
 8006534:	28 6b 00 3c 	lw r11,(r3+60)                                 
 8006538:	38 42 39 a4 	ori r2,r2,0x39a4                               
 800653c:	38 21 38 20 	ori r1,r1,0x3820                               
 8006540:	38 a5 39 a8 	ori r5,r5,0x39a8                               
 8006544:	38 84 38 24 	ori r4,r4,0x3824                               
 8006548:	58 45 00 00 	sw (r2+0),r5                                   
  the_chain->permanent_null = NULL;                                   
 800654c:	58 40 00 04 	sw (r2+4),r0                                   
  the_chain->last           = _Chain_Head(the_chain);                 
 8006550:	58 42 00 08 	sw (r2+8),r2                                   
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
 8006554:	58 24 00 00 	sw (r1+0),r4                                   
  the_chain->permanent_null = NULL;                                   
 8006558:	58 20 00 04 	sw (r1+4),r0                                   
  the_chain->last           = _Chain_Head(the_chain);                 
 800655c:	58 21 00 08 	sw (r1+8),r1                                   
  User_extensions_Control *extension;                                 
  uint32_t                 i;                                         
  uint32_t                 number_of_extensions;                      
  User_extensions_Table   *initial_extensions;                        
                                                                      
  number_of_extensions = Configuration.number_of_initial_extensions;  
 8006560:	28 6e 00 38 	lw r14,(r3+56)                                 
  initial_extensions   = Configuration.User_extension_table;          
                                                                      
  _Chain_Initialize_empty( &_User_extensions_List );                  
  _Chain_Initialize_empty( &_User_extensions_Switches_list );         
                                                                      
  if ( initial_extensions ) {                                         
 8006564:	45 60 00 26 	be r11,r0,80065fc <_User_extensions_Handler_initialization+0xf8><== NEVER TAKEN
    extension = (User_extensions_Control *)                           
      _Workspace_Allocate_or_fatal_error(                             
        number_of_extensions * sizeof( User_extensions_Control )      
 8006568:	b5 ce 68 00 	add r13,r14,r14                                
 800656c:	b5 ae 68 00 	add r13,r13,r14                                
 8006570:	b5 ad 68 00 	add r13,r13,r13                                
 8006574:	b5 ad 68 00 	add r13,r13,r13                                
 8006578:	b5 ae 68 00 	add r13,r13,r14                                
 800657c:	b5 ad 68 00 	add r13,r13,r13                                
 8006580:	b5 ad 68 00 	add r13,r13,r13                                
  _Chain_Initialize_empty( &_User_extensions_List );                  
  _Chain_Initialize_empty( &_User_extensions_Switches_list );         
                                                                      
  if ( initial_extensions ) {                                         
    extension = (User_extensions_Control *)                           
      _Workspace_Allocate_or_fatal_error(                             
 8006584:	b9 a0 08 00 	mv r1,r13                                      
 8006588:	f8 00 01 f7 	calli 8006d64 <_Workspace_Allocate_or_fatal_error>
        number_of_extensions * sizeof( User_extensions_Control )      
      );                                                              
                                                                      
    memset (                                                          
 800658c:	34 02 00 00 	mvi r2,0                                       
 8006590:	b9 a0 18 00 	mv r3,r13                                      
  _Chain_Initialize_empty( &_User_extensions_List );                  
  _Chain_Initialize_empty( &_User_extensions_Switches_list );         
                                                                      
  if ( initial_extensions ) {                                         
    extension = (User_extensions_Control *)                           
      _Workspace_Allocate_or_fatal_error(                             
 8006594:	b8 20 60 00 	mv r12,r1                                      
        number_of_extensions * sizeof( User_extensions_Control )      
      );                                                              
                                                                      
    memset (                                                          
 8006598:	f8 00 17 f1 	calli 800c55c <memset>                         
      extension,                                                      
      0,                                                              
      number_of_extensions * sizeof( User_extensions_Control )        
    );                                                                
                                                                      
    for ( i = 0 ; i < number_of_extensions ; i++ ) {                  
 800659c:	45 c0 00 18 	be r14,r0,80065fc <_User_extensions_Handler_initialization+0xf8><== NEVER TAKEN
 80065a0:	34 0d 00 00 	mvi r13,0                                      
RTEMS_INLINE_ROUTINE void _User_extensions_Add_set_with_table(        
  User_extensions_Control     *extension,                             
  const User_extensions_Table *extension_table                        
)                                                                     
{                                                                     
  extension->Callouts = *extension_table;                             
 80065a4:	29 62 00 00 	lw r2,(r11+0)                                  
                                                                      
  _User_extensions_Add_set( extension );                              
 80065a8:	b9 80 08 00 	mv r1,r12                                      
 80065ac:	35 ad 00 01 	addi r13,r13,1                                 
RTEMS_INLINE_ROUTINE void _User_extensions_Add_set_with_table(        
  User_extensions_Control     *extension,                             
  const User_extensions_Table *extension_table                        
)                                                                     
{                                                                     
  extension->Callouts = *extension_table;                             
 80065b0:	59 82 00 14 	sw (r12+20),r2                                 
 80065b4:	29 62 00 04 	lw r2,(r11+4)                                  
 80065b8:	59 82 00 18 	sw (r12+24),r2                                 
 80065bc:	29 62 00 08 	lw r2,(r11+8)                                  
 80065c0:	59 82 00 1c 	sw (r12+28),r2                                 
 80065c4:	29 62 00 0c 	lw r2,(r11+12)                                 
 80065c8:	59 82 00 20 	sw (r12+32),r2                                 
 80065cc:	29 62 00 10 	lw r2,(r11+16)                                 
 80065d0:	59 82 00 24 	sw (r12+36),r2                                 
 80065d4:	29 62 00 14 	lw r2,(r11+20)                                 
 80065d8:	59 82 00 28 	sw (r12+40),r2                                 
 80065dc:	29 62 00 18 	lw r2,(r11+24)                                 
 80065e0:	59 82 00 2c 	sw (r12+44),r2                                 
 80065e4:	29 62 00 1c 	lw r2,(r11+28)                                 
 80065e8:	35 6b 00 20 	addi r11,r11,32                                
 80065ec:	59 82 00 30 	sw (r12+48),r2                                 
                                                                      
  _User_extensions_Add_set( extension );                              
 80065f0:	f8 00 0e 08 	calli 8009e10 <_User_extensions_Add_set>       
      _User_extensions_Add_set_with_table (extension, &initial_extensions[i]);
      extension++;                                                    
 80065f4:	35 8c 00 34 	addi r12,r12,52                                
      extension,                                                      
      0,                                                              
      number_of_extensions * sizeof( User_extensions_Control )        
    );                                                                
                                                                      
    for ( i = 0 ; i < number_of_extensions ; i++ ) {                  
 80065f8:	55 cd ff eb 	bgu r14,r13,80065a4 <_User_extensions_Handler_initialization+0xa0>
      _User_extensions_Add_set_with_table (extension, &initial_extensions[i]);
      extension++;                                                    
    }                                                                 
  }                                                                   
}                                                                     
 80065fc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8006600:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8006604:	2b 8c 00 10 	lw r12,(sp+16)                                 
 8006608:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 800660c:	2b 8e 00 08 	lw r14,(sp+8)                                  
 8006610:	37 9c 00 14 	addi sp,sp,20                                  
 8006614:	c3 a0 00 00 	ret                                            
                                                                      

08006618 <_User_extensions_Thread_begin>: #include <rtems/score/userext.h> void _User_extensions_Thread_begin ( Thread_Control *executing ) {
 8006618:	37 9c ff f0 	addi sp,sp,-16                                 
 800661c:	5b 8b 00 10 	sw (sp+16),r11                                 
 8006620:	5b 8c 00 0c 	sw (sp+12),r12                                 
 8006624:	5b 8d 00 08 	sw (sp+8),r13                                  
 8006628:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 800662c:	78 02 08 01 	mvhi r2,0x801                                  
 8006630:	38 42 39 a4 	ori r2,r2,0x39a4                               
 8006634:	28 4b 00 00 	lw r11,(r2+0)                                  
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 8006638:	78 0c 08 01 	mvhi r12,0x801                                 
 800663c:	39 8c 39 a8 	ori r12,r12,0x39a8                             
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_begin (                                  
  Thread_Control *executing                                           
)                                                                     
{                                                                     
 8006640:	b8 20 68 00 	mv r13,r1                                      
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 8006644:	45 6c 00 07 	be r11,r12,8006660 <_User_extensions_Thread_begin+0x48><== NEVER TAKEN
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_begin != NULL )               
 8006648:	29 62 00 28 	lw r2,(r11+40)                                 
      (*the_extension->Callouts.thread_begin)( executing );           
 800664c:	b9 a0 08 00 	mv r1,r13                                      
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_begin != NULL )               
 8006650:	44 40 00 02 	be r2,r0,8006658 <_User_extensions_Thread_begin+0x40>
      (*the_extension->Callouts.thread_begin)( executing );           
 8006654:	d8 40 00 00 	call r2                                        
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
 8006658:	29 6b 00 00 	lw r11,(r11+0)                                 
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 800665c:	5d 6c ff fb 	bne r11,r12,8006648 <_User_extensions_Thread_begin+0x30>
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_begin != NULL )               
      (*the_extension->Callouts.thread_begin)( executing );           
  }                                                                   
}                                                                     
 8006660:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8006664:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8006668:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 800666c:	2b 8d 00 08 	lw r13,(sp+8)                                  
 8006670:	37 9c 00 10 	addi sp,sp,16                                  
 8006674:	c3 a0 00 00 	ret                                            
                                                                      

08006748 <_User_extensions_Thread_create>: #include <rtems/score/userext.h> bool _User_extensions_Thread_create ( Thread_Control *the_thread ) {
 8006748:	37 9c ff ec 	addi sp,sp,-20                                 
 800674c:	5b 8b 00 14 	sw (sp+20),r11                                 
 8006750:	5b 8c 00 10 	sw (sp+16),r12                                 
 8006754:	5b 8d 00 0c 	sw (sp+12),r13                                 
 8006758:	5b 8e 00 08 	sw (sp+8),r14                                  
 800675c:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 8006760:	78 02 08 01 	mvhi r2,0x801                                  
 8006764:	38 42 39 a4 	ori r2,r2,0x39a4                               
 8006768:	28 4b 00 00 	lw r11,(r2+0)                                  
 800676c:	78 0c 08 01 	mvhi r12,0x801                                 
 8006770:	39 8c 39 a8 	ori r12,r12,0x39a8                             
#include <rtems/score/userext.h>                                      
                                                                      
bool _User_extensions_Thread_create (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
 8006774:	b8 20 70 00 	mv r14,r1                                      
      if ( !status )                                                  
        return false;                                                 
    }                                                                 
  }                                                                   
                                                                      
  return true;                                                        
 8006778:	34 01 00 01 	mvi r1,1                                       
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 800677c:	45 6c 00 0c 	be r11,r12,80067ac <_User_extensions_Thread_create+0x64><== NEVER TAKEN
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_create != NULL ) {            
      status = (*the_extension->Callouts.thread_create)(              
 8006780:	78 0d 08 01 	mvhi r13,0x801                                 
 8006784:	39 ad 39 e8 	ori r13,r13,0x39e8                             
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_create != NULL ) {            
 8006788:	29 63 00 14 	lw r3,(r11+20)                                 
      status = (*the_extension->Callouts.thread_create)(              
 800678c:	b9 c0 10 00 	mv r2,r14                                      
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_create != NULL ) {            
 8006790:	44 60 00 04 	be r3,r0,80067a0 <_User_extensions_Thread_create+0x58>
      status = (*the_extension->Callouts.thread_create)(              
 8006794:	29 a1 00 0c 	lw r1,(r13+12)                                 
 8006798:	d8 60 00 00 	call r3                                        
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
      if ( !status )                                                  
 800679c:	44 20 00 0b 	be r1,r0,80067c8 <_User_extensions_Thread_create+0x80>
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
 80067a0:	29 6b 00 00 	lw r11,(r11+0)                                 
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 80067a4:	5d 6c ff f9 	bne r11,r12,8006788 <_User_extensions_Thread_create+0x40>
      if ( !status )                                                  
        return false;                                                 
    }                                                                 
  }                                                                   
                                                                      
  return true;                                                        
 80067a8:	34 01 00 01 	mvi r1,1                                       
}                                                                     
 80067ac:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80067b0:	2b 8b 00 14 	lw r11,(sp+20)                                 
 80067b4:	2b 8c 00 10 	lw r12,(sp+16)                                 
 80067b8:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 80067bc:	2b 8e 00 08 	lw r14,(sp+8)                                  
 80067c0:	37 9c 00 14 	addi sp,sp,20                                  
 80067c4:	c3 a0 00 00 	ret                                            
      status = (*the_extension->Callouts.thread_create)(              
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
      if ( !status )                                                  
        return false;                                                 
 80067c8:	34 01 00 00 	mvi r1,0                                       
    }                                                                 
  }                                                                   
                                                                      
  return true;                                                        
}                                                                     
 80067cc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80067d0:	2b 8b 00 14 	lw r11,(sp+20)                                 
 80067d4:	2b 8c 00 10 	lw r12,(sp+16)                                 
 80067d8:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 80067dc:	2b 8e 00 08 	lw r14,(sp+8)                                  
 80067e0:	37 9c 00 14 	addi sp,sp,20                                  
 80067e4:	c3 a0 00 00 	ret                                            
                                                                      

080067e8 <_User_extensions_Thread_delete>: #include <rtems/score/userext.h> void _User_extensions_Thread_delete ( Thread_Control *the_thread ) {
 80067e8:	37 9c ff ec 	addi sp,sp,-20                                 
 80067ec:	5b 8b 00 14 	sw (sp+20),r11                                 
 80067f0:	5b 8c 00 10 	sw (sp+16),r12                                 
 80067f4:	5b 8d 00 0c 	sw (sp+12),r13                                 
 80067f8:	5b 8e 00 08 	sw (sp+8),r14                                  
 80067fc:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
 8006800:	78 0d 08 01 	mvhi r13,0x801                                 
 8006804:	39 ad 39 a4 	ori r13,r13,0x39a4                             
 8006808:	29 ab 00 08 	lw r11,(r13+8)                                 
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_delete (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
 800680c:	b8 20 70 00 	mv r14,r1                                      
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
 8006810:	45 6d 00 0a 	be r11,r13,8006838 <_User_extensions_Thread_delete+0x50><== NEVER TAKEN
        the_node = the_node->previous ) {                             
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_delete != NULL )              
      (*the_extension->Callouts.thread_delete)(                       
 8006814:	78 0c 08 01 	mvhi r12,0x801                                 
 8006818:	39 8c 39 e8 	ori r12,r12,0x39e8                             
        !_Chain_Is_head( &_User_extensions_List, the_node ) ;         
        the_node = the_node->previous ) {                             
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_delete != NULL )              
 800681c:	29 63 00 20 	lw r3,(r11+32)                                 
      (*the_extension->Callouts.thread_delete)(                       
 8006820:	b9 c0 10 00 	mv r2,r14                                      
        !_Chain_Is_head( &_User_extensions_List, the_node ) ;         
        the_node = the_node->previous ) {                             
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_delete != NULL )              
 8006824:	44 60 00 03 	be r3,r0,8006830 <_User_extensions_Thread_delete+0x48>
      (*the_extension->Callouts.thread_delete)(                       
 8006828:	29 81 00 0c 	lw r1,(r12+12)                                 
 800682c:	d8 60 00 00 	call r3                                        
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
        !_Chain_Is_head( &_User_extensions_List, the_node ) ;         
        the_node = the_node->previous ) {                             
 8006830:	29 6b 00 04 	lw r11,(r11+4)                                 
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
 8006834:	5d 6d ff fa 	bne r11,r13,800681c <_User_extensions_Thread_delete+0x34>
      (*the_extension->Callouts.thread_delete)(                       
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
  }                                                                   
}                                                                     
 8006838:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800683c:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8006840:	2b 8c 00 10 	lw r12,(sp+16)                                 
 8006844:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 8006848:	2b 8e 00 08 	lw r14,(sp+8)                                  
 800684c:	37 9c 00 14 	addi sp,sp,20                                  
 8006850:	c3 a0 00 00 	ret                                            
                                                                      

08006678 <_User_extensions_Thread_exitted>: void _User_extensions_Thread_exitted ( Thread_Control *executing ) {
 8006678:	37 9c ff f0 	addi sp,sp,-16                                 
 800667c:	5b 8b 00 10 	sw (sp+16),r11                                 
 8006680:	5b 8c 00 0c 	sw (sp+12),r12                                 
 8006684:	5b 8d 00 08 	sw (sp+8),r13                                  
 8006688:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
 800668c:	78 0c 08 01 	mvhi r12,0x801                                 
 8006690:	39 8c 39 a4 	ori r12,r12,0x39a4                             
 8006694:	29 8b 00 08 	lw r11,(r12+8)                                 
}                                                                     
                                                                      
void _User_extensions_Thread_exitted (                                
  Thread_Control *executing                                           
)                                                                     
{                                                                     
 8006698:	b8 20 68 00 	mv r13,r1                                      
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
 800669c:	45 6c 00 07 	be r11,r12,80066b8 <_User_extensions_Thread_exitted+0x40><== NEVER TAKEN
        !_Chain_Is_head( &_User_extensions_List, the_node ) ;         
        the_node = the_node->previous ) {                             
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_exitted != NULL )             
 80066a0:	29 62 00 2c 	lw r2,(r11+44)                                 
      (*the_extension->Callouts.thread_exitted)( executing );         
 80066a4:	b9 a0 08 00 	mv r1,r13                                      
        !_Chain_Is_head( &_User_extensions_List, the_node ) ;         
        the_node = the_node->previous ) {                             
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_exitted != NULL )             
 80066a8:	44 40 00 02 	be r2,r0,80066b0 <_User_extensions_Thread_exitted+0x38>
      (*the_extension->Callouts.thread_exitted)( executing );         
 80066ac:	d8 40 00 00 	call r2                                        
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
        !_Chain_Is_head( &_User_extensions_List, the_node ) ;         
        the_node = the_node->previous ) {                             
 80066b0:	29 6b 00 04 	lw r11,(r11+4)                                 
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
 80066b4:	5d 6c ff fb 	bne r11,r12,80066a0 <_User_extensions_Thread_exitted+0x28>
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_exitted != NULL )             
      (*the_extension->Callouts.thread_exitted)( executing );         
  }                                                                   
}                                                                     
 80066b8:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80066bc:	2b 8b 00 10 	lw r11,(sp+16)                                 
 80066c0:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 80066c4:	2b 8d 00 08 	lw r13,(sp+8)                                  
 80066c8:	37 9c 00 10 	addi sp,sp,16                                  
 80066cc:	c3 a0 00 00 	ret                                            
                                                                      

08007840 <_User_extensions_Thread_restart>: #include <rtems/score/userext.h> void _User_extensions_Thread_restart ( Thread_Control *the_thread ) {
 8007840:	37 9c ff ec 	addi sp,sp,-20                                 
 8007844:	5b 8b 00 14 	sw (sp+20),r11                                 
 8007848:	5b 8c 00 10 	sw (sp+16),r12                                 
 800784c:	5b 8d 00 0c 	sw (sp+12),r13                                 
 8007850:	5b 8e 00 08 	sw (sp+8),r14                                  
 8007854:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 8007858:	78 02 08 01 	mvhi r2,0x801                                  
 800785c:	38 42 ea 04 	ori r2,r2,0xea04                               
 8007860:	28 4b 00 00 	lw r11,(r2+0)                                  
 8007864:	78 0c 08 01 	mvhi r12,0x801                                 
 8007868:	39 8c ea 08 	ori r12,r12,0xea08                             
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_restart (                                
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
 800786c:	b8 20 70 00 	mv r14,r1                                      
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 8007870:	45 6c 00 0a 	be r11,r12,8007898 <_User_extensions_Thread_restart+0x58><== NEVER TAKEN
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_restart != NULL )             
      (*the_extension->Callouts.thread_restart)(                      
 8007874:	78 0d 08 01 	mvhi r13,0x801                                 
 8007878:	39 ad ea 48 	ori r13,r13,0xea48                             
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_restart != NULL )             
 800787c:	29 63 00 1c 	lw r3,(r11+28)                                 
      (*the_extension->Callouts.thread_restart)(                      
 8007880:	b9 c0 10 00 	mv r2,r14                                      
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_restart != NULL )             
 8007884:	44 60 00 03 	be r3,r0,8007890 <_User_extensions_Thread_restart+0x50>
      (*the_extension->Callouts.thread_restart)(                      
 8007888:	29 a1 00 0c 	lw r1,(r13+12)                                 
 800788c:	d8 60 00 00 	call r3                                        
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
 8007890:	29 6b 00 00 	lw r11,(r11+0)                                 
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 8007894:	5d 6c ff fa 	bne r11,r12,800787c <_User_extensions_Thread_restart+0x3c>
      (*the_extension->Callouts.thread_restart)(                      
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
  }                                                                   
}                                                                     
 8007898:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800789c:	2b 8b 00 14 	lw r11,(sp+20)                                 
 80078a0:	2b 8c 00 10 	lw r12,(sp+16)                                 
 80078a4:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 80078a8:	2b 8e 00 08 	lw r14,(sp+8)                                  
 80078ac:	37 9c 00 14 	addi sp,sp,20                                  
 80078b0:	c3 a0 00 00 	ret                                            
                                                                      

08006854 <_User_extensions_Thread_start>: #include <rtems/score/userext.h> void _User_extensions_Thread_start ( Thread_Control *the_thread ) {
 8006854:	37 9c ff ec 	addi sp,sp,-20                                 
 8006858:	5b 8b 00 14 	sw (sp+20),r11                                 
 800685c:	5b 8c 00 10 	sw (sp+16),r12                                 
 8006860:	5b 8d 00 0c 	sw (sp+12),r13                                 
 8006864:	5b 8e 00 08 	sw (sp+8),r14                                  
 8006868:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 800686c:	78 02 08 01 	mvhi r2,0x801                                  
 8006870:	38 42 39 a4 	ori r2,r2,0x39a4                               
 8006874:	28 4b 00 00 	lw r11,(r2+0)                                  
 8006878:	78 0c 08 01 	mvhi r12,0x801                                 
 800687c:	39 8c 39 a8 	ori r12,r12,0x39a8                             
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_start (                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
 8006880:	b8 20 70 00 	mv r14,r1                                      
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 8006884:	45 6c 00 0a 	be r11,r12,80068ac <_User_extensions_Thread_start+0x58><== NEVER TAKEN
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_start != NULL )               
      (*the_extension->Callouts.thread_start)(                        
 8006888:	78 0d 08 01 	mvhi r13,0x801                                 
 800688c:	39 ad 39 e8 	ori r13,r13,0x39e8                             
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_start != NULL )               
 8006890:	29 63 00 18 	lw r3,(r11+24)                                 
      (*the_extension->Callouts.thread_start)(                        
 8006894:	b9 c0 10 00 	mv r2,r14                                      
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
                                                                      
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_start != NULL )               
 8006898:	44 60 00 03 	be r3,r0,80068a4 <_User_extensions_Thread_start+0x50>
      (*the_extension->Callouts.thread_start)(                        
 800689c:	29 a1 00 0c 	lw r1,(r13+12)                                 
 80068a0:	d8 60 00 00 	call r3                                        
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;         
        the_node = the_node->next ) {                                 
 80068a4:	29 6b 00 00 	lw r11,(r11+0)                                 
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
 80068a8:	5d 6c ff fa 	bne r11,r12,8006890 <_User_extensions_Thread_start+0x3c>
      (*the_extension->Callouts.thread_start)(                        
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
  }                                                                   
}                                                                     
 80068ac:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80068b0:	2b 8b 00 14 	lw r11,(sp+20)                                 
 80068b4:	2b 8c 00 10 	lw r12,(sp+16)                                 
 80068b8:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 80068bc:	2b 8e 00 08 	lw r14,(sp+8)                                  
 80068c0:	37 9c 00 14 	addi sp,sp,20                                  
 80068c4:	c3 a0 00 00 	ret                                            
                                                                      

080068c8 <_User_extensions_Thread_switch>: void _User_extensions_Thread_switch ( Thread_Control *executing, Thread_Control *heir ) {
 80068c8:	37 9c ff ec 	addi sp,sp,-20                                 
 80068cc:	5b 8b 00 14 	sw (sp+20),r11                                 
 80068d0:	5b 8c 00 10 	sw (sp+16),r12                                 
 80068d4:	5b 8d 00 0c 	sw (sp+12),r13                                 
 80068d8:	5b 8e 00 08 	sw (sp+8),r14                                  
 80068dc:	5b 9d 00 04 	sw (sp+4),ra                                   
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
 80068e0:	78 03 08 01 	mvhi r3,0x801                                  
 80068e4:	38 63 38 20 	ori r3,r3,0x3820                               
 80068e8:	28 6b 00 00 	lw r11,(r3+0)                                  
 80068ec:	78 0c 08 01 	mvhi r12,0x801                                 
 80068f0:	39 8c 38 24 	ori r12,r12,0x3824                             
                                                                      
void _User_extensions_Thread_switch (                                 
  Thread_Control *executing,                                          
  Thread_Control *heir                                                
)                                                                     
{                                                                     
 80068f4:	b8 20 70 00 	mv r14,r1                                      
 80068f8:	b8 40 68 00 	mv r13,r2                                      
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
 80068fc:	45 6c 00 07 	be r11,r12,8006918 <_User_extensions_Thread_switch+0x50><== NEVER TAKEN
        !_Chain_Is_tail( &_User_extensions_Switches_list, the_node ) ;
        the_node = the_node->next ) {                                 
                                                                      
    the_extension_switch = (User_extensions_Switch_control *) the_node;
                                                                      
    (*the_extension_switch->thread_switch)( executing, heir );        
 8006900:	29 63 00 08 	lw r3,(r11+8)                                  
 8006904:	b9 c0 08 00 	mv r1,r14                                      
 8006908:	b9 a0 10 00 	mv r2,r13                                      
 800690c:	d8 60 00 00 	call r3                                        
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
        !_Chain_Is_tail( &_User_extensions_Switches_list, the_node ) ;
        the_node = the_node->next ) {                                 
 8006910:	29 6b 00 00 	lw r11,(r11+0)                                 
)                                                                     
{                                                                     
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
 8006914:	5d 6c ff fb 	bne r11,r12,8006900 <_User_extensions_Thread_switch+0x38>
                                                                      
    the_extension_switch = (User_extensions_Switch_control *) the_node;
                                                                      
    (*the_extension_switch->thread_switch)( executing, heir );        
  }                                                                   
}                                                                     
 8006918:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800691c:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8006920:	2b 8c 00 10 	lw r12,(sp+16)                                 
 8006924:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 8006928:	2b 8e 00 08 	lw r14,(sp+8)                                  
 800692c:	37 9c 00 14 	addi sp,sp,20                                  
 8006930:	c3 a0 00 00 	ret                                            
                                                                      

080091ac <_Watchdog_Adjust>: void _Watchdog_Adjust( Chain_Control *header, Watchdog_Adjust_directions direction, Watchdog_Interval units ) {
 80091ac:	37 9c ff e4 	addi sp,sp,-28                                 
 80091b0:	5b 8b 00 1c 	sw (sp+28),r11                                 
 80091b4:	5b 8c 00 18 	sw (sp+24),r12                                 
 80091b8:	5b 8d 00 14 	sw (sp+20),r13                                 
 80091bc:	5b 8e 00 10 	sw (sp+16),r14                                 
 80091c0:	5b 8f 00 0c 	sw (sp+12),r15                                 
 80091c4:	5b 90 00 08 	sw (sp+8),r16                                  
 80091c8:	5b 9d 00 04 	sw (sp+4),ra                                   
 80091cc:	b8 20 60 00 	mv r12,r1                                      
 80091d0:	b8 60 58 00 	mv r11,r3                                      
  ISR_Level level;                                                    
                                                                      
  _ISR_Disable( level );                                              
 80091d4:	90 00 18 00 	rcsr r3,IE                                     
 80091d8:	34 01 ff fe 	mvi r1,-2                                      
 80091dc:	a0 61 08 00 	and r1,r3,r1                                   
 80091e0:	d0 01 00 00 	wcsr IE,r1                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
 80091e4:	29 81 00 00 	lw r1,(r12+0)                                  
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 80091e8:	35 8e 00 04 	addi r14,r12,4                                 
 80091ec:	b8 60 20 00 	mv r4,r3                                       
   *       hence the compiler must not assume *header to remain       
   *       unmodified across that call.                               
   *                                                                  
   *       Till Straumann, 7/2003                                     
   */                                                                 
  if ( !_Chain_Is_empty( header ) ) {                                 
 80091f0:	44 2e 00 04 	be r1,r14,8009200 <_Watchdog_Adjust+0x54>      
    switch ( direction ) {                                            
 80091f4:	44 40 00 11 	be r2,r0,8009238 <_Watchdog_Adjust+0x8c>       
 80091f8:	34 03 00 01 	mvi r3,1                                       
 80091fc:	44 43 00 0b 	be r2,r3,8009228 <_Watchdog_Adjust+0x7c>       <== ALWAYS TAKEN
        }                                                             
        break;                                                        
    }                                                                 
  }                                                                   
                                                                      
  _ISR_Enable( level );                                               
 8009200:	d0 04 00 00 	wcsr IE,r4                                     
                                                                      
}                                                                     
 8009204:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8009208:	2b 8b 00 1c 	lw r11,(sp+28)                                 
 800920c:	2b 8c 00 18 	lw r12,(sp+24)                                 
 8009210:	2b 8d 00 14 	lw r13,(sp+20)                                 
 8009214:	2b 8e 00 10 	lw r14,(sp+16)                                 
 8009218:	2b 8f 00 0c 	lw r15,(sp+12)                                 
 800921c:	2b 90 00 08 	lw r16,(sp+8)                                  
 8009220:	37 9c 00 1c 	addi sp,sp,28                                  
 8009224:	c3 a0 00 00 	ret                                            
   *       Till Straumann, 7/2003                                     
   */                                                                 
  if ( !_Chain_Is_empty( header ) ) {                                 
    switch ( direction ) {                                            
      case WATCHDOG_BACKWARD:                                         
        _Watchdog_First( header )->delta_interval += units;           
 8009228:	28 22 00 10 	lw r2,(r1+16)                                  
 800922c:	b4 4b 58 00 	add r11,r2,r11                                 
 8009230:	58 2b 00 10 	sw (r1+16),r11                                 
        break;                                                        
 8009234:	e3 ff ff f3 	bi 8009200 <_Watchdog_Adjust+0x54>             
      case WATCHDOG_FORWARD:                                          
        while ( units ) {                                             
 8009238:	b8 60 20 00 	mv r4,r3                                       
 800923c:	45 62 ff f1 	be r11,r2,8009200 <_Watchdog_Adjust+0x54>      <== NEVER TAKEN
          if ( units < _Watchdog_First( header )->delta_interval ) {  
 8009240:	28 2d 00 10 	lw r13,(r1+16)                                 
 8009244:	55 ab 00 13 	bgu r13,r11,8009290 <_Watchdog_Adjust+0xe4>    <== NEVER TAKEN
            _Watchdog_First( header )->delta_interval -= units;       
            break;                                                    
          } else {                                                    
            units -= _Watchdog_First( header )->delta_interval;       
            _Watchdog_First( header )->delta_interval = 1;            
 8009248:	34 10 00 01 	mvi r16,1                                      
                                                                      
            _ISR_Enable( level );                                     
                                                                      
            _Watchdog_Tickle( header );                               
                                                                      
            _ISR_Disable( level );                                    
 800924c:	34 0f ff fe 	mvi r15,-2                                     
          if ( units < _Watchdog_First( header )->delta_interval ) {  
            _Watchdog_First( header )->delta_interval -= units;       
            break;                                                    
          } else {                                                    
            units -= _Watchdog_First( header )->delta_interval;       
            _Watchdog_First( header )->delta_interval = 1;            
 8009250:	58 30 00 10 	sw (r1+16),r16                                 
                                                                      
            _ISR_Enable( level );                                     
 8009254:	d0 03 00 00 	wcsr IE,r3                                     
                                                                      
            _Watchdog_Tickle( header );                               
 8009258:	b9 80 08 00 	mv r1,r12                                      
 800925c:	f8 00 00 b0 	calli 800951c <_Watchdog_Tickle>               
                                                                      
            _ISR_Disable( level );                                    
 8009260:	90 00 10 00 	rcsr r2,IE                                     
 8009264:	a0 4f 08 00 	and r1,r2,r15                                  
 8009268:	d0 01 00 00 	wcsr IE,r1                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
 800926c:	29 84 00 00 	lw r4,(r12+0)                                  
        while ( units ) {                                             
          if ( units < _Watchdog_First( header )->delta_interval ) {  
            _Watchdog_First( header )->delta_interval -= units;       
            break;                                                    
          } else {                                                    
            units -= _Watchdog_First( header )->delta_interval;       
 8009270:	c9 6d 58 00 	sub r11,r11,r13                                
                                                                      
            _ISR_Enable( level );                                     
                                                                      
            _Watchdog_Tickle( header );                               
                                                                      
            _ISR_Disable( level );                                    
 8009274:	b8 40 18 00 	mv r3,r2                                       
RTEMS_INLINE_ROUTINE Watchdog_Control *_Watchdog_First(               
  Chain_Control *header                                               
)                                                                     
{                                                                     
                                                                      
  return ( (Watchdog_Control *) header->first );                      
 8009278:	b8 80 08 00 	mv r1,r4                                       
                                                                      
            if ( _Chain_Is_empty( header ) )                          
 800927c:	45 c4 00 08 	be r14,r4,800929c <_Watchdog_Adjust+0xf0>      
    switch ( direction ) {                                            
      case WATCHDOG_BACKWARD:                                         
        _Watchdog_First( header )->delta_interval += units;           
        break;                                                        
      case WATCHDOG_FORWARD:                                          
        while ( units ) {                                             
 8009280:	45 60 00 07 	be r11,r0,800929c <_Watchdog_Adjust+0xf0>      <== NEVER TAKEN
          if ( units < _Watchdog_First( header )->delta_interval ) {  
 8009284:	28 2d 00 10 	lw r13,(r1+16)                                 
 8009288:	51 6d ff f2 	bgeu r11,r13,8009250 <_Watchdog_Adjust+0xa4>   
                                                                      
            _ISR_Enable( level );                                     
                                                                      
            _Watchdog_Tickle( header );                               
                                                                      
            _ISR_Disable( level );                                    
 800928c:	b8 40 20 00 	mv r4,r2                                       
        _Watchdog_First( header )->delta_interval += units;           
        break;                                                        
      case WATCHDOG_FORWARD:                                          
        while ( units ) {                                             
          if ( units < _Watchdog_First( header )->delta_interval ) {  
            _Watchdog_First( header )->delta_interval -= units;       
 8009290:	c9 ab 58 00 	sub r11,r13,r11                                
 8009294:	58 2b 00 10 	sw (r1+16),r11                                 
            break;                                                    
 8009298:	e3 ff ff da 	bi 8009200 <_Watchdog_Adjust+0x54>             
                                                                      
            _ISR_Enable( level );                                     
                                                                      
            _Watchdog_Tickle( header );                               
                                                                      
            _ISR_Disable( level );                                    
 800929c:	b8 40 20 00 	mv r4,r2                                       
 80092a0:	e3 ff ff d8 	bi 8009200 <_Watchdog_Adjust+0x54>             
                                                                      

08006934 <_Watchdog_Insert>: void _Watchdog_Insert( Chain_Control *header, Watchdog_Control *the_watchdog ) {
 8006934:	37 9c ff f8 	addi sp,sp,-8                                  
 8006938:	5b 8b 00 08 	sw (sp+8),r11                                  
 800693c:	5b 8c 00 04 	sw (sp+4),r12                                  
  Watchdog_Control  *after;                                           
  uint32_t           insert_isr_nest_level;                           
  Watchdog_Interval  delta_interval;                                  
                                                                      
                                                                      
  insert_isr_nest_level   = _ISR_Nest_level;                          
 8006940:	78 03 08 01 	mvhi r3,0x801                                  
 8006944:	38 63 39 e8 	ori r3,r3,0x39e8                               
 8006948:	28 69 00 08 	lw r9,(r3+8)                                   
                                                                      
  _ISR_Disable( level );                                              
 800694c:	90 00 30 00 	rcsr r6,IE                                     
 8006950:	34 08 ff fe 	mvi r8,-2                                      
 8006954:	a0 c8 40 00 	and r8,r6,r8                                   
 8006958:	d0 08 00 00 	wcsr IE,r8                                     
  /*                                                                  
   *  Check to see if the watchdog has just been inserted by a        
   *  higher priority interrupt.  If so, abandon this insert.         
   */                                                                 
                                                                      
  if ( the_watchdog->state != WATCHDOG_INACTIVE ) {                   
 800695c:	28 43 00 08 	lw r3,(r2+8)                                   
 8006960:	5c 60 00 3f 	bne r3,r0,8006a5c <_Watchdog_Insert+0x128>     
    _ISR_Enable( level );                                             
    return;                                                           
  }                                                                   
                                                                      
  the_watchdog->state = WATCHDOG_BEING_INSERTED;                      
  _Watchdog_Sync_count++;                                             
 8006964:	78 0c 08 01 	mvhi r12,0x801                                 
 8006968:	39 8c 39 50 	ori r12,r12,0x3950                             
 800696c:	29 83 00 00 	lw r3,(r12+0)                                  
 8006970:	78 07 08 01 	mvhi r7,0x801                                  
  if ( the_watchdog->state != WATCHDOG_INACTIVE ) {                   
    _ISR_Enable( level );                                             
    return;                                                           
  }                                                                   
                                                                      
  the_watchdog->state = WATCHDOG_BEING_INSERTED;                      
 8006974:	34 04 00 01 	mvi r4,1                                       
  _Watchdog_Sync_count++;                                             
 8006978:	34 63 00 01 	addi r3,r3,1                                   
  if ( the_watchdog->state != WATCHDOG_INACTIVE ) {                   
    _ISR_Enable( level );                                             
    return;                                                           
  }                                                                   
                                                                      
  the_watchdog->state = WATCHDOG_BEING_INSERTED;                      
 800697c:	58 44 00 08 	sw (r2+8),r4                                   
  _Watchdog_Sync_count++;                                             
 8006980:	59 83 00 00 	sw (r12+0),r3                                  
 8006984:	38 e7 38 c4 	ori r7,r7,0x38c4                               
      *  mechanism used here WAS redesigned to address this.          
      */                                                              
                                                                      
     _ISR_Flash( level );                                             
                                                                      
     if ( the_watchdog->state != WATCHDOG_BEING_INSERTED ) {          
 8006988:	34 0a 00 01 	mvi r10,1                                      
                                                                      
  the_watchdog->state = WATCHDOG_BEING_INSERTED;                      
  _Watchdog_Sync_count++;                                             
                                                                      
restart:                                                              
  delta_interval = the_watchdog->initial;                             
 800698c:	28 44 00 0c 	lw r4,(r2+12)                                  
   * cache *header!!                                                  
   *                                                                  
   *  Till Straumann, 7/2003 (gcc-3.2.2 -O4 on powerpc)               
   *                                                                  
   */                                                                 
  for ( after = (Watchdog_Control *) ((volatile Chain_Control *)header)->first ;
 8006990:	28 23 00 00 	lw r3,(r1+0)                                   
        ;                                                             
        after = _Watchdog_Next( after ) ) {                           
                                                                      
     if ( delta_interval == 0 || !_Watchdog_Next( after ) )           
 8006994:	44 80 00 14 	be r4,r0,80069e4 <_Watchdog_Insert+0xb0>       
 8006998:	28 65 00 00 	lw r5,(r3+0)                                   
 800699c:	44 a0 00 12 	be r5,r0,80069e4 <_Watchdog_Insert+0xb0>       
       break;                                                         
                                                                      
     if ( delta_interval < after->delta_interval ) {                  
 80069a0:	28 65 00 10 	lw r5,(r3+16)                                  
 80069a4:	54 a4 00 0e 	bgu r5,r4,80069dc <_Watchdog_Insert+0xa8>      
      *  used around this flash point allowed interrupts to execute   
      *  which violated the design assumptions.  The critical section 
      *  mechanism used here WAS redesigned to address this.          
      */                                                              
                                                                      
     _ISR_Flash( level );                                             
 80069a8:	d0 06 00 00 	wcsr IE,r6                                     
 80069ac:	d0 08 00 00 	wcsr IE,r8                                     
                                                                      
     if ( the_watchdog->state != WATCHDOG_BEING_INSERTED ) {          
 80069b0:	28 4b 00 08 	lw r11,(r2+8)                                  
 80069b4:	5d 6a 00 19 	bne r11,r10,8006a18 <_Watchdog_Insert+0xe4>    
       goto exit_insert;                                              
     }                                                                
                                                                      
     if ( _Watchdog_Sync_level > insert_isr_nest_level ) {            
 80069b8:	28 eb 00 00 	lw r11,(r7+0)                                  
 80069bc:	55 69 00 2d 	bgu r11,r9,8006a70 <_Watchdog_Insert+0x13c>    
     if ( delta_interval < after->delta_interval ) {                  
       after->delta_interval -= delta_interval;                       
       break;                                                         
     }                                                                
                                                                      
     delta_interval -= after->delta_interval;                         
 80069c0:	c8 85 20 00 	sub r4,r4,r5                                   
                                                                      
exit_insert:                                                          
  _Watchdog_Sync_level = insert_isr_nest_level;                       
  _Watchdog_Sync_count--;                                             
  _ISR_Enable( level );                                               
}                                                                     
 80069c4:	28 63 00 00 	lw r3,(r3+0)                                   
   */                                                                 
  for ( after = (Watchdog_Control *) ((volatile Chain_Control *)header)->first ;
        ;                                                             
        after = _Watchdog_Next( after ) ) {                           
                                                                      
     if ( delta_interval == 0 || !_Watchdog_Next( after ) )           
 80069c8:	44 80 00 07 	be r4,r0,80069e4 <_Watchdog_Insert+0xb0>       
 80069cc:	28 65 00 00 	lw r5,(r3+0)                                   
 80069d0:	44 a0 00 05 	be r5,r0,80069e4 <_Watchdog_Insert+0xb0>       
       break;                                                         
                                                                      
     if ( delta_interval < after->delta_interval ) {                  
 80069d4:	28 65 00 10 	lw r5,(r3+16)                                  
 80069d8:	50 85 00 19 	bgeu r4,r5,8006a3c <_Watchdog_Insert+0x108>    
       after->delta_interval -= delta_interval;                       
 80069dc:	c8 a4 28 00 	sub r5,r5,r4                                   
 80069e0:	58 65 00 10 	sw (r3+16),r5                                  
                                                                      
  _Watchdog_Activate( the_watchdog );                                 
                                                                      
  the_watchdog->delta_interval = delta_interval;                      
                                                                      
  _Chain_Insert_unprotected( after->Node.previous, &the_watchdog->Node );
 80069e4:	28 63 00 04 	lw r3,(r3+4)                                   
                                                                      
  the_watchdog->start_time = _Watchdog_Ticks_since_boot;              
 80069e8:	78 01 08 01 	mvhi r1,0x801                                  
 80069ec:	38 21 39 54 	ori r1,r1,0x3954                               
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
  before_node           = after_node->next;                           
 80069f0:	28 65 00 00 	lw r5,(r3+0)                                   
 80069f4:	28 28 00 00 	lw r8,(r1+0)                                   
RTEMS_INLINE_ROUTINE void _Watchdog_Activate(                         
  Watchdog_Control *the_watchdog                                      
)                                                                     
{                                                                     
                                                                      
  the_watchdog->state = WATCHDOG_ACTIVE;                              
 80069f8:	34 01 00 02 	mvi r1,2                                       
 80069fc:	58 41 00 08 	sw (r2+8),r1                                   
     }                                                                
  }                                                                   
                                                                      
  _Watchdog_Activate( the_watchdog );                                 
                                                                      
  the_watchdog->delta_interval = delta_interval;                      
 8006a00:	58 44 00 10 	sw (r2+16),r4                                  
  Chain_Node *the_node                                                
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
 8006a04:	58 43 00 04 	sw (r2+4),r3                                   
  before_node           = after_node->next;                           
  after_node->next      = the_node;                                   
 8006a08:	58 62 00 00 	sw (r3+0),r2                                   
  the_node->next        = before_node;                                
  before_node->previous = the_node;                                   
 8006a0c:	58 a2 00 04 	sw (r5+4),r2                                   
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
  before_node           = after_node->next;                           
  after_node->next      = the_node;                                   
  the_node->next        = before_node;                                
 8006a10:	58 45 00 00 	sw (r2+0),r5                                   
                                                                      
  _Chain_Insert_unprotected( after->Node.previous, &the_watchdog->Node );
                                                                      
  the_watchdog->start_time = _Watchdog_Ticks_since_boot;              
 8006a14:	58 48 00 14 	sw (r2+20),r8                                  
                                                                      
exit_insert:                                                          
  _Watchdog_Sync_level = insert_isr_nest_level;                       
 8006a18:	58 e9 00 00 	sw (r7+0),r9                                   
  _Watchdog_Sync_count--;                                             
 8006a1c:	29 81 00 00 	lw r1,(r12+0)                                  
 8006a20:	34 21 ff ff 	addi r1,r1,-1                                  
 8006a24:	59 81 00 00 	sw (r12+0),r1                                  
  _ISR_Enable( level );                                               
 8006a28:	d0 06 00 00 	wcsr IE,r6                                     
}                                                                     
 8006a2c:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8006a30:	2b 8c 00 04 	lw r12,(sp+4)                                  
 8006a34:	37 9c 00 08 	addi sp,sp,8                                   
 8006a38:	c3 a0 00 00 	ret                                            
      *  used around this flash point allowed interrupts to execute   
      *  which violated the design assumptions.  The critical section 
      *  mechanism used here WAS redesigned to address this.          
      */                                                              
                                                                      
     _ISR_Flash( level );                                             
 8006a3c:	d0 06 00 00 	wcsr IE,r6                                     
 8006a40:	d0 08 00 00 	wcsr IE,r8                                     
                                                                      
     if ( the_watchdog->state != WATCHDOG_BEING_INSERTED ) {          
 8006a44:	28 4b 00 08 	lw r11,(r2+8)                                  
     if ( delta_interval < after->delta_interval ) {                  
       after->delta_interval -= delta_interval;                       
       break;                                                         
     }                                                                
                                                                      
     delta_interval -= after->delta_interval;                         
 8006a48:	c8 85 20 00 	sub r4,r4,r5                                   
      *  mechanism used here WAS redesigned to address this.          
      */                                                              
                                                                      
     _ISR_Flash( level );                                             
                                                                      
     if ( the_watchdog->state != WATCHDOG_BEING_INSERTED ) {          
 8006a4c:	5d 6a ff f3 	bne r11,r10,8006a18 <_Watchdog_Insert+0xe4>    <== NEVER TAKEN
       goto exit_insert;                                              
     }                                                                
                                                                      
     if ( _Watchdog_Sync_level > insert_isr_nest_level ) {            
 8006a50:	28 e5 00 00 	lw r5,(r7+0)                                   
 8006a54:	54 a9 00 07 	bgu r5,r9,8006a70 <_Watchdog_Insert+0x13c>     <== NEVER TAKEN
 8006a58:	e3 ff ff db 	bi 80069c4 <_Watchdog_Insert+0x90>             
   *  Check to see if the watchdog has just been inserted by a        
   *  higher priority interrupt.  If so, abandon this insert.         
   */                                                                 
                                                                      
  if ( the_watchdog->state != WATCHDOG_INACTIVE ) {                   
    _ISR_Enable( level );                                             
 8006a5c:	d0 06 00 00 	wcsr IE,r6                                     
                                                                      
exit_insert:                                                          
  _Watchdog_Sync_level = insert_isr_nest_level;                       
  _Watchdog_Sync_count--;                                             
  _ISR_Enable( level );                                               
}                                                                     
 8006a60:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8006a64:	2b 8c 00 04 	lw r12,(sp+4)                                  
 8006a68:	37 9c 00 08 	addi sp,sp,8                                   
 8006a6c:	c3 a0 00 00 	ret                                            
     if ( the_watchdog->state != WATCHDOG_BEING_INSERTED ) {          
       goto exit_insert;                                              
     }                                                                
                                                                      
     if ( _Watchdog_Sync_level > insert_isr_nest_level ) {            
       _Watchdog_Sync_level = insert_isr_nest_level;                  
 8006a70:	58 e9 00 00 	sw (r7+0),r9                                   
       goto restart;                                                  
 8006a74:	e3 ff ff c6 	bi 800698c <_Watchdog_Insert+0x58>             
                                                                      

08006ad8 <_Watchdog_Remove>: { ISR_Level level; Watchdog_States previous_state; Watchdog_Control *next_watchdog; _ISR_Disable( level );
 8006ad8:	90 00 20 00 	rcsr r4,IE                                     
 8006adc:	34 02 ff fe 	mvi r2,-2                                      
 8006ae0:	a0 82 10 00 	and r2,r4,r2                                   
 8006ae4:	d0 02 00 00 	wcsr IE,r2                                     
  previous_state = the_watchdog->state;                               
 8006ae8:	28 22 00 08 	lw r2,(r1+8)                                   
  switch ( previous_state ) {                                         
 8006aec:	34 03 00 01 	mvi r3,1                                       
 8006af0:	44 43 00 27 	be r2,r3,8006b8c <_Watchdog_Remove+0xb4>       <== NEVER TAKEN
 8006af4:	5c 40 00 08 	bne r2,r0,8006b14 <_Watchdog_Remove+0x3c>      
        _Watchdog_Sync_level = _ISR_Nest_level;                       
                                                                      
      _Chain_Extract_unprotected( &the_watchdog->Node );              
      break;                                                          
  }                                                                   
  the_watchdog->stop_time = _Watchdog_Ticks_since_boot;               
 8006af8:	78 03 08 01 	mvhi r3,0x801                                  
 8006afc:	38 63 39 54 	ori r3,r3,0x3954                               
 8006b00:	28 63 00 00 	lw r3,(r3+0)                                   
 8006b04:	58 23 00 18 	sw (r1+24),r3                                  
                                                                      
  _ISR_Enable( level );                                               
 8006b08:	d0 04 00 00 	wcsr IE,r4                                     
  return( previous_state );                                           
}                                                                     
 8006b0c:	b8 40 08 00 	mv r1,r2                                       
 8006b10:	c3 a0 00 00 	ret                                            
  Watchdog_States   previous_state;                                   
  Watchdog_Control *next_watchdog;                                    
                                                                      
  _ISR_Disable( level );                                              
  previous_state = the_watchdog->state;                               
  switch ( previous_state ) {                                         
 8006b14:	34 03 00 03 	mvi r3,3                                       
 8006b18:	54 43 ff f8 	bgu r2,r3,8006af8 <_Watchdog_Remove+0x20>      <== NEVER TAKEN
  }                                                                   
  the_watchdog->stop_time = _Watchdog_Ticks_since_boot;               
                                                                      
  _ISR_Enable( level );                                               
  return( previous_state );                                           
}                                                                     
 8006b1c:	28 23 00 00 	lw r3,(r1+0)                                   
      break;                                                          
                                                                      
    case WATCHDOG_ACTIVE:                                             
    case WATCHDOG_REMOVE_IT:                                          
                                                                      
      the_watchdog->state = WATCHDOG_INACTIVE;                        
 8006b20:	58 20 00 08 	sw (r1+8),r0                                   
      next_watchdog = _Watchdog_Next( the_watchdog );                 
                                                                      
      if ( _Watchdog_Next(next_watchdog) )                            
 8006b24:	28 65 00 00 	lw r5,(r3+0)                                   
 8006b28:	44 a0 00 05 	be r5,r0,8006b3c <_Watchdog_Remove+0x64>       
        next_watchdog->delta_interval += the_watchdog->delta_interval;
 8006b2c:	28 66 00 10 	lw r6,(r3+16)                                  
 8006b30:	28 25 00 10 	lw r5,(r1+16)                                  
 8006b34:	b4 c5 28 00 	add r5,r6,r5                                   
 8006b38:	58 65 00 10 	sw (r3+16),r5                                  
                                                                      
      if ( _Watchdog_Sync_count )                                     
 8006b3c:	78 05 08 01 	mvhi r5,0x801                                  
 8006b40:	38 a5 39 50 	ori r5,r5,0x3950                               
 8006b44:	28 a5 00 00 	lw r5,(r5+0)                                   
 8006b48:	44 a0 00 07 	be r5,r0,8006b64 <_Watchdog_Remove+0x8c>       
        _Watchdog_Sync_level = _ISR_Nest_level;                       
 8006b4c:	78 05 08 01 	mvhi r5,0x801                                  
 8006b50:	38 a5 39 e8 	ori r5,r5,0x39e8                               
 8006b54:	28 a6 00 08 	lw r6,(r5+8)                                   
 8006b58:	78 05 08 01 	mvhi r5,0x801                                  
 8006b5c:	38 a5 38 c4 	ori r5,r5,0x38c4                               
 8006b60:	58 a6 00 00 	sw (r5+0),r6                                   
{                                                                     
  Chain_Node *next;                                                   
  Chain_Node *previous;                                               
                                                                      
  next           = the_node->next;                                    
  previous       = the_node->previous;                                
 8006b64:	28 25 00 04 	lw r5,(r1+4)                                   
  next->previous = previous;                                          
 8006b68:	58 65 00 04 	sw (r3+4),r5                                   
  previous->next = next;                                              
 8006b6c:	58 a3 00 00 	sw (r5+0),r3                                   
                                                                      
      _Chain_Extract_unprotected( &the_watchdog->Node );              
      break;                                                          
  }                                                                   
  the_watchdog->stop_time = _Watchdog_Ticks_since_boot;               
 8006b70:	78 03 08 01 	mvhi r3,0x801                                  
 8006b74:	38 63 39 54 	ori r3,r3,0x3954                               
 8006b78:	28 63 00 00 	lw r3,(r3+0)                                   
 8006b7c:	58 23 00 18 	sw (r1+24),r3                                  
                                                                      
  _ISR_Enable( level );                                               
 8006b80:	d0 04 00 00 	wcsr IE,r4                                     
  return( previous_state );                                           
}                                                                     
 8006b84:	b8 40 08 00 	mv r1,r2                                       
 8006b88:	c3 a0 00 00 	ret                                            
        _Watchdog_Sync_level = _ISR_Nest_level;                       
                                                                      
      _Chain_Extract_unprotected( &the_watchdog->Node );              
      break;                                                          
  }                                                                   
  the_watchdog->stop_time = _Watchdog_Ticks_since_boot;               
 8006b8c:	78 03 08 01 	mvhi r3,0x801                                  
 8006b90:	38 63 39 54 	ori r3,r3,0x3954                               
 8006b94:	28 63 00 00 	lw r3,(r3+0)                                   
                                                                      
      /*                                                              
       *  It is not actually on the chain so just change the state and
       *  the Insert operation we interrupted will be aborted.        
       */                                                             
      the_watchdog->state = WATCHDOG_INACTIVE;                        
 8006b98:	58 20 00 08 	sw (r1+8),r0                                   
        _Watchdog_Sync_level = _ISR_Nest_level;                       
                                                                      
      _Chain_Extract_unprotected( &the_watchdog->Node );              
      break;                                                          
  }                                                                   
  the_watchdog->stop_time = _Watchdog_Ticks_since_boot;               
 8006b9c:	58 23 00 18 	sw (r1+24),r3                                  
                                                                      
  _ISR_Enable( level );                                               
 8006ba0:	d0 04 00 00 	wcsr IE,r4                                     
  return( previous_state );                                           
}                                                                     
 8006ba4:	b8 40 08 00 	mv r1,r2                                       
 8006ba8:	c3 a0 00 00 	ret                                            
                                                                      

080088e8 <_Watchdog_Report_chain>: void _Watchdog_Report_chain( const char *name, Chain_Control *header ) {
 80088e8:	37 9c ff ec 	addi sp,sp,-20                                 
 80088ec:	5b 8b 00 14 	sw (sp+20),r11                                 
 80088f0:	5b 8c 00 10 	sw (sp+16),r12                                 
 80088f4:	5b 8d 00 0c 	sw (sp+12),r13                                 
 80088f8:	5b 8e 00 08 	sw (sp+8),r14                                  
 80088fc:	5b 9d 00 04 	sw (sp+4),ra                                   
 8008900:	b8 20 70 00 	mv r14,r1                                      
 8008904:	b8 40 60 00 	mv r12,r2                                      
  ISR_Level          level;                                           
  Chain_Node        *node;                                            
                                                                      
  _ISR_Disable( level );                                              
 8008908:	90 00 68 00 	rcsr r13,IE                                    
 800890c:	34 01 ff fe 	mvi r1,-2                                      
 8008910:	a1 a1 08 00 	and r1,r13,r1                                  
 8008914:	d0 01 00 00 	wcsr IE,r1                                     
    printk( "Watchdog Chain: %s %p\n", name, header );                
 8008918:	78 01 08 01 	mvhi r1,0x801                                  
 800891c:	b9 80 18 00 	mv r3,r12                                      
 8008920:	38 21 d7 f8 	ori r1,r1,0xd7f8                               
 8008924:	b9 c0 10 00 	mv r2,r14                                      
 8008928:	fb ff eb 0e 	calli 8003560 <printk>                         
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
 800892c:	29 8b 00 00 	lw r11,(r12+0)                                 
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 8008930:	35 8c 00 04 	addi r12,r12,4                                 
    if ( !_Chain_Is_empty( header ) ) {                               
 8008934:	45 6c 00 12 	be r11,r12,800897c <_Watchdog_Report_chain+0x94>
            node != _Chain_Tail(header) ;                             
            node = node->next )                                       
      {                                                               
        Watchdog_Control *watch = (Watchdog_Control *) node;          
                                                                      
        _Watchdog_Report( NULL, watch );                              
 8008938:	b9 60 10 00 	mv r2,r11                                      
 800893c:	34 01 00 00 	mvi r1,0                                       
 8008940:	f8 00 00 13 	calli 800898c <_Watchdog_Report>               
  _ISR_Disable( level );                                              
    printk( "Watchdog Chain: %s %p\n", name, header );                
    if ( !_Chain_Is_empty( header ) ) {                               
      for ( node = header->first ;                                    
            node != _Chain_Tail(header) ;                             
            node = node->next )                                       
 8008944:	29 6b 00 00 	lw r11,(r11+0)                                 
  Chain_Node        *node;                                            
                                                                      
  _ISR_Disable( level );                                              
    printk( "Watchdog Chain: %s %p\n", name, header );                
    if ( !_Chain_Is_empty( header ) ) {                               
      for ( node = header->first ;                                    
 8008948:	5d 6c ff fc 	bne r11,r12,8008938 <_Watchdog_Report_chain+0x50><== NEVER TAKEN
      {                                                               
        Watchdog_Control *watch = (Watchdog_Control *) node;          
                                                                      
        _Watchdog_Report( NULL, watch );                              
      }                                                               
      printk( "== end of %s \n", name );                              
 800894c:	78 01 08 01 	mvhi r1,0x801                                  
 8008950:	38 21 d8 10 	ori r1,r1,0xd810                               
 8008954:	b9 c0 10 00 	mv r2,r14                                      
 8008958:	fb ff eb 02 	calli 8003560 <printk>                         
    } else {                                                          
      printk( "Chain is empty\n" );                                   
    }                                                                 
  _ISR_Enable( level );                                               
 800895c:	d0 0d 00 00 	wcsr IE,r13                                    
}                                                                     
 8008960:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8008964:	2b 8b 00 14 	lw r11,(sp+20)                                 
 8008968:	2b 8c 00 10 	lw r12,(sp+16)                                 
 800896c:	2b 8d 00 0c 	lw r13,(sp+12)                                 
 8008970:	2b 8e 00 08 	lw r14,(sp+8)                                  
 8008974:	37 9c 00 14 	addi sp,sp,20                                  
 8008978:	c3 a0 00 00 	ret                                            
                                                                      
        _Watchdog_Report( NULL, watch );                              
      }                                                               
      printk( "== end of %s \n", name );                              
    } else {                                                          
      printk( "Chain is empty\n" );                                   
 800897c:	78 01 08 01 	mvhi r1,0x801                                  
 8008980:	38 21 d8 20 	ori r1,r1,0xd820                               
 8008984:	fb ff ea f7 	calli 8003560 <printk>                         
 8008988:	e3 ff ff f5 	bi 800895c <_Watchdog_Report_chain+0x74>       
                                                                      

08006bac <_Watchdog_Tickle>: */ void _Watchdog_Tickle( Chain_Control *header ) {
 8006bac:	37 9c ff e4 	addi sp,sp,-28                                 
 8006bb0:	5b 8b 00 1c 	sw (sp+28),r11                                 
 8006bb4:	5b 8c 00 18 	sw (sp+24),r12                                 
 8006bb8:	5b 8d 00 14 	sw (sp+20),r13                                 
 8006bbc:	5b 8e 00 10 	sw (sp+16),r14                                 
 8006bc0:	5b 8f 00 0c 	sw (sp+12),r15                                 
 8006bc4:	5b 90 00 08 	sw (sp+8),r16                                  
 8006bc8:	5b 9d 00 04 	sw (sp+4),ra                                   
 8006bcc:	b8 20 60 00 	mv r12,r1                                      
   * See the comment in watchdoginsert.c and watchdogadjust.c         
   * about why it's safe not to declare header a pointer to           
   * volatile data - till, 2003/7                                     
   */                                                                 
                                                                      
  _ISR_Disable( level );                                              
 8006bd0:	90 00 68 00 	rcsr r13,IE                                    
 8006bd4:	34 01 ff fe 	mvi r1,-2                                      
 8006bd8:	a1 a1 08 00 	and r1,r13,r1                                  
 8006bdc:	d0 01 00 00 	wcsr IE,r1                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
 8006be0:	29 8b 00 00 	lw r11,(r12+0)                                 
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
 8006be4:	35 8e 00 04 	addi r14,r12,4                                 
 8006be8:	b9 a0 10 00 	mv r2,r13                                      
                                                                      
  if ( _Chain_Is_empty( header ) )                                    
 8006bec:	45 6e 00 1e 	be r11,r14,8006c64 <_Watchdog_Tickle+0xb8>     
   * to be inserted has already had its delta_interval adjusted to 0, and
   * so is added to the head of the chain with a delta_interval of 0. 
   *                                                                  
   * Steven Johnson - 12/2005 (gcc-3.2.3 -O3 on powerpc)              
   */                                                                 
  if (the_watchdog->delta_interval != 0) {                            
 8006bf0:	29 61 00 10 	lw r1,(r11+16)                                 
 8006bf4:	5c 20 00 26 	bne r1,r0,8006c8c <_Watchdog_Tickle+0xe0>      
  do {                                                                
     watchdog_state = _Watchdog_Remove( the_watchdog );               
                                                                      
     _ISR_Enable( level );                                            
                                                                      
     switch( watchdog_state ) {                                       
 8006bf8:	34 10 00 02 	mvi r16,2                                      
                                                                      
       case WATCHDOG_REMOVE_IT:                                       
         break;                                                       
     }                                                                
                                                                      
     _ISR_Disable( level );                                           
 8006bfc:	34 0f ff fe 	mvi r15,-2                                     
 8006c00:	e0 00 00 0a 	bi 8006c28 <_Watchdog_Tickle+0x7c>             
 8006c04:	90 00 10 00 	rcsr r2,IE                                     <== NOT EXECUTED
 8006c08:	a0 4f 08 00 	and r1,r2,r15                                  <== NOT EXECUTED
 8006c0c:	d0 01 00 00 	wcsr IE,r1                                     <== NOT EXECUTED
   } while ( !_Chain_Is_empty( header ) &&                            
             (the_watchdog->delta_interval == 0) );                   
                                                                      
leave:                                                                
   _ISR_Enable(level);                                                
}                                                                     
 8006c10:	29 81 00 00 	lw r1,(r12+0)                                  <== NOT EXECUTED
                                                                      
       case WATCHDOG_REMOVE_IT:                                       
         break;                                                       
     }                                                                
                                                                      
     _ISR_Disable( level );                                           
 8006c14:	b8 40 68 00 	mv r13,r2                                      <== NOT EXECUTED
RTEMS_INLINE_ROUTINE Watchdog_Control *_Watchdog_First(               
  Chain_Control *header                                               
)                                                                     
{                                                                     
                                                                      
  return ( (Watchdog_Control *) header->first );                      
 8006c18:	b8 20 58 00 	mv r11,r1                                      <== NOT EXECUTED
                                                                      
     the_watchdog = _Watchdog_First( header );                        
   } while ( !_Chain_Is_empty( header ) &&                            
             (the_watchdog->delta_interval == 0) );                   
 8006c1c:	44 2e 00 12 	be r1,r14,8006c64 <_Watchdog_Tickle+0xb8>      <== NOT EXECUTED
     }                                                                
                                                                      
     _ISR_Disable( level );                                           
                                                                      
     the_watchdog = _Watchdog_First( header );                        
   } while ( !_Chain_Is_empty( header ) &&                            
 8006c20:	28 21 00 10 	lw r1,(r1+16)                                  
 8006c24:	5c 20 00 10 	bne r1,r0,8006c64 <_Watchdog_Tickle+0xb8>      
    if ( the_watchdog->delta_interval != 0 )                          
      goto leave;                                                     
  }                                                                   
                                                                      
  do {                                                                
     watchdog_state = _Watchdog_Remove( the_watchdog );               
 8006c28:	b9 60 08 00 	mv r1,r11                                      
 8006c2c:	fb ff ff ab 	calli 8006ad8 <_Watchdog_Remove>               
                                                                      
     _ISR_Enable( level );                                            
 8006c30:	d0 0d 00 00 	wcsr IE,r13                                    
                                                                      
     switch( watchdog_state ) {                                       
 8006c34:	5c 30 ff f4 	bne r1,r16,8006c04 <_Watchdog_Tickle+0x58>     <== NEVER TAKEN
       case WATCHDOG_ACTIVE:                                          
         (*the_watchdog->routine)(                                    
 8006c38:	29 63 00 1c 	lw r3,(r11+28)                                 
 8006c3c:	29 61 00 20 	lw r1,(r11+32)                                 
 8006c40:	29 62 00 24 	lw r2,(r11+36)                                 
 8006c44:	d8 60 00 00 	call r3                                        
                                                                      
       case WATCHDOG_REMOVE_IT:                                       
         break;                                                       
     }                                                                
                                                                      
     _ISR_Disable( level );                                           
 8006c48:	90 00 10 00 	rcsr r2,IE                                     
 8006c4c:	a0 4f 08 00 	and r1,r2,r15                                  
 8006c50:	d0 01 00 00 	wcsr IE,r1                                     
   } while ( !_Chain_Is_empty( header ) &&                            
             (the_watchdog->delta_interval == 0) );                   
                                                                      
leave:                                                                
   _ISR_Enable(level);                                                
}                                                                     
 8006c54:	29 81 00 00 	lw r1,(r12+0)                                  
                                                                      
       case WATCHDOG_REMOVE_IT:                                       
         break;                                                       
     }                                                                
                                                                      
     _ISR_Disable( level );                                           
 8006c58:	b8 40 68 00 	mv r13,r2                                      
 8006c5c:	b8 20 58 00 	mv r11,r1                                      
                                                                      
     the_watchdog = _Watchdog_First( header );                        
   } while ( !_Chain_Is_empty( header ) &&                            
             (the_watchdog->delta_interval == 0) );                   
 8006c60:	5c 2e ff f0 	bne r1,r14,8006c20 <_Watchdog_Tickle+0x74>     
                                                                      
leave:                                                                
   _ISR_Enable(level);                                                
 8006c64:	d0 02 00 00 	wcsr IE,r2                                     
}                                                                     
 8006c68:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8006c6c:	2b 8b 00 1c 	lw r11,(sp+28)                                 
 8006c70:	2b 8c 00 18 	lw r12,(sp+24)                                 
 8006c74:	2b 8d 00 14 	lw r13,(sp+20)                                 
 8006c78:	2b 8e 00 10 	lw r14,(sp+16)                                 
 8006c7c:	2b 8f 00 0c 	lw r15,(sp+12)                                 
 8006c80:	2b 90 00 08 	lw r16,(sp+8)                                  
 8006c84:	37 9c 00 1c 	addi sp,sp,28                                  
 8006c88:	c3 a0 00 00 	ret                                            
   * so is added to the head of the chain with a delta_interval of 0. 
   *                                                                  
   * Steven Johnson - 12/2005 (gcc-3.2.3 -O3 on powerpc)              
   */                                                                 
  if (the_watchdog->delta_interval != 0) {                            
    the_watchdog->delta_interval--;                                   
 8006c8c:	34 21 ff ff 	addi r1,r1,-1                                  
 8006c90:	59 61 00 10 	sw (r11+16),r1                                 
    if ( the_watchdog->delta_interval != 0 )                          
 8006c94:	44 20 ff d9 	be r1,r0,8006bf8 <_Watchdog_Tickle+0x4c>       
 8006c98:	e3 ff ff f3 	bi 8006c64 <_Watchdog_Tickle+0xb8>             
                                                                      

08003950 <rtems_chain_append_with_notification>: rtems_chain_control *chain, rtems_chain_node *node, rtems_id task, rtems_event_set events ) {
 8003950:	37 9c ff f4 	addi sp,sp,-12                                 
 8003954:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8003958:	5b 8c 00 08 	sw (sp+8),r12                                  
 800395c:	5b 9d 00 04 	sw (sp+4),ra                                   
 8003960:	b8 60 60 00 	mv r12,r3                                      
 8003964:	b8 80 58 00 	mv r11,r4                                      
RTEMS_INLINE_ROUTINE bool rtems_chain_append_with_empty_check(        
  rtems_chain_control *chain,                                         
  rtems_chain_node *node                                              
)                                                                     
{                                                                     
  return _Chain_Append_with_empty_check( chain, node );               
 8003968:	f8 00 01 8f 	calli 8003fa4 <_Chain_Append_with_empty_check> 
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
 800396c:	34 05 00 00 	mvi r5,0                                       
  bool was_empty = rtems_chain_append_with_empty_check( chain, node );
                                                                      
  if ( was_empty ) {                                                  
 8003970:	44 20 00 05 	be r1,r0,8003984 <rtems_chain_append_with_notification+0x34><== NEVER TAKEN
    sc = rtems_event_send( task, events );                            
 8003974:	b9 80 08 00 	mv r1,r12                                      
 8003978:	b9 60 10 00 	mv r2,r11                                      
 800397c:	f8 00 16 13 	calli 80091c8 <rtems_event_send>               
 8003980:	b8 20 28 00 	mv r5,r1                                       
  }                                                                   
                                                                      
  return sc;                                                          
}                                                                     
 8003984:	b8 a0 08 00 	mv r1,r5                                       
 8003988:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800398c:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8003990:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8003994:	37 9c 00 0c 	addi sp,sp,12                                  
 8003998:	c3 a0 00 00 	ret                                            
                                                                      

0800399c <rtems_chain_get_with_notification>: rtems_chain_control *chain, rtems_id task, rtems_event_set events, rtems_chain_node **node ) {
 800399c:	37 9c ff f4 	addi sp,sp,-12                                 
 80039a0:	5b 8b 00 0c 	sw (sp+12),r11                                 
 80039a4:	5b 8c 00 08 	sw (sp+8),r12                                  
 80039a8:	5b 9d 00 04 	sw (sp+4),ra                                   
 80039ac:	b8 40 60 00 	mv r12,r2                                      
RTEMS_INLINE_ROUTINE bool rtems_chain_get_with_empty_check(           
  rtems_chain_control *chain,                                         
  rtems_chain_node **node                                             
)                                                                     
{                                                                     
  return _Chain_Get_with_empty_check( chain, node );                  
 80039b0:	b8 80 10 00 	mv r2,r4                                       
 80039b4:	b8 60 58 00 	mv r11,r3                                      
 80039b8:	f8 00 01 9f 	calli 8004034 <_Chain_Get_with_empty_check>    
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
 80039bc:	34 04 00 00 	mvi r4,0                                       
  bool is_empty = rtems_chain_get_with_empty_check( chain, node );    
                                                                      
  if ( is_empty ) {                                                   
 80039c0:	44 20 00 05 	be r1,r0,80039d4 <rtems_chain_get_with_notification+0x38><== NEVER TAKEN
    sc = rtems_event_send( task, events );                            
 80039c4:	b9 80 08 00 	mv r1,r12                                      
 80039c8:	b9 60 10 00 	mv r2,r11                                      
 80039cc:	f8 00 15 ff 	calli 80091c8 <rtems_event_send>               
 80039d0:	b8 20 20 00 	mv r4,r1                                       
  }                                                                   
                                                                      
  return sc;                                                          
}                                                                     
 80039d4:	b8 80 08 00 	mv r1,r4                                       
 80039d8:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80039dc:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 80039e0:	2b 8c 00 08 	lw r12,(sp+8)                                  
 80039e4:	37 9c 00 0c 	addi sp,sp,12                                  
 80039e8:	c3 a0 00 00 	ret                                            
                                                                      

080039ec <rtems_chain_get_with_wait>: rtems_chain_control *chain, rtems_event_set events, rtems_interval timeout, rtems_chain_node **node_ptr ) {
 80039ec:	37 9c ff e4 	addi sp,sp,-28                                 
 80039f0:	5b 8b 00 18 	sw (sp+24),r11                                 
 80039f4:	5b 8c 00 14 	sw (sp+20),r12                                 
 80039f8:	5b 8d 00 10 	sw (sp+16),r13                                 
 80039fc:	5b 8e 00 0c 	sw (sp+12),r14                                 
 8003a00:	5b 8f 00 08 	sw (sp+8),r15                                  
 8003a04:	5b 9d 00 04 	sw (sp+4),ra                                   
 8003a08:	b8 20 70 00 	mv r14,r1                                      
 8003a0c:	b8 40 68 00 	mv r13,r2                                      
 8003a10:	b8 60 60 00 	mv r12,r3                                      
 8003a14:	b8 80 78 00 	mv r15,r4                                      
 */                                                                   
RTEMS_INLINE_ROUTINE rtems_chain_node *rtems_chain_get(               
  rtems_chain_control *the_chain                                      
)                                                                     
{                                                                     
  return _Chain_Get( the_chain );                                     
 8003a18:	b9 c0 08 00 	mv r1,r14                                      
 8003a1c:	f8 00 01 98 	calli 800407c <_Chain_Get>                     
 8003a20:	b8 20 58 00 	mv r11,r1                                      
  while (                                                             
    sc == RTEMS_SUCCESSFUL                                            
      && (node = rtems_chain_get( chain )) == NULL                    
  ) {                                                                 
    rtems_event_set out;                                              
    sc = rtems_event_receive(                                         
 8003a24:	34 02 00 00 	mvi r2,0                                       
 8003a28:	b9 a0 08 00 	mv r1,r13                                      
 8003a2c:	b9 80 18 00 	mv r3,r12                                      
 8003a30:	37 84 00 1c 	addi r4,sp,28                                  
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  rtems_chain_node *node = NULL;                                      
                                                                      
  while (                                                             
    sc == RTEMS_SUCCESSFUL                                            
      && (node = rtems_chain_get( chain )) == NULL                    
 8003a34:	5d 60 00 0e 	bne r11,r0,8003a6c <rtems_chain_get_with_wait+0x80>
  ) {                                                                 
    rtems_event_set out;                                              
    sc = rtems_event_receive(                                         
 8003a38:	fb ff fd 9e 	calli 80030b0 <rtems_event_receive>            
 8003a3c:	b8 20 28 00 	mv r5,r1                                       
)                                                                     
{                                                                     
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  rtems_chain_node *node = NULL;                                      
                                                                      
  while (                                                             
 8003a40:	44 2b ff f6 	be r1,r11,8003a18 <rtems_chain_get_with_wait+0x2c><== NEVER TAKEN
  }                                                                   
                                                                      
  *node_ptr = node;                                                   
                                                                      
  return sc;                                                          
}                                                                     
 8003a44:	b8 a0 08 00 	mv r1,r5                                       
      timeout,                                                        
      &out                                                            
    );                                                                
  }                                                                   
                                                                      
  *node_ptr = node;                                                   
 8003a48:	59 eb 00 00 	sw (r15+0),r11                                 
                                                                      
  return sc;                                                          
}                                                                     
 8003a4c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003a50:	2b 8b 00 18 	lw r11,(sp+24)                                 
 8003a54:	2b 8c 00 14 	lw r12,(sp+20)                                 
 8003a58:	2b 8d 00 10 	lw r13,(sp+16)                                 
 8003a5c:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 8003a60:	2b 8f 00 08 	lw r15,(sp+8)                                  
 8003a64:	37 9c 00 1c 	addi sp,sp,28                                  
 8003a68:	c3 a0 00 00 	ret                                            
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  rtems_chain_node *node = NULL;                                      
                                                                      
  while (                                                             
    sc == RTEMS_SUCCESSFUL                                            
      && (node = rtems_chain_get( chain )) == NULL                    
 8003a6c:	34 05 00 00 	mvi r5,0                                       
 8003a70:	e3 ff ff f5 	bi 8003a44 <rtems_chain_get_with_wait+0x58>    
                                                                      

08003a74 <rtems_chain_prepend_with_notification>: rtems_chain_control *chain, rtems_chain_node *node, rtems_id task, rtems_event_set events ) {
 8003a74:	37 9c ff f4 	addi sp,sp,-12                                 
 8003a78:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8003a7c:	5b 8c 00 08 	sw (sp+8),r12                                  
 8003a80:	5b 9d 00 04 	sw (sp+4),ra                                   
 8003a84:	b8 60 60 00 	mv r12,r3                                      
 8003a88:	b8 80 58 00 	mv r11,r4                                      
RTEMS_INLINE_ROUTINE bool rtems_chain_prepend_with_empty_check(       
  rtems_chain_control *chain,                                         
  rtems_chain_node *node                                              
)                                                                     
{                                                                     
  return _Chain_Prepend_with_empty_check( chain, node );              
 8003a8c:	f8 00 01 97 	calli 80040e8 <_Chain_Prepend_with_empty_check>
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
 8003a90:	34 05 00 00 	mvi r5,0                                       
  bool was_empty = rtems_chain_prepend_with_empty_check( chain, node );
                                                                      
  if (was_empty) {                                                    
 8003a94:	44 20 00 05 	be r1,r0,8003aa8 <rtems_chain_prepend_with_notification+0x34><== NEVER TAKEN
    sc = rtems_event_send( task, events );                            
 8003a98:	b9 80 08 00 	mv r1,r12                                      
 8003a9c:	b9 60 10 00 	mv r2,r11                                      
 8003aa0:	f8 00 15 ca 	calli 80091c8 <rtems_event_send>               
 8003aa4:	b8 20 28 00 	mv r5,r1                                       
  }                                                                   
                                                                      
  return sc;                                                          
}                                                                     
 8003aa8:	b8 a0 08 00 	mv r1,r5                                       
 8003aac:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003ab0:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8003ab4:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8003ab8:	37 9c 00 0c 	addi sp,sp,12                                  
 8003abc:	c3 a0 00 00 	ret                                            
                                                                      

080102fc <rtems_clock_set_nanoseconds_extension>: * error code - if unsuccessful */ rtems_status_code rtems_clock_set_nanoseconds_extension( rtems_nanoseconds_extension_routine routine ) {
 80102fc:	b8 20 18 00 	mv r3,r1                                       
  if ( !routine )                                                     
    return RTEMS_INVALID_ADDRESS;                                     
 8010300:	34 01 00 09 	mvi r1,9                                       
 */                                                                   
rtems_status_code rtems_clock_set_nanoseconds_extension(              
  rtems_nanoseconds_extension_routine routine                         
)                                                                     
{                                                                     
  if ( !routine )                                                     
 8010304:	44 60 00 05 	be r3,r0,8010318 <rtems_clock_set_nanoseconds_extension+0x1c><== ALWAYS TAKEN
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  _Watchdog_Nanoseconds_since_tick_handler = routine;                 
 8010308:	78 02 08 03 	mvhi r2,0x803                                  <== NOT EXECUTED
 801030c:	38 42 ed b0 	ori r2,r2,0xedb0                               <== NOT EXECUTED
 8010310:	58 43 00 00 	sw (r2+0),r3                                   <== NOT EXECUTED
  return RTEMS_SUCCESSFUL;                                            
 8010314:	34 01 00 00 	mvi r1,0                                       <== NOT EXECUTED
}                                                                     
 8010318:	c3 a0 00 00 	ret                                            
                                                                      

08004954 <rtems_io_register_driver>: rtems_status_code rtems_io_register_driver( rtems_device_major_number major, const rtems_driver_address_table *driver_table, rtems_device_major_number *registered_major ) {
 8004954:	37 9c ff f8 	addi sp,sp,-8                                  
 8004958:	5b 8b 00 08 	sw (sp+8),r11                                  
 800495c:	5b 9d 00 04 	sw (sp+4),ra                                   
  rtems_device_major_number major_limit = _IO_Number_of_drivers;      
                                                                      
  if ( rtems_interrupt_is_in_progress() )                             
 8004960:	78 04 08 01 	mvhi r4,0x801                                  
 8004964:	38 84 8a 68 	ori r4,r4,0x8a68                               
 8004968:	28 85 00 08 	lw r5,(r4+8)                                   
  rtems_device_major_number         major,                            
  const rtems_driver_address_table *driver_table,                     
  rtems_device_major_number        *registered_major                  
)                                                                     
{                                                                     
  rtems_device_major_number major_limit = _IO_Number_of_drivers;      
 800496c:	78 04 08 01 	mvhi r4,0x801                                  
 8004970:	38 84 8b 0c 	ori r4,r4,0x8b0c                               
rtems_status_code rtems_io_register_driver(                           
  rtems_device_major_number         major,                            
  const rtems_driver_address_table *driver_table,                     
  rtems_device_major_number        *registered_major                  
)                                                                     
{                                                                     
 8004974:	b8 20 58 00 	mv r11,r1                                      
  rtems_device_major_number major_limit = _IO_Number_of_drivers;      
 8004978:	28 86 00 00 	lw r6,(r4+0)                                   
                                                                      
  if ( rtems_interrupt_is_in_progress() )                             
    return RTEMS_CALLED_FROM_ISR;                                     
 800497c:	34 01 00 12 	mvi r1,18                                      
  rtems_device_major_number        *registered_major                  
)                                                                     
{                                                                     
  rtems_device_major_number major_limit = _IO_Number_of_drivers;      
                                                                      
  if ( rtems_interrupt_is_in_progress() )                             
 8004980:	5c a0 00 33 	bne r5,r0,8004a4c <rtems_io_register_driver+0xf8>
    return RTEMS_CALLED_FROM_ISR;                                     
                                                                      
  if ( registered_major == NULL )                                     
    return RTEMS_INVALID_ADDRESS;                                     
 8004984:	34 01 00 09 	mvi r1,9                                       
  rtems_device_major_number major_limit = _IO_Number_of_drivers;      
                                                                      
  if ( rtems_interrupt_is_in_progress() )                             
    return RTEMS_CALLED_FROM_ISR;                                     
                                                                      
  if ( registered_major == NULL )                                     
 8004988:	44 65 00 31 	be r3,r5,8004a4c <rtems_io_register_driver+0xf8>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  /* Set it to an invalid value */                                    
  *registered_major = major_limit;                                    
 800498c:	58 66 00 00 	sw (r3+0),r6                                   
                                                                      
  if ( driver_table == NULL )                                         
 8004990:	44 40 00 2f 	be r2,r0,8004a4c <rtems_io_register_driver+0xf8>
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
 8004994:	28 45 00 00 	lw r5,(r2+0)                                   
 8004998:	44 a0 00 42 	be r5,r0,8004aa0 <rtems_io_register_driver+0x14c>
                                                                      
  if ( rtems_io_is_empty_table( driver_table ) )                      
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( major >= major_limit )                                         
    return RTEMS_INVALID_NUMBER;                                      
 800499c:	34 01 00 0a 	mvi r1,10                                      
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( rtems_io_is_empty_table( driver_table ) )                      
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( major >= major_limit )                                         
 80049a0:	51 66 00 2b 	bgeu r11,r6,8004a4c <rtems_io_register_driver+0xf8>
	rtems_fatal_error_occurred( 99 );                                    
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  _Thread_Dispatch_disable_level += 1;                                
 80049a4:	78 01 08 01 	mvhi r1,0x801                                  
 80049a8:	38 21 88 9c 	ori r1,r1,0x889c                               
 80049ac:	28 25 00 00 	lw r5,(r1+0)                                   
 80049b0:	34 a5 00 01 	addi r5,r5,1                                   
 80049b4:	58 25 00 00 	sw (r1+0),r5                                   
    return RTEMS_INVALID_NUMBER;                                      
                                                                      
  _Thread_Disable_dispatch();                                         
                                                                      
  if ( major == 0 ) {                                                 
 80049b8:	5d 60 00 29 	bne r11,r0,8004a5c <rtems_io_register_driver+0x108>
                                                                      
static rtems_status_code rtems_io_obtain_major_number(                
  rtems_device_major_number *major                                    
)                                                                     
{                                                                     
  rtems_device_major_number n = _IO_Number_of_drivers;                
 80049bc:	28 85 00 00 	lw r5,(r4+0)                                   
  rtems_device_major_number m = 0;                                    
                                                                      
  /* major is error checked by caller */                              
                                                                      
  for ( m = 0; m < n; ++m ) {                                         
 80049c0:	44 ab 00 3e 	be r5,r11,8004ab8 <rtems_io_register_driver+0x164><== NEVER TAKEN
 80049c4:	78 06 08 01 	mvhi r6,0x801                                  
 80049c8:	38 c6 8b 10 	ori r6,r6,0x8b10                               
 80049cc:	28 c1 00 00 	lw r1,(r6+0)                                   
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
 80049d0:	28 24 00 00 	lw r4,(r1+0)                                   
 80049d4:	44 80 00 36 	be r4,r0,8004aac <rtems_io_register_driver+0x158>
  rtems_device_major_number n = _IO_Number_of_drivers;                
  rtems_device_major_number m = 0;                                    
                                                                      
  /* major is error checked by caller */                              
                                                                      
  for ( m = 0; m < n; ++m ) {                                         
 80049d8:	35 6b 00 01 	addi r11,r11,1                                 
 80049dc:	34 21 00 18 	addi r1,r1,24                                  
 80049e0:	54 ab ff fc 	bgu r5,r11,80049d0 <rtems_io_register_driver+0x7c>
    if ( rtems_io_is_empty_table( table ) )                           
      break;                                                          
  }                                                                   
                                                                      
  /* Assigns invalid value in case of failure */                      
  *major = m;                                                         
 80049e4:	58 6b 00 00 	sw (r3+0),r11                                  
                                                                      
  if ( m != n )                                                       
 80049e8:	44 ab 00 35 	be r5,r11,8004abc <rtems_io_register_driver+0x168>
 80049ec:	b5 6b 08 00 	add r1,r11,r11                                 
 80049f0:	b4 2b 08 00 	add r1,r1,r11                                  
 80049f4:	b4 21 08 00 	add r1,r1,r1                                   
 80049f8:	b4 21 08 00 	add r1,r1,r1                                   
 80049fc:	b4 21 08 00 	add r1,r1,r1                                   
    }                                                                 
                                                                      
    *registered_major = major;                                        
  }                                                                   
                                                                      
  _IO_Driver_address_table [major] = *driver_table;                   
 8004a00:	28 c3 00 00 	lw r3,(r6+0)                                   
 8004a04:	28 44 00 00 	lw r4,(r2+0)                                   
 8004a08:	b4 61 08 00 	add r1,r3,r1                                   
 8004a0c:	58 24 00 00 	sw (r1+0),r4                                   
 8004a10:	28 43 00 04 	lw r3,(r2+4)                                   
 8004a14:	58 23 00 04 	sw (r1+4),r3                                   
 8004a18:	28 43 00 08 	lw r3,(r2+8)                                   
 8004a1c:	58 23 00 08 	sw (r1+8),r3                                   
 8004a20:	28 43 00 0c 	lw r3,(r2+12)                                  
 8004a24:	58 23 00 0c 	sw (r1+12),r3                                  
 8004a28:	28 43 00 10 	lw r3,(r2+16)                                  
 8004a2c:	58 23 00 10 	sw (r1+16),r3                                  
 8004a30:	28 42 00 14 	lw r2,(r2+20)                                  
 8004a34:	58 22 00 14 	sw (r1+20),r2                                  
                                                                      
  _Thread_Enable_dispatch();                                          
 8004a38:	f8 00 07 77 	calli 8006814 <_Thread_Enable_dispatch>        
                                                                      
  return rtems_io_initialize( major, 0, NULL );                       
 8004a3c:	b9 60 08 00 	mv r1,r11                                      
 8004a40:	34 02 00 00 	mvi r2,0                                       
 8004a44:	34 03 00 00 	mvi r3,0                                       
 8004a48:	f8 00 25 23 	calli 800ded4 <rtems_io_initialize>            
}                                                                     
 8004a4c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004a50:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8004a54:	37 9c 00 08 	addi sp,sp,8                                   
 8004a58:	c3 a0 00 00 	ret                                            
      _Thread_Enable_dispatch();                                      
      return sc;                                                      
    }                                                                 
    major = *registered_major;                                        
  } else {                                                            
    rtems_driver_address_table *const table = _IO_Driver_address_table + major;
 8004a5c:	b5 6b 08 00 	add r1,r11,r11                                 
 8004a60:	78 06 08 01 	mvhi r6,0x801                                  
 8004a64:	b4 2b 08 00 	add r1,r1,r11                                  
 8004a68:	38 c6 8b 10 	ori r6,r6,0x8b10                               
 8004a6c:	b4 21 08 00 	add r1,r1,r1                                   
 8004a70:	28 c5 00 00 	lw r5,(r6+0)                                   
 8004a74:	b4 21 08 00 	add r1,r1,r1                                   
 8004a78:	b4 21 08 00 	add r1,r1,r1                                   
 8004a7c:	b4 a1 28 00 	add r5,r5,r1                                   
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
 8004a80:	28 a4 00 00 	lw r4,(r5+0)                                   
 8004a84:	44 80 00 11 	be r4,r0,8004ac8 <rtems_io_register_driver+0x174>
    major = *registered_major;                                        
  } else {                                                            
    rtems_driver_address_table *const table = _IO_Driver_address_table + major;
                                                                      
    if ( !rtems_io_is_empty_table( table ) ) {                        
      _Thread_Enable_dispatch();                                      
 8004a88:	f8 00 07 63 	calli 8006814 <_Thread_Enable_dispatch>        
      return RTEMS_RESOURCE_IN_USE;                                   
 8004a8c:	34 01 00 0c 	mvi r1,12                                      
  _IO_Driver_address_table [major] = *driver_table;                   
                                                                      
  _Thread_Enable_dispatch();                                          
                                                                      
  return rtems_io_initialize( major, 0, NULL );                       
}                                                                     
 8004a90:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004a94:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8004a98:	37 9c 00 08 	addi sp,sp,8                                   
 8004a9c:	c3 a0 00 00 	ret                                            
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
 8004aa0:	28 47 00 04 	lw r7,(r2+4)                                   
 8004aa4:	5c e5 ff be 	bne r7,r5,800499c <rtems_io_register_driver+0x48>
 8004aa8:	e3 ff ff e9 	bi 8004a4c <rtems_io_register_driver+0xf8>     
 8004aac:	28 27 00 04 	lw r7,(r1+4)                                   
 8004ab0:	5c e4 ff ca 	bne r7,r4,80049d8 <rtems_io_register_driver+0x84>
 8004ab4:	e3 ff ff cc 	bi 80049e4 <rtems_io_register_driver+0x90>     
    if ( rtems_io_is_empty_table( table ) )                           
      break;                                                          
  }                                                                   
                                                                      
  /* Assigns invalid value in case of failure */                      
  *major = m;                                                         
 8004ab8:	58 60 00 00 	sw (r3+0),r0                                   <== NOT EXECUTED
                                                                      
  if ( major == 0 ) {                                                 
    rtems_status_code sc = rtems_io_obtain_major_number( registered_major );
                                                                      
    if ( sc != RTEMS_SUCCESSFUL ) {                                   
      _Thread_Enable_dispatch();                                      
 8004abc:	f8 00 07 56 	calli 8006814 <_Thread_Enable_dispatch>        
  *major = m;                                                         
                                                                      
  if ( m != n )                                                       
    return RTEMS_SUCCESSFUL;                                          
                                                                      
  return RTEMS_TOO_MANY;                                              
 8004ac0:	34 01 00 05 	mvi r1,5                                       
  if ( major == 0 ) {                                                 
    rtems_status_code sc = rtems_io_obtain_major_number( registered_major );
                                                                      
    if ( sc != RTEMS_SUCCESSFUL ) {                                   
      _Thread_Enable_dispatch();                                      
      return sc;                                                      
 8004ac4:	e3 ff ff e2 	bi 8004a4c <rtems_io_register_driver+0xf8>     
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
 8004ac8:	28 a5 00 04 	lw r5,(r5+4)                                   
 8004acc:	5c a4 ff ef 	bne r5,r4,8004a88 <rtems_io_register_driver+0x134>
    if ( !rtems_io_is_empty_table( table ) ) {                        
      _Thread_Enable_dispatch();                                      
      return RTEMS_RESOURCE_IN_USE;                                   
    }                                                                 
                                                                      
    *registered_major = major;                                        
 8004ad0:	58 6b 00 00 	sw (r3+0),r11                                  
 8004ad4:	e3 ff ff cb 	bi 8004a00 <rtems_io_register_driver+0xac>     
                                                                      

08004ad8 <rtems_io_unregister_driver>: */ rtems_status_code rtems_io_unregister_driver( rtems_device_major_number major ) {
 8004ad8:	37 9c ff fc 	addi sp,sp,-4                                  
 8004adc:	5b 9d 00 04 	sw (sp+4),ra                                   
  if ( rtems_interrupt_is_in_progress() )                             
 8004ae0:	78 02 08 01 	mvhi r2,0x801                                  
 8004ae4:	38 42 8a 68 	ori r2,r2,0x8a68                               
 8004ae8:	28 43 00 08 	lw r3,(r2+8)                                   
    return RTEMS_CALLED_FROM_ISR;                                     
 8004aec:	34 02 00 12 	mvi r2,18                                      
                                                                      
rtems_status_code rtems_io_unregister_driver(                         
  rtems_device_major_number major                                     
)                                                                     
{                                                                     
  if ( rtems_interrupt_is_in_progress() )                             
 8004af0:	5c 60 00 19 	bne r3,r0,8004b54 <rtems_io_unregister_driver+0x7c><== NEVER TAKEN
    return RTEMS_CALLED_FROM_ISR;                                     
                                                                      
  if ( major < _IO_Number_of_drivers ) {                              
 8004af4:	78 02 08 01 	mvhi r2,0x801                                  
 8004af8:	38 42 8b 0c 	ori r2,r2,0x8b0c                               
 8004afc:	28 43 00 00 	lw r3,(r2+0)                                   
    _Thread_Enable_dispatch();                                        
                                                                      
    return RTEMS_SUCCESSFUL;                                          
  }                                                                   
                                                                      
  return RTEMS_UNSATISFIED;                                           
 8004b00:	34 02 00 0d 	mvi r2,13                                      
)                                                                     
{                                                                     
  if ( rtems_interrupt_is_in_progress() )                             
    return RTEMS_CALLED_FROM_ISR;                                     
                                                                      
  if ( major < _IO_Number_of_drivers ) {                              
 8004b04:	50 23 00 14 	bgeu r1,r3,8004b54 <rtems_io_unregister_driver+0x7c><== NEVER TAKEN
 8004b08:	78 02 08 01 	mvhi r2,0x801                                  
 8004b0c:	38 42 88 9c 	ori r2,r2,0x889c                               
 8004b10:	28 43 00 00 	lw r3,(r2+0)                                   
 8004b14:	34 63 00 01 	addi r3,r3,1                                   
 8004b18:	58 43 00 00 	sw (r2+0),r3                                   
    _Thread_Disable_dispatch();                                       
    memset(                                                           
 8004b1c:	78 02 08 01 	mvhi r2,0x801                                  
      &_IO_Driver_address_table[major],                               
 8004b20:	b4 21 18 00 	add r3,r1,r1                                   
  if ( rtems_interrupt_is_in_progress() )                             
    return RTEMS_CALLED_FROM_ISR;                                     
                                                                      
  if ( major < _IO_Number_of_drivers ) {                              
    _Thread_Disable_dispatch();                                       
    memset(                                                           
 8004b24:	38 42 8b 10 	ori r2,r2,0x8b10                               
      &_IO_Driver_address_table[major],                               
 8004b28:	b4 61 08 00 	add r1,r3,r1                                   
  if ( rtems_interrupt_is_in_progress() )                             
    return RTEMS_CALLED_FROM_ISR;                                     
                                                                      
  if ( major < _IO_Number_of_drivers ) {                              
    _Thread_Disable_dispatch();                                       
    memset(                                                           
 8004b2c:	28 44 00 00 	lw r4,(r2+0)                                   
      &_IO_Driver_address_table[major],                               
 8004b30:	b4 21 08 00 	add r1,r1,r1                                   
 8004b34:	b4 21 08 00 	add r1,r1,r1                                   
 8004b38:	b4 21 08 00 	add r1,r1,r1                                   
  if ( rtems_interrupt_is_in_progress() )                             
    return RTEMS_CALLED_FROM_ISR;                                     
                                                                      
  if ( major < _IO_Number_of_drivers ) {                              
    _Thread_Disable_dispatch();                                       
    memset(                                                           
 8004b3c:	34 02 00 00 	mvi r2,0                                       
 8004b40:	34 03 00 18 	mvi r3,24                                      
 8004b44:	b4 81 08 00 	add r1,r4,r1                                   
 8004b48:	f8 00 32 9a 	calli 80115b0 <memset>                         
      &_IO_Driver_address_table[major],                               
      0,                                                              
      sizeof( rtems_driver_address_table )                            
    );                                                                
    _Thread_Enable_dispatch();                                        
 8004b4c:	f8 00 07 32 	calli 8006814 <_Thread_Enable_dispatch>        
                                                                      
    return RTEMS_SUCCESSFUL;                                          
 8004b50:	34 02 00 00 	mvi r2,0                                       
  }                                                                   
                                                                      
  return RTEMS_UNSATISFIED;                                           
}                                                                     
 8004b54:	b8 40 08 00 	mv r1,r2                                       
 8004b58:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004b5c:	37 9c 00 04 	addi sp,sp,4                                   
 8004b60:	c3 a0 00 00 	ret                                            
                                                                      

08006310 <rtems_iterate_over_all_threads>: #include <rtems/system.h> #include <rtems/score/thread.h> void rtems_iterate_over_all_threads(rtems_per_thread_routine routine) {
 8006310:	37 9c ff e4 	addi sp,sp,-28                                 
 8006314:	5b 8b 00 1c 	sw (sp+28),r11                                 
 8006318:	5b 8c 00 18 	sw (sp+24),r12                                 
 800631c:	5b 8d 00 14 	sw (sp+20),r13                                 
 8006320:	5b 8e 00 10 	sw (sp+16),r14                                 
 8006324:	5b 8f 00 0c 	sw (sp+12),r15                                 
 8006328:	5b 90 00 08 	sw (sp+8),r16                                  
 800632c:	5b 9d 00 04 	sw (sp+4),ra                                   
 8006330:	b8 20 78 00 	mv r15,r1                                      
  uint32_t             i;                                             
  uint32_t             api_index;                                     
  Thread_Control      *the_thread;                                    
  Objects_Information *information;                                   
                                                                      
  if ( !routine )                                                     
 8006334:	44 20 00 19 	be r1,r0,8006398 <rtems_iterate_over_all_threads+0x88><== NEVER TAKEN
#endif                                                                
                                                                      
#include <rtems/system.h>                                             
#include <rtems/score/thread.h>                                       
                                                                      
void rtems_iterate_over_all_threads(rtems_per_thread_routine routine) 
 8006338:	78 01 08 02 	mvhi r1,0x802                                  
  uint32_t             i;                                             
  uint32_t             api_index;                                     
  Thread_Control      *the_thread;                                    
  Objects_Information *information;                                   
                                                                      
  if ( !routine )                                                     
 800633c:	78 0e 08 02 	mvhi r14,0x802                                 
#endif                                                                
                                                                      
#include <rtems/system.h>                                             
#include <rtems/score/thread.h>                                       
                                                                      
void rtems_iterate_over_all_threads(rtems_per_thread_routine routine) 
 8006340:	38 21 85 c0 	ori r1,r1,0x85c0                               
  uint32_t             i;                                             
  uint32_t             api_index;                                     
  Thread_Control      *the_thread;                                    
  Objects_Information *information;                                   
                                                                      
  if ( !routine )                                                     
 8006344:	39 ce 85 c4 	ori r14,r14,0x85c4                             
#endif                                                                
                                                                      
#include <rtems/system.h>                                             
#include <rtems/score/thread.h>                                       
                                                                      
void rtems_iterate_over_all_threads(rtems_per_thread_routine routine) 
 8006348:	34 30 00 10 	addi r16,r1,16                                 
    #if defined(RTEMS_DEBUG)                                          
      if ( !_Objects_Information_table[ api_index ] )                 
	continue;                                                            
    #endif                                                            
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
 800634c:	29 c1 00 00 	lw r1,(r14+0)                                  
 8006350:	28 2d 00 04 	lw r13,(r1+4)                                  
    if ( !information )                                               
 8006354:	45 a0 00 0f 	be r13,r0,8006390 <rtems_iterate_over_all_threads+0x80>
      continue;                                                       
                                                                      
    for ( i=1 ; i <= information->maximum ; i++ ) {                   
 8006358:	2d a3 00 10 	lhu r3,(r13+16)                                
 800635c:	44 60 00 0d 	be r3,r0,8006390 <rtems_iterate_over_all_threads+0x80><== NEVER TAKEN
 8006360:	34 0c 00 04 	mvi r12,4                                      
 8006364:	34 0b 00 01 	mvi r11,1                                      
      the_thread = (Thread_Control *)information->local_table[ i ];   
 8006368:	29 a2 00 1c 	lw r2,(r13+28)                                 
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
    if ( !information )                                               
      continue;                                                       
                                                                      
    for ( i=1 ; i <= information->maximum ; i++ ) {                   
 800636c:	35 6b 00 01 	addi r11,r11,1                                 
      the_thread = (Thread_Control *)information->local_table[ i ];   
 8006370:	b4 4c 10 00 	add r2,r2,r12                                  
 8006374:	28 42 00 00 	lw r2,(r2+0)                                   
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
    if ( !information )                                               
      continue;                                                       
                                                                      
    for ( i=1 ; i <= information->maximum ; i++ ) {                   
 8006378:	35 8c 00 04 	addi r12,r12,4                                 
      the_thread = (Thread_Control *)information->local_table[ i ];   
                                                                      
      if ( !the_thread )                                              
	continue;                                                            
                                                                      
      (*routine)(the_thread);                                         
 800637c:	b8 40 08 00 	mv r1,r2                                       
      continue;                                                       
                                                                      
    for ( i=1 ; i <= information->maximum ; i++ ) {                   
      the_thread = (Thread_Control *)information->local_table[ i ];   
                                                                      
      if ( !the_thread )                                              
 8006380:	44 40 00 03 	be r2,r0,800638c <rtems_iterate_over_all_threads+0x7c>
	continue;                                                            
                                                                      
      (*routine)(the_thread);                                         
 8006384:	d9 e0 00 00 	call r15                                       
 8006388:	2d a3 00 10 	lhu r3,(r13+16)                                
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
    if ( !information )                                               
      continue;                                                       
                                                                      
    for ( i=1 ; i <= information->maximum ; i++ ) {                   
 800638c:	50 6b ff f7 	bgeu r3,r11,8006368 <rtems_iterate_over_all_threads+0x58>
 8006390:	35 ce 00 04 	addi r14,r14,4                                 
  Objects_Information *information;                                   
                                                                      
  if ( !routine )                                                     
    return;                                                           
                                                                      
  for ( api_index = 1 ; api_index <= OBJECTS_APIS_LAST ; api_index++ ) {
 8006394:	5d d0 ff ee 	bne r14,r16,800634c <rtems_iterate_over_all_threads+0x3c>
                                                                      
      (*routine)(the_thread);                                         
    }                                                                 
  }                                                                   
                                                                      
}                                                                     
 8006398:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800639c:	2b 8b 00 1c 	lw r11,(sp+28)                                 
 80063a0:	2b 8c 00 18 	lw r12,(sp+24)                                 
 80063a4:	2b 8d 00 14 	lw r13,(sp+20)                                 
 80063a8:	2b 8e 00 10 	lw r14,(sp+16)                                 
 80063ac:	2b 8f 00 0c 	lw r15,(sp+12)                                 
 80063b0:	2b 90 00 08 	lw r16,(sp+8)                                  
 80063b4:	37 9c 00 1c 	addi sp,sp,28                                  
 80063b8:	c3 a0 00 00 	ret                                            
                                                                      

08004dcc <rtems_object_get_class_information>: rtems_status_code rtems_object_get_class_information( int the_api, int the_class, rtems_object_api_class_information *info ) {
 8004dcc:	37 9c ff f8 	addi sp,sp,-8                                  
 8004dd0:	5b 8b 00 08 	sw (sp+8),r11                                  
 8004dd4:	5b 9d 00 04 	sw (sp+4),ra                                   
 8004dd8:	b8 60 58 00 	mv r11,r3                                      
                                                                      
  /*                                                                  
   * Validate parameters and look up information structure.           
   */                                                                 
  if ( !info )                                                        
    return RTEMS_INVALID_ADDRESS;                                     
 8004ddc:	34 03 00 09 	mvi r3,9                                       
  int                  i;                                             
                                                                      
  /*                                                                  
   * Validate parameters and look up information structure.           
   */                                                                 
  if ( !info )                                                        
 8004de0:	45 60 00 1e 	be r11,r0,8004e58 <rtems_object_get_class_information+0x8c>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  obj_info = _Objects_Get_information( the_api, the_class );          
 8004de4:	20 42 ff ff 	andi r2,r2,0xffff                              
 8004de8:	f8 00 07 ad 	calli 8006c9c <_Objects_Get_information>       
 8004dec:	b8 20 10 00 	mv r2,r1                                       
  if ( !obj_info )                                                    
    return RTEMS_INVALID_NUMBER;                                      
 8004df0:	34 03 00 0a 	mvi r3,10                                      
   */                                                                 
  if ( !info )                                                        
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  obj_info = _Objects_Get_information( the_api, the_class );          
  if ( !obj_info )                                                    
 8004df4:	44 20 00 19 	be r1,r0,8004e58 <rtems_object_get_class_information+0x8c>
    return RTEMS_INVALID_NUMBER;                                      
                                                                      
  /*                                                                  
   * Return information about this object class to the user.          
   */                                                                 
  info->minimum_id  = obj_info->minimum_id;                           
 8004df8:	28 24 00 08 	lw r4,(r1+8)                                   
  info->maximum_id  = obj_info->maximum_id;                           
 8004dfc:	28 23 00 0c 	lw r3,(r1+12)                                  
  info->auto_extend = obj_info->auto_extend;                          
  info->maximum     = obj_info->maximum;                              
 8004e00:	2c 46 00 10 	lhu r6,(r2+16)                                 
  /*                                                                  
   * Return information about this object class to the user.          
   */                                                                 
  info->minimum_id  = obj_info->minimum_id;                           
  info->maximum_id  = obj_info->maximum_id;                           
  info->auto_extend = obj_info->auto_extend;                          
 8004e04:	40 21 00 12 	lbu r1,(r1+18)                                 
    return RTEMS_INVALID_NUMBER;                                      
                                                                      
  /*                                                                  
   * Return information about this object class to the user.          
   */                                                                 
  info->minimum_id  = obj_info->minimum_id;                           
 8004e08:	59 64 00 00 	sw (r11+0),r4                                  
  info->maximum_id  = obj_info->maximum_id;                           
 8004e0c:	59 63 00 04 	sw (r11+4),r3                                  
  info->auto_extend = obj_info->auto_extend;                          
 8004e10:	31 61 00 0c 	sb (r11+12),r1                                 
  info->maximum     = obj_info->maximum;                              
 8004e14:	59 66 00 08 	sw (r11+8),r6                                  
                                                                      
  for ( unallocated=0, i=1 ; i <= info->maximum ; i++ )               
 8004e18:	34 04 00 00 	mvi r4,0                                       
 8004e1c:	44 c0 00 0d 	be r6,r0,8004e50 <rtems_object_get_class_information+0x84><== NEVER TAKEN
 8004e20:	28 43 00 1c 	lw r3,(r2+28)                                  
 8004e24:	34 01 00 01 	mvi r1,1                                       
 8004e28:	34 02 00 01 	mvi r2,1                                       
    if ( !obj_info->local_table[i] )                                  
 8004e2c:	b4 21 08 00 	add r1,r1,r1                                   
 8004e30:	b4 21 08 00 	add r1,r1,r1                                   
 8004e34:	b4 61 08 00 	add r1,r3,r1                                   
 8004e38:	28 25 00 00 	lw r5,(r1+0)                                   
  info->minimum_id  = obj_info->minimum_id;                           
  info->maximum_id  = obj_info->maximum_id;                           
  info->auto_extend = obj_info->auto_extend;                          
  info->maximum     = obj_info->maximum;                              
                                                                      
  for ( unallocated=0, i=1 ; i <= info->maximum ; i++ )               
 8004e3c:	34 42 00 01 	addi r2,r2,1                                   
 8004e40:	b8 40 08 00 	mv r1,r2                                       
    if ( !obj_info->local_table[i] )                                  
      unallocated++;                                                  
 8004e44:	64 a5 00 00 	cmpei r5,r5,0                                  
 8004e48:	b4 85 20 00 	add r4,r4,r5                                   
  info->minimum_id  = obj_info->minimum_id;                           
  info->maximum_id  = obj_info->maximum_id;                           
  info->auto_extend = obj_info->auto_extend;                          
  info->maximum     = obj_info->maximum;                              
                                                                      
  for ( unallocated=0, i=1 ; i <= info->maximum ; i++ )               
 8004e4c:	50 c2 ff f8 	bgeu r6,r2,8004e2c <rtems_object_get_class_information+0x60>
    if ( !obj_info->local_table[i] )                                  
      unallocated++;                                                  
                                                                      
  info->unallocated = unallocated;                                    
 8004e50:	59 64 00 10 	sw (r11+16),r4                                 
                                                                      
  return RTEMS_SUCCESSFUL;                                            
 8004e54:	34 03 00 00 	mvi r3,0                                       
}                                                                     
 8004e58:	b8 60 08 00 	mv r1,r3                                       
 8004e5c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004e60:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8004e64:	37 9c 00 08 	addi sp,sp,8                                   
 8004e68:	c3 a0 00 00 	ret                                            
                                                                      

080113bc <rtems_partition_create>: uint32_t length, uint32_t buffer_size, rtems_attribute attribute_set, rtems_id *id ) {
 80113bc:	37 9c ff d8 	addi sp,sp,-40                                 
 80113c0:	5b 8b 00 18 	sw (sp+24),r11                                 
 80113c4:	5b 8c 00 14 	sw (sp+20),r12                                 
 80113c8:	5b 8d 00 10 	sw (sp+16),r13                                 
 80113cc:	5b 8e 00 0c 	sw (sp+12),r14                                 
 80113d0:	5b 8f 00 08 	sw (sp+8),r15                                  
 80113d4:	5b 9d 00 04 	sw (sp+4),ra                                   
  register Partition_Control *the_partition;                          
                                                                      
  if ( !rtems_is_name_valid( name ) )                                 
    return RTEMS_INVALID_NAME;                                        
 80113d8:	34 07 00 03 	mvi r7,3                                       
  uint32_t         length,                                            
  uint32_t         buffer_size,                                       
  rtems_attribute  attribute_set,                                     
  rtems_id        *id                                                 
)                                                                     
{                                                                     
 80113dc:	b8 20 60 00 	mv r12,r1                                      
 80113e0:	b8 40 58 00 	mv r11,r2                                      
  register Partition_Control *the_partition;                          
                                                                      
  if ( !rtems_is_name_valid( name ) )                                 
 80113e4:	44 20 00 3e 	be r1,r0,80114dc <rtems_partition_create+0x120>
    return RTEMS_INVALID_NAME;                                        
                                                                      
  if ( !starting_address )                                            
    return RTEMS_INVALID_ADDRESS;                                     
 80113e8:	34 07 00 09 	mvi r7,9                                       
  register Partition_Control *the_partition;                          
                                                                      
  if ( !rtems_is_name_valid( name ) )                                 
    return RTEMS_INVALID_NAME;                                        
                                                                      
  if ( !starting_address )                                            
 80113ec:	44 40 00 3c 	be r2,r0,80114dc <rtems_partition_create+0x120>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !id )                                                          
 80113f0:	44 c0 00 3b 	be r6,r0,80114dc <rtems_partition_create+0x120><== NEVER TAKEN
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( length == 0 || buffer_size == 0 || length < buffer_size ||     
 80113f4:	64 82 00 00 	cmpei r2,r4,0                                  
 80113f8:	64 61 00 00 	cmpei r1,r3,0                                  
         !_Partition_Is_buffer_size_aligned( buffer_size ) )          
    return RTEMS_INVALID_SIZE;                                        
 80113fc:	34 07 00 08 	mvi r7,8                                       
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !id )                                                          
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( length == 0 || buffer_size == 0 || length < buffer_size ||     
 8011400:	b8 41 08 00 	or r1,r2,r1                                    
 8011404:	5c 20 00 36 	bne r1,r0,80114dc <rtems_partition_create+0x120>
 8011408:	54 83 00 35 	bgu r4,r3,80114dc <rtems_partition_create+0x120>
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Partition_Is_buffer_size_aligned (         
   uint32_t   buffer_size                                             
)                                                                     
{                                                                     
  return ((buffer_size % CPU_PARTITION_ALIGNMENT) == 0);              
 801140c:	20 81 00 07 	andi r1,r4,0x7                                 
 8011410:	5c 20 00 33 	bne r1,r0,80114dc <rtems_partition_create+0x120>
)                                                                     
{                                                                     
#if (CPU_ALIGNMENT == 0)                                              
    return true;                                                      
#else                                                                 
    return (((uintptr_t)address % CPU_ALIGNMENT) == 0);               
 8011414:	21 6f 00 07 	andi r15,r11,0x7                               
         !_Partition_Is_buffer_size_aligned( buffer_size ) )          
    return RTEMS_INVALID_SIZE;                                        
                                                                      
  if ( !_Addresses_Is_aligned( starting_address ) )                   
     return RTEMS_INVALID_ADDRESS;                                    
 8011418:	34 07 00 09 	mvi r7,9                                       
                                                                      
  if ( length == 0 || buffer_size == 0 || length < buffer_size ||     
         !_Partition_Is_buffer_size_aligned( buffer_size ) )          
    return RTEMS_INVALID_SIZE;                                        
                                                                      
  if ( !_Addresses_Is_aligned( starting_address ) )                   
 801141c:	5d e1 00 30 	bne r15,r1,80114dc <rtems_partition_create+0x120>
 8011420:	78 01 08 03 	mvhi r1,0x803                                  
 8011424:	38 21 ec 2c 	ori r1,r1,0xec2c                               
 8011428:	28 22 00 00 	lw r2,(r1+0)                                   
 801142c:	34 42 00 01 	addi r2,r2,1                                   
 8011430:	58 22 00 00 	sw (r1+0),r2                                   
 *  This function allocates a partition control block from            
 *  the inactive chain of free partition control blocks.              
 */                                                                   
RTEMS_INLINE_ROUTINE Partition_Control *_Partition_Allocate ( void )  
{                                                                     
  return (Partition_Control *) _Objects_Allocate( &_Partition_Information );
 8011434:	78 0e 08 03 	mvhi r14,0x803                                 
 8011438:	39 ce ea 80 	ori r14,r14,0xea80                             
 801143c:	b9 c0 08 00 	mv r1,r14                                      
 8011440:	5b 83 00 28 	sw (sp+40),r3                                  
 8011444:	5b 84 00 20 	sw (sp+32),r4                                  
 8011448:	5b 85 00 24 	sw (sp+36),r5                                  
 801144c:	5b 86 00 1c 	sw (sp+28),r6                                  
 8011450:	f8 00 16 9a 	calli 8016eb8 <_Objects_Allocate>              
 8011454:	b8 20 68 00 	mv r13,r1                                      
                                                                      
  _Thread_Disable_dispatch();               /* prevents deletion */   
                                                                      
  the_partition = _Partition_Allocate();                              
                                                                      
  if ( !the_partition ) {                                             
 8011458:	2b 83 00 28 	lw r3,(sp+40)                                  
 801145c:	2b 84 00 20 	lw r4,(sp+32)                                  
 8011460:	2b 85 00 24 	lw r5,(sp+36)                                  
 8011464:	2b 86 00 1c 	lw r6,(sp+28)                                  
 8011468:	44 2f 00 26 	be r1,r15,8011500 <rtems_partition_create+0x144>
#endif                                                                
                                                                      
  the_partition->starting_address      = starting_address;            
  the_partition->length                = length;                      
  the_partition->buffer_size           = buffer_size;                 
  the_partition->attribute_set         = attribute_set;               
 801146c:	58 25 00 1c 	sw (r1+28),r5                                  
    return RTEMS_TOO_MANY;                                            
  }                                                                   
#endif                                                                
                                                                      
  the_partition->starting_address      = starting_address;            
  the_partition->length                = length;                      
 8011470:	58 23 00 14 	sw (r1+20),r3                                  
  the_partition->buffer_size           = buffer_size;                 
 8011474:	58 24 00 18 	sw (r1+24),r4                                  
    _Thread_Enable_dispatch();                                        
    return RTEMS_TOO_MANY;                                            
  }                                                                   
#endif                                                                
                                                                      
  the_partition->starting_address      = starting_address;            
 8011478:	58 2b 00 10 	sw (r1+16),r11                                 
  the_partition->length                = length;                      
  the_partition->buffer_size           = buffer_size;                 
  the_partition->attribute_set         = attribute_set;               
  the_partition->number_of_used_blocks = 0;                           
 801147c:	58 20 00 20 	sw (r1+32),r0                                  
                                                                      
  _Chain_Initialize( &the_partition->Memory, starting_address,        
                        length / buffer_size, buffer_size );          
 8011480:	b8 80 10 00 	mv r2,r4                                       
  the_partition->length                = length;                      
  the_partition->buffer_size           = buffer_size;                 
  the_partition->attribute_set         = attribute_set;               
  the_partition->number_of_used_blocks = 0;                           
                                                                      
  _Chain_Initialize( &the_partition->Memory, starting_address,        
 8011484:	34 2f 00 24 	addi r15,r1,36                                 
                        length / buffer_size, buffer_size );          
 8011488:	b8 60 08 00 	mv r1,r3                                       
 801148c:	5b 86 00 1c 	sw (sp+28),r6                                  
 8011490:	5b 84 00 20 	sw (sp+32),r4                                  
 8011494:	f8 00 79 ec 	calli 802fc44 <__udivsi3>                      
  the_partition->length                = length;                      
  the_partition->buffer_size           = buffer_size;                 
  the_partition->attribute_set         = attribute_set;               
  the_partition->number_of_used_blocks = 0;                           
                                                                      
  _Chain_Initialize( &the_partition->Memory, starting_address,        
 8011498:	2b 84 00 20 	lw r4,(sp+32)                                  
                        length / buffer_size, buffer_size );          
 801149c:	b8 20 18 00 	mv r3,r1                                       
  the_partition->length                = length;                      
  the_partition->buffer_size           = buffer_size;                 
  the_partition->attribute_set         = attribute_set;               
  the_partition->number_of_used_blocks = 0;                           
                                                                      
  _Chain_Initialize( &the_partition->Memory, starting_address,        
 80114a0:	b9 60 10 00 	mv r2,r11                                      
 80114a4:	b9 e0 08 00 	mv r1,r15                                      
 80114a8:	f8 00 0f 7f 	calli 80152a4 <_Chain_Initialize>              
  Objects_Name         name                                           
)                                                                     
{                                                                     
  _Objects_Set_local_object(                                          
    information,                                                      
    _Objects_Get_index( the_object->id ),                             
 80114ac:	29 a2 00 08 	lw r2,(r13+8)                                  
  #if defined(RTEMS_DEBUG)                                            
    if ( index > information->maximum )                               
      return;                                                         
  #endif                                                              
                                                                      
  information->local_table[ index ] = the_object;                     
 80114b0:	29 c3 00 1c 	lw r3,(r14+28)                                 
  Objects_Information *information,                                   
  Objects_Control     *the_object,                                    
  Objects_Name         name                                           
)                                                                     
{                                                                     
  _Objects_Set_local_object(                                          
 80114b4:	20 41 ff ff 	andi r1,r2,0xffff                              
  #if defined(RTEMS_DEBUG)                                            
    if ( index > information->maximum )                               
      return;                                                         
  #endif                                                              
                                                                      
  information->local_table[ index ] = the_object;                     
 80114b8:	b4 21 08 00 	add r1,r1,r1                                   
 80114bc:	b4 21 08 00 	add r1,r1,r1                                   
 80114c0:	b4 61 08 00 	add r1,r3,r1                                   
 80114c4:	58 2d 00 00 	sw (r1+0),r13                                  
    information,                                                      
    _Objects_Get_index( the_object->id ),                             
    the_object                                                        
  );                                                                  
                                                                      
  the_object->name = name;                                            
 80114c8:	59 ac 00 0c 	sw (r13+12),r12                                
    &_Partition_Information,                                          
    &the_partition->Object,                                           
    (Objects_Name) name                                               
  );                                                                  
                                                                      
  *id = the_partition->Object.id;                                     
 80114cc:	2b 86 00 1c 	lw r6,(sp+28)                                  
 80114d0:	58 c2 00 00 	sw (r6+0),r2                                   
      name,                                                           
      0                  /* Not used */                               
    );                                                                
#endif                                                                
                                                                      
  _Thread_Enable_dispatch();                                          
 80114d4:	f8 00 1b 00 	calli 80180d4 <_Thread_Enable_dispatch>        
  return RTEMS_SUCCESSFUL;                                            
 80114d8:	34 07 00 00 	mvi r7,0                                       
}                                                                     
 80114dc:	b8 e0 08 00 	mv r1,r7                                       
 80114e0:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80114e4:	2b 8b 00 18 	lw r11,(sp+24)                                 
 80114e8:	2b 8c 00 14 	lw r12,(sp+20)                                 
 80114ec:	2b 8d 00 10 	lw r13,(sp+16)                                 
 80114f0:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 80114f4:	2b 8f 00 08 	lw r15,(sp+8)                                  
 80114f8:	37 9c 00 28 	addi sp,sp,40                                  
 80114fc:	c3 a0 00 00 	ret                                            
  _Thread_Disable_dispatch();               /* prevents deletion */   
                                                                      
  the_partition = _Partition_Allocate();                              
                                                                      
  if ( !the_partition ) {                                             
    _Thread_Enable_dispatch();                                        
 8011500:	f8 00 1a f5 	calli 80180d4 <_Thread_Enable_dispatch>        
    return RTEMS_TOO_MANY;                                            
 8011504:	34 07 00 05 	mvi r7,5                                       
 8011508:	e3 ff ff f5 	bi 80114dc <rtems_partition_create+0x120>      
                                                                      

080042e8 <rtems_rate_monotonic_period>: rtems_status_code rtems_rate_monotonic_period( rtems_id id, rtems_interval length ) {
 80042e8:	37 9c ff e0 	addi sp,sp,-32                                 
 80042ec:	5b 8b 00 18 	sw (sp+24),r11                                 
 80042f0:	5b 8c 00 14 	sw (sp+20),r12                                 
 80042f4:	5b 8d 00 10 	sw (sp+16),r13                                 
 80042f8:	5b 8e 00 0c 	sw (sp+12),r14                                 
 80042fc:	5b 8f 00 08 	sw (sp+8),r15                                  
 8004300:	5b 9d 00 04 	sw (sp+4),ra                                   
  Objects_Id         id,                                              
  Objects_Locations *location                                         
)                                                                     
{                                                                     
  return (Rate_monotonic_Control *)                                   
    _Objects_Get( &_Rate_monotonic_Information, id, location );       
 8004304:	78 03 08 01 	mvhi r3,0x801                                  
 8004308:	b8 20 68 00 	mv r13,r1                                      
 800430c:	b8 60 08 00 	mv r1,r3                                       
 8004310:	b8 40 70 00 	mv r14,r2                                      
 8004314:	38 21 f8 18 	ori r1,r1,0xf818                               
 8004318:	b9 a0 10 00 	mv r2,r13                                      
 800431c:	37 83 00 20 	addi r3,sp,32                                  
 8004320:	f8 00 0a 6e 	calli 8006cd8 <_Objects_Get>                   
 8004324:	b8 20 58 00 	mv r11,r1                                      
  rtems_rate_monotonic_period_states   local_state;                   
  ISR_Level                            level;                         
                                                                      
  the_period = _Rate_monotonic_Get( id, &location );                  
                                                                      
  switch ( location ) {                                               
 8004328:	2b 81 00 20 	lw r1,(sp+32)                                  
 800432c:	44 20 00 0a 	be r1,r0,8004354 <rtems_rate_monotonic_period+0x6c>
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
 8004330:	34 01 00 04 	mvi r1,4                                       
}                                                                     
 8004334:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004338:	2b 8b 00 18 	lw r11,(sp+24)                                 
 800433c:	2b 8c 00 14 	lw r12,(sp+20)                                 
 8004340:	2b 8d 00 10 	lw r13,(sp+16)                                 
 8004344:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 8004348:	2b 8f 00 08 	lw r15,(sp+8)                                  
 800434c:	37 9c 00 20 	addi sp,sp,32                                  
 8004350:	c3 a0 00 00 	ret                                            
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_Is_executing (                      
  const Thread_Control *the_thread                                    
)                                                                     
{                                                                     
  return ( the_thread == _Thread_Executing );                         
 8004354:	78 0c 08 01 	mvhi r12,0x801                                 
 8004358:	39 8c fb 10 	ori r12,r12,0xfb10                             
                                                                      
  the_period = _Rate_monotonic_Get( id, &location );                  
                                                                      
  switch ( location ) {                                               
    case OBJECTS_LOCAL:                                               
      if ( !_Thread_Is_executing( the_period->owner ) ) {             
 800435c:	29 62 00 40 	lw r2,(r11+64)                                 
 8004360:	29 81 00 0c 	lw r1,(r12+12)                                 
 8004364:	44 41 00 0b 	be r2,r1,8004390 <rtems_rate_monotonic_period+0xa8>
        _Thread_Enable_dispatch();                                    
 8004368:	f8 00 0c fc 	calli 8007758 <_Thread_Enable_dispatch>        
        return RTEMS_NOT_OWNER_OF_RESOURCE;                           
 800436c:	34 01 00 17 	mvi r1,23                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8004370:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004374:	2b 8b 00 18 	lw r11,(sp+24)                                 
 8004378:	2b 8c 00 14 	lw r12,(sp+20)                                 
 800437c:	2b 8d 00 10 	lw r13,(sp+16)                                 
 8004380:	2b 8e 00 0c 	lw r14,(sp+12)                                 
 8004384:	2b 8f 00 08 	lw r15,(sp+8)                                  
 8004388:	37 9c 00 20 	addi sp,sp,32                                  
 800438c:	c3 a0 00 00 	ret                                            
      if ( !_Thread_Is_executing( the_period->owner ) ) {             
        _Thread_Enable_dispatch();                                    
        return RTEMS_NOT_OWNER_OF_RESOURCE;                           
      }                                                               
                                                                      
      if ( length == RTEMS_PERIOD_STATUS ) {                          
 8004390:	5d c0 00 0f 	bne r14,r0,80043cc <rtems_rate_monotonic_period+0xe4>
        switch ( the_period->state ) {                                
 8004394:	29 62 00 38 	lw r2,(r11+56)                                 
 8004398:	34 03 00 04 	mvi r3,4                                       
 800439c:	34 01 00 00 	mvi r1,0                                       
 80043a0:	54 43 00 07 	bgu r2,r3,80043bc <rtems_rate_monotonic_period+0xd4><== NEVER TAKEN
 80043a4:	78 01 08 01 	mvhi r1,0x801                                  
 80043a8:	b4 42 10 00 	add r2,r2,r2                                   
 80043ac:	38 21 d4 f8 	ori r1,r1,0xd4f8                               
 80043b0:	b4 42 10 00 	add r2,r2,r2                                   
 80043b4:	b4 22 10 00 	add r2,r1,r2                                   
 80043b8:	28 41 00 00 	lw r1,(r2+0)                                   
        );                                                            
                                                                      
        the_period->next_length = length;                             
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
 80043bc:	5b 81 00 1c 	sw (sp+28),r1                                  
 80043c0:	f8 00 0c e6 	calli 8007758 <_Thread_Enable_dispatch>        
        return RTEMS_SUCCESSFUL;                                      
 80043c4:	2b 81 00 1c 	lw r1,(sp+28)                                  
 80043c8:	e3 ff ff db 	bi 8004334 <rtems_rate_monotonic_period+0x4c>  
        }                                                             
        _Thread_Enable_dispatch();                                    
        return( return_value );                                       
      }                                                               
                                                                      
      _ISR_Disable( level );                                          
 80043cc:	90 00 78 00 	rcsr r15,IE                                    
 80043d0:	34 01 ff fe 	mvi r1,-2                                      
 80043d4:	a1 e1 08 00 	and r1,r15,r1                                  
 80043d8:	d0 01 00 00 	wcsr IE,r1                                     
      if ( the_period->state == RATE_MONOTONIC_INACTIVE ) {           
 80043dc:	29 62 00 38 	lw r2,(r11+56)                                 
 80043e0:	44 40 00 15 	be r2,r0,8004434 <rtems_rate_monotonic_period+0x14c>
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
                                                                      
      if ( the_period->state == RATE_MONOTONIC_ACTIVE ) {             
 80043e4:	34 01 00 02 	mvi r1,2                                       
 80043e8:	44 41 00 26 	be r2,r1,8004480 <rtems_rate_monotonic_period+0x198>
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
 80043ec:	34 01 00 04 	mvi r1,4                                       
                                                                      
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
                                                                      
      if ( the_period->state == RATE_MONOTONIC_EXPIRED ) {            
 80043f0:	5c 41 ff d1 	bne r2,r1,8004334 <rtems_rate_monotonic_period+0x4c><== NEVER TAKEN
        /*                                                            
         *  Update statistics from the concluding period              
         */                                                           
        _Rate_monotonic_Update_statistics( the_period );              
 80043f4:	b9 60 08 00 	mv r1,r11                                      
 80043f8:	fb ff ff 72 	calli 80041c0 <_Rate_monotonic_Update_statistics>
                                                                      
        _ISR_Enable( level );                                         
 80043fc:	d0 0f 00 00 	wcsr IE,r15                                    
                                                                      
        the_period->state = RATE_MONOTONIC_ACTIVE;                    
 8004400:	34 03 00 02 	mvi r3,2                                       
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
 8004404:	78 01 08 01 	mvhi r1,0x801                                  
 8004408:	38 21 fa 08 	ori r1,r1,0xfa08                               
 800440c:	35 62 00 10 	addi r2,r11,16                                 
 8004410:	59 63 00 38 	sw (r11+56),r3                                 
        the_period->next_length = length;                             
 8004414:	59 6e 00 3c 	sw (r11+60),r14                                
  Watchdog_Control      *the_watchdog,                                
  Watchdog_Interval      units                                        
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
 8004418:	59 6e 00 1c 	sw (r11+28),r14                                
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
 800441c:	f8 00 13 15 	calli 8009070 <_Watchdog_Insert>               
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
        return RTEMS_TIMEOUT;                                         
 8004420:	34 01 00 06 	mvi r1,6                                       
                                                                      
        the_period->state = RATE_MONOTONIC_ACTIVE;                    
        the_period->next_length = length;                             
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
 8004424:	5b 81 00 1c 	sw (sp+28),r1                                  
 8004428:	f8 00 0c cc 	calli 8007758 <_Thread_Enable_dispatch>        
        return RTEMS_TIMEOUT;                                         
 800442c:	2b 81 00 1c 	lw r1,(sp+28)                                  
 8004430:	e3 ff ff c1 	bi 8004334 <rtems_rate_monotonic_period+0x4c>  
        return( return_value );                                       
      }                                                               
                                                                      
      _ISR_Disable( level );                                          
      if ( the_period->state == RATE_MONOTONIC_INACTIVE ) {           
        _ISR_Enable( level );                                         
 8004434:	d0 0f 00 00 	wcsr IE,r15                                    
                                                                      
        /*                                                            
         *  Baseline statistics information for the beginning of a period.
         */                                                           
        _Rate_monotonic_Initiate_statistics( the_period );            
 8004438:	b9 60 08 00 	mv r1,r11                                      
 800443c:	fb ff ff 36 	calli 8004114 <_Rate_monotonic_Initiate_statistics>
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
  the_watchdog->routine   = routine;                                  
 8004440:	78 03 08 00 	mvhi r3,0x800                                  
 8004444:	38 63 48 78 	ori r3,r3,0x4878                               
                                                                      
        the_period->state = RATE_MONOTONIC_ACTIVE;                    
 8004448:	34 04 00 02 	mvi r4,2                                       
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
 800444c:	78 01 08 01 	mvhi r1,0x801                                  
 8004450:	38 21 fa 08 	ori r1,r1,0xfa08                               
 8004454:	35 62 00 10 	addi r2,r11,16                                 
 8004458:	59 64 00 38 	sw (r11+56),r4                                 
  Watchdog_Service_routine_entry  routine,                            
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
 800445c:	59 60 00 18 	sw (r11+24),r0                                 
  the_watchdog->routine   = routine;                                  
 8004460:	59 63 00 2c 	sw (r11+44),r3                                 
  the_watchdog->id        = id;                                       
 8004464:	59 6d 00 30 	sw (r11+48),r13                                
  the_watchdog->user_data = user_data;                                
 8004468:	59 60 00 34 	sw (r11+52),r0                                 
          _Rate_monotonic_Timeout,                                    
          id,                                                         
          NULL                                                        
        );                                                            
                                                                      
        the_period->next_length = length;                             
 800446c:	59 6e 00 3c 	sw (r11+60),r14                                
  Watchdog_Control      *the_watchdog,                                
  Watchdog_Interval      units                                        
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
 8004470:	59 6e 00 1c 	sw (r11+28),r14                                
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
 8004474:	f8 00 12 ff 	calli 8009070 <_Watchdog_Insert>               
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
 8004478:	34 01 00 00 	mvi r1,0                                       
 800447c:	e3 ff ff d0 	bi 80043bc <rtems_rate_monotonic_period+0xd4>  
                                                                      
      if ( the_period->state == RATE_MONOTONIC_ACTIVE ) {             
        /*                                                            
         *  Update statistics from the concluding period.             
         */                                                           
        _Rate_monotonic_Update_statistics( the_period );              
 8004480:	b9 60 08 00 	mv r1,r11                                      
 8004484:	fb ff ff 4f 	calli 80041c0 <_Rate_monotonic_Update_statistics>
        /*                                                            
         *  This tells the _Rate_monotonic_Timeout that this task is  
         *  in the process of blocking on the period and that we      
         *  may be changing the length of the next period.            
         */                                                           
        the_period->state = RATE_MONOTONIC_OWNER_IS_BLOCKING;         
 8004488:	34 01 00 01 	mvi r1,1                                       
 800448c:	59 61 00 38 	sw (r11+56),r1                                 
        the_period->next_length = length;                             
 8004490:	59 6e 00 3c 	sw (r11+60),r14                                
                                                                      
        _ISR_Enable( level );                                         
 8004494:	d0 0f 00 00 	wcsr IE,r15                                    
                                                                      
        _Thread_Executing->Wait.id = the_period->Object.id;           
 8004498:	29 83 00 0c 	lw r3,(r12+12)                                 
 800449c:	29 64 00 08 	lw r4,(r11+8)                                  
        _Thread_Set_state( _Thread_Executing, STATES_WAITING_FOR_PERIOD );
 80044a0:	34 02 40 00 	mvi r2,16384                                   
 80044a4:	b8 60 08 00 	mv r1,r3                                       
        the_period->state = RATE_MONOTONIC_OWNER_IS_BLOCKING;         
        the_period->next_length = length;                             
                                                                      
        _ISR_Enable( level );                                         
                                                                      
        _Thread_Executing->Wait.id = the_period->Object.id;           
 80044a8:	58 64 00 20 	sw (r3+32),r4                                  
        _Thread_Set_state( _Thread_Executing, STATES_WAITING_FOR_PERIOD );
 80044ac:	f8 00 0f 5f 	calli 8008228 <_Thread_Set_state>              
                                                                      
        /*                                                            
         *  Did the watchdog timer expire while we were actually blocking
         *  on it?                                                    
         */                                                           
        _ISR_Disable( level );                                        
 80044b0:	90 00 08 00 	rcsr r1,IE                                     
 80044b4:	34 02 ff fe 	mvi r2,-2                                      
 80044b8:	a0 22 10 00 	and r2,r1,r2                                   
 80044bc:	d0 02 00 00 	wcsr IE,r2                                     
          local_state = the_period->state;                            
          the_period->state = RATE_MONOTONIC_ACTIVE;                  
 80044c0:	34 03 00 02 	mvi r3,2                                       
        /*                                                            
         *  Did the watchdog timer expire while we were actually blocking
         *  on it?                                                    
         */                                                           
        _ISR_Disable( level );                                        
          local_state = the_period->state;                            
 80044c4:	29 62 00 38 	lw r2,(r11+56)                                 
          the_period->state = RATE_MONOTONIC_ACTIVE;                  
 80044c8:	59 63 00 38 	sw (r11+56),r3                                 
        _ISR_Enable( level );                                         
 80044cc:	d0 01 00 00 	wcsr IE,r1                                     
                                                                      
        /*                                                            
         *  If it did, then we want to unblock ourself and continue as
         *  if nothing happen.  The period was reset in the timeout routine.
         */                                                           
        if ( local_state == RATE_MONOTONIC_EXPIRED_WHILE_BLOCKING )   
 80044d0:	34 01 00 03 	mvi r1,3                                       
 80044d4:	44 41 00 04 	be r2,r1,80044e4 <rtems_rate_monotonic_period+0x1fc><== NEVER TAKEN
          _Thread_Clear_state( _Thread_Executing, STATES_WAITING_FOR_PERIOD );
                                                                      
        _Thread_Enable_dispatch();                                    
 80044d8:	f8 00 0c a0 	calli 8007758 <_Thread_Enable_dispatch>        
        return RTEMS_SUCCESSFUL;                                      
 80044dc:	34 01 00 00 	mvi r1,0                                       
 80044e0:	e3 ff ff 95 	bi 8004334 <rtems_rate_monotonic_period+0x4c>  
        /*                                                            
         *  If it did, then we want to unblock ourself and continue as
         *  if nothing happen.  The period was reset in the timeout routine.
         */                                                           
        if ( local_state == RATE_MONOTONIC_EXPIRED_WHILE_BLOCKING )   
          _Thread_Clear_state( _Thread_Executing, STATES_WAITING_FOR_PERIOD );
 80044e4:	29 81 00 0c 	lw r1,(r12+12)                                 <== NOT EXECUTED
 80044e8:	34 02 40 00 	mvi r2,16384                                   <== NOT EXECUTED
 80044ec:	f8 00 0b ae 	calli 80073a4 <_Thread_Clear_state>            <== NOT EXECUTED
 80044f0:	e3 ff ff fa 	bi 80044d8 <rtems_rate_monotonic_period+0x1f0> <== NOT EXECUTED
                                                                      

080044f4 <rtems_rate_monotonic_report_statistics_with_plugin>: */ void rtems_rate_monotonic_report_statistics_with_plugin( void *context, rtems_printk_plugin_t print ) {
 80044f4:	37 9c ff 5c 	addi sp,sp,-164                                
 80044f8:	5b 8b 00 44 	sw (sp+68),r11                                 
 80044fc:	5b 8c 00 40 	sw (sp+64),r12                                 
 8004500:	5b 8d 00 3c 	sw (sp+60),r13                                 
 8004504:	5b 8e 00 38 	sw (sp+56),r14                                 
 8004508:	5b 8f 00 34 	sw (sp+52),r15                                 
 800450c:	5b 90 00 30 	sw (sp+48),r16                                 
 8004510:	5b 91 00 2c 	sw (sp+44),r17                                 
 8004514:	5b 92 00 28 	sw (sp+40),r18                                 
 8004518:	5b 93 00 24 	sw (sp+36),r19                                 
 800451c:	5b 94 00 20 	sw (sp+32),r20                                 
 8004520:	5b 95 00 1c 	sw (sp+28),r21                                 
 8004524:	5b 96 00 18 	sw (sp+24),r22                                 
 8004528:	5b 97 00 14 	sw (sp+20),r23                                 
 800452c:	5b 98 00 10 	sw (sp+16),r24                                 
 8004530:	5b 99 00 0c 	sw (sp+12),r25                                 
 8004534:	5b 9b 00 08 	sw (sp+8),fp                                   
 8004538:	5b 9d 00 04 	sw (sp+4),ra                                   
 800453c:	b8 40 68 00 	mv r13,r2                                      
 8004540:	b8 20 78 00 	mv r15,r1                                      
  rtems_id                               id;                          
  rtems_rate_monotonic_period_statistics the_stats;                   
  rtems_rate_monotonic_period_status     the_status;                  
  char                                   name[5];                     
                                                                      
  if ( !print )                                                       
 8004544:	44 40 00 2f 	be r2,r0,8004600 <rtems_rate_monotonic_report_statistics_with_plugin+0x10c><== NEVER TAKEN
    return;                                                           
                                                                      
  (*print)( context, "Period information by period\n" );              
 8004548:	78 02 08 01 	mvhi r2,0x801                                  
 800454c:	38 42 d5 0c 	ori r2,r2,0xd50c                               
 8004550:	d9 a0 00 00 	call r13                                       
  #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                          
    (*print)( context, "--- CPU times are in seconds ---\n" );        
 8004554:	78 02 08 01 	mvhi r2,0x801                                  
 8004558:	38 42 d5 2c 	ori r2,r2,0xd52c                               
 800455c:	b9 e0 08 00 	mv r1,r15                                      
 8004560:	d9 a0 00 00 	call r13                                       
    (*print)( context, "--- Wall times are in seconds ---\n" );       
 8004564:	78 02 08 01 	mvhi r2,0x801                                  
 8004568:	38 42 d5 50 	ori r2,r2,0xd550                               
 800456c:	b9 e0 08 00 	mv r1,r15                                      
 8004570:	d9 a0 00 00 	call r13                                       
  Be sure to test the various cases.                                  
  (*print)( context,"\                                                
1234567890123456789012345678901234567890123456789012345678901234567890123456789\
\n");                                                                 
*/                                                                    
  (*print)( context, "   ID     OWNER COUNT MISSED     "              
 8004574:	78 02 08 01 	mvhi r2,0x801                                  
 8004578:	38 42 d5 74 	ori r2,r2,0xd574                               
 800457c:	b9 e0 08 00 	mv r1,r15                                      
 8004580:	d9 a0 00 00 	call r13                                       
       #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                     
          "          "                                                
       #endif                                                         
          "   WALL TIME\n"                                            
  );                                                                  
  (*print)( context, "                               "                
 8004584:	78 02 08 01 	mvhi r2,0x801                                  
                                                                      
  /*                                                                  
   * Cycle through all possible ids and try to report on each one.  If it
   * is a period that is inactive, we just get an error back.  No big deal.
   */                                                                 
  for ( id=_Rate_monotonic_Information.minimum_id ;                   
 8004588:	78 0c 08 01 	mvhi r12,0x801                                 
       #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                     
          "          "                                                
       #endif                                                         
          "   WALL TIME\n"                                            
  );                                                                  
  (*print)( context, "                               "                
 800458c:	b9 e0 08 00 	mv r1,r15                                      
 8004590:	38 42 d5 c0 	ori r2,r2,0xd5c0                               
                                                                      
  /*                                                                  
   * Cycle through all possible ids and try to report on each one.  If it
   * is a period that is inactive, we just get an error back.  No big deal.
   */                                                                 
  for ( id=_Rate_monotonic_Information.minimum_id ;                   
 8004594:	39 8c f8 18 	ori r12,r12,0xf818                             
       #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                     
          "          "                                                
       #endif                                                         
          "   WALL TIME\n"                                            
  );                                                                  
  (*print)( context, "                               "                
 8004598:	d9 a0 00 00 	call r13                                       
                                                                      
  /*                                                                  
   * Cycle through all possible ids and try to report on each one.  If it
   * is a period that is inactive, we just get an error back.  No big deal.
   */                                                                 
  for ( id=_Rate_monotonic_Information.minimum_id ;                   
 800459c:	29 81 00 0c 	lw r1,(r12+12)                                 
 80045a0:	29 8b 00 08 	lw r11,(r12+8)                                 
 80045a4:	55 61 00 17 	bgu r11,r1,8004600 <rtems_rate_monotonic_report_statistics_with_plugin+0x10c><== NEVER TAKEN
    rtems_object_get_name( the_status.owner, sizeof(name), name );    
                                                                      
    /*                                                                
     *  Print part of report line that is not dependent on granularity
     */                                                               
    (*print)( context,                                                
 80045a8:	78 12 08 01 	mvhi r18,0x801                                 
      struct timespec *min_cpu = &the_stats.min_cpu_time;             
      struct timespec *max_cpu = &the_stats.max_cpu_time;             
      struct timespec *total_cpu = &the_stats.total_cpu_time;         
                                                                      
      _Timespec_Divide_by_integer( total_cpu, the_stats.count, &cpu_average );
      (*print)( context,                                              
 80045ac:	78 15 08 01 	mvhi r21,0x801                                 
      struct timespec *min_wall = &the_stats.min_wall_time;           
      struct timespec *max_wall = &the_stats.max_wall_time;           
      struct timespec *total_wall = &the_stats.total_wall_time;       
                                                                      
      _Timespec_Divide_by_integer(total_wall, the_stats.count, &wall_average);
      (*print)( context,                                              
 80045b0:	78 14 08 01 	mvhi r20,0x801                                 
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
      (*print)( context, "\n" );                                      
 80045b4:	78 11 08 01 	mvhi r17,0x801                                 
 80045b8:	37 90 00 48 	addi r16,sp,72                                 
    status = rtems_rate_monotonic_get_statistics( id, &the_stats );   
    if ( status != RTEMS_SUCCESSFUL )                                 
      continue;                                                       
                                                                      
    /* If the above passed, so should this but check it anyway */     
    status = rtems_rate_monotonic_get_status( id, &the_status );      
 80045bc:	37 98 00 80 	addi r24,sp,128                                
    #if defined(RTEMS_DEBUG)                                          
      if ( status != RTEMS_SUCCESSFUL )                               
        continue;                                                     
    #endif                                                            
                                                                      
    rtems_object_get_name( the_status.owner, sizeof(name), name );    
 80045c0:	37 93 00 a0 	addi r19,sp,160                                
                                                                      
    /*                                                                
     *  Print part of report line that is not dependent on granularity
     */                                                               
    (*print)( context,                                                
 80045c4:	3a 52 d6 0c 	ori r18,r18,0xd60c                             
    {                                                                 
    #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                        
      struct timespec  cpu_average;                                   
      struct timespec *min_cpu = &the_stats.min_cpu_time;             
      struct timespec *max_cpu = &the_stats.max_cpu_time;             
      struct timespec *total_cpu = &the_stats.total_cpu_time;         
 80045c8:	37 97 00 60 	addi r23,sp,96                                 
                                                                      
      _Timespec_Divide_by_integer( total_cpu, the_stats.count, &cpu_average );
 80045cc:	37 96 00 98 	addi r22,sp,152                                
      (*print)( context,                                              
 80045d0:	3a b5 d6 24 	ori r21,r21,0xd624                             
    {                                                                 
    #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                        
      struct timespec  wall_average;                                  
      struct timespec *min_wall = &the_stats.min_wall_time;           
      struct timespec *max_wall = &the_stats.max_wall_time;           
      struct timespec *total_wall = &the_stats.total_wall_time;       
 80045d4:	37 9b 00 78 	addi fp,sp,120                                 
                                                                      
      _Timespec_Divide_by_integer(total_wall, the_stats.count, &wall_average);
      (*print)( context,                                              
 80045d8:	3a 94 d6 44 	ori r20,r20,0xd644                             
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
      (*print)( context, "\n" );                                      
 80045dc:	3a 31 cb 50 	ori r17,r17,0xcb50                             
   * is a period that is inactive, we just get an error back.  No big deal.
   */                                                                 
  for ( id=_Rate_monotonic_Information.minimum_id ;                   
        id <= _Rate_monotonic_Information.maximum_id ;                
        id++ ) {                                                      
    status = rtems_rate_monotonic_get_statistics( id, &the_stats );   
 80045e0:	b9 60 08 00 	mv r1,r11                                      
 80045e4:	ba 00 10 00 	mv r2,r16                                      
 80045e8:	f8 00 1b 95 	calli 800b43c <rtems_rate_monotonic_get_statistics>
 80045ec:	b8 20 70 00 	mv r14,r1                                      
    if ( status != RTEMS_SUCCESSFUL )                                 
 80045f0:	44 20 00 17 	be r1,r0,800464c <rtems_rate_monotonic_report_statistics_with_plugin+0x158>
                                                                      
  /*                                                                  
   * Cycle through all possible ids and try to report on each one.  If it
   * is a period that is inactive, we just get an error back.  No big deal.
   */                                                                 
  for ( id=_Rate_monotonic_Information.minimum_id ;                   
 80045f4:	29 85 00 0c 	lw r5,(r12+12)                                 
        id <= _Rate_monotonic_Information.maximum_id ;                
        id++ ) {                                                      
 80045f8:	35 6b 00 01 	addi r11,r11,1                                 
                                                                      
  /*                                                                  
   * Cycle through all possible ids and try to report on each one.  If it
   * is a period that is inactive, we just get an error back.  No big deal.
   */                                                                 
  for ( id=_Rate_monotonic_Information.minimum_id ;                   
 80045fc:	50 ab ff f9 	bgeu r5,r11,80045e0 <rtems_rate_monotonic_report_statistics_with_plugin+0xec>
        the_stats.min_wall_time, the_stats.max_wall_time, ival_wall, fval_wall
      );                                                              
    #endif                                                            
    }                                                                 
  }                                                                   
}                                                                     
 8004600:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004604:	2b 8b 00 44 	lw r11,(sp+68)                                 
 8004608:	2b 8c 00 40 	lw r12,(sp+64)                                 
 800460c:	2b 8d 00 3c 	lw r13,(sp+60)                                 
 8004610:	2b 8e 00 38 	lw r14,(sp+56)                                 
 8004614:	2b 8f 00 34 	lw r15,(sp+52)                                 
 8004618:	2b 90 00 30 	lw r16,(sp+48)                                 
 800461c:	2b 91 00 2c 	lw r17,(sp+44)                                 
 8004620:	2b 92 00 28 	lw r18,(sp+40)                                 
 8004624:	2b 93 00 24 	lw r19,(sp+36)                                 
 8004628:	2b 94 00 20 	lw r20,(sp+32)                                 
 800462c:	2b 95 00 1c 	lw r21,(sp+28)                                 
 8004630:	2b 96 00 18 	lw r22,(sp+24)                                 
 8004634:	2b 97 00 14 	lw r23,(sp+20)                                 
 8004638:	2b 98 00 10 	lw r24,(sp+16)                                 
 800463c:	2b 99 00 0c 	lw r25,(sp+12)                                 
 8004640:	2b 9b 00 08 	lw fp,(sp+8)                                   
 8004644:	37 9c 00 a4 	addi sp,sp,164                                 
 8004648:	c3 a0 00 00 	ret                                            
    status = rtems_rate_monotonic_get_statistics( id, &the_stats );   
    if ( status != RTEMS_SUCCESSFUL )                                 
      continue;                                                       
                                                                      
    /* If the above passed, so should this but check it anyway */     
    status = rtems_rate_monotonic_get_status( id, &the_status );      
 800464c:	bb 00 10 00 	mv r2,r24                                      
 8004650:	b9 60 08 00 	mv r1,r11                                      
 8004654:	f8 00 1b ba 	calli 800b53c <rtems_rate_monotonic_get_status>
    #if defined(RTEMS_DEBUG)                                          
      if ( status != RTEMS_SUCCESSFUL )                               
        continue;                                                     
    #endif                                                            
                                                                      
    rtems_object_get_name( the_status.owner, sizeof(name), name );    
 8004658:	2b 81 00 80 	lw r1,(sp+128)                                 
 800465c:	ba 60 18 00 	mv r3,r19                                      
 8004660:	34 02 00 05 	mvi r2,5                                       
 8004664:	f8 00 00 ba 	calli 800494c <rtems_object_get_name>          
                                                                      
    /*                                                                
     *  Print part of report line that is not dependent on granularity
     */                                                               
    (*print)( context,                                                
 8004668:	2b 85 00 48 	lw r5,(sp+72)                                  
 800466c:	2b 86 00 4c 	lw r6,(sp+76)                                  
 8004670:	ba 40 10 00 	mv r2,r18                                      
 8004674:	b9 60 18 00 	mv r3,r11                                      
 8004678:	b9 e0 08 00 	mv r1,r15                                      
 800467c:	ba 60 20 00 	mv r4,r19                                      
 8004680:	d9 a0 00 00 	call r13                                       
    );                                                                
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
 8004684:	2b 85 00 48 	lw r5,(sp+72)                                  
      struct timespec  cpu_average;                                   
      struct timespec *min_cpu = &the_stats.min_cpu_time;             
      struct timespec *max_cpu = &the_stats.max_cpu_time;             
      struct timespec *total_cpu = &the_stats.total_cpu_time;         
                                                                      
      _Timespec_Divide_by_integer( total_cpu, the_stats.count, &cpu_average );
 8004688:	ba c0 18 00 	mv r3,r22                                      
 800468c:	ba e0 08 00 	mv r1,r23                                      
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
      (*print)( context, "\n" );                                      
 8004690:	ba 20 10 00 	mv r2,r17                                      
    );                                                                
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
 8004694:	5c ae 00 04 	bne r5,r14,80046a4 <rtems_rate_monotonic_report_statistics_with_plugin+0x1b0>
      (*print)( context, "\n" );                                      
 8004698:	b9 e0 08 00 	mv r1,r15                                      
 800469c:	d9 a0 00 00 	call r13                                       
      continue;                                                       
 80046a0:	e3 ff ff d5 	bi 80045f4 <rtems_rate_monotonic_report_statistics_with_plugin+0x100>
      struct timespec  cpu_average;                                   
      struct timespec *min_cpu = &the_stats.min_cpu_time;             
      struct timespec *max_cpu = &the_stats.max_cpu_time;             
      struct timespec *total_cpu = &the_stats.total_cpu_time;         
                                                                      
      _Timespec_Divide_by_integer( total_cpu, the_stats.count, &cpu_average );
 80046a4:	b8 a0 10 00 	mv r2,r5                                       
 80046a8:	f8 00 10 8b 	calli 80088d4 <_Timespec_Divide_by_integer>    
      (*print)( context,                                              
 80046ac:	2b 81 00 54 	lw r1,(sp+84)                                  
 80046b0:	34 02 03 e8 	mvi r2,1000                                    
 80046b4:	f8 00 5d 88 	calli 801bcd4 <__divsi3>                       
 80046b8:	b8 20 c8 00 	mv r25,r1                                      
 80046bc:	2b 81 00 5c 	lw r1,(sp+92)                                  
 80046c0:	34 02 03 e8 	mvi r2,1000                                    
 80046c4:	f8 00 5d 84 	calli 801bcd4 <__divsi3>                       
 80046c8:	b8 20 70 00 	mv r14,r1                                      
 80046cc:	2b 81 00 9c 	lw r1,(sp+156)                                 
 80046d0:	34 02 03 e8 	mvi r2,1000                                    
 80046d4:	f8 00 5d 80 	calli 801bcd4 <__divsi3>                       
 80046d8:	2b 85 00 58 	lw r5,(sp+88)                                  
 80046dc:	2b 87 00 98 	lw r7,(sp+152)                                 
 80046e0:	2b 83 00 50 	lw r3,(sp+80)                                  
 80046e4:	b8 20 40 00 	mv r8,r1                                       
 80046e8:	bb 20 20 00 	mv r4,r25                                      
 80046ec:	b9 c0 30 00 	mv r6,r14                                      
 80046f0:	ba a0 10 00 	mv r2,r21                                      
 80046f4:	b9 e0 08 00 	mv r1,r15                                      
 80046f8:	d9 a0 00 00 	call r13                                       
      struct timespec  wall_average;                                  
      struct timespec *min_wall = &the_stats.min_wall_time;           
      struct timespec *max_wall = &the_stats.max_wall_time;           
      struct timespec *total_wall = &the_stats.total_wall_time;       
                                                                      
      _Timespec_Divide_by_integer(total_wall, the_stats.count, &wall_average);
 80046fc:	2b 82 00 48 	lw r2,(sp+72)                                  
 8004700:	ba c0 18 00 	mv r3,r22                                      
 8004704:	bb 60 08 00 	mv r1,fp                                       
 8004708:	f8 00 10 73 	calli 80088d4 <_Timespec_Divide_by_integer>    
      (*print)( context,                                              
 800470c:	2b 81 00 6c 	lw r1,(sp+108)                                 
 8004710:	34 02 03 e8 	mvi r2,1000                                    
 8004714:	f8 00 5d 70 	calli 801bcd4 <__divsi3>                       
 8004718:	b8 20 c8 00 	mv r25,r1                                      
 800471c:	2b 81 00 74 	lw r1,(sp+116)                                 
 8004720:	34 02 03 e8 	mvi r2,1000                                    
 8004724:	f8 00 5d 6c 	calli 801bcd4 <__divsi3>                       
 8004728:	b8 20 70 00 	mv r14,r1                                      
 800472c:	2b 81 00 9c 	lw r1,(sp+156)                                 
 8004730:	34 02 03 e8 	mvi r2,1000                                    
 8004734:	f8 00 5d 68 	calli 801bcd4 <__divsi3>                       
 8004738:	2b 83 00 68 	lw r3,(sp+104)                                 
 800473c:	2b 85 00 70 	lw r5,(sp+112)                                 
 8004740:	2b 87 00 98 	lw r7,(sp+152)                                 
 8004744:	b8 20 40 00 	mv r8,r1                                       
 8004748:	ba 80 10 00 	mv r2,r20                                      
 800474c:	b9 e0 08 00 	mv r1,r15                                      
 8004750:	bb 20 20 00 	mv r4,r25                                      
 8004754:	b9 c0 30 00 	mv r6,r14                                      
 8004758:	d9 a0 00 00 	call r13                                       
 800475c:	e3 ff ff a6 	bi 80045f4 <rtems_rate_monotonic_report_statistics_with_plugin+0x100>
                                                                      

08004784 <rtems_rate_monotonic_reset_all_statistics>: /* * rtems_rate_monotonic_reset_all_statistics */ void rtems_rate_monotonic_reset_all_statistics( void ) {
 8004784:	37 9c ff f4 	addi sp,sp,-12                                 
 8004788:	5b 8b 00 0c 	sw (sp+12),r11                                 
 800478c:	5b 8c 00 08 	sw (sp+8),r12                                  
 8004790:	5b 9d 00 04 	sw (sp+4),ra                                   
	rtems_fatal_error_occurred( 99 );                                    
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  _Thread_Dispatch_disable_level += 1;                                
 8004794:	78 01 08 01 	mvhi r1,0x801                                  
 8004798:	38 21 f9 44 	ori r1,r1,0xf944                               
 800479c:	28 22 00 00 	lw r2,(r1+0)                                   
 80047a0:	34 42 00 01 	addi r2,r2,1                                   
 80047a4:	58 22 00 00 	sw (r1+0),r2                                   
                                                                      
    /*                                                                
     * Cycle through all possible ids and try to reset each one.  If it
     * is a period that is inactive, we just get an error back.  No big deal.
     */                                                               
    for ( id=_Rate_monotonic_Information.minimum_id ;                 
 80047a8:	78 0c 08 01 	mvhi r12,0x801                                 
 80047ac:	39 8c f8 18 	ori r12,r12,0xf818                             
 80047b0:	29 8b 00 08 	lw r11,(r12+8)                                 
 80047b4:	29 81 00 0c 	lw r1,(r12+12)                                 
 80047b8:	55 61 00 06 	bgu r11,r1,80047d0 <rtems_rate_monotonic_reset_all_statistics+0x4c><== NEVER TAKEN
          id <= _Rate_monotonic_Information.maximum_id ;              
          id++ ) {                                                    
      status = rtems_rate_monotonic_reset_statistics( id );           
 80047bc:	b9 60 08 00 	mv r1,r11                                      
 80047c0:	f8 00 00 0a 	calli 80047e8 <rtems_rate_monotonic_reset_statistics>
                                                                      
    /*                                                                
     * Cycle through all possible ids and try to reset each one.  If it
     * is a period that is inactive, we just get an error back.  No big deal.
     */                                                               
    for ( id=_Rate_monotonic_Information.minimum_id ;                 
 80047c4:	29 81 00 0c 	lw r1,(r12+12)                                 
          id <= _Rate_monotonic_Information.maximum_id ;              
          id++ ) {                                                    
 80047c8:	35 6b 00 01 	addi r11,r11,1                                 
                                                                      
    /*                                                                
     * Cycle through all possible ids and try to reset each one.  If it
     * is a period that is inactive, we just get an error back.  No big deal.
     */                                                               
    for ( id=_Rate_monotonic_Information.minimum_id ;                 
 80047cc:	50 2b ff fc 	bgeu r1,r11,80047bc <rtems_rate_monotonic_reset_all_statistics+0x38>
    }                                                                 
                                                                      
  /*                                                                  
   *  Done so exit thread dispatching disabled critical section.      
   */                                                                 
  _Thread_Enable_dispatch();                                          
 80047d0:	f8 00 0b e2 	calli 8007758 <_Thread_Enable_dispatch>        
}                                                                     
 80047d4:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80047d8:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 80047dc:	2b 8c 00 08 	lw r12,(sp+8)                                  
 80047e0:	37 9c 00 0c 	addi sp,sp,12                                  
 80047e4:	c3 a0 00 00 	ret                                            
                                                                      

08011578 <rtems_shutdown_executive>: */ void rtems_shutdown_executive( uint32_t result ) {
 8011578:	37 9c ff fc 	addi sp,sp,-4                                  
 801157c:	5b 9d 00 04 	sw (sp+4),ra                                   
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
 8011580:	78 02 08 01 	mvhi r2,0x801                                  
 8011584:	38 42 39 9c 	ori r2,r2,0x399c                               
 8011588:	28 43 00 00 	lw r3,(r2+0)                                   
 801158c:	34 01 00 03 	mvi r1,3                                       
 8011590:	44 61 00 05 	be r3,r1,80115a4 <rtems_shutdown_executive+0x2c>
    _System_state_Set( SYSTEM_STATE_SHUTDOWN );                       
    _Thread_Stop_multitasking();                                      
  }                                                                   
  _Internal_error_Occurred(                                           
 8011594:	34 01 00 00 	mvi r1,0                                       
 8011598:	34 02 00 01 	mvi r2,1                                       
 801159c:	34 03 00 14 	mvi r3,20                                      
 80115a0:	fb ff cb 81 	calli 80043a4 <_Internal_error_Occurred>       
 80115a4:	34 03 00 04 	mvi r3,4                                       
   *  if we were running within the same context, it would work.      
   *                                                                  
   *  And we will not return to this thread, so there is no point of  
   *  saving the context.                                             
   */                                                                 
  _Context_Restart_self( &_Thread_BSP_context );                      
 80115a8:	78 01 08 01 	mvhi r1,0x801                                  
 80115ac:	38 21 37 c8 	ori r1,r1,0x37c8                               
 80115b0:	58 43 00 00 	sw (r2+0),r3                                   
 80115b4:	fb ff d6 30 	calli 8006e74 <_CPU_Context_restore>           
 80115b8:	e3 ff ff f7 	bi 8011594 <rtems_shutdown_executive+0x1c>     <== NOT EXECUTED
                                                                      

08012fa4 <rtems_signal_send>: rtems_status_code rtems_signal_send( rtems_id id, rtems_signal_set signal_set ) {
 8012fa4:	37 9c ff f4 	addi sp,sp,-12                                 
 8012fa8:	5b 8b 00 08 	sw (sp+8),r11                                  
 8012fac:	5b 9d 00 04 	sw (sp+4),ra                                   
  Objects_Locations        location;                                  
  RTEMS_API_Control       *api;                                       
  ASR_Information         *asr;                                       
                                                                      
  if ( !signal_set )                                                  
    return RTEMS_INVALID_NUMBER;                                      
 8012fb0:	34 03 00 0a 	mvi r3,10                                      
                                                                      
rtems_status_code rtems_signal_send(                                  
  rtems_id          id,                                               
  rtems_signal_set  signal_set                                        
)                                                                     
{                                                                     
 8012fb4:	b8 40 58 00 	mv r11,r2                                      
  register Thread_Control *the_thread;                                
  Objects_Locations        location;                                  
  RTEMS_API_Control       *api;                                       
  ASR_Information         *asr;                                       
                                                                      
  if ( !signal_set )                                                  
 8012fb8:	5c 40 00 06 	bne r2,r0,8012fd0 <rtems_signal_send+0x2c>     
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8012fbc:	b8 60 08 00 	mv r1,r3                                       
 8012fc0:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8012fc4:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8012fc8:	37 9c 00 0c 	addi sp,sp,12                                  
 8012fcc:	c3 a0 00 00 	ret                                            
  ASR_Information         *asr;                                       
                                                                      
  if ( !signal_set )                                                  
    return RTEMS_INVALID_NUMBER;                                      
                                                                      
  the_thread = _Thread_Get( id, &location );                          
 8012fd0:	37 82 00 0c 	addi r2,sp,12                                  
 8012fd4:	f8 00 14 4d 	calli 8018108 <_Thread_Get>                    
  switch ( location ) {                                               
 8012fd8:	2b 83 00 0c 	lw r3,(sp+12)                                  
 8012fdc:	44 60 00 07 	be r3,r0,8012ff8 <rtems_signal_send+0x54>      
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
 8012fe0:	34 03 00 04 	mvi r3,4                                       
}                                                                     
 8012fe4:	b8 60 08 00 	mv r1,r3                                       
 8012fe8:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8012fec:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8012ff0:	37 9c 00 0c 	addi sp,sp,12                                  
 8012ff4:	c3 a0 00 00 	ret                                            
                                                                      
  the_thread = _Thread_Get( id, &location );                          
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      api = the_thread->API_Extensions[ THREAD_API_RTEMS ];           
 8012ff8:	28 22 01 24 	lw r2,(r1+292)                                 
      asr = &api->Signal;                                             
                                                                      
      if ( ! _ASR_Is_null_handler( asr->handler ) ) {                 
 8012ffc:	28 44 00 0c 	lw r4,(r2+12)                                  
 8013000:	44 83 00 23 	be r4,r3,801308c <rtems_signal_send+0xe8>      
        if ( asr->is_enabled ) {                                      
 8013004:	40 43 00 08 	lbu r3,(r2+8)                                  
 8013008:	44 60 00 12 	be r3,r0,8013050 <rtems_signal_send+0xac>      
  rtems_signal_set *signal_set                                        
)                                                                     
{                                                                     
  ISR_Level              _level;                                      
                                                                      
  _ISR_Disable( _level );                                             
 801300c:	90 00 18 00 	rcsr r3,IE                                     
 8013010:	34 04 ff fe 	mvi r4,-2                                      
 8013014:	a0 64 20 00 	and r4,r3,r4                                   
 8013018:	d0 04 00 00 	wcsr IE,r4                                     
    *signal_set |= signals;                                           
 801301c:	28 44 00 14 	lw r4,(r2+20)                                  
 8013020:	b8 8b 58 00 	or r11,r4,r11                                  
 8013024:	58 4b 00 14 	sw (r2+20),r11                                 
  _ISR_Enable( _level );                                              
 8013028:	d0 03 00 00 	wcsr IE,r3                                     
          _ASR_Post_signals( signal_set, &asr->signals_posted );      
                                                                      
          if ( _ISR_Is_in_progress() && _Thread_Is_executing( the_thread ) )
 801302c:	78 02 08 03 	mvhi r2,0x803                                  
 8013030:	38 42 ee 00 	ori r2,r2,0xee00                               
 8013034:	28 43 00 08 	lw r3,(r2+8)                                   
 8013038:	44 60 00 0e 	be r3,r0,8013070 <rtems_signal_send+0xcc>      
 801303c:	28 43 00 0c 	lw r3,(r2+12)                                  
 8013040:	5c 23 00 0c 	bne r1,r3,8013070 <rtems_signal_send+0xcc>     <== NEVER TAKEN
            _Thread_Dispatch_necessary = true;                        
 8013044:	34 01 00 01 	mvi r1,1                                       
 8013048:	30 41 00 18 	sb (r2+24),r1                                  
 801304c:	e0 00 00 09 	bi 8013070 <rtems_signal_send+0xcc>            
  rtems_signal_set *signal_set                                        
)                                                                     
{                                                                     
  ISR_Level              _level;                                      
                                                                      
  _ISR_Disable( _level );                                             
 8013050:	90 00 08 00 	rcsr r1,IE                                     
 8013054:	34 03 ff fe 	mvi r3,-2                                      
 8013058:	a0 23 18 00 	and r3,r1,r3                                   
 801305c:	d0 03 00 00 	wcsr IE,r3                                     
    *signal_set |= signals;                                           
 8013060:	28 43 00 18 	lw r3,(r2+24)                                  
 8013064:	b8 6b 58 00 	or r11,r3,r11                                  
 8013068:	58 4b 00 18 	sw (r2+24),r11                                 
  _ISR_Enable( _level );                                              
 801306c:	d0 01 00 00 	wcsr IE,r1                                     
        } else {                                                      
          _ASR_Post_signals( signal_set, &asr->signals_pending );     
        }                                                             
        _Thread_Enable_dispatch();                                    
 8013070:	f8 00 14 19 	calli 80180d4 <_Thread_Enable_dispatch>        
        return RTEMS_SUCCESSFUL;                                      
 8013074:	34 03 00 00 	mvi r3,0                                       
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8013078:	b8 60 08 00 	mv r1,r3                                       
 801307c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8013080:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8013084:	37 9c 00 0c 	addi sp,sp,12                                  
 8013088:	c3 a0 00 00 	ret                                            
          _ASR_Post_signals( signal_set, &asr->signals_pending );     
        }                                                             
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
      _Thread_Enable_dispatch();                                      
 801308c:	f8 00 14 12 	calli 80180d4 <_Thread_Enable_dispatch>        
      return RTEMS_NOT_DEFINED;                                       
 8013090:	34 03 00 0b 	mvi r3,11                                      
 8013094:	e3 ff ff ca 	bi 8012fbc <rtems_signal_send+0x18>            
                                                                      

0800b40c <rtems_task_mode>: rtems_status_code rtems_task_mode( rtems_mode mode_set, rtems_mode mask, rtems_mode *previous_mode_set ) {
 800b40c:	37 9c ff dc 	addi sp,sp,-36                                 
 800b410:	5b 8b 00 24 	sw (sp+36),r11                                 
 800b414:	5b 8c 00 20 	sw (sp+32),r12                                 
 800b418:	5b 8d 00 1c 	sw (sp+28),r13                                 
 800b41c:	5b 8e 00 18 	sw (sp+24),r14                                 
 800b420:	5b 8f 00 14 	sw (sp+20),r15                                 
 800b424:	5b 90 00 10 	sw (sp+16),r16                                 
 800b428:	5b 91 00 0c 	sw (sp+12),r17                                 
 800b42c:	5b 92 00 08 	sw (sp+8),r18                                  
 800b430:	5b 9d 00 04 	sw (sp+4),ra                                   
 800b434:	b8 40 70 00 	mv r14,r2                                      
 800b438:	b8 60 88 00 	mv r17,r3                                      
 800b43c:	b8 20 80 00 	mv r16,r1                                      
  bool                is_asr_enabled = false;                         
  bool                needs_asr_dispatching = false;                  
  rtems_mode          old_mode;                                       
                                                                      
  if ( !previous_mode_set )                                           
    return RTEMS_INVALID_ADDRESS;                                     
 800b440:	34 02 00 09 	mvi r2,9                                       
  ASR_Information    *asr;                                            
  bool                is_asr_enabled = false;                         
  bool                needs_asr_dispatching = false;                  
  rtems_mode          old_mode;                                       
                                                                      
  if ( !previous_mode_set )                                           
 800b444:	44 60 00 46 	be r3,r0,800b55c <rtems_task_mode+0x150>       
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  executing     = _Thread_Executing;                                  
 800b448:	78 0f 08 01 	mvhi r15,0x801                                 
 800b44c:	39 ef 39 e8 	ori r15,r15,0x39e8                             
 800b450:	29 eb 00 0c 	lw r11,(r15+12)                                
  api = executing->API_Extensions[ THREAD_API_RTEMS ];                
  asr = &api->Signal;                                                 
                                                                      
  old_mode  = (executing->is_preemptible) ? RTEMS_PREEMPT : RTEMS_NO_PREEMPT;
 800b454:	41 6d 00 74 	lbu r13,(r11+116)                              
                                                                      
  if ( executing->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_NONE )
 800b458:	29 61 00 7c 	lw r1,(r11+124)                                
                                                                      
  if ( !previous_mode_set )                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  executing     = _Thread_Executing;                                  
  api = executing->API_Extensions[ THREAD_API_RTEMS ];                
 800b45c:	29 6c 01 24 	lw r12,(r11+292)                               
  asr = &api->Signal;                                                 
                                                                      
  old_mode  = (executing->is_preemptible) ? RTEMS_PREEMPT : RTEMS_NO_PREEMPT;
 800b460:	65 ad 00 00 	cmpei r13,r13,0                                
 800b464:	b5 ad 20 00 	add r4,r13,r13                                 
 800b468:	b4 84 20 00 	add r4,r4,r4                                   
 800b46c:	b4 84 20 00 	add r4,r4,r4                                   
 800b470:	b4 84 20 00 	add r4,r4,r4                                   
 800b474:	b4 84 20 00 	add r4,r4,r4                                   
 800b478:	b4 84 20 00 	add r4,r4,r4                                   
 800b47c:	b4 84 20 00 	add r4,r4,r4                                   
 800b480:	b4 84 68 00 	add r13,r4,r4                                  
                                                                      
  if ( executing->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_NONE )
 800b484:	5c 20 00 42 	bne r1,r0,800b58c <rtems_task_mode+0x180>      
    old_mode |= RTEMS_NO_TIMESLICE;                                   
  else                                                                
    old_mode |= RTEMS_TIMESLICE;                                      
                                                                      
  old_mode |= (asr->is_enabled) ? RTEMS_ASR : RTEMS_NO_ASR;           
 800b488:	41 92 00 08 	lbu r18,(r12+8)                                
  old_mode |= _ISR_Get_level();                                       
 800b48c:	fb ff ee aa 	calli 8006f34 <_CPU_ISR_Get_level>             
  if ( executing->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_NONE )
    old_mode |= RTEMS_NO_TIMESLICE;                                   
  else                                                                
    old_mode |= RTEMS_TIMESLICE;                                      
                                                                      
  old_mode |= (asr->is_enabled) ? RTEMS_ASR : RTEMS_NO_ASR;           
 800b490:	66 52 00 00 	cmpei r18,r18,0                                
 800b494:	c8 12 90 00 	sub r18,r0,r18                                 
 800b498:	22 52 04 00 	andi r18,r18,0x400                             
 800b49c:	ba 41 08 00 	or r1,r18,r1                                   
  old_mode |= _ISR_Get_level();                                       
 800b4a0:	b8 2d 68 00 	or r13,r1,r13                                  
                                                                      
  *previous_mode_set = old_mode;                                      
 800b4a4:	5a 2d 00 00 	sw (r17+0),r13                                 
                                                                      
  /*                                                                  
   *  These are generic thread scheduling characteristics.            
   */                                                                 
  if ( mask & RTEMS_PREEMPT_MASK )                                    
 800b4a8:	21 c1 01 00 	andi r1,r14,0x100                              
 800b4ac:	44 20 00 04 	be r1,r0,800b4bc <rtems_task_mode+0xb0>        
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Modes_Is_preempt (                         
  Modes_Control mode_set                                              
)                                                                     
{                                                                     
   return (mode_set & RTEMS_PREEMPT_MASK) == RTEMS_PREEMPT;           
 800b4b0:	22 01 01 00 	andi r1,r16,0x100                              
    executing->is_preemptible = _Modes_Is_preempt(mode_set) ? true : false;
 800b4b4:	64 21 00 00 	cmpei r1,r1,0                                  
 800b4b8:	31 61 00 74 	sb (r11+116),r1                                
                                                                      
  if ( mask & RTEMS_TIMESLICE_MASK ) {                                
 800b4bc:	21 c1 02 00 	andi r1,r14,0x200                              
 800b4c0:	44 20 00 09 	be r1,r0,800b4e4 <rtems_task_mode+0xd8>        
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Modes_Is_timeslice (                       
  Modes_Control mode_set                                              
)                                                                     
{                                                                     
  return (mode_set & RTEMS_TIMESLICE_MASK) == RTEMS_TIMESLICE;        
 800b4c4:	22 01 02 00 	andi r1,r16,0x200                              
    if ( _Modes_Is_timeslice(mode_set) ) {                            
 800b4c8:	44 20 00 3e 	be r1,r0,800b5c0 <rtems_task_mode+0x1b4>       
      executing->budget_algorithm = THREAD_CPU_BUDGET_ALGORITHM_RESET_TIMESLICE;
      executing->cpu_time_budget  = _Thread_Ticks_per_timeslice;      
 800b4cc:	78 01 08 01 	mvhi r1,0x801                                  
 800b4d0:	38 21 37 b4 	ori r1,r1,0x37b4                               
 800b4d4:	28 22 00 00 	lw r2,(r1+0)                                   
  if ( mask & RTEMS_PREEMPT_MASK )                                    
    executing->is_preemptible = _Modes_Is_preempt(mode_set) ? true : false;
                                                                      
  if ( mask & RTEMS_TIMESLICE_MASK ) {                                
    if ( _Modes_Is_timeslice(mode_set) ) {                            
      executing->budget_algorithm = THREAD_CPU_BUDGET_ALGORITHM_RESET_TIMESLICE;
 800b4d8:	34 01 00 01 	mvi r1,1                                       
 800b4dc:	59 61 00 7c 	sw (r11+124),r1                                
      executing->cpu_time_budget  = _Thread_Ticks_per_timeslice;      
 800b4e0:	59 62 00 78 	sw (r11+120),r2                                
  }                                                                   
                                                                      
  /*                                                                  
   *  Set the new interrupt level                                     
   */                                                                 
  if ( mask & RTEMS_INTERRUPT_MASK )                                  
 800b4e4:	21 c1 00 01 	andi r1,r14,0x1                                
 800b4e8:	44 20 00 04 	be r1,r0,800b4f8 <rtems_task_mode+0xec>        
 */                                                                   
RTEMS_INLINE_ROUTINE ISR_Level _Modes_Get_interrupt_level (           
  Modes_Control mode_set                                              
)                                                                     
{                                                                     
  return ( mode_set & RTEMS_INTERRUPT_MASK );                         
 800b4ec:	22 01 00 01 	andi r1,r16,0x1                                
 */                                                                   
RTEMS_INLINE_ROUTINE void _Modes_Set_interrupt_level (                
  Modes_Control mode_set                                              
)                                                                     
{                                                                     
  _ISR_Set_level( _Modes_Get_interrupt_level( mode_set ) );           
 800b4f0:	64 21 00 00 	cmpei r1,r1,0                                  
 800b4f4:	d0 01 00 00 	wcsr IE,r1                                     
   *  This is specific to the RTEMS API                               
   */                                                                 
  is_asr_enabled = false;                                             
  needs_asr_dispatching = false;                                      
                                                                      
  if ( mask & RTEMS_ASR_MASK ) {                                      
 800b4f8:	21 ce 04 00 	andi r14,r14,0x400                             
                                                                      
  /*                                                                  
   *  This is specific to the RTEMS API                               
   */                                                                 
  is_asr_enabled = false;                                             
  needs_asr_dispatching = false;                                      
 800b4fc:	34 04 00 00 	mvi r4,0                                       
                                                                      
  if ( mask & RTEMS_ASR_MASK ) {                                      
 800b500:	45 c0 00 11 	be r14,r0,800b544 <rtems_task_mode+0x138>      
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Modes_Is_asr_disabled (                    
  Modes_Control mode_set                                              
)                                                                     
{                                                                     
   return (mode_set & RTEMS_ASR_MASK) == RTEMS_NO_ASR;                
 800b504:	22 10 04 00 	andi r16,r16,0x400                             
    is_asr_enabled = _Modes_Is_asr_disabled( mode_set ) ? false : true;
    if ( is_asr_enabled != asr->is_enabled ) {                        
 800b508:	41 81 00 08 	lbu r1,(r12+8)                                 
 *  Output:                                                           
 *    *previous_mode_set - previous mode set                          
 *     always return RTEMS_SUCCESSFUL;                                
 */                                                                   
                                                                      
rtems_status_code rtems_task_mode(                                    
 800b50c:	66 10 00 00 	cmpei r16,r16,0                                
  is_asr_enabled = false;                                             
  needs_asr_dispatching = false;                                      
                                                                      
  if ( mask & RTEMS_ASR_MASK ) {                                      
    is_asr_enabled = _Modes_Is_asr_disabled( mode_set ) ? false : true;
    if ( is_asr_enabled != asr->is_enabled ) {                        
 800b510:	44 30 00 0d 	be r1,r16,800b544 <rtems_task_mode+0x138>      
      asr->is_enabled = is_asr_enabled;                               
 800b514:	31 90 00 08 	sb (r12+8),r16                                 
)                                                                     
{                                                                     
  rtems_signal_set _signals;                                          
  ISR_Level        _level;                                            
                                                                      
  _ISR_Disable( _level );                                             
 800b518:	90 00 08 00 	rcsr r1,IE                                     
 800b51c:	34 02 ff fe 	mvi r2,-2                                      
 800b520:	a0 22 10 00 	and r2,r1,r2                                   
 800b524:	d0 02 00 00 	wcsr IE,r2                                     
    _signals                     = information->signals_pending;      
 800b528:	29 83 00 18 	lw r3,(r12+24)                                 
    information->signals_pending = information->signals_posted;       
 800b52c:	29 82 00 14 	lw r2,(r12+20)                                 
    information->signals_posted  = _signals;                          
 800b530:	59 83 00 14 	sw (r12+20),r3                                 
  rtems_signal_set _signals;                                          
  ISR_Level        _level;                                            
                                                                      
  _ISR_Disable( _level );                                             
    _signals                     = information->signals_pending;      
    information->signals_pending = information->signals_posted;       
 800b534:	59 82 00 18 	sw (r12+24),r2                                 
    information->signals_posted  = _signals;                          
  _ISR_Enable( _level );                                              
 800b538:	d0 01 00 00 	wcsr IE,r1                                     
      _ASR_Swap_signals( asr );                                       
      if ( _ASR_Are_signals_pending( asr ) ) {                        
 800b53c:	29 84 00 14 	lw r4,(r12+20)                                 
                                                                      
  /*                                                                  
   *  This is specific to the RTEMS API                               
   */                                                                 
  is_asr_enabled = false;                                             
  needs_asr_dispatching = false;                                      
 800b540:	7c 84 00 00 	cmpnei r4,r4,0                                 
        needs_asr_dispatching = true;                                 
      }                                                               
    }                                                                 
  }                                                                   
                                                                      
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
 800b544:	78 01 08 01 	mvhi r1,0x801                                  
 800b548:	38 21 39 9c 	ori r1,r1,0x399c                               
 800b54c:	28 23 00 00 	lw r3,(r1+0)                                   
 800b550:	34 01 00 03 	mvi r1,3                                       
     if (_Thread_Evaluate_is_dispatch_needed( needs_asr_dispatching ) )
      _Thread_Dispatch();                                             
  }                                                                   
                                                                      
  return RTEMS_SUCCESSFUL;                                            
 800b554:	34 02 00 00 	mvi r2,0                                       
        needs_asr_dispatching = true;                                 
      }                                                               
    }                                                                 
  }                                                                   
                                                                      
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
 800b558:	44 61 00 0f 	be r3,r1,800b594 <rtems_task_mode+0x188>       <== ALWAYS TAKEN
     if (_Thread_Evaluate_is_dispatch_needed( needs_asr_dispatching ) )
      _Thread_Dispatch();                                             
  }                                                                   
                                                                      
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
 800b55c:	b8 40 08 00 	mv r1,r2                                       
 800b560:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800b564:	2b 8b 00 24 	lw r11,(sp+36)                                 
 800b568:	2b 8c 00 20 	lw r12,(sp+32)                                 
 800b56c:	2b 8d 00 1c 	lw r13,(sp+28)                                 
 800b570:	2b 8e 00 18 	lw r14,(sp+24)                                 
 800b574:	2b 8f 00 14 	lw r15,(sp+20)                                 
 800b578:	2b 90 00 10 	lw r16,(sp+16)                                 
 800b57c:	2b 91 00 0c 	lw r17,(sp+12)                                 
 800b580:	2b 92 00 08 	lw r18,(sp+8)                                  
 800b584:	37 9c 00 24 	addi sp,sp,36                                  
 800b588:	c3 a0 00 00 	ret                                            
  old_mode  = (executing->is_preemptible) ? RTEMS_PREEMPT : RTEMS_NO_PREEMPT;
                                                                      
  if ( executing->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_NONE )
    old_mode |= RTEMS_NO_TIMESLICE;                                   
  else                                                                
    old_mode |= RTEMS_TIMESLICE;                                      
 800b58c:	39 ad 02 00 	ori r13,r13,0x200                              
 800b590:	e3 ff ff be 	bi 800b488 <rtems_task_mode+0x7c>              
  bool are_signals_pending                                            
)                                                                     
{                                                                     
  Thread_Control     *executing;                                      
                                                                      
  executing = _Thread_Executing;                                      
 800b594:	29 e1 00 0c 	lw r1,(r15+12)                                 
                                                                      
  if ( are_signals_pending ||                                         
 800b598:	5c 80 00 05 	bne r4,r0,800b5ac <rtems_task_mode+0x1a0>      
 800b59c:	29 e3 00 10 	lw r3,(r15+16)                                 
 800b5a0:	44 23 ff ef 	be r1,r3,800b55c <rtems_task_mode+0x150>       
       (!_Thread_Is_heir( executing ) && executing->is_preemptible) ) {
 800b5a4:	40 21 00 74 	lbu r1,(r1+116)                                
 800b5a8:	44 20 ff ed 	be r1,r0,800b55c <rtems_task_mode+0x150>       <== NEVER TAKEN
    _Thread_Dispatch_necessary = true;                                
 800b5ac:	34 01 00 01 	mvi r1,1                                       
 800b5b0:	31 e1 00 18 	sb (r15+24),r1                                 
    }                                                                 
  }                                                                   
                                                                      
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
     if (_Thread_Evaluate_is_dispatch_needed( needs_asr_dispatching ) )
      _Thread_Dispatch();                                             
 800b5b4:	fb ff e7 4f 	calli 80052f0 <_Thread_Dispatch>               
  }                                                                   
                                                                      
  return RTEMS_SUCCESSFUL;                                            
 800b5b8:	34 02 00 00 	mvi r2,0                                       
 800b5bc:	e3 ff ff e8 	bi 800b55c <rtems_task_mode+0x150>             
  if ( mask & RTEMS_TIMESLICE_MASK ) {                                
    if ( _Modes_Is_timeslice(mode_set) ) {                            
      executing->budget_algorithm = THREAD_CPU_BUDGET_ALGORITHM_RESET_TIMESLICE;
      executing->cpu_time_budget  = _Thread_Ticks_per_timeslice;      
    } else                                                            
      executing->budget_algorithm = THREAD_CPU_BUDGET_ALGORITHM_NONE; 
 800b5c0:	59 60 00 7c 	sw (r11+124),r0                                
  }                                                                   
                                                                      
  /*                                                                  
   *  Set the new interrupt level                                     
   */                                                                 
  if ( mask & RTEMS_INTERRUPT_MASK )                                  
 800b5c4:	21 c1 00 01 	andi r1,r14,0x1                                
 800b5c8:	44 20 ff cc 	be r1,r0,800b4f8 <rtems_task_mode+0xec>        
 800b5cc:	e3 ff ff c8 	bi 800b4ec <rtems_task_mode+0xe0>              
                                                                      

08008be8 <rtems_task_set_priority>: rtems_status_code rtems_task_set_priority( rtems_id id, rtems_task_priority new_priority, rtems_task_priority *old_priority ) {
 8008be8:	37 9c ff f0 	addi sp,sp,-16                                 
 8008bec:	5b 8b 00 0c 	sw (sp+12),r11                                 
 8008bf0:	5b 8c 00 08 	sw (sp+8),r12                                  
 8008bf4:	5b 9d 00 04 	sw (sp+4),ra                                   
 8008bf8:	b8 40 58 00 	mv r11,r2                                      
 8008bfc:	b8 60 60 00 	mv r12,r3                                      
  register Thread_Control *the_thread;                                
  Objects_Locations        location;                                  
                                                                      
  if ( new_priority != RTEMS_CURRENT_PRIORITY &&                      
 8008c00:	44 40 00 06 	be r2,r0,8008c18 <rtems_task_set_priority+0x30>
RTEMS_INLINE_ROUTINE bool _RTEMS_tasks_Priority_is_valid (            
  rtems_task_priority the_priority                                    
)                                                                     
{                                                                     
  return (  ( the_priority >= RTEMS_MINIMUM_PRIORITY ) &&             
            ( the_priority <= RTEMS_MAXIMUM_PRIORITY ) );             
 8008c04:	78 02 08 01 	mvhi r2,0x801                                  
 8008c08:	38 42 90 c0 	ori r2,r2,0x90c0                               
 8008c0c:	40 42 00 00 	lbu r2,(r2+0)                                  
       !_RTEMS_tasks_Priority_is_valid( new_priority ) )              
    return RTEMS_INVALID_PRIORITY;                                    
 8008c10:	34 04 00 13 	mvi r4,19                                      
 */                                                                   
RTEMS_INLINE_ROUTINE bool _RTEMS_tasks_Priority_is_valid (            
  rtems_task_priority the_priority                                    
)                                                                     
{                                                                     
  return (  ( the_priority >= RTEMS_MINIMUM_PRIORITY ) &&             
 8008c14:	55 62 00 08 	bgu r11,r2,8008c34 <rtems_task_set_priority+0x4c>
                                                                      
  if ( !old_priority )                                                
    return RTEMS_INVALID_ADDRESS;                                     
 8008c18:	34 04 00 09 	mvi r4,9                                       
                                                                      
  if ( new_priority != RTEMS_CURRENT_PRIORITY &&                      
       !_RTEMS_tasks_Priority_is_valid( new_priority ) )              
    return RTEMS_INVALID_PRIORITY;                                    
                                                                      
  if ( !old_priority )                                                
 8008c1c:	45 80 00 06 	be r12,r0,8008c34 <rtems_task_set_priority+0x4c>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  the_thread = _Thread_Get( id, &location );                          
 8008c20:	37 82 00 10 	addi r2,sp,16                                  
 8008c24:	f8 00 09 bb 	calli 800b310 <_Thread_Get>                    
  switch ( location ) {                                               
 8008c28:	2b 82 00 10 	lw r2,(sp+16)                                  
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
 8008c2c:	34 04 00 04 	mvi r4,4                                       
                                                                      
  if ( !old_priority )                                                
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  the_thread = _Thread_Get( id, &location );                          
  switch ( location ) {                                               
 8008c30:	44 40 00 07 	be r2,r0,8008c4c <rtems_task_set_priority+0x64>
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8008c34:	b8 80 08 00 	mv r1,r4                                       
 8008c38:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8008c3c:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8008c40:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8008c44:	37 9c 00 10 	addi sp,sp,16                                  
 8008c48:	c3 a0 00 00 	ret                                            
  the_thread = _Thread_Get( id, &location );                          
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      /* XXX need helper to "convert" from core priority */           
      *old_priority = the_thread->current_priority;                   
 8008c4c:	28 23 00 14 	lw r3,(r1+20)                                  
 8008c50:	59 83 00 00 	sw (r12+0),r3                                  
      if ( new_priority != RTEMS_CURRENT_PRIORITY ) {                 
 8008c54:	45 62 00 09 	be r11,r2,8008c78 <rtems_task_set_priority+0x90>
        the_thread->real_priority = new_priority;                     
        if ( the_thread->resource_count == 0 ||                       
 8008c58:	28 22 00 1c 	lw r2,(r1+28)                                  
                                                                      
    case OBJECTS_LOCAL:                                               
      /* XXX need helper to "convert" from core priority */           
      *old_priority = the_thread->current_priority;                   
      if ( new_priority != RTEMS_CURRENT_PRIORITY ) {                 
        the_thread->real_priority = new_priority;                     
 8008c5c:	58 2b 00 18 	sw (r1+24),r11                                 
        if ( the_thread->resource_count == 0 ||                       
 8008c60:	44 40 00 03 	be r2,r0,8008c6c <rtems_task_set_priority+0x84>
 8008c64:	28 22 00 14 	lw r2,(r1+20)                                  
 8008c68:	51 62 00 04 	bgeu r11,r2,8008c78 <rtems_task_set_priority+0x90><== ALWAYS TAKEN
             the_thread->current_priority > new_priority )            
          _Thread_Change_priority( the_thread, new_priority, false ); 
 8008c6c:	b9 60 10 00 	mv r2,r11                                      
 8008c70:	34 03 00 00 	mvi r3,0                                       
 8008c74:	f8 00 07 ea 	calli 800ac1c <_Thread_Change_priority>        
      }                                                               
      _Thread_Enable_dispatch();                                      
 8008c78:	f8 00 09 99 	calli 800b2dc <_Thread_Enable_dispatch>        
      return RTEMS_SUCCESSFUL;                                        
 8008c7c:	34 04 00 00 	mvi r4,0                                       
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8008c80:	b8 80 08 00 	mv r1,r4                                       
 8008c84:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8008c88:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8008c8c:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8008c90:	37 9c 00 10 	addi sp,sp,16                                  
 8008c94:	c3 a0 00 00 	ret                                            
                                                                      

08003248 <rtems_task_start>: rtems_status_code rtems_task_start( rtems_id id, rtems_task_entry entry_point, rtems_task_argument argument ) {
 8003248:	37 9c ff ec 	addi sp,sp,-20                                 
 800324c:	5b 8b 00 10 	sw (sp+16),r11                                 
 8003250:	5b 8c 00 0c 	sw (sp+12),r12                                 
 8003254:	5b 8d 00 08 	sw (sp+8),r13                                  
 8003258:	5b 9d 00 04 	sw (sp+4),ra                                   
  register Thread_Control *the_thread;                                
  Objects_Locations        location;                                  
                                                                      
  if ( entry_point == NULL )                                          
    return RTEMS_INVALID_ADDRESS;                                     
 800325c:	34 04 00 09 	mvi r4,9                                       
rtems_status_code rtems_task_start(                                   
  rtems_id         	id,                                               
  rtems_task_entry 	entry_point,                                      
  rtems_task_argument	argument                                        
)                                                                     
{                                                                     
 8003260:	b8 40 58 00 	mv r11,r2                                      
 8003264:	b8 60 68 00 	mv r13,r3                                      
  register Thread_Control *the_thread;                                
  Objects_Locations        location;                                  
                                                                      
  if ( entry_point == NULL )                                          
 8003268:	44 40 00 06 	be r2,r0,8003280 <rtems_task_start+0x38>       <== NEVER TAKEN
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  the_thread = _Thread_Get( id, &location );                          
 800326c:	37 82 00 14 	addi r2,sp,20                                  
 8003270:	f8 00 08 9b 	calli 80054dc <_Thread_Get>                    
  switch ( location ) {                                               
 8003274:	2b 8c 00 14 	lw r12,(sp+20)                                 
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
 8003278:	34 04 00 04 	mvi r4,4                                       
                                                                      
  if ( entry_point == NULL )                                          
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  the_thread = _Thread_Get( id, &location );                          
  switch ( location ) {                                               
 800327c:	45 80 00 08 	be r12,r0,800329c <rtems_task_start+0x54>      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8003280:	b8 80 08 00 	mv r1,r4                                       
 8003284:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8003288:	2b 8b 00 10 	lw r11,(sp+16)                                 
 800328c:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 8003290:	2b 8d 00 08 	lw r13,(sp+8)                                  
 8003294:	37 9c 00 14 	addi sp,sp,20                                  
 8003298:	c3 a0 00 00 	ret                                            
                                                                      
  the_thread = _Thread_Get( id, &location );                          
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      if ( _Thread_Start(                                             
 800329c:	34 02 00 00 	mvi r2,0                                       
 80032a0:	b9 60 18 00 	mv r3,r11                                      
 80032a4:	34 04 00 00 	mvi r4,0                                       
 80032a8:	b9 a0 28 00 	mv r5,r13                                      
 80032ac:	f8 00 0c 15 	calli 8006300 <_Thread_Start>                  
 80032b0:	5c 2c 00 0a 	bne r1,r12,80032d8 <rtems_task_start+0x90>     
             the_thread, THREAD_START_NUMERIC, entry_point, NULL, argument ) ) {
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
      _Thread_Enable_dispatch();                                      
 80032b4:	f8 00 08 7d 	calli 80054a8 <_Thread_Enable_dispatch>        
      return RTEMS_INCORRECT_STATE;                                   
 80032b8:	34 04 00 0e 	mvi r4,14                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 80032bc:	b8 80 08 00 	mv r1,r4                                       
 80032c0:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80032c4:	2b 8b 00 10 	lw r11,(sp+16)                                 
 80032c8:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 80032cc:	2b 8d 00 08 	lw r13,(sp+8)                                  
 80032d0:	37 9c 00 14 	addi sp,sp,20                                  
 80032d4:	c3 a0 00 00 	ret                                            
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      if ( _Thread_Start(                                             
             the_thread, THREAD_START_NUMERIC, entry_point, NULL, argument ) ) {
        _Thread_Enable_dispatch();                                    
 80032d8:	f8 00 08 74 	calli 80054a8 <_Thread_Enable_dispatch>        
        return RTEMS_SUCCESSFUL;                                      
 80032dc:	34 04 00 00 	mvi r4,0                                       
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 80032e0:	b8 80 08 00 	mv r1,r4                                       
 80032e4:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80032e8:	2b 8b 00 10 	lw r11,(sp+16)                                 
 80032ec:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 80032f0:	2b 8d 00 08 	lw r13,(sp+8)                                  
 80032f4:	37 9c 00 14 	addi sp,sp,20                                  
 80032f8:	c3 a0 00 00 	ret                                            
                                                                      

080040fc <rtems_task_variable_add>: rtems_status_code rtems_task_variable_add( rtems_id tid, void **ptr, void (*dtor)(void *) ) {
 80040fc:	37 9c ff ec 	addi sp,sp,-20                                 
 8004100:	5b 8b 00 10 	sw (sp+16),r11                                 
 8004104:	5b 8c 00 0c 	sw (sp+12),r12                                 
 8004108:	5b 8d 00 08 	sw (sp+8),r13                                  
 800410c:	5b 9d 00 04 	sw (sp+4),ra                                   
 8004110:	b8 40 58 00 	mv r11,r2                                      
 8004114:	b8 60 68 00 	mv r13,r3                                      
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp, *new;                                   
                                                                      
  if ( !ptr )                                                         
    return RTEMS_INVALID_ADDRESS;                                     
 8004118:	34 02 00 09 	mvi r2,9                                       
{                                                                     
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp, *new;                                   
                                                                      
  if ( !ptr )                                                         
 800411c:	45 60 00 07 	be r11,r0,8004138 <rtems_task_variable_add+0x3c>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  the_thread = _Thread_Get (tid, &location);                          
 8004120:	37 82 00 14 	addi r2,sp,20                                  
 8004124:	f8 00 08 95 	calli 8006378 <_Thread_Get>                    
 8004128:	b8 20 60 00 	mv r12,r1                                      
  switch (location) {                                                 
 800412c:	2b 81 00 14 	lw r1,(sp+20)                                  
#endif                                                                
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
 8004130:	34 02 00 04 	mvi r2,4                                       
                                                                      
  if ( !ptr )                                                         
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  the_thread = _Thread_Get (tid, &location);                          
  switch (location) {                                                 
 8004134:	44 20 00 08 	be r1,r0,8004154 <rtems_task_variable_add+0x58>
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8004138:	b8 40 08 00 	mv r1,r2                                       
 800413c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004140:	2b 8b 00 10 	lw r11,(sp+16)                                 
 8004144:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 8004148:	2b 8d 00 08 	lw r13,(sp+8)                                  
 800414c:	37 9c 00 14 	addi sp,sp,20                                  
 8004150:	c3 a0 00 00 	ret                                            
                                                                      
    case OBJECTS_LOCAL:                                               
      /*                                                              
       *  Figure out if the variable is already in this task's list.  
       */                                                             
      tvp = the_thread->task_variables;                               
 8004154:	29 84 01 30 	lw r4,(r12+304)                                
      while (tvp) {                                                   
 8004158:	44 81 00 08 	be r4,r1,8004178 <rtems_task_variable_add+0x7c>
        if (tvp->ptr == ptr) {                                        
 800415c:	28 81 00 04 	lw r1,(r4+4)                                   
 8004160:	5c 2b 00 04 	bne r1,r11,8004170 <rtems_task_variable_add+0x74>
 8004164:	e0 00 00 18 	bi 80041c4 <rtems_task_variable_add+0xc8>      
 8004168:	28 82 00 04 	lw r2,(r4+4)                                   
 800416c:	44 4b 00 16 	be r2,r11,80041c4 <rtems_task_variable_add+0xc8><== NEVER TAKEN
          tvp->dtor = dtor;                                           
          _Thread_Enable_dispatch();                                  
          return RTEMS_SUCCESSFUL;                                    
        }                                                             
        tvp = (rtems_task_variable_t *)tvp->next;                     
 8004170:	28 84 00 00 	lw r4,(r4+0)                                   
    case OBJECTS_LOCAL:                                               
      /*                                                              
       *  Figure out if the variable is already in this task's list.  
       */                                                             
      tvp = the_thread->task_variables;                               
      while (tvp) {                                                   
 8004174:	5c 80 ff fd 	bne r4,r0,8004168 <rtems_task_variable_add+0x6c>
                                                                      
      /*                                                              
       *  Now allocate memory for this task variable.                 
       */                                                             
      new = (rtems_task_variable_t *)                                 
         _Workspace_Allocate(sizeof(rtems_task_variable_t));          
 8004178:	34 01 00 14 	mvi r1,20                                      
 800417c:	f8 00 0e 72 	calli 8007b44 <_Workspace_Allocate>            
      if (new == NULL) {                                              
 8004180:	44 20 00 1b 	be r1,r0,80041ec <rtems_task_variable_add+0xf0>
      }                                                               
      new->gval = *ptr;                                               
      new->ptr = ptr;                                                 
      new->dtor = dtor;                                               
                                                                      
      new->next = (struct rtems_task_variable_tt *)the_thread->task_variables;
 8004184:	29 82 01 30 	lw r2,(r12+304)                                
         _Workspace_Allocate(sizeof(rtems_task_variable_t));          
      if (new == NULL) {                                              
        _Thread_Enable_dispatch();                                    
        return RTEMS_NO_MEMORY;                                       
      }                                                               
      new->gval = *ptr;                                               
 8004188:	29 63 00 00 	lw r3,(r11+0)                                  
      new->ptr = ptr;                                                 
 800418c:	58 2b 00 04 	sw (r1+4),r11                                  
      new->dtor = dtor;                                               
 8004190:	58 2d 00 10 	sw (r1+16),r13                                 
         _Workspace_Allocate(sizeof(rtems_task_variable_t));          
      if (new == NULL) {                                              
        _Thread_Enable_dispatch();                                    
        return RTEMS_NO_MEMORY;                                       
      }                                                               
      new->gval = *ptr;                                               
 8004194:	58 23 00 08 	sw (r1+8),r3                                   
      new->ptr = ptr;                                                 
      new->dtor = dtor;                                               
                                                                      
      new->next = (struct rtems_task_variable_tt *)the_thread->task_variables;
 8004198:	58 22 00 00 	sw (r1+0),r2                                   
      the_thread->task_variables = new;                               
 800419c:	59 81 01 30 	sw (r12+304),r1                                
      _Thread_Enable_dispatch();                                      
 80041a0:	f8 00 08 69 	calli 8006344 <_Thread_Enable_dispatch>        
      return RTEMS_SUCCESSFUL;                                        
 80041a4:	34 02 00 00 	mvi r2,0                                       
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
}                                                                     
 80041a8:	b8 40 08 00 	mv r1,r2                                       
 80041ac:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80041b0:	2b 8b 00 10 	lw r11,(sp+16)                                 
 80041b4:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 80041b8:	2b 8d 00 08 	lw r13,(sp+8)                                  
 80041bc:	37 9c 00 14 	addi sp,sp,20                                  
 80041c0:	c3 a0 00 00 	ret                                            
       *  Figure out if the variable is already in this task's list.  
       */                                                             
      tvp = the_thread->task_variables;                               
      while (tvp) {                                                   
        if (tvp->ptr == ptr) {                                        
          tvp->dtor = dtor;                                           
 80041c4:	58 8d 00 10 	sw (r4+16),r13                                 
          _Thread_Enable_dispatch();                                  
 80041c8:	f8 00 08 5f 	calli 8006344 <_Thread_Enable_dispatch>        
          return RTEMS_SUCCESSFUL;                                    
 80041cc:	34 02 00 00 	mvi r2,0                                       
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
}                                                                     
 80041d0:	b8 40 08 00 	mv r1,r2                                       
 80041d4:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80041d8:	2b 8b 00 10 	lw r11,(sp+16)                                 
 80041dc:	2b 8c 00 0c 	lw r12,(sp+12)                                 
 80041e0:	2b 8d 00 08 	lw r13,(sp+8)                                  
 80041e4:	37 9c 00 14 	addi sp,sp,20                                  
 80041e8:	c3 a0 00 00 	ret                                            
       *  Now allocate memory for this task variable.                 
       */                                                             
      new = (rtems_task_variable_t *)                                 
         _Workspace_Allocate(sizeof(rtems_task_variable_t));          
      if (new == NULL) {                                              
        _Thread_Enable_dispatch();                                    
 80041ec:	f8 00 08 56 	calli 8006344 <_Thread_Enable_dispatch>        
        return RTEMS_NO_MEMORY;                                       
 80041f0:	34 02 00 1a 	mvi r2,26                                      
 80041f4:	e3 ff ff d1 	bi 8004138 <rtems_task_variable_add+0x3c>      
                                                                      

080041f8 <rtems_task_variable_delete>: rtems_status_code rtems_task_variable_delete( rtems_id tid, void **ptr ) {
 80041f8:	37 9c ff f4 	addi sp,sp,-12                                 
 80041fc:	5b 8b 00 08 	sw (sp+8),r11                                  
 8004200:	5b 9d 00 04 	sw (sp+4),ra                                   
 8004204:	b8 40 58 00 	mv r11,r2                                      
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp, *prev;                                  
                                                                      
  if ( !ptr )                                                         
    return RTEMS_INVALID_ADDRESS;                                     
 8004208:	34 02 00 09 	mvi r2,9                                       
{                                                                     
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp, *prev;                                  
                                                                      
  if ( !ptr )                                                         
 800420c:	45 60 00 06 	be r11,r0,8004224 <rtems_task_variable_delete+0x2c>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  prev = NULL;                                                        
                                                                      
  the_thread = _Thread_Get (tid, &location);                          
 8004210:	37 82 00 0c 	addi r2,sp,12                                  
 8004214:	f8 00 08 59 	calli 8006378 <_Thread_Get>                    
  switch (location) {                                                 
 8004218:	2b 82 00 0c 	lw r2,(sp+12)                                  
 800421c:	44 40 00 07 	be r2,r0,8004238 <rtems_task_variable_delete+0x40>
                                                                      
    case OBJECTS_ERROR:                                               
        break;                                                        
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
 8004220:	34 02 00 04 	mvi r2,4                                       
}                                                                     
 8004224:	b8 40 08 00 	mv r1,r2                                       
 8004228:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800422c:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8004230:	37 9c 00 0c 	addi sp,sp,12                                  
 8004234:	c3 a0 00 00 	ret                                            
                                                                      
  the_thread = _Thread_Get (tid, &location);                          
  switch (location) {                                                 
                                                                      
    case OBJECTS_LOCAL:                                               
      tvp = the_thread->task_variables;                               
 8004238:	28 24 01 30 	lw r4,(r1+304)                                 
      while (tvp) {                                                   
 800423c:	44 82 00 09 	be r4,r2,8004260 <rtems_task_variable_delete+0x68>
        if (tvp->ptr == ptr) {                                        
 8004240:	28 82 00 04 	lw r2,(r4+4)                                   
 8004244:	5c 4b 00 05 	bne r2,r11,8004258 <rtems_task_variable_delete+0x60>
 8004248:	e0 00 00 18 	bi 80042a8 <rtems_task_variable_delete+0xb0>   
 800424c:	28 62 00 04 	lw r2,(r3+4)                                   
 8004250:	44 4b 00 0b 	be r2,r11,800427c <rtems_task_variable_delete+0x84>
 8004254:	b8 60 20 00 	mv r4,r3                                       
          _RTEMS_Tasks_Invoke_task_variable_dtor( the_thread, tvp );  
          _Thread_Enable_dispatch();                                  
          return RTEMS_SUCCESSFUL;                                    
        }                                                             
        prev = tvp;                                                   
        tvp = (rtems_task_variable_t *)tvp->next;                     
 8004258:	28 83 00 00 	lw r3,(r4+0)                                   
  the_thread = _Thread_Get (tid, &location);                          
  switch (location) {                                                 
                                                                      
    case OBJECTS_LOCAL:                                               
      tvp = the_thread->task_variables;                               
      while (tvp) {                                                   
 800425c:	5c 60 ff fc 	bne r3,r0,800424c <rtems_task_variable_delete+0x54><== ALWAYS TAKEN
          return RTEMS_SUCCESSFUL;                                    
        }                                                             
        prev = tvp;                                                   
        tvp = (rtems_task_variable_t *)tvp->next;                     
      }                                                               
      _Thread_Enable_dispatch();                                      
 8004260:	f8 00 08 39 	calli 8006344 <_Thread_Enable_dispatch>        
      return RTEMS_INVALID_ADDRESS;                                   
 8004264:	34 02 00 09 	mvi r2,9                                       
    case OBJECTS_ERROR:                                               
        break;                                                        
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8004268:	b8 40 08 00 	mv r1,r2                                       
 800426c:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8004270:	2b 8b 00 08 	lw r11,(sp+8)                                  
 8004274:	37 9c 00 0c 	addi sp,sp,12                                  
 8004278:	c3 a0 00 00 	ret                                            
    case OBJECTS_LOCAL:                                               
      tvp = the_thread->task_variables;                               
      while (tvp) {                                                   
        if (tvp->ptr == ptr) {                                        
          if (prev)                                                   
            prev->next = tvp->next;                                   
 800427c:	28 62 00 00 	lw r2,(r3+0)                                   
 8004280:	58 82 00 00 	sw (r4+0),r2                                   
          else                                                        
            the_thread->task_variables = (rtems_task_variable_t *)tvp->next;
                                                                      
          _RTEMS_Tasks_Invoke_task_variable_dtor( the_thread, tvp );  
 8004284:	b8 60 10 00 	mv r2,r3                                       
 8004288:	f8 00 00 39 	calli 800436c <_RTEMS_Tasks_Invoke_task_variable_dtor>
          _Thread_Enable_dispatch();                                  
 800428c:	f8 00 08 2e 	calli 8006344 <_Thread_Enable_dispatch>        
          return RTEMS_SUCCESSFUL;                                    
 8004290:	34 02 00 00 	mvi r2,0                                       
    case OBJECTS_ERROR:                                               
        break;                                                        
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8004294:	b8 40 08 00 	mv r1,r2                                       
 8004298:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800429c:	2b 8b 00 08 	lw r11,(sp+8)                                  
 80042a0:	37 9c 00 0c 	addi sp,sp,12                                  
 80042a4:	c3 a0 00 00 	ret                                            
      while (tvp) {                                                   
        if (tvp->ptr == ptr) {                                        
          if (prev)                                                   
            prev->next = tvp->next;                                   
          else                                                        
            the_thread->task_variables = (rtems_task_variable_t *)tvp->next;
 80042a8:	28 82 00 00 	lw r2,(r4+0)                                   
 80042ac:	b8 80 18 00 	mv r3,r4                                       
 80042b0:	58 22 01 30 	sw (r1+304),r2                                 
 80042b4:	e3 ff ff f4 	bi 8004284 <rtems_task_variable_delete+0x8c>   
                                                                      

080042b8 <rtems_task_variable_get>: rtems_status_code rtems_task_variable_get( rtems_id tid, void **ptr, void **result ) {
 80042b8:	37 9c ff f0 	addi sp,sp,-16                                 
 80042bc:	5b 8b 00 0c 	sw (sp+12),r11                                 
 80042c0:	5b 8c 00 08 	sw (sp+8),r12                                  
 80042c4:	5b 9d 00 04 	sw (sp+4),ra                                   
 80042c8:	b8 40 58 00 	mv r11,r2                                      
 80042cc:	b8 60 60 00 	mv r12,r3                                      
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp;                                         
                                                                      
  if ( !ptr )                                                         
    return RTEMS_INVALID_ADDRESS;                                     
 80042d0:	34 02 00 09 	mvi r2,9                                       
{                                                                     
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp;                                         
                                                                      
  if ( !ptr )                                                         
 80042d4:	45 60 00 07 	be r11,r0,80042f0 <rtems_task_variable_get+0x38>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !result )                                                      
 80042d8:	44 60 00 06 	be r3,r0,80042f0 <rtems_task_variable_get+0x38>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  the_thread = _Thread_Get (tid, &location);                          
 80042dc:	37 82 00 10 	addi r2,sp,16                                  
 80042e0:	f8 00 08 26 	calli 8006378 <_Thread_Get>                    
  switch (location) {                                                 
 80042e4:	2b 82 00 10 	lw r2,(sp+16)                                  
 80042e8:	44 40 00 08 	be r2,r0,8004308 <rtems_task_variable_get+0x50>
#endif                                                                
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
 80042ec:	34 02 00 04 	mvi r2,4                                       
}                                                                     
 80042f0:	b8 40 08 00 	mv r1,r2                                       
 80042f4:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80042f8:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 80042fc:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8004300:	37 9c 00 10 	addi sp,sp,16                                  
 8004304:	c3 a0 00 00 	ret                                            
                                                                      
    case OBJECTS_LOCAL:                                               
      /*                                                              
       *  Figure out if the variable is in this task's list.          
       */                                                             
      tvp = the_thread->task_variables;                               
 8004308:	28 21 01 30 	lw r1,(r1+304)                                 
      while (tvp) {                                                   
 800430c:	5c 22 00 04 	bne r1,r2,800431c <rtems_task_variable_get+0x64>
 8004310:	e0 00 00 0f 	bi 800434c <rtems_task_variable_get+0x94>      
	   */                                                                
          *result = tvp->tval;                                        
          _Thread_Enable_dispatch();                                  
          return RTEMS_SUCCESSFUL;                                    
        }                                                             
        tvp = (rtems_task_variable_t *)tvp->next;                     
 8004314:	28 21 00 00 	lw r1,(r1+0)                                   
    case OBJECTS_LOCAL:                                               
      /*                                                              
       *  Figure out if the variable is in this task's list.          
       */                                                             
      tvp = the_thread->task_variables;                               
      while (tvp) {                                                   
 8004318:	44 20 00 0d 	be r1,r0,800434c <rtems_task_variable_get+0x94><== NEVER TAKEN
        if (tvp->ptr == ptr) {                                        
 800431c:	28 22 00 04 	lw r2,(r1+4)                                   
 8004320:	5c 4b ff fd 	bne r2,r11,8004314 <rtems_task_variable_get+0x5c>
	  /*                                                                 
	   * Should this return the current (i.e not the                     
	   * saved) value if `tid' is the current task?                      
	   */                                                                
          *result = tvp->tval;                                        
 8004324:	28 21 00 0c 	lw r1,(r1+12)                                  
 8004328:	59 81 00 00 	sw (r12+0),r1                                  
          _Thread_Enable_dispatch();                                  
 800432c:	f8 00 08 06 	calli 8006344 <_Thread_Enable_dispatch>        
          return RTEMS_SUCCESSFUL;                                    
 8004330:	34 02 00 00 	mvi r2,0                                       
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8004334:	b8 40 08 00 	mv r1,r2                                       
 8004338:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800433c:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8004340:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8004344:	37 9c 00 10 	addi sp,sp,16                                  
 8004348:	c3 a0 00 00 	ret                                            
          _Thread_Enable_dispatch();                                  
          return RTEMS_SUCCESSFUL;                                    
        }                                                             
        tvp = (rtems_task_variable_t *)tvp->next;                     
      }                                                               
      _Thread_Enable_dispatch();                                      
 800434c:	f8 00 07 fe 	calli 8006344 <_Thread_Enable_dispatch>        
      return RTEMS_INVALID_ADDRESS;                                   
 8004350:	34 02 00 09 	mvi r2,9                                       
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8004354:	b8 40 08 00 	mv r1,r2                                       
 8004358:	2b 9d 00 04 	lw ra,(sp+4)                                   
 800435c:	2b 8b 00 0c 	lw r11,(sp+12)                                 
 8004360:	2b 8c 00 08 	lw r12,(sp+8)                                  
 8004364:	37 9c 00 10 	addi sp,sp,16                                  
 8004368:	c3 a0 00 00 	ret                                            
                                                                      

08013be8 <rtems_timer_cancel>: */ rtems_status_code rtems_timer_cancel( rtems_id id ) {
 8013be8:	37 9c ff f8 	addi sp,sp,-8                                  
 8013bec:	5b 9d 00 04 	sw (sp+4),ra                                   
 8013bf0:	b8 20 10 00 	mv r2,r1                                       
  Objects_Id         id,                                              
  Objects_Locations *location                                         
)                                                                     
{                                                                     
  return (Timer_Control *)                                            
    _Objects_Get( &_Timer_Information, id, location );                
 8013bf4:	78 01 08 03 	mvhi r1,0x803                                  
 8013bf8:	38 21 ee 68 	ori r1,r1,0xee68                               
 8013bfc:	37 83 00 08 	addi r3,sp,8                                   
 8013c00:	f8 00 0e 48 	calli 8017520 <_Objects_Get>                   
  Timer_Control   *the_timer;                                         
  Objects_Locations       location;                                   
                                                                      
  the_timer = _Timer_Get( id, &location );                            
  switch ( location ) {                                               
 8013c04:	2b 82 00 08 	lw r2,(sp+8)                                   
 8013c08:	44 40 00 05 	be r2,r0,8013c1c <rtems_timer_cancel+0x34>     
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
 8013c0c:	34 01 00 04 	mvi r1,4                                       
}                                                                     
 8013c10:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8013c14:	37 9c 00 08 	addi sp,sp,8                                   
 8013c18:	c3 a0 00 00 	ret                                            
                                                                      
  the_timer = _Timer_Get( id, &location );                            
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      if ( !_Timer_Is_dormant_class( the_timer->the_class ) )         
 8013c1c:	28 23 00 38 	lw r3,(r1+56)                                  
 8013c20:	34 02 00 04 	mvi r2,4                                       
 8013c24:	44 62 00 03 	be r3,r2,8013c30 <rtems_timer_cancel+0x48>     <== NEVER TAKEN
        (void) _Watchdog_Remove( &the_timer->Ticker );                
 8013c28:	34 21 00 10 	addi r1,r1,16                                  
 8013c2c:	f8 00 18 1f 	calli 8019ca8 <_Watchdog_Remove>               
      _Thread_Enable_dispatch();                                      
 8013c30:	f8 00 11 29 	calli 80180d4 <_Thread_Enable_dispatch>        
      return RTEMS_SUCCESSFUL;                                        
 8013c34:	34 01 00 00 	mvi r1,0                                       
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 8013c38:	2b 9d 00 04 	lw ra,(sp+4)                                   
 8013c3c:	37 9c 00 08 	addi sp,sp,8                                   
 8013c40:	c3 a0 00 00 	ret                                            
                                                                      

08014264 <rtems_timer_server_fire_when>: rtems_id id, rtems_time_of_day *wall_time, rtems_timer_service_routine_entry routine, void *user_data ) {
 8014264:	37 9c ff dc 	addi sp,sp,-36                                 
 8014268:	5b 8b 00 20 	sw (sp+32),r11                                 
 801426c:	5b 8c 00 1c 	sw (sp+28),r12                                 
 8014270:	5b 8d 00 18 	sw (sp+24),r13                                 
 8014274:	5b 8e 00 14 	sw (sp+20),r14                                 
 8014278:	5b 8f 00 10 	sw (sp+16),r15                                 
 801427c:	5b 90 00 0c 	sw (sp+12),r16                                 
 8014280:	5b 91 00 08 	sw (sp+8),r17                                  
 8014284:	5b 9d 00 04 	sw (sp+4),ra                                   
  Timer_Control        *the_timer;                                    
  Objects_Locations     location;                                     
  rtems_interval        seconds;                                      
  Timer_server_Control *timer_server = _Timer_server;                 
 8014288:	78 05 08 03 	mvhi r5,0x803                                  
 801428c:	38 a5 ee a8 	ori r5,r5,0xeea8                               
 8014290:	28 ac 00 00 	lw r12,(r5+0)                                  
  rtems_id                           id,                              
  rtems_time_of_day                  *wall_time,                      
  rtems_timer_service_routine_entry  routine,                         
  void                              *user_data                        
)                                                                     
{                                                                     
 8014294:	b8 20 80 00 	mv r16,r1                                      
 8014298:	b8 40 70 00 	mv r14,r2                                      
 801429c:	b8 60 78 00 	mv r15,r3                                      
 80142a0:	b8 80 88 00 	mv r17,r4                                      
  Objects_Locations     location;                                     
  rtems_interval        seconds;                                      
  Timer_server_Control *timer_server = _Timer_server;                 
                                                                      
  if ( !timer_server )                                                
    return RTEMS_INCORRECT_STATE;                                     
 80142a4:	34 0b 00 0e 	mvi r11,14                                     
  Timer_Control        *the_timer;                                    
  Objects_Locations     location;                                     
  rtems_interval        seconds;                                      
  Timer_server_Control *timer_server = _Timer_server;                 
                                                                      
  if ( !timer_server )                                                
 80142a8:	45 80 00 0c 	be r12,r0,80142d8 <rtems_timer_server_fire_when+0x74>
    return RTEMS_INCORRECT_STATE;                                     
                                                                      
  if ( !_TOD_Is_set )                                                 
 80142ac:	78 05 08 03 	mvhi r5,0x803                                  
 80142b0:	38 a5 ec 3c 	ori r5,r5,0xec3c                               
 80142b4:	40 a5 00 00 	lbu r5,(r5+0)                                  
    return RTEMS_NOT_DEFINED;                                         
 80142b8:	34 0b 00 0b 	mvi r11,11                                     
  Timer_server_Control *timer_server = _Timer_server;                 
                                                                      
  if ( !timer_server )                                                
    return RTEMS_INCORRECT_STATE;                                     
                                                                      
  if ( !_TOD_Is_set )                                                 
 80142bc:	44 a0 00 07 	be r5,r0,80142d8 <rtems_timer_server_fire_when+0x74><== NEVER TAKEN
    return RTEMS_NOT_DEFINED;                                         
                                                                      
  if ( !routine )                                                     
    return RTEMS_INVALID_ADDRESS;                                     
 80142c0:	34 0b 00 09 	mvi r11,9                                      
    return RTEMS_INCORRECT_STATE;                                     
                                                                      
  if ( !_TOD_Is_set )                                                 
    return RTEMS_NOT_DEFINED;                                         
                                                                      
  if ( !routine )                                                     
 80142c4:	44 60 00 05 	be r3,r0,80142d8 <rtems_timer_server_fire_when+0x74>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
 80142c8:	b8 40 08 00 	mv r1,r2                                       
 80142cc:	fb ff f0 b2 	calli 8010594 <_TOD_Validate>                  
    return RTEMS_INVALID_CLOCK;                                       
 80142d0:	34 0b 00 14 	mvi r11,20                                     
    return RTEMS_NOT_DEFINED;                                         
                                                                      
  if ( !routine )                                                     
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
 80142d4:	5c 20 00 0c 	bne r1,r0,8014304 <rtems_timer_server_fire_when+0xa0>
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
 80142d8:	b9 60 08 00 	mv r1,r11                                      
 80142dc:	2b 9d 00 04 	lw ra,(sp+4)                                   
 80142e0:	2b 8b 00 20 	lw r11,(sp+32)                                 
 80142e4:	2b 8c 00 1c 	lw r12,(sp+28)                                 
 80142e8:	2b 8d 00 18 	lw r13,(sp+24)                                 
 80142ec:	2b 8e 00 14 	lw r14,(sp+20)                                 
 80142f0:	2b 8f 00 10 	lw r15,(sp+16)                                 
 80142f4:	2b 90 00 0c 	lw r16,(sp+12)                                 
 80142f8:	2b 91 00 08 	lw r17,(sp+8)                                  
 80142fc:	37 9c 00 24 	addi sp,sp,36                                  
 8014300:	c3 a0 00 00 	ret                                            
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
    return RTEMS_INVALID_CLOCK;                                       
                                                                      
  seconds = _TOD_To_seconds( wall_time );                             
 8014304:	b9 c0 08 00 	mv r1,r14                                      
  if ( seconds <= _TOD_Seconds_since_epoch() )                        
 8014308:	78 0d 08 03 	mvhi r13,0x803                                 
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
    return RTEMS_INVALID_CLOCK;                                       
                                                                      
  seconds = _TOD_To_seconds( wall_time );                             
 801430c:	fb ff f0 49 	calli 8010430 <_TOD_To_seconds>                
  if ( seconds <= _TOD_Seconds_since_epoch() )                        
 8014310:	39 ad ec b4 	ori r13,r13,0xecb4                             
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
    return RTEMS_INVALID_CLOCK;                                       
                                                                      
  seconds = _TOD_To_seconds( wall_time );                             
 8014314:	b8 20 70 00 	mv r14,r1                                      
  if ( seconds <= _TOD_Seconds_since_epoch() )                        
 8014318:	29 a1 00 00 	lw r1,(r13+0)                                  
 801431c:	50 2e ff ef 	bgeu r1,r14,80142d8 <rtems_timer_server_fire_when+0x74>
 8014320:	78 01 08 03 	mvhi r1,0x803                                  
 8014324:	38 21 ee 68 	ori r1,r1,0xee68                               
 8014328:	ba 00 10 00 	mv r2,r16                                      
 801432c:	37 83 00 24 	addi r3,sp,36                                  
 8014330:	f8 00 0c 7c 	calli 8017520 <_Objects_Get>                   
 8014334:	b8 20 58 00 	mv r11,r1                                      
    return RTEMS_INVALID_CLOCK;                                       
                                                                      
  the_timer = _Timer_Get( id, &location );                            
  switch ( location ) {                                               
 8014338:	2b 81 00 24 	lw r1,(sp+36)                                  
 801433c:	44 20 00 03 	be r1,r0,8014348 <rtems_timer_server_fire_when+0xe4>
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
 8014340:	34 0b 00 04 	mvi r11,4                                      
 8014344:	e3 ff ff e5 	bi 80142d8 <rtems_timer_server_fire_when+0x74> 
                                                                      
  the_timer = _Timer_Get( id, &location );                            
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      (void) _Watchdog_Remove( &the_timer->Ticker );                  
 8014348:	35 61 00 10 	addi r1,r11,16                                 
 801434c:	f8 00 16 57 	calli 8019ca8 <_Watchdog_Remove>               
      the_timer->the_class = TIMER_TIME_OF_DAY_ON_TASK;               
      _Watchdog_Initialize( &the_timer->Ticker, routine, id, user_data );
      the_timer->Ticker.initial = seconds - _TOD_Seconds_since_epoch();
 8014350:	29 a1 00 00 	lw r1,(r13+0)                                  
                                                                      
      (*timer_server->schedule_operation)( timer_server, the_timer ); 
 8014354:	29 83 00 04 	lw r3,(r12+4)                                  
  the_timer = _Timer_Get( id, &location );                            
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      (void) _Watchdog_Remove( &the_timer->Ticker );                  
      the_timer->the_class = TIMER_TIME_OF_DAY_ON_TASK;               
 8014358:	34 04 00 03 	mvi r4,3                                       
      _Watchdog_Initialize( &the_timer->Ticker, routine, id, user_data );
      the_timer->Ticker.initial = seconds - _TOD_Seconds_since_epoch();
 801435c:	c9 c1 70 00 	sub r14,r14,r1                                 
                                                                      
      (*timer_server->schedule_operation)( timer_server, the_timer ); 
 8014360:	b9 60 10 00 	mv r2,r11                                      
  the_timer = _Timer_Get( id, &location );                            
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      (void) _Watchdog_Remove( &the_timer->Ticker );                  
      the_timer->the_class = TIMER_TIME_OF_DAY_ON_TASK;               
 8014364:	59 64 00 38 	sw (r11+56),r4                                 
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
  the_watchdog->routine   = routine;                                  
 8014368:	59 6f 00 2c 	sw (r11+44),r15                                
  the_watchdog->id        = id;                                       
 801436c:	59 70 00 30 	sw (r11+48),r16                                
  the_watchdog->user_data = user_data;                                
 8014370:	59 71 00 34 	sw (r11+52),r17                                
      _Watchdog_Initialize( &the_timer->Ticker, routine, id, user_data );
      the_timer->Ticker.initial = seconds - _TOD_Seconds_since_epoch();
 8014374:	59 6e 00 1c 	sw (r11+28),r14                                
                                                                      
      (*timer_server->schedule_operation)( timer_server, the_timer ); 
 8014378:	b9 80 08 00 	mv r1,r12                                      
  Watchdog_Service_routine_entry  routine,                            
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
 801437c:	59 60 00 18 	sw (r11+24),r0                                 
 8014380:	d8 60 00 00 	call r3                                        
                                                                      
      _Thread_Enable_dispatch();                                      
      return RTEMS_SUCCESSFUL;                                        
 8014384:	34 0b 00 00 	mvi r11,0                                      
      _Watchdog_Initialize( &the_timer->Ticker, routine, id, user_data );
      the_timer->Ticker.initial = seconds - _TOD_Seconds_since_epoch();
                                                                      
      (*timer_server->schedule_operation)( timer_server, the_timer ); 
                                                                      
      _Thread_Enable_dispatch();                                      
 8014388:	f8 00 0f 53 	calli 80180d4 <_Thread_Enable_dispatch>        
      return RTEMS_SUCCESSFUL;                                        
 801438c:	e3 ff ff d3 	bi 80142d8 <rtems_timer_server_fire_when+0x74>